-
Notifications
You must be signed in to change notification settings - Fork 0
/
HW_2.postman_collection.json
551 lines (551 loc) · 19.4 KB
/
HW_2.postman_collection.json
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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
{
"info": {
"_postman_id": "9e2d2da1-887b-4c35-b948-fe54d605089e",
"name": "HW_2",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
"_exporter_id": "19611442"
},
"item": [
{
"name": "Task1",
"event": [
{
"listen": "test",
"script": {
"exec": [
"// 1. Отправить запрос.\r",
"// pm.sendRequest(\"http://162.55.220.72:5005/first\", function (err, response) {\r",
"// console.log(response.json());\r",
"// console.log(err.json());\r",
"// });\r",
"// 2. Статус код 200\r",
"pm.test(\"Status code is 200\", function () {\r",
" pm.response.to.have.status(200);\r",
"});\r",
"\r",
"// 3. Проверить, что в body приходит правильный string.\r",
"pm.test(\"Body matches string\", function () {\r",
" pm.expect(pm.response.text()).to.include(\"This is the first responce from server!\");\r",
"});\r",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "http://162.55.220.72:5005/first",
"protocol": "http",
"host": [
"162",
"55",
"220",
"72"
],
"port": "5005",
"path": [
"first"
]
}
},
"response": []
},
{
"name": "Task2",
"event": [
{
"listen": "test",
"script": {
"exec": [
"// 1. Отправить запрос.\r",
"// 2. Статус код 200\r",
"pm.test(\"Status code is 200\", function () {\r",
" pm.response.to.have.status(200);\r",
"});\r",
"\r",
"// 3. Спарсить response body в json\r",
"let response_Json = pm.response.json();\r",
"\r",
"// 4. Проверить, что name в ответе равно name s request (name вбить руками.)\r",
"\r",
"pm.test(\"Name is Pavel\", function () {\r",
" pm.expect(response_Json.name).to.eql(\"Pavel\");\r",
"});\r",
"\r",
"// 5. Проверить, что age в ответе равно age s request (age вбить руками.)\r",
"pm.test(\"Age is 24\", function () {\r",
" pm.expect(response_Json.age).to.eql('24');\r",
"});\r",
"\r",
"// 6. Проверить, что salary в ответе равно salary s request (salary вбить руками.)\r",
"pm.test(\"Salary is 5000\", function () {\r",
" pm.expect(response_Json.salary).to.eql(5000);\r",
"});\r",
"\r",
"// 7. Спарсить request.\r",
"let req_data = request.data;\r",
"\r",
"// 8. Проверить, что name в ответе равно name s request (name забрать из request.)\r",
" let res_name = req_data.name;\r",
" let req_name = response_Json.name;\r",
"\r",
"pm.test(\"Name res eql name req\", function () {\r",
" pm.expect(res_name).to.eql(req_name);\r",
"});\r",
"\r",
"// 9. Проверить, что age в ответе равно age s request (age забрать из request.)\r",
"\r",
" let res_age = req_data.age;\r",
" let req_age = response_Json.age;\r",
"\r",
"pm.test(\"Age res eql age req\", function () {\r",
" pm.expect(req_age).to.eql(res_age);\r",
"});\r",
"\r",
"// 10. Проверить, что salary в ответе равно salary s request (salary забрать из request.)\r",
"\r",
" let res_salary = +req_data.salary;\r",
" let req_salary = +response_Json.salary;\r",
"\r",
"pm.test(\"Salary res eql salary req\", function () {\r",
" pm.expect(req_salary).to.eql(res_salary);\r",
"});\r",
"\r",
"// 11. Вывести в консоль параметр family из response.\r",
"// let family = jsonData.family\r",
" console.log('Family -- ', response_Json.family)\r",
"\r",
"// 12. Проверить что u_salary_1_5_year в ответе равно salary*4 (salary забрать из request)\r",
" \r",
" let req1_salary = +req_data.salary\r",
" let resp_salary_1_5_years = response_Json.family.u_salary_1_5_year\r",
"\r",
" pm.test(\"req_salary_1_5 eql salary * 4\", function () {\r",
" pm.expect(req1_salary*4).to.eql(resp_salary_1_5_years);\r",
"});\r",
"\r",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "name",
"value": "Pavel",
"type": "text"
},
{
"key": "age",
"value": "24",
"type": "text"
},
{
"key": "salary",
"value": "5000",
"type": "text"
}
]
},
"url": {
"raw": "http://162.55.220.72:5005/user_info_3",
"protocol": "http",
"host": [
"162",
"55",
"220",
"72"
],
"port": "5005",
"path": [
"user_info_3"
]
}
},
"response": []
},
{
"name": "Task3",
"event": [
{
"listen": "test",
"script": {
"exec": [
"// 1. Отправить запрос.\r",
"// 2. Статус код 200\r",
"\r",
"pm.test(\"Status code is 200\", function () {\r",
" pm.response.to.have.status(200);\r",
"});\r",
"\r",
"// 3. Спарсить response body в json.\r",
"\r",
" let resp_Json = pm.response.json();\r",
" \r",
"// 4. Спарсить request.\r",
"\r",
" let req = pm.request.url.query.toObject(); \r",
" \r",
"// 5. Проверить, что name в ответе равно name s request (name забрать из request.)\r",
" \r",
" pm.test(\"Name from req = name from resp\", function () {\r",
" pm.expect(resp_Json.name).to.eql(req.name);\r",
" });\r",
"\r",
"// 6. Проверить, что age в ответе равно age s request (age забрать из request.)\r",
"\r",
" pm.test(\"Age from req = age from resp\", function () {\r",
" pm.expect(resp_Json.age).to.eql(req.age);\r",
" });\r",
"\r",
"// 7. Проверить, что salary в ответе равно salary s request (salary забрать из request.)\r",
"\r",
" pm.test(\"Salary from req = salary from resp\", function () { \r",
" pm.expect(+resp_Json.salary).to.eql(+req.salary);\r",
" });\r",
"\r",
"// 8. Вывести в консоль параметр family из response.\r",
"\r",
" console.log(resp_Json.family)\r",
"\r",
"// 9. Проверить, что у параметра dog есть параметры name.\r",
"\r",
"pm.test(\"name is Luky\", function () { \r",
" pm.expect(resp_Json.family.pets.dog).to.have.property(\"name\");\r",
" });\r",
"\r",
"// 10. Проверить, что у параметра dog есть параметры age.\r",
"\r",
"pm.test(\"name is Luky\", function () { \r",
" pm.expect(resp_Json.family.pets.dog).to.have.property(\"age\");\r",
" });\r",
"\r",
"// 11. Проверить, что параметр name имеет значение Luky.\r",
"\r",
" pm.test(\"name is Luky\", function () { \r",
" pm.expect(resp_Json.family.pets.dog.name).to.eql(\"Luky\");\r",
" });\r",
"\r",
"// 12. Проверить, что параметр age имеет значение 4.\r",
"\r",
" pm.test(\"Age is 4\", function () { \r",
" pm.expect(resp_Json.family.pets.dog.age).to.eql(4);\r",
" });\r",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "http://162.55.220.72:5005/object_info_3?name=Pavel&age=24&salary=5000",
"protocol": "http",
"host": [
"162",
"55",
"220",
"72"
],
"port": "5005",
"path": [
"object_info_3"
],
"query": [
{
"key": "name",
"value": "Pavel"
},
{
"key": "age",
"value": "24"
},
{
"key": "salary",
"value": "5000"
}
]
}
},
"response": []
},
{
"name": "Task4",
"event": [
{
"listen": "test",
"script": {
"exec": [
"// 1. Отправить запрос.\r",
"// 2. Статус код 200\r",
"\r",
"pm.test(\"Status code is 200\", function () {\r",
" pm.response.to.have.status(200);\r",
"});\r",
"\r",
"// 3. Спарсить response body в json.\r",
"\r",
" let resp_in_json = pm.response.json();\r",
"\r",
"// 4. Спарсить request.\r",
"\r",
" let req = pm.request.url.query.toObject(); \r",
"\r",
"// 5. Проверить, что name в ответе равно name s request (name забрать из request.)\r",
"\r",
" pm.test(\"Name from req = name from resp\", function () {\r",
" pm.expect(resp_in_json.name).to.eql(req.name);\r",
" });\r",
"\r",
"// 6. Проверить, что age в ответе равно age из request (age забрать из request.)\r",
"\r",
" pm.test(\"Age from req = age from resp\", function () {\r",
" pm.expect(resp_in_json.age).to.eql(+req.age);\r",
" });\r",
"\r",
"// 7. Вывести в консоль параметр salary из request.\r",
"\r",
" console.log(req.salary)\r",
"\r",
"// 8. Вывести в консоль параметр salary из response.\r",
"\r",
" console.log(resp_in_json.salary)\r",
"\r",
"// 9. Вывести в консоль 0-й элемент параметра salary из response.\r",
"\r",
" console.log(resp_in_json.salary[0])\r",
"\r",
"// 10. Вывести в консоль 1-й элемент параметра salary параметр salary из response.\r",
"\r",
" console.log(resp_in_json.salary[1])\r",
"\r",
"// 11. Вывести в консоль 2-й элемент параметра salary параметр salary из response.\r",
"\r",
" console.log(resp_in_json.salary[2])\r",
"\r",
"// 12. Проверить, что 0-й элемент параметра salary равен salary из request (salary забрать из request.)\r",
"\r",
" pm.test(\"0 salary element = salary from req\", function () {\r",
" pm.expect(resp_in_json.salary[0]).to.eql(+req.salary);\r",
" });\r",
"\r",
"// 13. Проверить, что 1-й элемент параметра salary равен salary*2 из request (salary забрать из request.)\r",
"\r",
" pm.test(\"1 salary element = salary from req\", function () {\r",
" pm.expect(+resp_in_json.salary[1]).to.eql(req.salary*2);\r",
" });\r",
"\r",
"// 14. Проверить, что 2-й элемент параметра salary равен salary*3 из request (salary забрать из request.)\r",
"\r",
" pm.test(\"1 salary element = salary from req\", function () {\r",
" pm.expect(+resp_in_json.salary[2]).to.eql(req.salary*3);\r",
" });\r",
"\r",
"// 15. Создать в окружении переменную name\r",
"// 16. Создать в окружении переменную age\r",
"// 17. Создать в окружении переменную salary\r",
"// 18. Передать в окружение переменную name\r",
"// 19. Передать в окружение переменную age\r",
"// 20. Передать в окружение переменную salary\r",
"\r",
" pm.environment.set(\"name\", \"Pavel\");\r",
" pm.environment.set(\"age\", 24);\r",
" pm.environment.set(\"salary\", 5000);\r",
" \r",
"// 21. Написать цикл который выведет в консоль по порядку элементы списка из параметра salary.\r",
"\r",
" for (let i in resp_in_json.salary) {\r",
"\t\tconsole.log(i)\r",
"\t};\r",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "http://162.55.220.72:5005/object_info_4?name=Pavel&age=24&salary=5000",
"protocol": "http",
"host": [
"162",
"55",
"220",
"72"
],
"port": "5005",
"path": [
"object_info_4"
],
"query": [
{
"key": "name",
"value": "Pavel"
},
{
"key": "age",
"value": "24"
},
{
"key": "salary",
"value": "5000"
}
]
}
},
"response": []
},
{
"name": "Task5",
"event": [
{
"listen": "test",
"script": {
"exec": [
"// 1. Вставить параметр salary из окружения в request\r",
"// 2. Вставить параметр age из окружения в age\r",
"// 3. Вставить параметр name из окружения в name\r",
"// 4. Отправить запрос.\r",
"// 5. Статус код 200\r",
"// 6. Спарсить response body в json.\r",
" let resp_body = pm.response.json();\r",
" let salary_1_5 = resp_body.qa_salary_after_1.5_year\r",
" \r",
"// 7. Спарсить request.\r",
" let req_body = request.data\r",
" \r",
"// 8. Проверить, что json response имеет параметр start_qa_salary\r",
"pm.test(\"Start qa salary property\", function () {\r",
" pm.expect(resp_body).to.have.property(\"start_qa_salary\");\r",
"});\r",
"\r",
"// 9. Проверить, что json response имеет параметр qa_salary_after_6_months\r",
"pm.test(\"qa salary 6 months property\", function () {\r",
" pm.expect(resp_body).to.have.property(\"qa_salary_after_6_months\");\r",
"});\r",
"\r",
"// 10. Проверить, что json response имеет параметр qa_salary_after_12_months\r",
"pm.test(\"qa salary 12 months property\", function () {\r",
" pm.expect(resp_body).to.have.property(\"qa_salary_after_12_months\");\r",
"});\r",
"\r",
"// 11. Проверить, что json response имеет параметр qa_salary_after_1.5_year\r",
"pm.test(\"qa salary 1.5 months property\", function () {\r",
" pm.expect(resp_body).to.have.property(\"qa_salary_after_1.5_year\");\r",
"});\r",
"\r",
"// 12. Проверить, что json response имеет параметр qa_salary_after_3.5_years\r",
"pm.test(\"qa salary 3.5 months property\", function () {\r",
" pm.expect(resp_body).to.have.property(\"qa_salary_after_3.5_years\");\r",
"});\r",
"\r",
"// 13. Проверить, что json response имеет параметр person\r",
"pm.test(\"person property\", function () {\r",
" pm.expect(resp_body).to.have.property(\"person\");\r",
"});\r",
"\r",
"// 14. Проверить, что параметр start_qa_salary равен salary из request (salary забрать из request.)\r",
" pm.test(\"Start qa salary = salary\", function () {\r",
" pm.expect(resp_body.start_qa_salary).to.eql(+req_body.salary);\r",
" });\r",
"\r",
"// 15. Проверить, что параметр qa_salary_after_6_months равен salary*2 из request (salary забрать из request.)\r",
" pm.test(\"Qa 6 months salary = salary\", function () {\r",
" pm.expect(resp_body.qa_salary_after_6_months).to.eql(+req_body.salary*2);\r",
" });\r",
"\r",
"// 16. Проверить, что параметр qa_salary_after_12_months равен salary*2.7 из request (salary забрать из request.)\r",
" pm.test(\"Qa 12 months salary = salary\", function () {\r",
" pm.expect(resp_body.qa_salary_after_12_months).to.eql(+req_body.salary*2.7);\r",
" });\r",
"\r",
"// 17. Проверить, что параметр qa_salary_after_1.5_year равен salary*3.3 из request (salary забрать из request.)\r",
" pm.test(\"Qa 1.5 year salary = salary\", function () {\r",
" pm.expect(resp_body.qa_salary_after_1_5_year).to.eql(+req_body.salary*3.3);\r",
" });\r",
"\r",
"// 18. Проверить, что параметр qa_salary_after_3.5_years равен salary*3.8 из request (salary забрать из request.)\r",
" pm.test(\"Qa 3.5 year salary = salary\", function () {\r",
" pm.expect(+req_body.salary*3.8).to.eql(resp_body.qa_salary_after_3_5_year);\r",
" });\r",
"// 19. Проверить, что в параметре person, 1-й элемент из u_name равен salary из request (salary забрать из request.)\r",
" pm.test(\"U_name = salary\", function () {\r",
" pm.expect(resp_body.person.u_name[1]).to.eql(+req_body.salary);\r",
" });\r",
"\r",
"// 20. Проверить, что что параметр u_age равен age из request (age забрать из request.)\r",
" pm.test(\"U_age = age\", function () {\r",
" pm.expect(resp_body.person.u_age).to.eql(+req_body.age);\r",
" });\r",
"\r",
"// 21. Проверить, что параметр u_salary_5_years равен salary*4.2 из request (salary забрать из request.)\r",
" pm.test(\"U_salary_5_years = salary\", function () {\r",
" pm.expect(resp_body.person.u_salary_5_years).to.eql(+req_body.salary*4.2);\r",
" });\r",
"// 22. ***Написать цикл который выведет в консоль по порядку элементы списка из параметра person.\r",
" for (let i in resp_body.person) {\r",
"\t\tconsole.log(i)\r",
"\t};"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "noauth"
},
"method": "POST",
"header": [],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "name",
"value": "{{name}}",
"type": "text"
},
{
"key": "age",
"value": "{{age}}",
"type": "text"
},
{
"key": "salary",
"value": "{{salary}}",
"type": "text"
}
]
},
"url": {
"raw": "http://162.55.220.72:5005/user_info_2",
"protocol": "http",
"host": [
"162",
"55",
"220",
"72"
],
"port": "5005",
"path": [
"user_info_2"
]
}
},
"response": []
}
]
}