-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandlers_test.go
323 lines (268 loc) · 9.67 KB
/
handlers_test.go
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
package main
import (
"encoding/json"
"net/http"
"testing"
"time"
)
// ******************************************************************
func TestNopHandler(t *testing.T) {
clearTables(t)
user := addUser(t, "John Doe", "johndoe@example.com", "password1234")
session := addSession(t, user)
adminSession := addAdminSession(t, user)
// admin adds nop category tag with default data
start := time.Now()
tagName1 := "Tag #1"
tagCategory1 := "nop"
defaultData := map[string]any{}
din1 := map[string]string{
"name": tagName1,
"category": tagCategory1,
}
response := doPost(t, paths["admin_tags"], []byte(marshallAny(t, din1)), adminSession)
checkResponseCode(t, response, http.StatusCreated)
var dout1 tagOut
err := json.Unmarshal(response.Body.Bytes(), &dout1)
if err != nil {
t.Fatalf("failed to unmarshall data: %s", err)
}
tag1 := dout1.ID
assertTimestamp(t, dout1.ModifiedAt, start, time.Now())
// user adds tag to user data
time.Sleep(2 * time.Millisecond)
start = time.Now()
din2 := map[string]any{
"tags": []string{tag1},
}
response = doPost(t, paths["auth_data_tags"], []byte(marshallAny(t, din2)), session)
checkResponseCode(t, response, http.StatusOK)
var dout2 userDataOut
err = json.Unmarshal(response.Body.Bytes(), &dout2)
if err != nil {
t.Fatalf("failed to unmarshall data: %s", err)
}
assertUserDataTags(t, dout2, []string{tag1})
assertTimestamp(t, dout2.Tags[0].Added, start, time.Now())
assertTagAddedOnly(t, dout2.Tags...)
// user gets tag data, ensure it matches expected default
time.Sleep(2 * time.Millisecond)
start = time.Now()
p := pathWithParam(paths["auth_tags"], ":id", tag1)
response = doGet(t, p, session)
checkResponseCode(t, response, http.StatusOK)
var dout3 tagOutGet
err = json.Unmarshal(response.Body.Bytes(), &dout3)
if err != nil {
t.Fatalf("failed to unmarshall data: %s", err)
}
assertTagOut(t, dout3.Tag, tagOut{tag1, tagName1, tagCategory1, defaultData, dout1.ModifiedAt})
assertTimestamp(t, dout3.Accessed, start, time.Now())
// user updates tag data
time.Sleep(2 * time.Millisecond)
start = time.Now()
din3 := map[string]any{
"value": 1,
}
response = doPost(t, p, []byte(marshallAny(t, tagDataIn{din3})), session)
checkResponseCode(t, response, http.StatusOK)
var dout4 tagOutPost
err = json.Unmarshal(response.Body.Bytes(), &dout4)
if err != nil {
t.Fatalf("failed to unmarshall data: %s", err)
}
assertTagOut(t, dout4.Tag, tagOut{tag1, tagName1, tagCategory1, din3, ""})
assertTimestamp(t, dout4.Tag.ModifiedAt, start, time.Now())
assertTimestamp(t, dout4.ActedOn, start, time.Now())
// get tag data, ensure it matches updated data
response = doGet(t, p, session)
checkResponseCode(t, response, http.StatusOK)
var dout5 tagOutGet
err = json.Unmarshal(response.Body.Bytes(), &dout5)
if err != nil {
t.Fatalf("failed to unmarshall data: %s", err)
}
assertTagOut(t, dout5.Tag, tagOut{tag1, tagName1, tagCategory1, din3, dout4.Tag.ModifiedAt})
assertTimestamp(t, dout5.Accessed, start, time.Now())
// get user data
response = doGet(t, paths["auth_data"], session)
checkResponseCode(t, response, http.StatusOK)
var dout6 userDataOut
err = json.Unmarshal(response.Body.Bytes(), &dout6)
if err != nil {
t.Fatalf("failed to unmarshall data: %s", err)
}
if dout6.Tags[0].Added != dout2.Tags[0].Added {
t.Fatalf("unexpected added in final tag data. Got %s. Want %s", dout6.Tags[0].Added, dout2.Tags[0].Added)
}
if dout6.Tags[0].Accessed != dout5.Accessed {
t.Fatalf("unexpected accessed in final tag data. Got %s. Want %s", dout6.Tags[0].Accessed, dout5.Accessed)
}
if dout6.Tags[0].ActedOn != dout4.ActedOn {
t.Fatalf("unexpected acted_on in final tag data. Got %s. Want %s", dout6.Tags[0].ActedOn, dout4.ActedOn)
}
}
// ******************************************************************
func TestCounterHandler(t *testing.T) {
clearTables(t)
user := addUser(t, "John Doe", "johndoe@example.com", "password1234")
session := addSession(t, user)
adminSession := addAdminSession(t, user)
// admin adds counter category tag with default data
start := time.Now()
tagName1 := "Tag #1"
tagCategory1 := "counter"
defaultData := map[string]any{"counter": 0}
din1 := map[string]string{
"name": tagName1,
"category": tagCategory1,
}
response := doPost(t, paths["admin_tags"], []byte(marshallAny(t, din1)), adminSession)
checkResponseCode(t, response, http.StatusCreated)
var dout1 tagOut
err := json.Unmarshal(response.Body.Bytes(), &dout1)
if err != nil {
t.Fatalf("failed to unmarshall data: %s", err)
}
tag1 := dout1.ID
assertTimestamp(t, dout1.ModifiedAt, start, time.Now())
// user adds tag to user data
time.Sleep(2 * time.Millisecond)
start = time.Now()
din2 := map[string]any{
"tags": []string{tag1},
}
response = doPost(t, paths["auth_data_tags"], []byte(marshallAny(t, din2)), session)
checkResponseCode(t, response, http.StatusOK)
var dout2 userDataOut
err = json.Unmarshal(response.Body.Bytes(), &dout2)
if err != nil {
t.Fatalf("failed to unmarshall data: %s", err)
}
assertUserDataTags(t, dout2, []string{tag1})
assertTimestamp(t, dout2.Tags[0].Added, start, time.Now())
assertTagAddedOnly(t, dout2.Tags...)
// user gets tag data, ensure it matches expected default
time.Sleep(2 * time.Millisecond)
start = time.Now()
p := pathWithParam(paths["auth_tags"], ":id", tag1)
response = doGet(t, p, session)
checkResponseCode(t, response, http.StatusOK)
var dout3 tagOutGet
err = json.Unmarshal(response.Body.Bytes(), &dout3)
if err != nil {
t.Fatalf("failed to unmarshall data: %s", err)
}
assertTagOut(t, dout3.Tag, tagOut{tag1, tagName1, tagCategory1, defaultData, dout1.ModifiedAt})
assertTimestamp(t, dout3.Accessed, start, time.Now())
// user increments counter
time.Sleep(2 * time.Millisecond)
start = time.Now()
din3 := map[string]any{
"operation": "increment",
}
data1 := map[string]any{
"counter": 1,
}
response = doPost(t, p, []byte(marshallAny(t, tagDataIn{din3})), session)
checkResponseCode(t, response, http.StatusOK)
var dout4 tagOutPost
err = json.Unmarshal(response.Body.Bytes(), &dout4)
if err != nil {
t.Fatalf("failed to unmarshall data: %s", err)
}
assertTagOut(t, dout4.Tag, tagOut{tag1, tagName1, tagCategory1, data1, ""})
assertTimestamp(t, dout4.Tag.ModifiedAt, start, time.Now())
assertTimestamp(t, dout4.ActedOn, start, time.Now())
// user increments counter again
time.Sleep(2 * time.Millisecond)
start = time.Now()
data2 := map[string]any{
"counter": 2,
}
response = doPost(t, p, []byte(marshallAny(t, tagDataIn{din3})), session)
checkResponseCode(t, response, http.StatusOK)
var dout5 tagOutPost
err = json.Unmarshal(response.Body.Bytes(), &dout5)
if err != nil {
t.Fatalf("failed to unmarshall data: %s", err)
}
assertTagOut(t, dout5.Tag, tagOut{tag1, tagName1, tagCategory1, data2, ""})
assertTimestamp(t, dout5.Tag.ModifiedAt, start, time.Now())
assertTimestamp(t, dout5.ActedOn, start, time.Now())
// get tag data, ensure it matches updated data
response = doGet(t, p, session)
checkResponseCode(t, response, http.StatusOK)
var dout6 tagOutGet
err = json.Unmarshal(response.Body.Bytes(), &dout6)
if err != nil {
t.Fatalf("failed to unmarshall data: %s", err)
}
assertTagOut(t, dout6.Tag, tagOut{tag1, tagName1, tagCategory1, data2, dout5.Tag.ModifiedAt})
assertTimestamp(t, dout6.Accessed, start, time.Now())
// get user data
response = doGet(t, paths["auth_data"], session)
checkResponseCode(t, response, http.StatusOK)
var dout7 userDataOut
err = json.Unmarshal(response.Body.Bytes(), &dout7)
if err != nil {
t.Fatalf("failed to unmarshall data: %s", err)
}
if dout7.Tags[0].Added != dout2.Tags[0].Added {
t.Fatalf("unexpected added in final tag data. Got %s. Want %s", dout7.Tags[0].Added, dout2.Tags[0].Added)
}
if dout7.Tags[0].Accessed != dout6.Accessed {
t.Fatalf("unexpected accessed in final tag data. Got %s. Want %s", dout7.Tags[0].Accessed, dout6.Accessed)
}
if dout7.Tags[0].ActedOn != dout5.ActedOn {
t.Fatalf("unexpected acted_on in final tag data. Got %s. Want %s", dout7.Tags[0].ActedOn, dout5.ActedOn)
}
}
func TestCounterHandlerBadData(t *testing.T) {
clearTables(t)
user := addUser(t, "John Doe", "johndoe@example.com", "password1234")
session := addSession(t, user)
adminSession := addAdminSession(t, user)
// admin adds counter category tag with default data
tagName1 := "Tag #1"
tagCategory1 := "counter"
defaultData := map[string]any{"counter": 0}
din1 := map[string]string{
"name": tagName1,
"category": tagCategory1,
}
response := doPost(t, paths["admin_tags"], []byte(marshallAny(t, din1)), adminSession)
checkResponseCode(t, response, http.StatusCreated)
var dout1 tagOut
err := json.Unmarshal(response.Body.Bytes(), &dout1)
if err != nil {
t.Fatalf("failed to unmarshall data: %s", err)
}
tag1 := dout1.ID
p := pathWithParam(paths["auth_tags"], ":id", tag1)
// no operation
din3 := map[string]any{}
response = doPost(t, p, []byte(marshallAny(t, tagDataIn{din3})), session)
checkResponseCode(t, response, http.StatusForbidden)
// invalid operation
din4 := map[string]any{
"operation": 10,
}
response = doPost(t, p, []byte(marshallAny(t, tagDataIn{din4})), session)
checkResponseCode(t, response, http.StatusForbidden)
// unknown operation
din5 := map[string]any{
"operation": "hello",
}
response = doPost(t, p, []byte(marshallAny(t, tagDataIn{din5})), session)
checkResponseCode(t, response, http.StatusForbidden)
// ensure tag data has not changed
response = doGet(t, p, session)
checkResponseCode(t, response, http.StatusOK)
var dout2 tagOutGet
err = json.Unmarshal(response.Body.Bytes(), &dout2)
if err != nil {
t.Fatalf("failed to unmarshall data: %s", err)
}
assertTagOut(t, dout2.Tag, tagOut{tag1, tagName1, tagCategory1, defaultData, ""})
}