-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathobservation_test.go
More file actions
217 lines (164 loc) · 5.13 KB
/
Copy pathobservation_test.go
File metadata and controls
217 lines (164 loc) · 5.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
package core
import (
"fmt"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
var jsonObservation = ` {
"@iot.id": 1368606,
"@iot.selfLink": "http://gost.geodan.nl/v1.0/Observations(1368606)",
"phenomenonTime": "2017-05-08T09:09:52.032311769Z",
"result": 10.291769996296797,
"Datastream@iot.navigationLink": "http://gost.geodan.nl/v1.0/Observations(1368606)/Datastream",
"FeatureOfInterest@iot.navigationLink": "http://gost.geodan.nl/v1.0/Observations(1368606)/FeatureOfInterest",
"resultTime": null
}`
func TestGetEntityTypeReturnsCorrectType(t *testing.T) {
//arrange
observation := &Observation{}
//act
entityType := observation.GetEntityType()
//assert
assert.Equal(t, EntityTypeObservation, entityType, "getEntityType should return correct type")
}
func TestSetLinksReturnsCorrectLinks(t *testing.T) {
// arrange
observation := &Observation{}
datastream := &Datastream{}
foi := &FeatureOfInterest{}
observation.Datastream = datastream
observation.FeatureOfInterest = foi
// act
observation.SetAllLinks("www.nu.nl")
// assert
assert.NotNil(t, observation.NavSelf, " NAvSelf should be filled in")
assert.NotNil(t, observation.NavDatastream, " NavDatastream should be filled in")
assert.NotNil(t, observation.NavFeatureOfInterest, " NavFeatureOfInterest should be filled in")
assert.NotNil(t, observation.FeatureOfInterest.NavSelf, " NavSelf FeatureofInterest should be filled in")
assert.NotNil(t, observation.Datastream.NavSelf, " NavSelf Datastream should be filled in")
}
func TestMarshalJson(t *testing.T) {
// arrange
observation := &Observation{}
// act
obsjson, _ := observation.MarshalJSON()
// assert
assert.NotNil(t, obsjson)
}
func TestMarshalJsonWithTimes(t *testing.T) {
// arrange
observation := &Observation{}
resultTime := time.Now().UTC().Format("2006-01-02T15:04:05.000Z")
observation.ResultTime = &resultTime
// act
obsjson, _ := observation.MarshalJSON()
// assert
assert.NotNil(t, obsjson)
}
func TestMarshalJsonWithEmptyTimes(t *testing.T) {
// arrange
observation := &Observation{}
resultTime := ""
observation.ResultTime = &resultTime
// act
obsjson, _ := observation.MarshalJSON()
// assert
assert.NotNil(t, obsjson)
}
func TestGetPropertyNames(t *testing.T) {
// arrange
observation := &Observation{}
// act
propertynames := observation.GetPropertyNames()
// assert
assert.True(t, propertynames[0] == "id")
}
func TestGetSupportedEncodingShouldNotReturnAnyEncoding(t *testing.T) {
// arrange
observation := &Observation{}
// act
supportedEncoding := observation.GetSupportedEncoding()
// assert
assert.Equal(t, 0, len(supportedEncoding), "Observation should not supprt any encoding")
}
func TestParseEntityShouldWork(t *testing.T) {
//arrange
observation := &Observation{}
//act
err := observation.ParseEntity([]byte(jsonObservation))
//assert
assert.Equal(t, err, nil, "Observation parse from json should have succeeded")
}
func TestParseEntityShouldFail(t *testing.T) {
//arrange
observation := &Observation{}
//act
err := observation.ParseEntity([]byte("hallo"))
//assert
assert.NotEqual(t, err, nil, "Observation parse from json should have failed")
}
func TestMissingMandatoryParametersObservation(t *testing.T) {
//arrange
observation := &Observation{}
//act
ok, err := observation.ContainsMandatoryParams()
assert.False(t, ok)
assert.NotNil(t, err, "Observation mandatory parameters not filled in should have returned error")
if len(err) > 0 {
assert.Contains(t, fmt.Sprintf("%v", err[0]), "result")
}
}
func TestMissingMandatoryParametersWithTimesObservation(t *testing.T) {
//arrange
observation := &Observation{}
observation.PhenomenonTime = time.Now().UTC().Format(time.RFC3339Nano)
resultTime := time.Now().UTC().Format("2006-01-02T15:04:05.000Z")
observation.ResultTime = &resultTime
//act
ok, _ := observation.ContainsMandatoryParams()
// assert
assert.False(t, ok)
}
func TestMissingMandatoryParametersWithWrongTimesObservation(t *testing.T) {
//arrange
observation := &Observation{}
observation.PhenomenonTime = "haha"
resulttime := "hoho"
observation.ResultTime = &resulttime
//act
ok, _ := observation.ContainsMandatoryParams()
// assert
assert.False(t, ok)
}
func TestMarshalPostgresJSONReturnsSomething(t *testing.T) {
// arrange
observation := &Observation{}
// act
bytes, _ := observation.MarshalPostgresJSON()
// assert
assert.NotNil(t, bytes)
}
func TestMarshalPostgresJSONWithResultTime(t *testing.T) {
// arrange
observation := &Observation{}
resultTime := time.Now().UTC().Format("2006-01-02T15:04:05.000Z")
observation.ResultTime = &resultTime
// act
bytes, _ := observation.MarshalPostgresJSON()
// assert
assert.NotNil(t, bytes)
}
func TestMandatoryParametersExistObservation(t *testing.T) {
//arrange
observation := &Observation{
Result: []byte("20"),
Datastream: &Datastream{},
}
observation.Datastream.ID = "1"
//act
ok, err := observation.ContainsMandatoryParams()
//assert
assert.Nil(t, err, "All mandatory params are filled in should not have returned an error")
assert.True(t, ok, "Observation mandatory parameters should be ok")
}