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
| ---
| test_name: tasks_download_storage
| strict: false
| marks:
| - usefixtures:
| - django_live_url
| stages:
| - name: without auth
| request:
| method: GET
| url: '{django_live_url}/storage-data/uploaded/'
| response:
| status_code: 401
| - id: signup
| type: ref
| - name: empty filepath
| request:
| method: GET
| url: '{django_live_url}/storage-data/uploaded/'
| response:
| status_code: 404
| - name: access denied
| request:
| method: GET
| url: '{django_live_url}/storage-data/uploaded/?filepath=test'
| response:
| status_code: 403
|
|