-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotes-api-automated-test.postman_collection.json
More file actions
423 lines (423 loc) · 14.9 KB
/
notes-api-automated-test.postman_collection.json
File metadata and controls
423 lines (423 loc) · 14.9 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
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
422
423
{
"info": {
"_postman_id": "2c401bf3-2be1-4eb9-a1df-9b9e88c0c406",
"name": "Notes API Automated Test",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
"_exporter_id": "18346358"
},
"item": [
{
"name": "Adding Note",
"event": [
{
"listen": "test",
"script": {
"exec": [
"// Pastikan response status code bernilai 201\r",
"pm.test(\"Response status code should have 201 value\", () => {\r",
" pm.response.to.have.status(201)\r",
"})\r",
"\r",
"// Pastikan header response Content-Type bernilai application/json\r",
"pm.test(\"Response type header should have application/json value\", () => {\r",
" pm.expect(pm.response.headers.get('Content-Type')).to.equals('application/json; charset=utf-8')\r",
"})\r",
"\r",
"// Pastikan body response berupa object \r",
"pm.test(\"Response body should an object\", () => {\r",
" const responseJson = pm.response.json();\r",
" pm.expect(responseJson).to.be.an('object')\r",
"})\r",
"\r",
"// Pastikan body response memiliki properti dan nilai yang sesuai\r",
"pm.test(\"Response body should have the correct property and value\", () => {\r",
" const responseJson = pm.response.json();\r",
"\r",
" pm.expect(responseJson).to.ownProperty('status');\r",
" pm.expect(responseJson.status).to.equals('success');\r",
"\r",
" pm.expect(responseJson).to.ownProperty('message');\r",
" pm.expect(responseJson.message).to.equals('Catatan berhasil ditambahkan');\r",
"\r",
" pm.expect(responseJson).to.ownProperty('data');\r",
" pm.expect(responseJson.data).to.be.an('object');\r",
"})\r",
"\r",
"// Pastikan data pada response body memiliki noteId dan nilainya tidak kosong.\r",
"pm.test('Response body data should have noteId property and not equals to empty', () => {\r",
" const responseJson = pm.response.json();\r",
"\r",
" pm.expect(responseJson.data).to.ownProperty('noteId');\r",
" pm.expect(responseJson.data.noteId).to.not.equals('');\r",
"\r",
" pm.environment.set('noteId', responseJson.data.noteId)\r",
"})"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"title\": \"Catatan Pertama\",\r\n \"tags\": [\r\n \"Node JS\",\r\n \"Hapi Framework\"\r\n ],\r\n \"body\": \"Ini body dari catatan pertama\"\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:3000/notes",
"protocol": "http",
"host": [
"localhost"
],
"port": "3000",
"path": [
"notes"
]
}
},
"response": []
},
{
"name": "Getting All Notes",
"event": [
{
"listen": "test",
"script": {
"exec": [
"// Pastikan response memiliki status code 200.\r",
"pm.test(\"Response status code should equals to 200\", () => {\r",
" pm.response.to.have.status(200);\r",
"});\r",
"\r",
"// Pastikan header response Content-Type memiliki nilai application/json.\r",
"pm.test(\"Response type header should equals to application/json\", () => {\r",
" pm.expect(pm.response.headers.get('Content-Type')).to.equals('application/json; charset=utf-8')\r",
"});\r",
"\r",
"// Pastikan body response adalah object.\r",
"pm.test(\"Response body must be object type\", () => {\r",
" pm.expect(pm.response.json()).to.be.an('object');\r",
"})\r",
"\r",
"// Pastikan body response memiliki properti dan nilai atau tipe data yang sesuai.\r",
"pm.test(\"Response body should have the correct property and value\", () => {\r",
" const responseJson = pm.response.json();\r",
"\r",
" pm.expect(responseJson).to.ownProperty('status');\r",
" pm.expect(responseJson.status).to.equal('success');\r",
"\r",
" pm.expect(responseJson).to.ownProperty('data');\r",
" pm.expect(responseJson.data).to.be.an('object');\r",
"\r",
" pm.expect(responseJson.data).to.ownProperty('notes');\r",
" pm.expect(responseJson.data.notes).to.be.an('array');\r",
"});\r",
"\r",
"// Pastikan data pada response body memiliki array notes dan terdapat minimal 1 item di dalamnya.\r",
"pm.test(\"Response body data should have a notes array and contains at least 1 item\", () => {\r",
" const responseJson = pm.response.json();\r",
"\r",
" pm.expect(responseJson.data).to.ownProperty('notes');\r",
" pm.expect(responseJson.data.notes).to.be.an('array');\r",
" pm.expect(responseJson.data.notes).lengthOf.at.least(1);\r",
"})"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"title\": \"Catatan Pertama\",\r\n \"tags\": [\r\n \"Node JS\",\r\n \"Hapi Framework\"\r\n ],\r\n \"body\": \"Ini body dari catatan pertama\"\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:3000/notes",
"protocol": "http",
"host": [
"localhost"
],
"port": "3000",
"path": [
"notes"
]
}
},
"response": []
},
{
"name": "Getting Specified Note",
"event": [
{
"listen": "test",
"script": {
"exec": [
"// astikan response memiliki status code 200.\r",
"pm.test(\"Response status code should equals to 200\", () => {\r",
" pm.response.to.have.status(200);\r",
"});\r",
"\r",
"// Pastikan header response Content-Type memiliki nilai application/json.\r",
"pm.test(\"Response type header should equals to application/json\", () => {\r",
" pm.expect(pm.response.headers.get('Content-Type')).to.equals('application/json; charset=utf-8');\r",
"});\r",
"\r",
"// Pastikan body response merupakan object.\r",
"pm.test(\"Response body must be object type\", () => {\r",
" pm.expect(pm.response.json()).to.be.an('object');\r",
"});\r",
"\r",
"// Pastikan body response memiliki properti dan nilai atau tipe data yang sesuai.\r",
"pm.test(\"Response body should have the correct property and value\", () => {\r",
" const responseJson = pm.response.json();\r",
"\r",
" pm.expect(responseJson).to.ownProperty('status');\r",
" pm.expect(responseJson.status).to.equal('success');\r",
"\r",
" pm.expect(responseJson).to.ownProperty('data');\r",
" pm.expect(responseJson.data).to.be.an('object');\r",
"})\r",
"\r",
"// Pastikan data pada response body memiliki properti note yang merupakan sebuah objek\r",
"pm.test(\"response body data should contain note object\", () => {\r",
" const {data} = pm.response.json();\r",
"\r",
" pm.expect(data).to.ownProperty('note');\r",
" pm.expect(data.note).to.be.an('object');\r",
"})\r",
"\r",
"// Pastikan objek note di dalam data memiliki properti id, title, body, dan tags dengan nilai yang sesuai.\r",
"pm.test(\"note object should contain correct value for id, title, body, and tags property\", () => {\r",
" const {data: {note}} = pm.response.json();\r",
"\r",
" const expectedId = pm.environment.get('noteId');\r",
" const expectedTitle = 'Catatan Pertama';\r",
" const expectedBody = \"Ini body dari catatan pertama\";\r",
" const expectedTags = [\r",
" \"Node JS\",\r",
" \"Hapi Framework\"\r",
" ];\r",
"\r",
" pm.expect(note).to.haveOwnProperty('id', expectedId);\r",
" pm.expect(note).to.haveOwnProperty('title', expectedTitle);\r",
" pm.expect(note).to.haveOwnProperty('body', expectedBody);\r",
" pm.expect(note).to.haveOwnProperty('tags').to.eql(expectedTags);\r",
"})"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"title\": \"Catatan Pertama\",\r\n \"tags\": [\r\n \"Node JS\",\r\n \"Hapi Framework\"\r\n ],\r\n \"body\": \"Ini body dari catatan pertama\"\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:3000/notes/{{noteId}}",
"protocol": "http",
"host": [
"localhost"
],
"port": "3000",
"path": [
"notes",
"{{noteId}}"
]
}
},
"response": []
},
{
"name": "Update Note",
"event": [
{
"listen": "test",
"script": {
"exec": [
"// Pastikan response memiliki status code 200\r",
"pm.test('Response status code should equal to 200', () => {\r",
" pm.response.to.have.status(200);\r",
"})\r",
"\r",
"// Pastikan header response Content-Type memiliki nilai application/json.\r",
"pm.test('Response header type should equal to application/json', () => {\r",
" pm.expect(pm.response.headers.get('Content-Type')).to.equals('application/json; charset=utf-8');\r",
"})\r",
"\r",
"// Pastikan body response adalah object\r",
"pm.test('Response body must be an object', () => {\r",
" pm.expect(pm.response.json()).to.be.an('object');\r",
"})\r",
"\r",
"// Pastikan body response memiliki properti dan nilai yang sesuai.\r",
"pm.test('Response body should have the correct property and value', () => {\r",
" const responseJson = pm.response.json();\r",
" \r",
" pm.expect(responseJson).to.ownProperty('status').to.equals('success');\r",
" pm.expect(responseJson).to.ownProperty('message').to.equals('Catatan berhasil diperbaharui')\r",
"})\r",
"\r",
"// Ketika mengakses catatan yang diperbarui\r",
"pm.test('when request the updated note', () => {\r",
" const noteId = pm.environment.get('noteId');\r",
" pm.sendRequest(`http://localhost:3000/notes/${noteId}`, (err, res) => {\r",
" if (!err) {\r",
" // Pastikan catatan yang diperbarui memiliki nilai terbaru.\r",
" pm.test('then the updated note should contain the latest data', () => {\r",
" const {data: {note}} = res.json();\r",
"\r",
" const expectedTitle = 'Catatan Pertama Njir';\r",
" const expectedBody = \"Ini body dari catatan pertama tapi revisi yahaha\";\r",
" const expectedTags = [\r",
" \"Node JS\",\r",
" \"Hapi Framework\",\r",
" \"Njir\"\r",
" ]; \r",
"\r",
" pm.expect(note).to.haveOwnProperty('title', expectedTitle);\r",
" pm.expect(note).to.haveOwnProperty('body', expectedBody);\r",
" pm.expect(note).to.haveOwnProperty('tags').to.eql(expectedTags);\r",
" });\r",
" }\r",
" })\r",
"})"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"title\": \"Catatan Pertama Njir\",\r\n \"tags\": [\r\n \"Node JS\",\r\n \"Hapi Framework\",\r\n \"Njir\"\r\n ],\r\n \"body\": \"Ini body dari catatan pertama tapi revisi yahaha\"\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:3000/notes/{{noteId}}",
"protocol": "http",
"host": [
"localhost"
],
"port": "3000",
"path": [
"notes",
"{{noteId}}"
]
}
},
"response": []
},
{
"name": "Delete Note",
"event": [
{
"listen": "test",
"script": {
"exec": [
"// Pastikan response memiliki status code 200\r",
"pm.test('Response status code should equal to 200', () => {\r",
" pm.response.to.have.status(200);\r",
"})\r",
"\r",
"// Pastikan header response Content-Type memiliki nilai application/json.\r",
"pm.test('Response header type should equal to application/json', () => {\r",
" pm.expect(pm.response.headers.get('Content-Type')).to.equals('application/json; charset=utf-8');\r",
"})\r",
"\r",
"// Pastikan body response adalah object\r",
"pm.test('Response body must be an object', () => {\r",
" pm.expect(pm.response.json()).to.be.an('object');\r",
"})\r",
"\r",
"// Pastikan body response memiliki properti dan nilai yang sesuai.\r",
"pm.test('Response body should have the correct property and value', () => {\r",
" const responseJson = pm.response.json();\r",
" \r",
" pm.expect(responseJson).to.ownProperty('status').to.equals('success');\r",
" pm.expect(responseJson).to.ownProperty('message').to.equals('Catatan berhasil dihapus')\r",
"})\r",
"\r",
"// Ketika mengakses catatan yang dihapus\r",
"pm.test('when request the deleted note', () => {\r",
" const noteId = pm.environment.get('noteId');\r",
" pm.sendRequest(`http://localhost:3000/notes/${noteId}`, (err, res) => {\r",
" console.log(!err)\r",
" if (!err) {\r",
" // Pastikan catatan yang dihapus tidak ditemukan.\r",
" pm.test('then the deleted note should be not found', () => {\r",
" const {status, message} = res.json();\r",
"\r",
" pm.expect(res.code).to.equals(404);\r",
" pm.expect(status).to.equals('fail');\r",
" pm.expect(message).to.equals('Catatan tidak ditemukan');\r",
" })\r",
" }\r",
" })\r",
"})"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "DELETE",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:3000/notes/{{noteId}}",
"protocol": "http",
"host": [
"localhost"
],
"port": "3000",
"path": [
"notes",
"{{noteId}}"
]
}
},
"response": []
}
]
}