-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathentity_postman_endpoint_json.vm
351 lines (330 loc) · 9.92 KB
/
entity_postman_endpoint_json.vm
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
#checkId($entity)
#set ( $uncapitalizedEntityName = ${fn.uncapitalize($entity.name)})
## 2 variables must be defined :
## $REST_URL_ROOT ( eg "http://localhost:8080" )
## $REST_API_ROOT ( eg "/api" )
#using("REST_URL_ROOT", "REST_API_ROOT" )
#set ( $URL_ROOT = "${REST_URL_ROOT}${REST_API_ROOT}" )
##--- Build LITERAL VALUES for JAVASCRIPT LANGUAGE
$env.setLanguage('JavaScript')
#set ( $values = $fn.buildValues($entity.attributes, 1) )
## REQUEST BODY ( JSON String )
#set ( $body = $values.toJSON("\n\t", "\n") )
#set ( $requestBody = $fn.backslash( $body, $QUOT) )
## REQUEST URL PARAM FOR PRIMARY KEY
#set ( $requestIdParams = '' )
#foreach ( $keyAttrib in $entity.keyAttributes )
#if ( $foreach.count > 1 )
#set ( $requestIdParams = $requestIdParams + '/' )
#end
#set ( $requestIdParams = $requestIdParams + $fn.unquote( $values.getValue(${keyAttrib.name}) ) )
#end
## ----------
{
"variables": [],
"info": {
"name": "REST API tests for entity $entity.name",
"description": "PostMan tests generated by Telosys",
"schema": "https://schema.getpostman.com/json/collection/v2.0.0/collection.json"
},
"item": [
## ---------- FIND ALL ENTITIES
{
"name": "FIND ALL",
"event": [
{
"listen": "test",
"script": {
"type": "text/javascript",
"exec": [
"// Test if response code is always 200 (a list is expected, void list if nothing) ",
"tests[\"Status code is always 200\"] = ( responseCode.code === 200 ) ;",
"",
"if ( responseCode.code === 200 ) {",
"// 200 OK (found) => Body expected in the response",
"tests[\"Has Content-Type\"] = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Content-Type is application/json\"] = responseHeaders[\"Content-Type\"].has(\"application/json\");",
"tests[\"Has body\"] = responseBody ;",
"tests[\"Body is valid JSON \"] = JSON.parse(responseBody) ;",
"}",
""
]
}
}
],
"request": {
"url": "${URL_ROOT}/$uncapitalizedEntityName",
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": ""
},
"description": "FIND ALL with GET method"
},
"response": []
},
## ---------- FIND ONE ENTITY
{
"name": "FIND ONE",
"event": [
{
"listen": "test",
"script": {
"type": "text/javascript",
"exec": [
"// Test if response code is 200 or 404",
"tests[\"Status code is 200 or 404\"] = ( responseCode.code === 200 || responseCode.code === 404 ) ;",
"",
"if ( responseCode.code === 200 ) {",
"// 200 OK (found) => Body expected in the response",
"tests[\"200 => Has Content-Type\"] = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"200 => Content-Type is application/json\"] = responseHeaders[\"Content-Type\"].has(\"application/json\");",
"tests[\"200 => Has body\"] = responseBody ;",
"tests[\"200 => Body is valid JSON \"] = JSON.parse(responseBody) ;",
"}",
"",
"if ( responseCode.code === 404 ) {",
"// 404 NOT FOUND => No body expected in the response",
"tests[\"404 => Content-Length is ZERO\"] = responseHeaders[\"Content-Length\"].has(\"0\");" ,
"tests[\"404 => No body\"] = ( ! responseBody ) ;",
"}",
"",
""
]
}
}
],
"request": {
"url": "${URL_ROOT}/$uncapitalizedEntityName/$requestIdParams",
"method": "GET",
"header": [],
"body": {},
"description": "FIND ONE with GET method"
},
"response": []
},
## ---------- CREATE AN ENTITY
{
"name": "CREATE",
"event": [
{
"listen": "test",
"script": {
"type": "text/javascript",
"exec": [
"// Test if response code is 201 or 409",
"tests[\"Status code is 201 or 409\"] = ( responseCode.code === 201 || responseCode.code === 409 ) ;",
"",
"if ( responseCode.code === 201 ) {",
"// 201 CREATED => Body expected in the response",
"tests[\"201 => Has Content-Type\"] = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"201 => Content-Type is application/json\"] = responseHeaders[\"Content-Type\"].has(\"application/json\");",
"tests[\"201 => Has body\"] = responseBody ;",
"tests[\"201 => Body is valid JSON \"] = JSON.parse(responseBody) ;",
"}",
"",
"if ( responseCode.code === 409 ) {",
"// 409 CONFLICT => No body expected in the response",
"tests[\"409 => Content-Length is ZERO\"] = responseHeaders[\"Content-Length\"].has(\"0\");" ,
"tests[\"409 => No body in response\"] = ( ! responseBody ) ;",
"}",
""
]
}
}
],
"request": {
"url": "${URL_ROOT}/$uncapitalizedEntityName",
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"description": ""
}
],
"body": {
"mode": "raw",
## "raw": "{$rawJsonRequest\n}"
"raw": "$requestBody"
},
"description": "CREATE with POST method"
},
"response": []
},
## ---------- UPDATE AN ENTITY
{
"name": "UPDATE ",
"event": [
{
"listen": "test",
"script": {
"type": "text/javascript",
"exec": [
"// Test if response code is 200 or 404",
"tests[\"Status code is 200 or 404\"] = ( responseCode.code === 200 || responseCode.code === 404 ) ;",
"",
"// No body in the response (in any case) ",
"tests[\"No body in response\"] = ( ! responseBody ) ;",
"",
""
]
}
}
],
"request": {
"url": "${URL_ROOT}/$uncapitalizedEntityName/$requestIdParams",
"method": "PUT",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"description": ""
}
],
"body": {
"mode": "raw",
## "raw": "{$rawJsonRequest\n}"
"raw": "$requestBody"
},
"description": "UPDATE with PUT method"
},
"response": []
},
## ---------- SAVE AN ENTITY
{
"name": "SAVE",
"event": [
{
"listen": "test",
"script": {
"type": "text/javascript",
"exec": [
"// Test if response code is 200 or 201",
"tests[\"Status code is 200 or 201\"] = ( responseCode.code === 200 || responseCode.code === 201 ) ;",
"",
"// 200 or 201 : Body always expected in the response",
"tests[\"Has Content-Type\"] = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Content-Type is application/json\"] = responseHeaders[\"Content-Type\"].has(\"application/json\");",
"tests[\"Has body\"] = responseBody ;",
"tests[\"Body is valid JSON \"] = JSON.parse(responseBody) ;",
"",
""
]
}
}
],
"request": {
"url": "${URL_ROOT}/$uncapitalizedEntityName",
"method": "PUT",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"description": ""
}
],
"body": {
"mode": "raw",
## "raw": "{$rawJsonRequest\n}"
"raw": "$requestBody"
},
"description": "SAVE with PUT method"
},
"response": []
},
## ---------- DELETE AN ENTITY
{
"name": "DELETE",
"event": [
{
"listen": "test",
"script": {
"type": "text/javascript",
"exec": [
"// Test if response code is 204 or 404",
"tests[\"Status code is 204 or 404\"] = ( responseCode.code === 204 || responseCode.code === 404 ) ;",
"",
"// No body in the response (in any case) ",
"tests[\"No body in response\"] = ( ! responseBody ) ;",
"",
""
]
}
}
],
"request": {
"url": "${URL_ROOT}/$uncapitalizedEntityName/$requestIdParams",
"method": "DELETE",
"header": [],
"body": {
"mode": "raw",
"raw": ""
},
"description": "DELETE with DELETE method"
},
"response": []
}
##==========================================================================================================
## ---------- COUNT
#*
{
"name": "Count all $uncapitalizedEntityName",
"event": [
{
"listen": "test",
"script": {
"type": "text/javascript",
"exec": [
"// Test if response code is 200 or 404",
"if (responseCode.code === 200) {",
" tests[\"Status code is 200\"] = responseCode.code === 200;",
" } else {",
" tests[\"Status code is 404\"] = responseCode.code === 404;",
"}",
"",
"// Test if response has a Content Type",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
"",
"// Test if Content Type is a json response",
"tests[\"Content-Type is application/json\"] = ",
"responseHeaders[\"Content-Type\"].has(\"application/json\");",
"",
"// Test if JSON response objects are valid",
"var jsonData = JSON.parse(responseBody);",
"",
"if (jsonData.errorCode) {",
" // Check the content of every value",
" if (jsonData.errorCode === 200) {",
" tests[\"Object errorCode value is 200\"] = jsonData.errorCode === 200;",
" } else {",
" tests[\"Object errorCode value is 404\"] = jsonData.errorCode === 404;",
" }",
" if (jsonData.message === \"Success\") {",
" tests[\"Object message value is 'Success'\"] = jsonData.message === \"Success\";",
" } else {",
" tests[\"Object message value is 'Entity not found'\"] = jsonData.message === \"Entity not found\";",
" }",
" } else {",
" tests[\"Returned value count is an integer\"] = Number.isInteger(jsonData.count);",
"}",
"",
""
]
}
}
],
"request": {
"url": "${URL_ROOT}/$uncapitalizedEntityName/count",
"method": "GET",
"header": [],
"body": {},
"description": "Count all $uncapitalizedEntityName"
},
"response": []
}
*#
]
}