Bin
2025-12-16 971a2a12c03b74dd2d7d668b9dbc599f5131bcaf
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
---
test_name: tasks_api_filter
strict: false
marks:
- usefixtures:
  - django_live_url
stages:
- id: signup
  type: ref
- id: create_project
  type: ref
- id: import_task
  type: ref
- name: get list of tasks
  request:
    method: GET
    url: '{django_live_url}/api/tasks?project={project_pk}'
  response:
    status_code: 200
- id: create_annotation
  type: ref
- name: get task by id from data manager
  request:
    method: GET
    url: '{django_live_url}/api/tasks/{task_pk}?project={project_pk}'
  response:
    status_code: 200
    save:
      json:
        annotation_id: id
    json:
      annotations:
        - completed_by:
            email: test_suites_user@heartex.com
 
- name: create_annotation_with_empty_result
  request:
    url: "{django_live_url}/api/tasks/{task_pk}/annotations"
    json:
      lead_time: 4.134
      project: !int "{project_pk}"
      result: []
    method: POST
    headers:
      content-type: application/json
  response:
    status_code: 201
    save:
      json:
        empty_ano_id: "id"
 
- name: create_annotation_with_two_results
  request:
    url: "{django_live_url}/api/tasks/{task_pk}/annotations"
    json:
      lead_time: 4.134
      project: !int "{project_pk}"
      result:
        - value:
            choices:
              - neg
          id: wMmVN7k_47
          from_name: sentiment
          to_name: text
          type: choices
        - value:
            choices:
              - pos
          id: wMmVN7k_48
          from_name: sentiment
          to_name: text
          type: choices
    method: POST
    headers:
      content-type: application/json
  response:
    status_code: 201
    save:
      json:
        annotation_pk: "id"
 
- name: create view with filter annotations_results empty
  request:
    method: POST
    url: '{django_live_url}/api/dm/views'
    json:
      project: '{project_pk}'
      data:
        filters:
          conjunction: and
          items:
            - filter: "filter:tasks:annotations_results"
              operator: empty
              value: "true"
              type: String
  response:
    status_code: 201
    save:
      json:
        view_pk: id
 
- name: get view with filter annotations_results empty
  request:
    method: GET
    url: '{django_live_url}/api/tasks?page=1&page_size=30&view={view_pk}&interaction=filter&project={project_pk}'
  response:
    status_code: 200
    json:
      total: 1
 
- name: set filter to annotations_results not empty
  request:
    method: PUT
    url: '{django_live_url}/api/dm/views/{view_pk}?interaction=filter&project={project_pk}'
    json:
      project: '{project_pk}'
      data:
        filters:
          conjunction: and
          items:
            - filter: "filter:tasks:annotations_results"
              operator: empty
              value: "false"
              type: String
  response:
    status_code: 200
 
- name: get annotations_results not empty view
  request:
    method: GET
    url: '{django_live_url}/api/tasks?page=1&page_size=30&view={view_pk}&interaction=filter&project={project_pk}'
  response:
    status_code: 200
    json:
      total: 0
 
- name: delete annotation
  request:
    method: DELETE
    url: '{django_live_url}/api/annotations/{annotation_pk}'
  response:
    status_code: 204
 
- name: change filter to empty true again
  request:
    method: PUT
    url: '{django_live_url}/api/dm/views/{view_pk}?interaction=filter&project={project_pk}'
    json:
      project: '{project_pk}'
      data:
        filters:
          conjunction: and
          items:
            - filter: "filter:tasks:annotations_results"
              operator: empty
              value: "true"
              type: String
  response:
    status_code: 200
 
 
- name: check empty count again
  request:
    method: GET
    url: '{django_live_url}/api/tasks?page=1&page_size=30&view={view_pk}&interaction=filter&project={project_pk}'
  response:
    status_code: 200
    json:
      total: 1
 
- name: change filter to not empty
  request:
    method: PUT
    url: '{django_live_url}/api/dm/views/{view_pk}?interaction=filter&project={project_pk}'
    json:
      project: '{project_pk}'
      data:
        filters:
          conjunction: and
          items:
            - filter: "filter:tasks:annotations_results"
              operator: empty
              value: "false"
              type: String
  response:
    status_code: 200
 
- name: get the new view
  request:
    method: GET
    url: '{django_live_url}/api/tasks?page=1&page_size=30&view={view_pk}&interaction=filter&project={project_pk}'
  response:
    status_code: 200
    json:
      total: 0
 
- name: change filter to equal
  request:
    method: PUT
    url: '{django_live_url}/api/dm/views/{view_pk}?interaction=filter&project={project_pk}'
    json:
      project: '{project_pk}'
      data:
        filters:
          conjunction: or
          items:
            - filter: "filter:tasks:annotations_results"
              operator: equal
              value: "123"
              type: String
 
            - filter: "filter:tasks:annotations_results"
              operator: not_equal
              value: "456"
              type: String
 
            - filter: "filter:tasks:predictions_results"
              operator: equal
              value: "789"
              type: String
 
            - filter: "filter:tasks:predictions_results"
              operator: not_equal
              value: "000"
              type: String
  response:
    status_code: 200
 
- name: get annotations_results/predictions_results equal/not equal
  request:
    method: GET
    url: '{django_live_url}/api/tasks?page=1&page_size=30&view={view_pk}&interaction=filter&project={project_pk}'
  response:
    status_code: 200
    json:
      total: 1