-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHttpRequests.http
More file actions
518 lines (464 loc) · 10.9 KB
/
Copy pathHttpRequests.http
File metadata and controls
518 lines (464 loc) · 10.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
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
GET http://127.0.0.1:5000/
###
GET http://127.0.0.1:5000/users/count
###
##########################################################################
GET http://127.0.0.1:5000/users
###
GET http://127.0.0.1:5000/users/4
### FAIL BECAUSE DOESNT EXIST
GET http://127.0.0.1:5000/users/99999
###
GET http://127.0.0.1:5000/users/get
Content-Type: application/json
{
"id" : "1"
}
### FAIL NO ID PASSED
GET http://127.0.0.1:5000/users/get
Content-Type: application/json
{
}
### FAIL ID OOR
GET http://127.0.0.1:5000/users/get
Content-Type: application/json
{
"id" : "99999"
}
##########################################################################
### GET SINGLE BY USERNAME
GET http://127.0.0.1:5000/users/get-single-by-username
Content-Type: application/json
{
"username" : "Francis"
}
### FAIL - INVALID USERNAME
GET http://127.0.0.1:5000/users/get-single-by-username
Content-Type: application/json
{
}
#########################################################################
### GET LIST BY ACCESS
GET http://127.0.0.1:5000/users/get-list-by-access
Content-Type: application/json
{
"access" : "False"
}
### FAIL MISSING CORRECT ACCEESS
GET http://127.0.0.1:5000/users/get-list-by-access
Content-Type: application/json
{
"access" : "XXX"
}
##########################################################################
### POST REGULAR
POST http://127.0.0.1:5000/users/add
Content-Type: application/json
{
"username" : "Francis",
"password" : "Morrissey"
}
### FAIL MISSING FIELD
POST http://127.0.0.1:5000/users/add
Content-Type: application/json
{
"username" : "Francis"
}
##########################################################################
### POST ADVANCED
POST http://127.0.0.1:5000/users/add-advanced
Content-Type: application/json
{
"username" : "bb",
"password" : "aaaaaaaaaa",
"access" : "False"
}
### FAIL MISSING FIELD
POST http://127.0.0.1:5000/users/add-advanced
Content-Type: application/json
{
"username" : "test",
"access" : "False"
}
### FAIL WRONG ACCESS TYPE
POST http://127.0.0.1:5000/users/add-advanced
Content-Type: application/json
{
"username" : "admin",
"password" : "abcdefghij",
"access" : "True"
}
### FAIL PASSWORD REQUIREMENTS NOT MET
POST http://127.0.0.1:5000/users/add-advanced
Content-Type: application/json
{
"username" : "bb",
"password" : "aaaa",
"access" : "True"
}
##########################################################################
### UPDATE PASSWORD
PATCH http://127.0.0.1:5000/users/update-password
Content-Type: application/json
{
"username" : "admin",
"current_password": "abcdefghij",
"update_password" : "abcdefghijklm"
}
### FAIL INCORRECT CURRENT PASSWORD
PATCH http://127.0.0.1:5000/users/update-password
Content-Type: application/json
{
"username" : "Francis",
"current_password": "aaaaaa",
"update_password" : "password1990"
}
### FAIL MISSING FIELD
PATCH http://127.0.0.1:5000/users/update-password
Content-Type: application/json
{
"username" : "Francis",
"current_password": "Morrissey"
}
##########################################################################
### FULL UPDATE
PUT http://127.0.0.1:5000/users/update-advanced
Content-Type: application/json
{
"id" : "1",
"username" : "bb",
"password" : "bbb",
"access" : "True"
}
### FAIL MISSING FIELD
PUT http://127.0.0.1:5000/users/update-advanced
Content-Type: application/json
{
"id" : "1",
"username" : "aa",
"access" : "True"
}
### FAIL MISSING ID
PUT http://127.0.0.1:5000/users/update-advanced
Content-Type: application/json
{
"username" : "aa",
"password" : "bbb",
"access" : "True"
}
### FAIL ID OOR
PUT http://127.0.0.1:5000/users/update-advanced
Content-Type: application/json
{
"id" : "999999",
"username" : "aa",
"password" : "bbb",
"access" : "True"
}
##########################################################################
PATCH http://127.0.0.1:5000/users/patch
Content-Type: application/json
{
"id" : "1",
"access" : "True"
}
### PATCHING MULTIPLE
PATCH http://127.0.0.1:5000/users/patch
Content-Type: application/json
{
"id" : "2",
"password":"abcdefghij",
"access" : "True"
}
###
PATCH http://127.0.0.1:5000/users/patch
Content-Type: application/json
{
"id" : "1",
"access" : "True"
}
### FAIL INVALID ACCESS
PATCH http://127.0.0.1:5000/users/patch
Content-Type: application/json
{
"id" : "1",
"access" : "aa"
}
### FAIL INVALID ID
PATCH http://127.0.0.1:5000/users/patch
Content-Type: application/json
{
"id" : "400",
"access" : "True"
}
### FAIL NO ARGUMENTS
PATCH http://127.0.0.1:5000/users/patch
Content-Type: application/json
{
"id" : "1"
}
##########################################################################
### DELETE
DELETE http://127.0.0.1:5000/users/delete/1
### FAIL ID OOR
DELETE http://127.0.0.1:5000/users/delete/300
### DELETE BY USERNAME
DELETE http://127.0.0.1:5000/users/delete-by-username
Content-Type: application/json
{
"username" : "Francis"
}
### FAIL INVALID USERNAME
DELETE http://127.0.0.1:5000/users/delete-by-username
Content-Type: application/json
{
"username" : "AAAAAAAAAA"
}
### FAIL NO FIELD PASSED
DELETE http://127.0.0.1:5000/users/delete-by-username
Content-Type: application/json
{
"username" : "Francis"
}
##########################################################################
### prove login works appropriately when not providing details
GET http://127.0.0.1:5000/Login
### Basic authorization with variables.
GET http://127.0.0.1:5000/Login2
Authorization: Basic Francis Morrissey
###
GET http://127.0.0.1:5000/Login2
Authorization: Basic admin abcdefghij
### FAIL INCORRECT PASSWORD
GET http://127.0.0.1:5000/Login2
Authorization: Basic Francis Morrissey
### V THIS DOESNT WORK: missing valid token
GET http://127.0.0.1:5000/users
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VybmFtZSI6IkZyYW5jaXMiLCJhY2Nlc3MiOnRydWUsImV4cCI6MTY0MTQwNDMzN30.U94p29oRSoWeYlcRdPvgiYYZcjehLHtcOLFEWXEZpuE
### V THIS DOESNT WORK: missing valid token
GET http://127.0.0.1:5000/users
Content-Type: application/json
x-access-tokens : "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VybmFtZSI6ImFkbWluIiwiYWNjZXNzIjp0cnVlLCJleHAiOjE2NDE1NjczNzl9.vaHO4XOq8mIQgvUqu48vcIqHVzyZAA5g7H9k_kPafrg"
{
}
##########################################################################
GET http://127.0.0.1:5000/weathers
###
GET http://127.0.0.1:5000/weathers/1
###
GET http://127.0.0.1:5000/weathers/get
Content-Type: application/json
{
"id" : "1"
}
### FAIL MISSING ID
GET http://127.0.0.1:5000/weathers/get
Content-Type: application/json
{
"id" : ""
}
### FAIL ID OOR
GET http://127.0.0.1:5000/weathers/get
Content-Type: application/json
{
"id" : "300"
}
###
GET http://127.0.0.1:5000/weathers/get-by-day
Content-Type: application/json
{
"date" : "2021-12-30"
}
### FAIL - DATE OOR
GET http://127.0.0.1:5000/weathers/get-by-day
Content-Type: application/json
{
"date" : "2021-01-01"
}
### FAIL - MISSING FIELD
GET http://127.0.0.1:5000/weathers/get-by-day
Content-Type: application/json
{
}
###
GET http://127.0.0.1:5000/weathers/get-by-most-recent-and-location
Content-Type: application/json
{
"longitude":"45.5",
"latitude":"92"
}
###
GET http://127.0.0.1:5000/weathers/get-by-day-temp-range
Content-Type: application/json
{
"date" : "2021-12-30"
}
### FAIL - DATE OOR
GET http://127.0.0.1:5000/weathers/get-by-day-temp-range
Content-Type: application/json
{
"date" : "2021-12-30"
}
### FAIL - MISSING FIELD
GET http://127.0.0.1:5000/weathers/get-by-day-temp-range
Content-Type: application/json
{
}
###
GET http://127.0.0.1:5000/weathers/get-by-day-stats
Content-Type: application/json
{
"date" : "2022-01-06"
}
### FAIL DATE OOR
GET http://127.0.0.1:5000/weathers/get-by-day-stats
Content-Type: application/json
{
"date" : "2000-01-30"
}
##########################################################################
POST http://127.0.0.1:5000/weathers/add
Content-Type: application/json
{
"longitude": "45.5",
"latitude": "92.6",
"hygrometer": "55.5",
"thermometer": "5",
"udometer": "25",
"anemometer": "400",
"vane": "100"
}
### FAIL DATA OOR
POST http://127.0.0.1:5000/weathers/add
Content-Type: application/json
{
"longitude": "45.5",
"latitude": "92.6",
"hygrometer": "500.5",
"thermometer": "22.5",
"udometer": "2200",
"anemometer": "250",
"vane": "92"
}
### FAIL INCORRECT FORMAT
POST http://127.0.0.1:5000/weathers/add
Content-Type: application/json
{
"longitude": "xxx",
"latitude": "92.6",
"hygrometer": "50.5",
"thermometer": "22.5",
"udometer": "2200",
"anemometer": "250",
"vane": "92"
}
##########################################################################
PUT http://127.0.0.1:5000/weathers/update
Content-Type: application/json
{
"id" : "1",
"longitude" : "2",
"latitude" : "3",
"hygrometer" : "2",
"thermometer" : "22.2",
"udometer" : "2000",
"anemometer" : "250",
"vane" : "255"
}
### FAIL DATA OOR
PUT http://127.0.0.1:5000/weathers/update
Content-Type: application/json
{
"id" : "1",
"longitude": "45.5",
"latitude": "92.6",
"hygrometer": "500.5",
"thermometer": "22.5",
"udometer": "2200",
"anemometer": "250",
"vane": "92"
}
### FAIL INCORRECT FORMAT
PUT http://127.0.0.1:5000/weathers/update
Content-Type: application/json
{
"id" : "1",
"longitude": "xxx",
"latitude": "92.6",
"hygrometer": "50.5",
"thermometer": "22.5",
"udometer": "2200",
"anemometer": "250",
"vane": "92"
}
##########################################################################
PATCH http://127.0.0.1:5000/weathers/patch
Content-Type: application/json
{
"id" : "1",
"longitude" : "50.52"
}
### PATCHING MULTIPLE
PATCH http://127.0.0.1:5000/weathers/patch
Content-Type: application/json
{
"id" : "1",
"longitude" : "99.52",
"latitude" : "99.52"
}
### FAIL INVALID FIELD
PATCH http://127.0.0.1:5000/weathers/patch
Content-Type: application/json
{
"id" : "6",
"vane" : ""
}
### FAIL MISSING FIELD
PATCH http://127.0.0.1:5000/weathers/patch
Content-Type: application/json
{
"id" : "6"
}
### FAIL ID OOR
PATCH http://127.0.0.1:5000/weathers/patch
Content-Type: application/json
{
"id" : "400",
"longitude" : "50.52"
}
##########################################################################
### update date this fails
PUT http://127.0.0.1:5000/weathers/update-date
Content-Type: application/json
{
"id" : "1",
"date" : "2000-12-28T20:50:11"
}
### update to fail because missing field
PUT http://127.0.0.1:5000/weathers/update
Content-Type: application/json
{
"id" : "1",
"longitude" : "2.5",
"latitude" : "3.5",
"hygrometer" : "2.5",
"thermometer" : "22.2",
"udometer" : "2.1",
"anemometer" : "250"
}
### update to fail because wrong/missing id
PUT http://127.0.0.1:5000/weathers/update
Content-Type: application/json
{
"longitude" : "2.5",
"latitude" : "3.5",
"hygrometer" : "2.5",
"thermometer" : "22.2",
"udometer" : "2.1",
"anemometer" : "250"
}
#########################################################################
### DELETE
DELETE http://127.0.0.1:5000/weathers/delete/4
### FAIL ID OOR
DELETE http://127.0.0.1:5000/weathers/delete/300