forked from KRMAssociatesInc/JDS-GTM
-
Notifications
You must be signed in to change notification settings - Fork 2
/
VPRJTODM.m
421 lines (421 loc) · 19.6 KB
/
VPRJTODM.m
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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
VPRJTODM ;KRM/CJE -- Unit Tests for GET/PUT/DELETE Operational Data Mutable
;;1.0;JSON DATA STORE;;Jan 27, 2015
;
; Endpoints tested
;POST/PUT odmutable/set/this SET^VPRJODM
;GET odmutable/get/{_id} GET^VPRJODM
;GET odmutable/length/this LEN^VPRJODM
;DELETE odmutable/destroy/{_id} DEL^VPRJODM
;GET odmutable/destroy/{_id} DEL^VPRJODM
;DELETE odmutable/clear/this CLR^VPRJODM
;GET odmutable/clear/this CLR^VPRJODM
STARTUP ; Run once before all tests
Q
SHUTDOWN ; Run once after all tests
Q
ASSERT(EXPECT,ACTUAL,MSG) ; for convenience
D EQ^VPRJT(EXPECT,ACTUAL,$G(MSG))
Q
;
SITEOD(SITE,KEY,VALUE) ; Setup operational data mutable JSON for set
Q "{""_id"": """_SITE_""","""_KEY_""": """_VALUE_"""}"
SETJSONERR ;; @TEST Error code is set if JSON is mangled in PUT/POST
N RETURN,BODY,ARG,HTTPERR
; Create bad JSON
S BODY(1)=$$SITEOD("ZZUT","lastUpdate","20150127-1000")
S BODY(1)=BODY(1)_":"
; Send it to the URL
S RETURN=$$SET^VPRJODM(.ARG,.BODY)
D ASSERT(0,$D(^VPRJODM("ZZUT")),"A operational data mutable exists and it should not")
D ASSERT(400,$G(^TMP("HTTPERR",$J,1,"error","code")),"An HTTP 400 error should have occured")
D ASSERT(202,$G(^TMP("HTTPERR",$J,1,"error","errors",1,"reason")),"An 202 reason code should have occurred")
; Cleanup HTTPERR
K ^TMP("HTTPERR",$J)
Q
SETIDRR ;; @TEST Error code is set if no ID
N RETURN,BODY,ARG,HTTPERR
; Try with a null _id field
S BODY(1)=$$SITEOD("","lastUpdate","20150127-1000")
S RETURN=$$SET^VPRJODM(.ARG,.BODY)
D ASSERT(0,$D(^VPRJODM("ZZUT")),"A operational data mutable exists and it should not")
D ASSERT(404,$G(^TMP("HTTPERR",$J,1,"error","code")),"An HTTP 404 error should have occured")
D ASSERT(220,$G(^TMP("HTTPERR",$J,1,"error","errors",1,"reason")),"An 220 reason code should have occurred")
; Cleanup HTTPERR
K ^TMP("HTTPERR",$J)
; Cleanup Vars
K BODY,RETURN,ARG
; Try with a non existant _id field
S BODY(1)="{""ZZUT"": ""20150127-1000""}"
S RETURN=$$SET^VPRJODM(.ARG,.BODY)
D ASSERT(0,$D(^VPRJODM("ZZUT")),"A operational data mutable exists and it should not")
D ASSERT(404,$G(^TMP("HTTPERR",$J,1,"error","code")),"An HTTP 404 error should have occured")
D ASSERT(220,$G(^TMP("HTTPERR",$J,1,"error","errors",1,"reason")),"An 220 reason code should have occurred")
; Cleanup HTTPERR
K ^TMP("HTTPERR",$J)
Q
SET1 ;; @TEST Store one operational data mutable
N RETURN,BODY,ARG,HTTPERR
S BODY(1)=$$SITEOD("ZZUT","lastUpdate","20150127-1000")
S RETURN=$$SET^VPRJODM(.ARG,.BODY)
D ASSERT(10,$D(^VPRJODM("ZZUT")),"A operational data mutable does not exist and it should")
D ASSERT(0,$D(^TMP("HTTPERR",$J,1,"error","code")),"An HTTP error should NOT have occured")
D ASSERT("ZZUT",$G(^VPRJODM("ZZUT","_id")),"The _id field was not stored correctly")
D ASSERT("20150127-1000",$G(^VPRJODM("ZZUT","lastUpdate")),"The lastUpdate field was not stored correctly")
; Cleanup HTTPERR
K ^TMP("HTTPERR",$J)
; Cleanup ^VPRJODM
K ^VPRJODM("ZZUT")
I $G(^VPRJODM(0))>0 S ^VPRJODM(0)=^VPRJODM(0)-1
Q
SET2 ;; @TEST Store two operational data mutable
N RETURN,BODY,ARG,HTTPERR
S BODY(1)=$$SITEOD("ZZUT","lastUpdate","20150127-1000")
S RETURN=$$SET^VPRJODM(.ARG,.BODY)
D ASSERT(10,$D(^VPRJODM("ZZUT")),"A operational data mutable does not exist and it should")
D ASSERT(0,$D(^TMP("HTTPERR",$J,1,"error","code")),"An HTTP error should NOT have occured")
D ASSERT("ZZUT",$G(^VPRJODM("ZZUT","_id")),"The _id field was not stored correctly")
D ASSERT("20150127-1000",$G(^VPRJODM("ZZUT","lastUpdate")),"The lastUpdate field was not stored correctly")
; Cleanup HTTPERR
K ^TMP("HTTPERR",$J)
; Cleanup Vars
K RETURN,BODY,ARG
; Run it again with a new lastUpdate time
S BODY(1)=$$SITEOD("ZZUT","lastUpdate","20150127-1500")
S RETURN=$$SET^VPRJODM(.ARG,.BODY)
D ASSERT(10,$D(^VPRJODM("ZZUT")),"A operational data mutable does not exist and it should")
D ASSERT(0,$D(^TMP("HTTPERR",$J,1,"error","code")),"An HTTP error should NOT have occured")
D ASSERT("ZZUT",$G(^VPRJODM("ZZUT","_id")),"The _id field was not stored correctly")
D ASSERT("20150127-1500",$G(^VPRJODM("ZZUT","lastUpdate")),"The lastUpdate field was not stored correctly")
; Cleanup HTTPERR
K ^TMP("HTTPERR",$J)
; Cleanup Vars
K RETURN,BODY,ARG
; Run it again with a new lastUpdate time that is smaller
S BODY(1)=$$SITEOD("ZZUT","lastUpdate","20150127-25")
S RETURN=$$SET^VPRJODM(.ARG,.BODY)
D ASSERT(10,$D(^VPRJODM("ZZUT")),"A operational data mutable does not exist and it should")
D ASSERT(0,$D(^TMP("HTTPERR",$J,1,"error","code")),"An HTTP error should NOT have occured")
D ASSERT("ZZUT",$G(^VPRJODM("ZZUT","_id")),"The _id field was not stored correctly")
D ASSERT("20150127-25",$G(^VPRJODM("ZZUT","lastUpdate")),"The lastUpdate field was not stored correctly")
; Cleanup HTTPERR
K ^TMP("HTTPERR",$J)
; Cleanup ^VPRJODM
K ^VPRJODM("ZZUT")
I $G(^VPRJODM(0))>0 S ^VPRJODM(0)=^VPRJODM(0)-3
Q
DELIDERR ;; @TEST Error code is set if no Id
N DATA,OBJECT,ERR,ARGS,HTTPERR
; Try with a non existant _id
D DEL^VPRJODM(.DATA,.ARGS)
D ASSERT(0,$D(^VPRJODM("ZZUT")),"A operational data mutable exists and it should not")
D ASSERT(0,$D(DATA),"No DATA should be returned")
D ASSERT(400,$G(^TMP("HTTPERR",$J,1,"error","code")),"An HTTP 400 error should have occured")
D ASSERT(111,$G(^TMP("HTTPERR",$J,1,"error","errors",1,"reason")),"An 111 reason code should have occurred")
; Cleanup HTTPERR
K ^TMP("HTTPERR",$J)
; Cleanup vars
K DATA,OBJECT,ERR,ARGS
; Try with a blank _id
S ARGS("_id")=""
D DEL^VPRJODM(.DATA,.ARGS)
D ASSERT(0,$D(^VPRJODM("ZZUT")),"A operational data mutable exists and it should not")
D ASSERT(0,$D(DATA),"No DATA should be returned")
D ASSERT(400,$G(^TMP("HTTPERR",$J,1,"error","code")),"An HTTP 400 error should have occured")
D ASSERT(111,$G(^TMP("HTTPERR",$J,1,"error","errors",1,"reason")),"An 111 reason code should have occurred")
; Cleanup HTTPERR
K ^TMP("HTTPERR",$J)
Q
DEL ;; @TEST Delete operational data mutable
N RETURN,BODY,ARG,DATA,ARGS,OBJECT,ERR,HTTPERR
; Create operational data mutable
S BODY(1)=$$SITEOD("ZZUT","lastUpdate","20150127-1000")
S RETURN=$$SET^VPRJODM(.ARG,.BODY)
D ASSERT(10,$D(^VPRJODM("ZZUT")),"A operational data mutable does not exist and it should")
D ASSERT(0,$D(^TMP("HTTPERR",$J,1,"error","code")),"An HTTP error should NOT have occured")
D ASSERT("ZZUT",$G(^VPRJODM("ZZUT","_id")),"The _id field was not stored correctly")
D ASSERT("20150127-1000",$G(^VPRJODM("ZZUT","lastUpdate")),"The lastUpdate field was not stored correctly")
; Cleanup HTTPERR
K ^TMP("HTTPERR",$J)
; Cleanup Vars
K BODY,RETURN,ARG
; Now delete it
S ARGS("_id")="ZZUT"
D DEL^VPRJODM(.DATA,.ARGS)
D DECODE^VPRJSON("DATA","OBJECT","ERR")
D ASSERT(0,$D(^VPRJODM("ZZUT")),"A operational data mutable exists and it should not")
D ASSERT("{}",$G(DATA),"DATA returned from a DELETE call (should not happen)")
; Cleanup HTTPERR
K ^TMP("HTTPERR",$J)
Q
LEN ;; @TEST Get number of operational data mutable
N RETURN,BODY,ARG,DATA,ARGS,OBJECT,ERR,HTTPERR
; Create operational data mutable
S BODY(1)=$$SITEOD("ZZUT","lastUpdate","20150127-1000")
S RETURN=$$SET^VPRJODM(.ARG,.BODY)
D ASSERT(10,$D(^VPRJODM("ZZUT")),"A operational data mutable does not exist and it should")
D ASSERT(0,$D(^TMP("HTTPERR",$J,1,"error","code")),"An HTTP error should NOT have occured")
D ASSERT("ZZUT",$G(^VPRJODM("ZZUT","_id")),"The _id field was not stored correctly")
D ASSERT("20150127-1000",$G(^VPRJODM("ZZUT","lastUpdate")),"The lastUpdate field was not stored correctly")
; Cleanup HTTPERR
K ^TMP("HTTPERR",$J)
; Cleanup Vars
K BODY,RETURN,ARG
; Now get length
D LEN^VPRJODM(.DATA,.ARGS)
D DECODE^VPRJSON("DATA","OBJECT","ERR")
D ASSERT(0,$D(^TMP("HTTPERR",$J)),"An HTTP Error Occured")
D ASSERT(0,$D(ERR),"A JSON Decode Error Occured")
D ASSERT(1,$G(OBJECT("length")),"The total number of objects doesn't match1")
; Cleanup HTTPERR
K ^TMP("HTTPERR",$J)
; Cleanup Vars
K OBJECT,DATA,ERR,ARGS
; Create operational data mutable
S BODY(1)=$$SITEOD("ZZUT1","lastUpdate","20150127-1000")
S RETURN=$$SET^VPRJODM(.ARG,.BODY)
D ASSERT(10,$D(^VPRJODM("ZZUT")),"A operational data mutable does not exist and it should")
D ASSERT(0,$D(^TMP("HTTPERR",$J,1,"error","code")),"An HTTP error should NOT have occured")
D ASSERT("ZZUT",$G(^VPRJODM("ZZUT","_id")),"The _id field was not stored correctly")
D ASSERT("20150127-1000",$G(^VPRJODM("ZZUT","lastUpdate")),"The lastUpdate field was not stored correctly")
; Cleanup HTTPERR
K ^TMP("HTTPERR",$J)
; Cleanup Vars
K BODY,RETURN,ARG
; Now get length
D LEN^VPRJODM(.DATA,.ARGS)
D DECODE^VPRJSON("DATA","OBJECT","ERR")
D ASSERT(0,$D(^TMP("HTTPERR",$J)),"An HTTP Error Occured")
D ASSERT(0,$D(ERR),"A JSON Decode Error Occured")
D ASSERT(2,$G(OBJECT("length")),"The total number of objects doesn't match2")
; Cleanup HTTPERR
K ^TMP("HTTPERR",$J)
; Cleanup ^VPRJODM
K ^VPRJODM("ZZUT")
K ^VPRJODM("ZZUT1")
I $G(^VPRJODM(0))>0 S ^VPRJODM(0)=^VPRJODM(0)-2
Q
GETIDERR ;; @TEST Error code is set if no Id
N DATA,ARGS,OBJECT,HTTPERR
; Try with a non existant _id attribute
D GET^VPRJODM(.DATA,.ARGS)
D ASSERT(0,$D(^VPRJODM("ZZUT")),"A operational data mutable exists and it should not")
D ASSERT(0,$D(DATA),"No DATA should be returned")
D ASSERT(400,$G(^TMP("HTTPERR",$J,1,"error","code")),"An HTTP 400 error should have occured")
D ASSERT(111,$G(^TMP("HTTPERR",$J,1,"error","errors",1,"reason")),"An 111 reason code should have occurred")
; Cleanup HTTPERR
K ^TMP("HTTPERR",$J)
; Cleanup Vars
K DATA,OBJECT,ARGS
; Try with a null id
S ARGS("_id")=""
D GET^VPRJODM(.DATA,.ARGS)
D ASSERT(0,$D(^VPRJODM("ZZUT")),"A operational data mutable exists and it should not")
D ASSERT(0,$D(DATA),"No DATA should be returned")
D ASSERT(400,$G(^TMP("HTTPERR",$J,1,"error","code")),"An HTTP 400 error should have occured")
D ASSERT(111,$G(^TMP("HTTPERR",$J,1,"error","errors",1,"reason")),"An 111 reason code should have occurred")
; Cleanup HTTPERR
K ^TMP("HTTPERR",$J)
Q
GETJSONERR ;; Error code is set if encoding to JSON fails
N DATA,ARGS,OBJECT,HTTPERR
S ARGS("_id")="ZZUT"
D GET^VPRJODM(.DATA,.ARGS)
D ASSERT(0,$D(DATA),"No DATA should be returned")
D ASSERT(400,$G(^TMP("HTTPERR",$J,1,"error","code")),"An HTTP 400 error should have occured")
D ASSERT(202,$G(^TMP("HTTPERR",$J,1,"error","errors",1,"reason")),"An 202 reason code should have occurred")
; Cleanup HTTPERR
K ^TMP("HTTPERR",$J)
Q
GET ;; @TEST Get operational data mutable
N RETURN,ARG,BODY,DATA,ARGS,OBJECT,ERR,HTTPERR
; Create operational data mutable
S BODY(1)=$$SITEOD("ZZUT","lastUpdate","20150127-1000")
S RETURN=$$SET^VPRJODM(.ARG,.BODY)
D ASSERT(10,$D(^VPRJODM("ZZUT")),"operational data mutable does not exist and it should")
D ASSERT(0,$D(^TMP("HTTPERR",$J,1,"error","code")),"An HTTP error should NOT have occured")
D ASSERT("ZZUT",$G(^VPRJODM("ZZUT","_id")),"The _id field was not stored correctly")
D ASSERT("20150127-1000",$G(^VPRJODM("ZZUT","lastUpdate")),"The lastUpdate field was not stored correctly")
; Cleanup HTTPERR
K ^TMP("HTTPERR",$J)
; Cleanup Vars
K RETURN,ARG,BODY
; Get the data we stored
S ARGS("_id")="ZZUT"
D GET^VPRJODM(.DATA,.ARGS)
D DECODE^VPRJSON("DATA","OBJECT","ERR")
D ASSERT(10,$D(^VPRJODM("ZZUT")),"operational data mutable does not exist and it should")
D ASSERT(0,$D(ERR),"A JSON Decode Error Occured")
D ASSERT(0,$D(^TMP("HTTPERR",$J,1,"error")),"An HTTP error should NOT have occured")
D ASSERT("ZZUT",$G(OBJECT("_id")),"returned data for the wrong _id")
D ASSERT("20150127-1000",$G(OBJECT("lastUpdate")),"returned data for lastUpdate didn't match")
; Cleanup HTTPERR
K ^TMP("HTTPERR",$J)
; Cleanup Vars
K DATA,ARGS,OBJECT,ERR
; Create operational data mutable update
S BODY(1)=$$SITEOD("ZZUT","lastUpdate","20150127-1500")
S RETURN=$$SET^VPRJODM(.ARG,.BODY)
D ASSERT(10,$D(^VPRJODM("ZZUT")),"operational data mutable does not exist and it should")
D ASSERT(0,$D(^TMP("HTTPERR",$J,1,"error")),"An HTTP error should NOT have occured")
D ASSERT("ZZUT",$G(^VPRJODM("ZZUT","_id")),"The _id field was not stored correctly")
D ASSERT("20150127-1500",$G(^VPRJODM("ZZUT","lastUpdate")),"The lastUpdate field was not stored correctly")
; Cleanup HTTPERR
K ^TMP("HTTPERR",$J)
; Cleanup Vars
K RETURN,ARG,BODY
; Get the data we stored update
S ARGS("_id")="ZZUT"
D GET^VPRJODM(.DATA,.ARGS)
D DECODE^VPRJSON("DATA","OBJECT","ERR")
D ASSERT(10,$D(^VPRJODM("ZZUT")),"operational data mutable does not exist and it should")
D ASSERT(0,$D(ERR),"A JSON Decode Error Occured")
D ASSERT(0,$D(^TMP("HTTPERR",$J,1,"error")),"An HTTP error should NOT have occured")
D ASSERT("ZZUT",$G(OBJECT("_id")),"returned data for the wrong _id")
D ASSERT("20150127-1500",$G(OBJECT("lastUpdate")),"returned data for lastUpdate didn't match")
; Cleanup HTTPERR
K ^TMP("HTTPERR",$J)
; Cleanup Vars
K DATA,ARGS,OBJECT,ERR
; Create second operational data mutable
S BODY(1)=$$SITEOD("ZZUT1","lastUpdate","20150127-1000")
S RETURN=$$SET^VPRJODM(.ARG,.BODY)
D ASSERT(10,$D(^VPRJODM("ZZUT1")),"operational data mutable does not exist and it should")
D ASSERT(0,$D(^TMP("HTTPERR",$J,1,"error")),"An HTTP error should NOT have occured")
D ASSERT("ZZUT1",$G(^VPRJODM("ZZUT1","_id")),"The _id field was not stored correctly")
D ASSERT("20150127-1000",$G(^VPRJODM("ZZUT1","lastUpdate")),"The lastUpdate field was not stored correctly")
; Cleanup HTTPERR
K ^TMP("HTTPERR",$J)
; Cleanup Vars
K RETURN,ARG,BODY
; Get second operational data mutable
S ARGS("_id")="ZZUT1"
D GET^VPRJODM(.DATA,.ARGS)
D DECODE^VPRJSON("DATA","OBJECT","ERR")
D ASSERT(10,$D(^VPRJODM("ZZUT1")),"operational data mutable does not exists and it should")
D ASSERT(0,$D(ERR),"A JSON Decode Error Occured")
D ASSERT(0,$D(^TMP("HTTPERR",$J,1,"error")),"An HTTP error should NOT have occured")
D ASSERT("ZZUT1",$G(OBJECT("_id")),"returned data for the wrong _id")
D ASSERT("20150127-1000",$G(OBJECT("lastUpdate")),"returned data for lastUpdate didn't match")
; Cleanup HTTPERR
K ^TMP("HTTPERR",$J)
; leave these around so they can be killed in the next test
Q
GETFILTER ;; @TEST Get operational data mutable with filter
N RETURN,ARG,BODY,DATA,ARGS,OBJECT,ERR,HTTPERR
; Create operational data mutable
S BODY(1)=$$SITEOD("ZZUT","lastUpdate","20150127-1000")
S RETURN=$$SET^VPRJODM(.ARG,.BODY)
D ASSERT(10,$D(^VPRJODM("ZZUT")),"operational data mutable does not exist and it should")
D ASSERT(0,$D(^TMP("HTTPERR",$J,1,"error","code")),"An HTTP error should NOT have occured")
D ASSERT("ZZUT",$G(^VPRJODM("ZZUT","_id")),"The _id field was not stored correctly")
D ASSERT("20150127-1000",$G(^VPRJODM("ZZUT","lastUpdate")),"The lastUpdate field was not stored correctly")
; Cleanup HTTPERR
K ^TMP("HTTPERR",$J)
; Cleanup Vars
K RETURN,ARG,BODY
; Create operational data mutable update
S BODY(1)=$$SITEOD("ZZUT1","lastUpdate","20150127-1500")
S RETURN=$$SET^VPRJODM(.ARG,.BODY)
D ASSERT(10,$D(^VPRJODM("ZZUT1")),"operational data mutable does not exist and it should")
D ASSERT(0,$D(^TMP("HTTPERR",$J,1,"error")),"An HTTP error should NOT have occured")
D ASSERT("ZZUT1",$G(^VPRJODM("ZZUT1","_id")),"The _id field was not stored correctly")
D ASSERT("20150127-1500",$G(^VPRJODM("ZZUT1","lastUpdate")),"The lastUpdate field was not stored correctly")
; Cleanup HTTPERR
K ^TMP("HTTPERR",$J)
; Cleanup Vars
K RETURN,ARG,BODY
; Get the data we stored update
S ARGS("filter")="ne(_id,abc)"
D GET^VPRJODM(.DATA,.ARGS)
D DECODE^VPRJSON("DATA","OBJECT","ERR")
D ASSERT(0,$D(ERR),"A JSON Decode Error Occured")
D ASSERT(0,$D(^TMP("HTTPERR",$J,1,"error")),"An HTTP error should NOT have occured")
D ASSERT("ZZUT",$G(OBJECT("items",1,"_id")),"returned data for the wrong _id")
D ASSERT("20150127-1000",$G(OBJECT("items",1,"lastUpdate")),"returned data for lastUpdate didn't match")
D ASSERT("ZZUT1",$G(OBJECT("items",2,"_id")),"returned data for the wrong _id")
D ASSERT("20150127-1500",$G(OBJECT("items",2,"lastUpdate")),"returned data for lastUpdate didn't match")
; Cleanup HTTPERR
K ^TMP("HTTPERR",$J)
; Cleanup Vars
K DATA,ARGS,OBJECT,ERR
; Get second operational data mutable
S ARGS("filter")="ne(_id,ZZUT)"
D GET^VPRJODM(.DATA,.ARGS)
D DECODE^VPRJSON("DATA","OBJECT","ERR")
D ASSERT(0,$D(ERR),"A JSON Decode Error Occured")
D ASSERT(0,$D(^TMP("HTTPERR",$J,1,"error")),"An HTTP error should NOT have occured")
D ASSERT("ZZUT1",$G(OBJECT("items",1,"_id")),"returned data for the wrong _id")
D ASSERT("20150127-1500",$G(OBJECT("items",1,"lastUpdate")),"returned data for lastUpdate didn't match")
; Cleanup HTTPERR
K ^TMP("HTTPERR",$J)
; leave these around so they can be killed in the next test
Q
CLR ;; @TEST Clear ALL operational data mutable
N RETURN,BODY,ARG,DATA,ARGS,OBJECT,ERR,HTTPERR
D CLR^VPRJODM(.DATA,.ARGS)
D DECODE^VPRJSON("DATA","OBJECT","ERR")
D ASSERT(0,$D(^VPRJODM("ZZUT")),"A operational data mutable exists and it should not")
D ASSERT("{}",$G(DATA),"DATA returned from a DELETE call (should not happen)")
D ASSERT(10,$D(^VPRJODM),"Global not cleared")
; Cleanup HTTPERR
K ^TMP("HTTPERR",$J)
Q
REAL ;; @TEST with realistic data
N RETURN,ARG,BODY,DATA,ARGS,OBJECT,ERR,HTTPERR
; Create operational data mutable
S BODY(1)="{""_id"": ""ZZUT"",""timestamp"": ""3150126-724"",""uid"": ""urn:va:vprupdate:ZZUT""}"
S RETURN=$$SET^VPRJODM(.ARG,.BODY)
D ASSERT(10,$D(^VPRJODM("ZZUT")),"operational data mutable does not exist and it should")
D ASSERT(0,$D(^TMP("HTTPERR",$J,1,"error","code")),"An HTTP error should NOT have occured")
D ASSERT("ZZUT",$G(^VPRJODM("ZZUT","_id")),"The _id field was not stored correctly")
D ASSERT("3150126-724",$G(^VPRJODM("ZZUT","timestamp")),"The timestamp field was not stored correctly")
D ASSERT("urn:va:vprupdate:ZZUT",$G(^VPRJODM("ZZUT","uid")),"The uid field was not stored correctly")
; Cleanup HTTPERR
K ^TMP("HTTPERR",$J)
; Cleanup Vars
K RETURN,ARG,BODY
; Get the data we stored
S ARGS("_id")="ZZUT"
D GET^VPRJODM(.DATA,.ARGS)
D DECODE^VPRJSON("DATA","OBJECT","ERR")
D ASSERT(10,$D(^VPRJODM("ZZUT")),"operational data mutable does not exist and it should")
D ASSERT(0,$D(ERR),"A JSON Decode Error Occured")
D ASSERT(0,$D(^TMP("HTTPERR",$J,1,"error")),"An HTTP error should NOT have occured")
D ASSERT("ZZUT",$G(OBJECT("_id")),"returned data for the wrong _id")
D ASSERT("3150126-724",$G(OBJECT("timestamp")),"returned data for timestamp didn't match")
D ASSERT("urn:va:vprupdate:ZZUT",$G(OBJECT("uid")),"The uid field was not stored correctly")
; Cleanup HTTPERR
K ^TMP("HTTPERR",$J)
; Cleanup VPRJODM
D CLR^VPRJODM(.DATA,.ARGS)
Q
SETGET ;; @TEST set and get of session data
N RETURN,ARG,BODY,DATA,ARGS,OBJECT,ERR,HTTPERR
; Create operational data mutable
S BODY(1)="{""_id"": ""ZZUT"",""timestamp"": ""3150126-724"",""uid"": ""urn:va:vprupdate:ZZUT""}"
S RETURN=$$SET^VPRJODM(.ARG,.BODY)
D ASSERT(10,$D(^VPRJODM("ZZUT")),"operational data mutable does not exist and it should")
D ASSERT(0,$D(^TMP("HTTPERR",$J,1,"error","code")),"An HTTP error should NOT have occured")
D ASSERT("ZZUT",$G(^VPRJODM("ZZUT","_id")),"The _id field was not stored correctly")
D ASSERT("3150126-724",$G(^VPRJODM("ZZUT","timestamp")),"The timestamp field was not stored correctly")
D ASSERT("urn:va:vprupdate:ZZUT",$G(^VPRJODM("ZZUT","uid")),"The uid field was not stored correctly")
; Cleanup HTTPERR
K ^TMP("HTTPERR",$J)
; Cleanup Vars
K RETURN,ARG,BODY
; Get the data we stored
S ARGS("_id")="ZZUT"
D GET^VPRJODM(.DATA,.ARGS)
D DECODE^VPRJSON("DATA","OBJECT","ERR")
D ASSERT(10,$D(^VPRJODM("ZZUT")),"operational data mutable does not exist and it should")
D ASSERT(0,$D(ERR),"A JSON Decode Error Occured")
D ASSERT(0,$D(^TMP("HTTPERR",$J,1,"error")),"An HTTP error should NOT have occured")
D ASSERT("ZZUT",$G(OBJECT("_id")),"returned data for the wrong _id")
D ASSERT("3150126-724",$G(OBJECT("timestamp")),"returned data for timestamp didn't match")
D ASSERT("urn:va:vprupdate:ZZUT",$G(OBJECT("uid")),"The uid field was not stored correctly")
; Cleanup HTTPERR
K ^TMP("HTTPERR",$J)
; Cleanup VPRJODM
K DATA,ARGS
D CLR^VPRJODM(.DATA,.ARGS)
Q