Bin
2025-12-17 d616898802dfe7e5dd648bcf53c6d1f86b6d3642
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
---
test_name: crud
strict: false
marks:
- usefixtures:
  - django_live_url
stages:
- id: signup
  type: ref
- id: create_project
  type: ref
- id: create_task
  type: ref
- id: create_prediction
  name: create_prediction
  request:
    json:
      result:
        - value:
            choices:
            - neg
          id: qpQHs3Yy4K
          from_name: label
          to_name: text
          type: choices
      model_version: 'test'
      task: '{task_pk}'
    method: POST
    url: '{django_live_url}/api/predictions'
  response:
    save:
      json:
        prediction_pk: id
    status_code: 201
- id: get_prediction_by_id
  name: get_prediction_by_id
  request:
    method: GET
    url: '{django_live_url}/api/predictions/{prediction_pk}/'
  response:
    json:
      id: !int '{prediction_pk}'
      result:
        - value:
            choices:
            - neg
          id: qpQHs3Yy4K
          from_name: label
          to_name: text
          type: choices
    status_code: 200
 
- id: get_prediction_for_task
  name: get_prediction_for_task
  request:
    method: GET
    url: '{django_live_url}/api/predictions/?task={task_pk}'
  response:
    json:
      - id: !int '{prediction_pk}'
        result:
          - value:
              choices:
              - neg
            id: qpQHs3Yy4K
            from_name: label
            to_name: text
            type: choices
    status_code: 200
- id: update_prediction
  name: update_prediction
  request:
    json:
      model_version: 'test1'
    method: PATCH
    url: '{django_live_url}/api/predictions/{prediction_pk}/'
  response:
    status_code: 200
- id: get_prediction_by_id_after_update
  name: get_prediction_by_id_after_update
  request:
    method: GET
    url: '{django_live_url}/api/predictions/{prediction_pk}/'
  response:
    json:
      model_version: 'test1'
    status_code: 200
- id: delete_prediction
  name: delete_prediction
  request:
    method: DELETE
    url: '{django_live_url}/api/predictions/{prediction_pk}/'
  response:
    status_code: 204
- id: prediction_not_found_after_delete
  name: prediction_not_found_after_delete
  request:
    method: GET
    url: '{django_live_url}/api/predictions/{prediction_pk}/'
  response:
    status_code: 404
 
 
---
test_name: change_project_model_version_to_non_existent
strict: false
marks:
- usefixtures:
  - django_live_url
stages:
- id: signup
  type: ref
- id: create_project
  type: ref
- id: create_task
  type: ref
- name: change_project_model_to_non_existent
  request:
    method: PATCH
    url: '{django_live_url}/api/projects/{project_pk}'
    data:
      model_version: "test"
  response:
    status_code: 400
- id: create_prediction
  name: create_prediction
  request:
    json:
      result:
        - value:
            choices:
            - neg
          id: qpQHs3Yy4K
          from_name: label
          to_name: text
          type: choices
          model_version: "test"
      model_version: "test"
      task: '{task_pk}'
    method: POST
    url: '{django_live_url}/api/predictions'
  response:
    save:
      json:
        prediction_pk: id
    status_code: 201
- name: change_project_model_to_existent
  request:
    method: PATCH
    url: '{django_live_url}/api/projects/{project_pk}'
    data:
      model_version: "test"
  response:
    status_code: 200
- name: change_project_model_to_null
  request:
    method: PATCH
    url: '{django_live_url}/api/projects/{project_pk}'
    data:
      model_version: null
  response:
    status_code: 200
 
 
---
test_name: create_prediction_minified_format
strict: false
marks:
- usefixtures:
  - django_live_url
stages:
- id: signup
  type: ref
- id: create_project
  type: ref
- id: create_task
  type: ref
- id: create_prediction
  name: create_prediction
  request:
    json:
      result:
        - value:
            choices:
              - neg
          id: qpQHs3Yy4K
          from_name: label
          to_name: text
          type: choices
      score: 0.987
      model_version: test_model
      task: '{task_pk}'
    method: POST
    url: '{django_live_url}/api/predictions'
  response:
    save:
      json:
        prediction_pk: id
    status_code: 201
- id: get_prediction_by_id
  name: get_prediction_by_id
  request:
    method: GET
    url: '{django_live_url}/api/predictions/{prediction_pk}/'
  response:
    json:
      id: !int '{prediction_pk}'
      result:
        - value:
            choices:
              - neg
          from_name: label
          to_name: text
          type: choices
      score: 0.987
      model_version: test_model
    status_code: 200