Commit de977635851555d7706f02b5f9a5152fde1751e1

Authored by mykhaly
1 parent 2b97a9fa

Rename 'complaint' -> 'claim'

Rename few methods as in complaints tutorial
... ... @@ -412,13 +412,13 @@ Library openprocurement_client_helper.py
412 412 Log ${reply}
413 413
414 414 ##############################################################################
415   -# singleItemTenderComplaints
  415 +# singleItemTenderclaims
416 416 ##############################################################################
417 417
418 418 Створити вимогу
419 419 [Documentation] Створює вимогу у статусі "draft"
420   - [Arguments] ${username} ${tender_uaid} ${complaint}
421   - Log ${complaint}
  420 + [Arguments] ${username} ${tender_uaid} ${claim}
  421 + Log ${claim}
422 422 ${tender}= openprocurement_client.Пошук тендера по ідентифікатору
423 423 ... ${username}
424 424 ... ${tender_uaid}
... ... @@ -426,50 +426,53 @@ Library openprocurement_client_helper.py
426 426 ... ${USERS.users['${username}'].client}
427 427 ... create_complaint
428 428 ... ${tender}
429   - ... ${complaint}
  429 + ... ${claim}
430 430 Log ${reply}
431 431 [return] ${reply}
432 432
433 433
434 434 Завантажити документацію до вимоги
435   - [Arguments] ${username} ${tender_uaid} ${complaint} ${document}
  435 + [Arguments] ${username} ${tender_uaid} ${claim} ${document}
436 436 ${tender}= Пошук тендера по ідентифікатору ${username} ${tender_uaid}
437   - ${tender}= set_access_key ${tender} ${complaint.access.token}
438   - ${reply}= Call Method ${USERS.users['${username}'].client} upload_complaint_document ${document} ${tender} ${complaint['data']['id']}
  437 + ${tender}= set_access_key ${tender} ${claim.access.token}
  438 + ${reply}= Call Method ${USERS.users['${username}'].client} upload_complaint_document ${document} ${tender} ${claim['data']['id']}
439 439 Log ${reply}
440 440
441 441
442 442 Подати вимогу
443 443 [Documentation] Переводить вимогу зі статусу "draft" у статус "claim"
444   - [Arguments] ${username} ${tender_uaid} ${complaint} ${confirmation_data}
  444 + [Arguments] ${username} ${tender_uaid} ${claim} ${confirmation_data}
445 445 ${tender}= Пошук тендера по ідентифікатору ${username} ${tender_uaid}
446   - ${tender}= set_access_key ${tender} ${complaint.access.token}
  446 + ${tender}= set_access_key ${tender} ${claim.access.token}
447 447 ${reply}= Call Method ${USERS.users['${username}'].client} patch_complaint ${tender} ${confirmation_data}
448 448 Log ${reply}
449 449
450 450
451 451 Відповісти на вирішену вимогу
452 452 [Documentation] Переводить вимогу зі статусу "claim" у статус "answered"
453   - [Arguments] ${username} ${tender_uaid} ${complaint} ${answer_data}
  453 + [Arguments] ${username} ${tender_uaid} ${claim} ${answer_data}
  454 + Log ${claim}
  455 + Log ${answer_data}
454 456 ${tender}= Пошук тендера по ідентифікатору ${username} ${tender_uaid}
  457 + log ${tender}
455 458 ${reply}= Call Method ${USERS.users['${username}'].client} patch_complaint ${tender} ${answer_data}
456 459 Log ${reply}
457 460
458 461
459 462 Підтвердити вирішення вимоги
460 463 [Documentation] Переводить вимогу зі статусу "answered" у статус "resolved"
461   - [Arguments] ${username} ${tender_uaid} ${complaint} ${confirmation_data}
  464 + [Arguments] ${username} ${tender_uaid} ${claim} ${confirmation_data}
462 465 ${tender}= Пошук тендера по ідентифікатору ${username} ${tender_uaid}
463   - ${tender}= set_access_key ${tender} ${complaint.access.token}
  466 + ${tender}= set_access_key ${tender} ${claim.access.token}
464 467 ${reply}= Call Method ${USERS.users['${username}'].client} patch_complaint ${tender} ${confirmation_data}
465 468 Log ${reply}
466 469
467 470
468 471 Скасувати вимогу
469 472 [Documentation] Переводить вимогу в статус "canceled"
470   - [Arguments] ${username} ${tender_uaid} ${complaint} ${cancellation_data}
  473 + [Arguments] ${username} ${tender_uaid} ${claim} ${cancellation_data}
471 474 ${tender}= Пошук тендера по ідентифікатору ${username} ${tender_uaid}
472   - ${tender}= set_access_key ${tender} ${complaint.access.token}
  475 + ${tender}= set_access_key ${tender} ${claim.access.token}
473 476 ${reply}= Call Method ${USERS.users['${username}'].client} patch_complaint ${tender} ${cancellation_data}
474 477 Log ${reply}
475 478
... ...
... ... @@ -504,6 +504,36 @@ def test_complaint_data():
504 504 })
505 505
506 506
  507 +def test_claim_data():
  508 + return munchify({
  509 + "data": {
  510 + "author": {
  511 + "address": {
  512 + "countryName": u"Україна",
  513 + "countryName_ru": u"Украина",
  514 + "countryName_en": "Ukraine",
  515 + "locality": u"м. Вінниця",
  516 + "postalCode": "21100",
  517 + "region": u"Вінницька область",
  518 + "streetAddress": fake.street_address()
  519 + },
  520 + "contactPoint": {
  521 + "name": fake.name(),
  522 + "telephone": fake.phone_number()
  523 + },
  524 + "identifier": {
  525 + "scheme": u"UA-EDR",
  526 + "id": u"{:08d}".format(fake.pyint()),
  527 + "uri": fake.image_url(width=None, height=None)
  528 + },
  529 + "name": fake.company()
  530 + },
  531 + "description": fake.sentence(nb_words=10, variable_nb_words=True),
  532 + "title": fake.sentence(nb_words=6, variable_nb_words=True)
  533 + }
  534 + })
  535 +
  536 +
507 537 def test_complaint_answer_data(complaint_id):
508 538 return {
509 539 "data": {
... ... @@ -515,16 +545,28 @@ def test_complaint_answer_data(complaint_id):
515 545 }
516 546
517 547
518   -def test_complaint_answer_confirmation_data(complaint_id):
  548 +def test_claim_answer_satisfying_data(claim_id):
519 549 return {
520 550 "data": {
521   - "id": complaint_id,
  551 + "id": claim_id,
522 552 "status": "resolved",
523 553 "satisfied": True
524 554 }
525 555 }
526 556
527 557
  558 +def test_claim_answer_data(claim_id):
  559 + return {
  560 + "data": {
  561 + "status": "answered",
  562 + "resolutionType": "resolved",
  563 + "tendererAction": fake.sentence(nb_words=10, variable_nb_words=True),
  564 + "resolution": fake.sentence(nb_words=15, variable_nb_words=True),
  565 + "id": claim_id
  566 + }
  567 + }
  568 +
  569 +
528 570 def test_cancel_tender_data(cancellation_reason):
529 571 return {
530 572 'data': {
... ... @@ -532,15 +574,17 @@ def test_cancel_tender_data(cancellation_reason):
532 574 }
533 575 }
534 576
535   -def test_cancel_complaint_data(complaint_id, cancellation_reason):
  577 +
  578 +def test_cancel_claim_data(claim_id, cancellation_reason):
536 579 return {
537 580 'data': {
538 581 'cancellationReason': cancellation_reason,
539 582 'status': 'cancelled',
540   - 'id': complaint_id
  583 + 'id': claim_id
541 584 }
542 585 }
543 586
  587 +
544 588 def test_change_cancellation_document_field_data(key, value):
545 589 data = {
546 590 "data": {
... ... @@ -579,10 +623,10 @@ def test_confirm_contract_data(contract_id):
579 623 return data
580 624
581 625
582   -def test_confirm_complaint_data(complaint_id):
  626 +def test_submit_claim_data(claim_id):
583 627 return {
584 628 "data": {
585   - "id": complaint_id,
  629 + "id": claim_id,
586 630 "status": "claim"
587 631 }
588 632 }
... ...
... ... @@ -20,14 +20,15 @@ from .initial_data import (
20 20 test_award_data,
21 21 test_bid_data,
22 22 test_bid_data_meat_tender,
23   - test_cancel_complaint_data,
  23 + test_cancel_claim_data,
24 24 test_cancel_tender_data,
25 25 test_change_cancellation_document_field_data,
  26 + test_claim_answer_data,
  27 + test_claim_data,
26 28 test_confirm_cancellation_data,
27   - test_confirm_complaint_data,
28 29 test_confirm_contract_data,
29 30 test_confirm_supplier_data,
30   - test_complaint_answer_confirmation_data,
  31 + test_claim_answer_satisfying_data,
31 32 test_complaint_answer_data,
32 33 test_complaint_data,
33 34 test_complaint_reply_data,
... ... @@ -41,6 +42,7 @@ from .initial_data import (
41 42 test_meat_tender_data,
42 43 test_question_answer_data,
43 44 test_question_data,
  45 + test_submit_claim_data,
44 46 test_supplier_data,
45 47 test_tender_data,
46 48 test_tender_data_limited,
... ...
... ... @@ -58,15 +58,15 @@ ${broker} Quinta
58 58 ... ${USERS.users['${provider}'].broker}
59 59 ... from-0.12
60 60 [Setup] Дочекатись синхронізації з майданчиком ${provider}
61   - ${complaint}= test_complaint_data
62   - ${complaint_resp}= Викликати для учасника ${provider}
  61 + ${claim}= test_claim_data
  62 + ${claim_resp}= Викликати для учасника ${provider}
63 63 ... Створити вимогу
64 64 ... ${TENDER['TENDER_UAID']}
65   - ... ${complaint}
66   - ${complaint_data}= Create Dictionary complaint=${complaint} complaint_resp=${complaint_resp}
67   - Set To Dictionary ${USERS.users['${provider}']} complaint_data ${complaint_data}
68   - ${COMPLAINT_NUM}= Set variable 0
69   - Set suite variable ${COMPLAINT_NUM}
  65 + ... ${claim}
  66 + ${claim_data}= Create Dictionary claim=${claim} claim_resp=${claim_resp}
  67 + Set To Dictionary ${USERS.users['${provider}']} claim_data ${claim_data}
  68 + ${CLAIM_NUM}= Set variable 0
  69 + Set suite variable ${CLAIM_NUM}
70 70
71 71
72 72 Можливість додати документацію до вимоги про виправлення умов закупівлі
... ... @@ -78,9 +78,9 @@ ${broker} Quinta
78 78 Викликати для учасника ${provider}
79 79 ... Завантажити документацію до вимоги
80 80 ... ${TENDER['TENDER_UAID']}
81   - ... ${USERS.users['${provider}']['complaint_data']['complaint_resp']}
  81 + ... ${USERS.users['${provider}']['claim_data']['claim_resp']}
82 82 ... ${document}
83   - Set To Dictionary ${USERS.users['${provider}']['complaint_data']} document ${document}
  83 + Set To Dictionary ${USERS.users['${provider}']['claim_data']} document ${document}
84 84
85 85 ##############################################################################################
86 86 # ВІДОБРАЖЕННЯ ДЛЯ ГЛЯДАЧА
... ... @@ -93,8 +93,8 @@ ${broker} Quinta
93 93 ... from-0.12
94 94 [Setup] Дочекатись синхронізації з майданчиком ${viewer}
95 95 Звірити поле тендера із значенням ${viewer}
96   - ... ${USERS.users['${provider}'].complaint_data['complaint'].data.author.address.countryName}
97   - ... complaints[${COMPLAINT_NUM}].author.address.countryName
  96 + ... ${USERS.users['${provider}'].claim_data['claim'].data.author.address.countryName}
  97 + ... complaints[${CLAIM_NUM}].author.address.countryName
98 98
99 99
100 100 Відображення назви рос. мовою країни адреси автора вимоги для глядача
... ... @@ -103,8 +103,8 @@ ${broker} Quinta
103 103 ... ${USERS.users['${viewer}'].broker}
104 104 ... from-0.12
105 105 Звірити поле тендера із значенням ${viewer}
106   - ... ${USERS.users['${provider}'].complaint_data['complaint'].data.author.address.countryName_ru}
107   - ... complaints[${COMPLAINT_NUM}].author.address.countryName_ru
  106 + ... ${USERS.users['${provider}'].claim_data['claim'].data.author.address.countryName_ru}
  107 + ... complaints[${CLAIM_NUM}].author.address.countryName_ru
108 108
109 109
110 110 Відображення назви англ. мовою країни адреси автора вимоги для глядача
... ... @@ -113,8 +113,8 @@ ${broker} Quinta
113 113 ... ${USERS.users['${viewer}'].broker}
114 114 ... from-0.12
115 115 Звірити поле тендера із значенням ${viewer}
116   - ... ${USERS.users['${provider}'].complaint_data['complaint'].data.author.address.countryName_en}
117   - ... complaints[${COMPLAINT_NUM}].author.address.countryName_en
  116 + ... ${USERS.users['${provider}'].claim_data['claim'].data.author.address.countryName_en}
  117 + ... complaints[${CLAIM_NUM}].author.address.countryName_en
118 118
119 119
120 120 Відображення міста адреси автора вимоги для глядача
... ... @@ -123,8 +123,8 @@ ${broker} Quinta
123 123 ... ${USERS.users['${viewer}'].broker}
124 124 ... from-0.12
125 125 Звірити поле тендера із значенням ${viewer}
126   - ... ${USERS.users['${provider}'].complaint_data['complaint'].data.author.address.locality}
127   - ... complaints[${COMPLAINT_NUM}].author.address.locality
  126 + ... ${USERS.users['${provider}'].claim_data['claim'].data.author.address.locality}
  127 + ... complaints[${CLAIM_NUM}].author.address.locality
128 128
129 129
130 130 Відображення поштового коду адреси автора вимоги для глядача
... ... @@ -133,8 +133,8 @@ ${broker} Quinta
133 133 ... ${USERS.users['${viewer}'].broker}
134 134 ... from-0.12
135 135 Звірити поле тендера із значенням ${viewer}
136   - ... ${USERS.users['${provider}'].complaint_data['complaint'].data.author.address.postalCode}
137   - ... complaints[${COMPLAINT_NUM}].author.address.postalCode
  136 + ... ${USERS.users['${provider}'].claim_data['claim'].data.author.address.postalCode}
  137 + ... complaints[${CLAIM_NUM}].author.address.postalCode
138 138
139 139
140 140 Відображення області адреси автора вимоги для глядача
... ... @@ -143,8 +143,8 @@ ${broker} Quinta
143 143 ... ${USERS.users['${viewer}'].broker}
144 144 ... from-0.12
145 145 Звірити поле тендера із значенням ${viewer}
146   - ... ${USERS.users['${provider}'].complaint_data['complaint'].data.author.address.region}
147   - ... complaints[${COMPLAINT_NUM}].author.address.region
  146 + ... ${USERS.users['${provider}'].claim_data['claim'].data.author.address.region}
  147 + ... complaints[${CLAIM_NUM}].author.address.region
148 148
149 149
150 150 Відображення вулиці адреси автора вимоги для глядача
... ... @@ -153,8 +153,8 @@ ${broker} Quinta
153 153 ... ${USERS.users['${viewer}'].broker}
154 154 ... from-0.12
155 155 Звірити поле тендера із значенням ${viewer}
156   - ... ${USERS.users['${provider}'].complaint_data['complaint'].data.author.address.streetAddress}
157   - ... complaints[${COMPLAINT_NUM}].author.address.streetAddress
  156 + ... ${USERS.users['${provider}'].claim_data['claim'].data.author.address.streetAddress}
  157 + ... complaints[${CLAIM_NUM}].author.address.streetAddress
158 158
159 159
160 160 Відображення контактного імені автора вимоги для глядача
... ... @@ -163,8 +163,8 @@ ${broker} Quinta
163 163 ... ${USERS.users['${viewer}'].broker}
164 164 ... from-0.12
165 165 Звірити поле тендера із значенням ${viewer}
166   - ... ${USERS.users['${provider}'].complaint_data['complaint'].data.author.contactPoint.name}
167   - ... complaints[${COMPLAINT_NUM}].author.contactPoint.name
  166 + ... ${USERS.users['${provider}'].claim_data['claim'].data.author.contactPoint.name}
  167 + ... complaints[${CLAIM_NUM}].author.contactPoint.name
168 168
169 169
170 170 Відображення контактного телефону автора вимоги для глядача
... ... @@ -173,8 +173,8 @@ ${broker} Quinta
173 173 ... ${USERS.users['${viewer}'].broker}
174 174 ... from-0.12
175 175 Звірити поле тендера із значенням ${viewer}
176   - ... ${USERS.users['${provider}'].complaint_data['complaint'].data.author.contactPoint.telephone}
177   - ... complaints[${COMPLAINT_NUM}].author.contactPoint.telephone
  176 + ... ${USERS.users['${provider}'].claim_data['claim'].data.author.contactPoint.telephone}
  177 + ... complaints[${CLAIM_NUM}].author.contactPoint.telephone
178 178
179 179
180 180 Відображення ідентифікатора автора вимоги для глядача
... ... @@ -183,8 +183,8 @@ ${broker} Quinta
183 183 ... ${USERS.users['${viewer}'].broker}
184 184 ... from-0.12
185 185 Звірити поле тендера із значенням ${viewer}
186   - ... ${USERS.users['${provider}'].complaint_data['complaint'].data.author.identifier.id}
187   - ... complaints[${COMPLAINT_NUM}].author.identifier.id
  186 + ... ${USERS.users['${provider}'].claim_data['claim'].data.author.identifier.id}
  187 + ... complaints[${CLAIM_NUM}].author.identifier.id
188 188
189 189
190 190 Відображення схеми ідентифікації автора вимоги для глядача
... ... @@ -193,8 +193,8 @@ ${broker} Quinta
193 193 ... ${USERS.users['${viewer}'].broker}
194 194 ... from-0.12
195 195 Звірити поле тендера із значенням ${viewer}
196   - ... ${USERS.users['${provider}'].complaint_data['complaint'].data.author.identifier.scheme}
197   - ... complaints[${COMPLAINT_NUM}].author.identifier.scheme
  196 + ... ${USERS.users['${provider}'].claim_data['claim'].data.author.identifier.scheme}
  197 + ... complaints[${CLAIM_NUM}].author.identifier.scheme
198 198
199 199
200 200 Відображення uri ідентифікатора автора вимоги для глядача
... ... @@ -203,8 +203,8 @@ ${broker} Quinta
203 203 ... ${USERS.users['${viewer}'].broker}
204 204 ... from-0.12
205 205 Звірити поле тендера із значенням ${viewer}
206   - ... ${USERS.users['${provider}'].complaint_data['complaint'].data.author.identifier.uri}
207   - ... complaints[${COMPLAINT_NUM}].author.identifier.uri
  206 + ... ${USERS.users['${provider}'].claim_data['claim'].data.author.identifier.uri}
  207 + ... complaints[${CLAIM_NUM}].author.identifier.uri
208 208
209 209
210 210 Відображення імені автора вимоги для глядача
... ... @@ -213,8 +213,8 @@ ${broker} Quinta
213 213 ... ${USERS.users['${viewer}'].broker}
214 214 ... from-0.12
215 215 Звірити поле тендера із значенням ${viewer}
216   - ... ${USERS.users['${provider}'].complaint_data['complaint'].data.author.name}
217   - ... complaints[${COMPLAINT_NUM}].author.name
  216 + ... ${USERS.users['${provider}'].claim_data['claim'].data.author.name}
  217 + ... complaints[${CLAIM_NUM}].author.name
218 218
219 219
220 220 Відображення опису вимоги для глядача
... ... @@ -223,8 +223,8 @@ ${broker} Quinta
223 223 ... ${USERS.users['${viewer}'].broker}
224 224 ... from-0.12
225 225 Звірити поле тендера із значенням ${viewer}
226   - ... ${USERS.users['${provider}'].complaint_data['complaint'].data.description}
227   - ... complaints[${COMPLAINT_NUM}].description
  226 + ... ${USERS.users['${provider}'].claim_data['claim'].data.description}
  227 + ... complaints[${CLAIM_NUM}].description
228 228
229 229
230 230 Відображення заголовку вимоги для глядача
... ... @@ -233,8 +233,8 @@ ${broker} Quinta
233 233 ... ${USERS.users['${viewer}'].broker}
234 234 ... from-0.12
235 235 Звірити поле тендера із значенням ${viewer}
236   - ... ${USERS.users['${provider}'].complaint_data['complaint'].data.title}
237   - ... complaints[${COMPLAINT_NUM}].title
  236 + ... ${USERS.users['${provider}'].claim_data['claim'].data.title}
  237 + ... complaints[${CLAIM_NUM}].title
238 238
239 239
240 240 Відображення заголовку документації вимоги для глядача
... ... @@ -244,8 +244,8 @@ ${broker} Quinta
244 244 ... from-0.12
245 245 ${doc_num}= Set variable 0
246 246 Звірити поле тендера із значенням ${viewer}
247   - ... ${USERS.users['${provider}'].complaint_data['document']}
248   - ... complaints[${COMPLAINT_NUM}].documents[${doc_num}].title
  247 + ... ${USERS.users['${provider}'].claim_data['document']}
  248 + ... complaints[${CLAIM_NUM}].documents[${doc_num}].title
249 249
250 250 ##############################################################################################
251 251 # ВІДОБРАЖЕННЯ ДЛЯ КОРИСТУВАЧА
... ... @@ -258,8 +258,8 @@ ${broker} Quinta
258 258 ... from-0.12
259 259 [Setup] Дочекатись синхронізації з майданчиком ${provider}
260 260 Звірити поле тендера із значенням ${provider}
261   - ... ${USERS.users['${provider}'].complaint_data['complaint'].data.author.address.countryName}
262   - ... complaints[${COMPLAINT_NUM}].author.address.countryName
  261 + ... ${USERS.users['${provider}'].claim_data['claim'].data.author.address.countryName}
  262 + ... complaints[${CLAIM_NUM}].author.address.countryName
263 263
264 264
265 265 Відображення назви рос. мовою країни адреси автора вимоги для користувача
... ... @@ -268,8 +268,8 @@ ${broker} Quinta
268 268 ... ${USERS.users['${provider}'].broker}
269 269 ... from-0.12
270 270 Звірити поле тендера із значенням ${provider}
271   - ... ${USERS.users['${provider}'].complaint_data['complaint'].data.author.address.countryName_ru}
272   - ... complaints[${COMPLAINT_NUM}].author.address.countryName_ru
  271 + ... ${USERS.users['${provider}'].claim_data['claim'].data.author.address.countryName_ru}
  272 + ... complaints[${CLAIM_NUM}].author.address.countryName_ru
273 273
274 274
275 275 Відображення назви англ. мовою країни адреси автора вимоги для користувача
... ... @@ -278,8 +278,8 @@ ${broker} Quinta
278 278 ... ${USERS.users['${provider}'].broker}
279 279 ... from-0.12
280 280 Звірити поле тендера із значенням ${provider}
281   - ... ${USERS.users['${provider}'].complaint_data['complaint'].data.author.address.countryName_en}
282   - ... complaints[${COMPLAINT_NUM}].author.address.countryName_en
  281 + ... ${USERS.users['${provider}'].claim_data['claim'].data.author.address.countryName_en}
  282 + ... complaints[${CLAIM_NUM}].author.address.countryName_en
283 283
284 284
285 285 Відображення міста адреси автора вимоги для користувача
... ... @@ -288,8 +288,8 @@ ${broker} Quinta
288 288 ... ${USERS.users['${provider}'].broker}
289 289 ... from-0.12
290 290 Звірити поле тендера із значенням ${provider}
291   - ... ${USERS.users['${provider}'].complaint_data['complaint'].data.author.address.locality}
292   - ... complaints[${COMPLAINT_NUM}].author.address.locality
  291 + ... ${USERS.users['${provider}'].claim_data['claim'].data.author.address.locality}
  292 + ... complaints[${CLAIM_NUM}].author.address.locality
293 293
294 294
295 295 Відображення поштового коду адреси автора вимоги для користувача
... ... @@ -298,8 +298,8 @@ ${broker} Quinta
298 298 ... ${USERS.users['${provider}'].broker}
299 299 ... from-0.12
300 300 Звірити поле тендера із значенням ${provider}
301   - ... ${USERS.users['${provider}'].complaint_data['complaint'].data.author.address.postalCode}
302   - ... complaints[${COMPLAINT_NUM}].author.address.postalCode
  301 + ... ${USERS.users['${provider}'].claim_data['claim'].data.author.address.postalCode}
  302 + ... complaints[${CLAIM_NUM}].author.address.postalCode
303 303
304 304
305 305 Відображення області адреси автора вимоги для користувача
... ... @@ -308,8 +308,8 @@ ${broker} Quinta
308 308 ... ${USERS.users['${provider}'].broker}
309 309 ... from-0.12
310 310 Звірити поле тендера із значенням ${provider}
311   - ... ${USERS.users['${provider}'].complaint_data['complaint'].data.author.address.region}
312   - ... complaints[${COMPLAINT_NUM}].author.address.region
  311 + ... ${USERS.users['${provider}'].claim_data['claim'].data.author.address.region}
  312 + ... complaints[${CLAIM_NUM}].author.address.region
313 313
314 314
315 315 Відображення вулиці адреси автора вимоги для користувача
... ... @@ -318,8 +318,8 @@ ${broker} Quinta
318 318 ... ${USERS.users['${provider}'].broker}
319 319 ... from-0.12
320 320 Звірити поле тендера із значенням ${provider}
321   - ... ${USERS.users['${provider}'].complaint_data['complaint'].data.author.address.streetAddress}
322   - ... complaints[${COMPLAINT_NUM}].author.address.streetAddress
  321 + ... ${USERS.users['${provider}'].claim_data['claim'].data.author.address.streetAddress}
  322 + ... complaints[${CLAIM_NUM}].author.address.streetAddress
323 323
324 324
325 325 Відображення контактного імені автора вимоги для користувача
... ... @@ -328,8 +328,8 @@ ${broker} Quinta
328 328 ... ${USERS.users['${provider}'].broker}
329 329 ... from-0.12
330 330 Звірити поле тендера із значенням ${provider}
331   - ... ${USERS.users['${provider}'].complaint_data['complaint'].data.author.contactPoint.name}
332   - ... complaints[${COMPLAINT_NUM}].author.contactPoint.name
  331 + ... ${USERS.users['${provider}'].claim_data['claim'].data.author.contactPoint.name}
  332 + ... complaints[${CLAIM_NUM}].author.contactPoint.name
333 333
334 334
335 335 Відображення контактного телефону автора вимоги для користувача
... ... @@ -338,8 +338,8 @@ ${broker} Quinta
338 338 ... ${USERS.users['${provider}'].broker}
339 339 ... from-0.12
340 340 Звірити поле тендера із значенням ${provider}
341   - ... ${USERS.users['${provider}'].complaint_data['complaint'].data.author.contactPoint.telephone}
342   - ... complaints[${COMPLAINT_NUM}].author.contactPoint.telephone
  341 + ... ${USERS.users['${provider}'].claim_data['claim'].data.author.contactPoint.telephone}
  342 + ... complaints[${CLAIM_NUM}].author.contactPoint.telephone
343 343
344 344
345 345 Відображення ідентифікатора автора вимоги для користувача
... ... @@ -348,8 +348,8 @@ ${broker} Quinta
348 348 ... ${USERS.users['${provider}'].broker}
349 349 ... from-0.12
350 350 Звірити поле тендера із значенням ${provider}
351   - ... ${USERS.users['${provider}'].complaint_data['complaint'].data.author.identifier.id}
352   - ... complaints[${COMPLAINT_NUM}].author.identifier.id
  351 + ... ${USERS.users['${provider}'].claim_data['claim'].data.author.identifier.id}
  352 + ... complaints[${CLAIM_NUM}].author.identifier.id
353 353
354 354
355 355 Відображення схеми ідентифікації автора вимоги для користувача
... ... @@ -358,8 +358,8 @@ ${broker} Quinta
358 358 ... ${USERS.users['${provider}'].broker}
359 359 ... from-0.12
360 360 Звірити поле тендера із значенням ${provider}
361   - ... ${USERS.users['${provider}'].complaint_data['complaint'].data.author.identifier.scheme}
362   - ... complaints[${COMPLAINT_NUM}].author.identifier.scheme
  361 + ... ${USERS.users['${provider}'].claim_data['claim'].data.author.identifier.scheme}
  362 + ... complaints[${CLAIM_NUM}].author.identifier.scheme
363 363
364 364
365 365 Відображення uri ідентифікатора автора вимоги для користувача
... ... @@ -368,8 +368,8 @@ ${broker} Quinta
368 368 ... ${USERS.users['${provider}'].broker}
369 369 ... from-0.12
370 370 Звірити поле тендера із значенням ${provider}
371   - ... ${USERS.users['${provider}'].complaint_data['complaint'].data.author.identifier.uri}
372   - ... complaints[${COMPLAINT_NUM}].author.identifier.uri
  371 + ... ${USERS.users['${provider}'].claim_data['claim'].data.author.identifier.uri}
  372 + ... complaints[${CLAIM_NUM}].author.identifier.uri
373 373
374 374
375 375 Відображення імені автора вимоги для користувача
... ... @@ -378,8 +378,8 @@ ${broker} Quinta
378 378 ... ${USERS.users['${provider}'].broker}
379 379 ... from-0.12
380 380 Звірити поле тендера із значенням ${provider}
381   - ... ${USERS.users['${provider}'].complaint_data['complaint'].data.author.name}
382   - ... complaints[${COMPLAINT_NUM}].author.name
  381 + ... ${USERS.users['${provider}'].claim_data['claim'].data.author.name}
  382 + ... complaints[${CLAIM_NUM}].author.name
383 383
384 384
385 385 Відображення опису вимоги для користувача
... ... @@ -388,8 +388,8 @@ ${broker} Quinta
388 388 ... ${USERS.users['${provider}'].broker}
389 389 ... from-0.12
390 390 Звірити поле тендера із значенням ${provider}
391   - ... ${USERS.users['${provider}'].complaint_data['complaint'].data.description}
392   - ... complaints[${COMPLAINT_NUM}].description
  391 + ... ${USERS.users['${provider}'].claim_data['claim'].data.description}
  392 + ... complaints[${CLAIM_NUM}].description
393 393
394 394
395 395 Відображення заголовку вимоги для користувача
... ... @@ -398,8 +398,8 @@ ${broker} Quinta
398 398 ... ${USERS.users['${provider}'].broker}
399 399 ... from-0.12
400 400 Звірити поле тендера із значенням ${provider}
401   - ... ${USERS.users['${provider}'].complaint_data['complaint'].data.title}
402   - ... complaints[${COMPLAINT_NUM}].title
  401 + ... ${USERS.users['${provider}'].claim_data['claim'].data.title}
  402 + ... complaints[${CLAIM_NUM}].title
403 403
404 404
405 405 Відображення заголовку документації вимоги для користувача
... ... @@ -409,8 +409,8 @@ ${broker} Quinta
409 409 ... from-0.12
410 410 ${doc_num}= Set variable 0
411 411 Звірити поле тендера із значенням ${provider}
412   - ... ${USERS.users['${provider}'].complaint_data['document']}
413   - ... complaints[${COMPLAINT_NUM}].documents[${doc_num}].title
  412 + ... ${USERS.users['${provider}'].claim_data['document']}
  413 + ... complaints[${CLAIM_NUM}].documents[${doc_num}].title
414 414
415 415 ##############################################################################################
416 416 # МОЖЛИВІСТЬ
... ... @@ -421,13 +421,12 @@ ${broker} Quinta
421 421 ... provider
422 422 ... ${USERS.users['${provider}'].broker}
423 423 ... from-0.12
424   - [Setup] Дочекатись синхронізації з майданчиком ${provider}
425   - ${confrimation_data}= test_confirm_complaint_data ${USERS.users['${provider}']['complaint_data']['complaint_resp']['data']['id']}
  424 + ${confrimation_data}= test_submit_claim_data ${USERS.users['${provider}']['claim_data']['claim_resp']['data']['id']}
426 425 Log ${confrimation_data}
427 426 Викликати для учасника ${provider}
428 427 ... Подати вимогу
429 428 ... ${TENDER['TENDER_UAID']}
430   - ... ${USERS.users['${provider}']['complaint_data']['complaint_resp']}
  429 + ... ${USERS.users['${provider}']['claim_data']['claim_resp']}
431 430 ... ${confrimation_data}
432 431
433 432 ##############################################################################################
... ... @@ -442,7 +441,7 @@ ${broker} Quinta
442 441 [Setup] Дочекатись синхронізації з майданчиком ${viewer}
443 442 Звірити поле тендера із значенням ${provider}
444 443 ... claim
445   - ... complaints[${COMPLAINT_NUM}].status
  444 + ... complaints[${CLAIM_NUM}].status
446 445
447 446 ##############################################################################################
448 447 # ВІДОБРАЖЕННЯ ДЛЯ КОРИСТУВАЧА
... ... @@ -456,7 +455,7 @@ ${broker} Quinta
456 455 [Setup] Дочекатись синхронізації з майданчиком ${provider}
457 456 Звірити поле тендера із значенням ${provider}
458 457 ... claim
459   - ... complaints[${COMPLAINT_NUM}].status
  458 + ... complaints[${CLAIM_NUM}].status
460 459
461 460 ##############################################################################################
462 461 # МОЖЛИВІСТЬ
... ... @@ -467,15 +466,15 @@ ${broker} Quinta
467 466 ... tender_owner
468 467 ... ${USERS.users['${tender_owner}'].broker}
469 468 ... from-0.12
470   - ${answer_data}= test_complaint_answer_data ${USERS.users['${provider}']['complaint_data']['complaint_resp']['data']['id']}
  469 + ${answer_data}= test_claim_answer_data ${USERS.users['${provider}']['claim_data']['claim_resp']['data']['id']}
471 470 Log ${answer_data}
472 471 Викликати для учасника ${tender_owner}
473 472 ... Відповісти на вирішену вимогу
474 473 ... ${TENDER['TENDER_UAID']}
475   - ... ${USERS.users['${provider}']['complaint_data']['complaint_resp']}
  474 + ... ${USERS.users['${provider}']['claim_data']['claim_resp']}
476 475 ... ${answer_data}
477   - ${complaint_data}= Create Dictionary complaint_answer=${answer_data}
478   - Set To Dictionary ${USERS.users['${tender_owner}']} complaint_data ${complaint_data}
  476 + ${claim_data}= Create Dictionary claim_answer=${answer_data}
  477 + Set To Dictionary ${USERS.users['${tender_owner}']} claim_data ${claim_data}
479 478
480 479 ##############################################################################################
481 480 # ВІДОБРАЖЕННЯ ДЛЯ ГЛЯДАЧА
... ... @@ -488,8 +487,8 @@ ${broker} Quinta
488 487 ... from-0.12
489 488 [Setup] Дочекатись синхронізації з майданчиком ${viewer}
490 489 Звірити поле тендера із значенням ${viewer}
491   - ... ${USERS.users['${tender_owner}'].complaint_data['complaint_answer']['data']['status']}
492   - ... complaints[${COMPLAINT_NUM}].status
  490 + ... ${USERS.users['${tender_owner}'].claim_data['claim_answer']['data']['status']}
  491 + ... complaints[${CLAIM_NUM}].status
493 492
494 493
495 494 Відображення типу вирішення вимоги для глядача
... ... @@ -498,8 +497,8 @@ ${broker} Quinta
498 497 ... ${USERS.users['${viewer}'].broker}
499 498 ... from-0.12
500 499 Звірити поле тендера із значенням ${viewer}
501   - ... ${USERS.users['${tender_owner}'].complaint_data['complaint_answer']['data']['resolutionType']}
502   - ... complaints[${COMPLAINT_NUM}].resolutionType
  500 + ... ${USERS.users['${tender_owner}'].claim_data['claim_answer']['data']['resolutionType']}
  501 + ... complaints[${CLAIM_NUM}].resolutionType
503 502
504 503
505 504 Відображення вирішення вимоги для глядача
... ... @@ -508,8 +507,8 @@ ${broker} Quinta
508 507 ... ${USERS.users['${viewer}'].broker}
509 508 ... from-0.12
510 509 Звірити поле тендера із значенням ${viewer}
511   - ... ${USERS.users['${tender_owner}'].complaint_data['complaint_answer']['data']['resolution']}
512   - ... complaints[${COMPLAINT_NUM}].resolution
  510 + ... ${USERS.users['${tender_owner}'].claim_data['claim_answer']['data']['resolution']}
  511 + ... complaints[${CLAIM_NUM}].resolution
513 512
514 513 ##############################################################################################
515 514 # ВІДОБРАЖЕННЯ ДЛЯ КОРИСТУВАЧА
... ... @@ -522,8 +521,8 @@ ${broker} Quinta
522 521 ... from-0.12
523 522 [Setup] Дочекатись синхронізації з майданчиком ${provider}
524 523 Звірити поле тендера із значенням ${provider}
525   - ... ${USERS.users['${tender_owner}'].complaint_data['complaint_answer']['data']['status']}
526   - ... complaints[${COMPLAINT_NUM}].status
  524 + ... ${USERS.users['${tender_owner}'].claim_data['claim_answer']['data']['status']}
  525 + ... complaints[${CLAIM_NUM}].status
527 526
528 527
529 528 Відображення типу вирішення вимоги для користувача
... ... @@ -532,8 +531,8 @@ ${broker} Quinta
532 531 ... ${USERS.users['${provider}'].broker}
533 532 ... from-0.12
534 533 Звірити поле тендера із значенням ${provider}
535   - ... ${USERS.users['${tender_owner}'].complaint_data['complaint_answer']['data']['resolutionType']}
536   - ... complaints[${COMPLAINT_NUM}].resolutionType
  534 + ... ${USERS.users['${tender_owner}'].claim_data['claim_answer']['data']['resolutionType']}
  535 + ... complaints[${CLAIM_NUM}].resolutionType
537 536
538 537
539 538 Відображення вирішення вимоги для користувача
... ... @@ -542,8 +541,8 @@ ${broker} Quinta
542 541 ... ${USERS.users['${provider}'].broker}
543 542 ... from-0.12
544 543 Звірити поле тендера із значенням ${provider}
545   - ... ${USERS.users['${tender_owner}'].complaint_data['complaint_answer']['data']['resolution']}
546   - ... complaints[${COMPLAINT_NUM}].resolution
  544 + ... ${USERS.users['${tender_owner}'].claim_data['claim_answer']['data']['resolution']}
  545 + ... complaints[${CLAIM_NUM}].resolution
547 546
548 547 ##############################################################################################
549 548 # МОЖЛИВІСТЬ
... ... @@ -554,15 +553,15 @@ ${broker} Quinta
554 553 ... provider
555 554 ... ${USERS.users['${provider}'].broker}
556 555 ... from-0.12
557   - ${confirmation_data}= test_complaint_answer_confirmation_data
558   - ... ${USERS.users['${provider}']['complaint_data']['complaint_resp']['data']['id']}
  556 + ${confirmation_data}= test_claim_answer_satisfying_data
  557 + ... ${USERS.users['${provider}']['claim_data']['claim_resp']['data']['id']}
559 558 Log ${confirmation_data}
560 559 Викликати для учасника ${provider}
561 560 ... Підтвердити вирішення вимоги
562 561 ... ${TENDER['TENDER_UAID']}
563   - ... ${USERS.users['${provider}']['complaint_data']['complaint_resp']}
  562 + ... ${USERS.users['${provider}']['claim_data']['claim_resp']}
564 563 ... ${confirmation_data}
565   - Set To Dictionary ${USERS.users['${provider}']['complaint_data']} complaint_answer_confirm ${confirmation_data}
  564 + Set To Dictionary ${USERS.users['${provider}']['claim_data']} claim_answer_confirm ${confirmation_data}
566 565
567 566 ##############################################################################################
568 567 # ВІДОБРАЖЕННЯ ДЛЯ ГЛЯДАЧА
... ... @@ -575,8 +574,8 @@ ${broker} Quinta
575 574 ... from-0.12
576 575 [Setup] Дочекатись синхронізації з майданчиком ${viewer}
577 576 Звірити поле тендера із значенням ${viewer}
578   - ... ${USERS.users['${provider}'].complaint_data['complaint_answer_confirm']['data']['status']}
579   - ... complaints[${COMPLAINT_NUM}].status
  577 + ... ${USERS.users['${provider}'].claim_data['claim_answer_confirm']['data']['status']}
  578 + ... complaints[${CLAIM_NUM}].status
580 579
581 580
582 581 Відображення задоволення вимоги для глядача
... ... @@ -585,8 +584,8 @@ ${broker} Quinta
585 584 ... ${USERS.users['${viewer}'].broker}
586 585 ... from-0.12
587 586 Звірити поле тендера із значенням ${viewer}
588   - ... ${USERS.users['${provider}'].complaint_data['complaint_answer_confirm']['data']['satisfied']}
589   - ... complaints[${COMPLAINT_NUM}].satisfied
  587 + ... ${USERS.users['${provider}'].claim_data['claim_answer_confirm']['data']['satisfied']}
  588 + ... complaints[${CLAIM_NUM}].satisfied
590 589
591 590 ##############################################################################################
592 591 # ВІДОБРАЖЕННЯ ДЛЯ КОРИСТУВАЧА
... ... @@ -599,8 +598,8 @@ ${broker} Quinta
599 598 ... from-0.12
600 599 [Setup] Дочекатись синхронізації з майданчиком ${provider}
601 600 Звірити поле тендера із значенням ${provider}
602   - ... ${USERS.users['${provider}'].complaint_data['complaint_answer_confirm']['data']['status']}
603   - ... complaints[${COMPLAINT_NUM}].status
  601 + ... ${USERS.users['${provider}'].claim_data['claim_answer_confirm']['data']['status']}
  602 + ... complaints[${CLAIM_NUM}].status
604 603
605 604
606 605 Відображення задоволення вимоги для користувача
... ... @@ -609,8 +608,8 @@ ${broker} Quinta
609 608 ... ${USERS.users['${provider}'].broker}
610 609 ... from-0.12
611 610 Звірити поле тендера із значенням ${provider}
612   - ... ${USERS.users['${provider}'].complaint_data['complaint_answer_confirm']['data']['satisfied']}
613   - ... complaints[${COMPLAINT_NUM}].satisfied
  611 + ... ${USERS.users['${provider}'].claim_data['claim_answer_confirm']['data']['satisfied']}
  612 + ... complaints[${CLAIM_NUM}].satisfied
614 613
615 614
616 615 Можливість створити і скасувати вимогу про виправлення умов закупівлі
... ... @@ -618,26 +617,26 @@ ${broker} Quinta
618 617 ... provider
619 618 ... ${USERS.users['${provider}'].broker}
620 619 ... from-0.12
621   - ${complaint}= test_complaint_data
622   - ${complaint_resp}= Викликати для учасника ${provider}
  620 + ${claim}= test_claim_data
  621 + ${claim_resp}= Викликати для учасника ${provider}
623 622 ... Створити вимогу
624 623 ... ${TENDER['TENDER_UAID']}
625   - ... ${complaint}
626   - ${complaint_data2}= Create Dictionary complaint=${complaint} complaint_resp=${complaint_resp}
627   - Log ${complaint_data2}
628   - Set To Dictionary ${USERS.users['${provider}']} complaint_data2 ${complaint_data2}
629   - ${COMPLAINT_NUM}= Set variable 1
630   - Set suite variable ${COMPLAINT_NUM}
  624 + ... ${claim}
  625 + ${claim_data2}= Create Dictionary claim=${claim} claim_resp=${claim_resp}
  626 + Log ${claim_data2}
  627 + Set To Dictionary ${USERS.users['${provider}']} claim_data2 ${claim_data2}
  628 + ${CLAIM_NUM}= Set variable 1
  629 + Set suite variable ${CLAIM_NUM}
631 630
632 631
633 632 ${cancellation_reason}= Set variable prosto tak :)
634   - ${cancellation_data}= test_cancel_complaint_data ${USERS.users['${provider}']['complaint_data2']['complaint_resp']['data']['id']} ${cancellation_reason}
  633 + ${cancellation_data}= test_cancel_claim_data ${USERS.users['${provider}']['claim_data2']['claim_resp']['data']['id']} ${cancellation_reason}
635 634 Викликати для учасника ${provider}
636 635 ... Скасувати вимогу
637 636 ... ${TENDER['TENDER_UAID']}
638   - ... ${USERS.users['${provider}']['complaint_data2']['complaint_resp']}
  637 + ... ${USERS.users['${provider}']['claim_data2']['claim_resp']}
639 638 ... ${cancellation_data}
640   - Set To Dictionary ${USERS.users['${provider}'].complaint_data2} cancellation ${cancellation_data}
  639 + Set To Dictionary ${USERS.users['${provider}'].claim_data2} cancellation ${cancellation_data}
641 640
642 641 ##############################################################################################
643 642 # ВІДОБРАЖЕННЯ ДЛЯ ГЛЯДАЧА
... ... @@ -650,8 +649,8 @@ ${broker} Quinta
650 649 ... from-0.12
651 650 [Setup] Дочекатись синхронізації з майданчиком ${viewer}
652 651 Звірити поле тендера із значенням ${viewer}
653   - ... ${USERS.users['${provider}'].complaint_data2['cancellation']['data']['status']}
654   - ... complaints[${COMPLAINT_NUM}].status
  652 + ... ${USERS.users['${provider}'].claim_data2['cancellation']['data']['status']}
  653 + ... complaints[${CLAIM_NUM}].status
655 654
656 655
657 656 Відображення причини скасування вимоги для глядача
... ... @@ -660,8 +659,8 @@ ${broker} Quinta
660 659 ... ${USERS.users['${viewer}'].broker}
661 660 ... from-0.12
662 661 Звірити поле тендера із значенням ${provider}
663   - ... ${USERS.users['${provider}'].complaint_data2['cancellation']['data']['cancellationReason']}
664   - ... complaints[${COMPLAINT_NUM}].cancellationReason
  662 + ... ${USERS.users['${provider}'].claim_data2['cancellation']['data']['cancellationReason']}
  663 + ... complaints[${CLAIM_NUM}].cancellationReason
665 664
666 665 ##############################################################################################
667 666 # ВІДОБРАЖЕННЯ ДЛЯ КОРИСТУВАЧА
... ... @@ -674,8 +673,8 @@ ${broker} Quinta
674 673 ... from-0.12
675 674 [Setup] Дочекатись синхронізації з майданчиком ${provider}
676 675 Звірити поле тендера із значенням ${provider}
677   - ... ${USERS.users['${provider}'].complaint_data2['cancellation']['data']['status']}
678   - ... complaints[${COMPLAINT_NUM}].status
  676 + ... ${USERS.users['${provider}'].claim_data2['cancellation']['data']['status']}
  677 + ... complaints[${CLAIM_NUM}].status
679 678
680 679
681 680 Відображення причини скасування вимоги для користувача
... ... @@ -684,8 +683,8 @@ ${broker} Quinta
684 683 ... ${USERS.users['${provider}'].broker}
685 684 ... from-0.12
686 685 Звірити поле тендера із значенням ${provider}
687   - ... ${USERS.users['${provider}'].complaint_data2['cancellation']['data']['cancellationReason']}
688   - ... complaints[${COMPLAINT_NUM}].cancellationReason
  686 + ... ${USERS.users['${provider}'].claim_data2['cancellation']['data']['cancellationReason']}
  687 + ... complaints[${CLAIM_NUM}].cancellationReason
689 688
690 689
691 690
... ... @@ -698,35 +697,35 @@ ${broker} Quinta
698 697 ... provider
699 698 ... ${USERS.users['${provider}'].broker}
700 699 ... from-0.12
701   - ${complaint}= test_complaint_data
702   - ${complaint_resp}= Викликати для учасника ${provider}
  700 + ${claim}= test_claim_data
  701 + ${claim_resp}= Викликати для учасника ${provider}
703 702 ... Створити вимогу
704 703 ... ${TENDER['TENDER_UAID']}
705   - ... ${complaint}
706   - ${complaint_data3}= Create Dictionary complaint=${complaint} complaint_resp=${complaint_resp}
707   - Log ${complaint_data3}
708   - Set To Dictionary ${USERS.users['${provider}']} complaint_data3 ${complaint_data3}
709   - ${COMPLAINT_NUM}= Set variable 2
710   - Set suite variable ${COMPLAINT_NUM}
  704 + ... ${claim}
  705 + ${claim_data3}= Create Dictionary claim=${claim} claim_resp=${claim_resp}
  706 + Log ${claim_data3}
  707 + Set To Dictionary ${USERS.users['${provider}']} claim_data3 ${claim_data3}
  708 + ${CLAIM_NUM}= Set variable 2
  709 + Set suite variable ${CLAIM_NUM}
711 710
712 711
713   - ${confrimation_data}= test_confirm_complaint_data ${USERS.users['${provider}']['complaint_data3']['complaint_resp']['data']['id']}
  712 + ${confrimation_data}= test_submit_claim_data ${USERS.users['${provider}']['claim_data3']['claim_resp']['data']['id']}
714 713 Log ${confrimation_data}
715 714 Викликати для учасника ${provider}
716 715 ... Подати вимогу
717 716 ... ${TENDER['TENDER_UAID']}
718   - ... ${USERS.users['${provider}']['complaint_data3']['complaint_resp']}
  717 + ... ${USERS.users['${provider}']['claim_data3']['claim_resp']}
719 718 ... ${confrimation_data}
720 719
721 720
722 721 ${cancellation_reason}= Set variable prosto tak :)
723   - ${cancellation_data}= test_cancel_complaint_data ${USERS.users['${provider}']['complaint_data3']['complaint_resp']['data']['id']} ${cancellation_reason}
  722 + ${cancellation_data}= test_cancel_claim_data ${USERS.users['${provider}']['claim_data3']['claim_resp']['data']['id']} ${cancellation_reason}
724 723 Викликати для учасника ${provider}
725 724 ... Скасувати вимогу
726 725 ... ${TENDER['TENDER_UAID']}
727   - ... ${USERS.users['${provider}']['complaint_data3']['complaint_resp']}
  726 + ... ${USERS.users['${provider}']['claim_data3']['claim_resp']}
728 727 ... ${cancellation_data}
729   - Set To Dictionary ${USERS.users['${provider}'].complaint_data3} cancellation ${cancellation_data}
  728 + Set To Dictionary ${USERS.users['${provider}'].claim_data3} cancellation ${cancellation_data}
730 729
731 730 ##############################################################################################
732 731 # ВІДОБРАЖЕННЯ ДЛЯ ГЛЯДАЧА
... ... @@ -739,8 +738,8 @@ ${broker} Quinta
739 738 ... from-0.12
740 739 [Setup] Дочекатись синхронізації з майданчиком ${viewer}
741 740 Звірити поле тендера із значенням ${viewer}
742   - ... ${USERS.users['${provider}'].complaint_data3['cancellation']['data']['status']}
743   - ... complaints[${COMPLAINT_NUM}].status
  741 + ... ${USERS.users['${provider}'].claim_data3['cancellation']['data']['status']}
  742 + ... complaints[${CLAIM_NUM}].status
744 743
745 744 ##############################################################################################
746 745 # ВІДОБРАЖЕННЯ ДЛЯ КОРИСТУВАЧА
... ... @@ -753,8 +752,8 @@ ${broker} Quinta
753 752 ... from-0.12
754 753 [Setup] Дочекатись синхронізації з майданчиком ${provider}
755 754 Звірити поле тендера із значенням ${provider}
756   - ... ${USERS.users['${provider}'].complaint_data3['cancellation']['data']['status']}
757   - ... complaints[${COMPLAINT_NUM}].status
  755 + ... ${USERS.users['${provider}'].claim_data3['cancellation']['data']['status']}
  756 + ... complaints[${CLAIM_NUM}].status
758 757
759 758
760 759
... ... @@ -764,44 +763,44 @@ ${broker} Quinta
764 763 ... provider
765 764 ... ${USERS.users['${provider}'].broker}
766 765 ... from-0.12
767   - ${complaint}= test_complaint_data
768   - ${complaint_resp}= Викликати для учасника ${provider}
  766 + ${claim}= test_claim_data
  767 + ${claim_resp}= Викликати для учасника ${provider}
769 768 ... Створити вимогу
770 769 ... ${TENDER['TENDER_UAID']}
771   - ... ${complaint}
772   - ${complaint_data4}= Create Dictionary complaint=${complaint} complaint_resp=${complaint_resp}
773   - Log ${complaint_data4}
774   - Set To Dictionary ${USERS.users['${provider}']} complaint_data4 ${complaint_data4}
775   - ${COMPLAINT_NUM}= Set variable 3
776   - Set suite variable ${COMPLAINT_NUM}
  770 + ... ${claim}
  771 + ${claim_data4}= Create Dictionary claim=${claim} claim_resp=${claim_resp}
  772 + Log ${claim_data4}
  773 + Set To Dictionary ${USERS.users['${provider}']} claim_data4 ${claim_data4}
  774 + ${CLAIM_NUM}= Set variable 3
  775 + Set suite variable ${CLAIM_NUM}
777 776
778 777
779   - ${confrimation_data}= test_confirm_complaint_data ${USERS.users['${provider}']['complaint_data4']['complaint_resp']['data']['id']}
  778 + ${confrimation_data}= test_submit_claim_data ${USERS.users['${provider}']['claim_data4']['claim_resp']['data']['id']}
780 779 Log ${confrimation_data}
781 780 Викликати для учасника ${provider}
782 781 ... Подати вимогу
783 782 ... ${TENDER['TENDER_UAID']}
784   - ... ${USERS.users['${provider}']['complaint_data4']['complaint_resp']}
  783 + ... ${USERS.users['${provider}']['claim_data4']['claim_resp']}
785 784 ... ${confrimation_data}
786 785
787 786
788   - ${answer_data}= test_complaint_answer_data ${USERS.users['${provider}']['complaint_data4']['complaint_resp']['data']['id']}
  787 + ${answer_data}= test_claim_answer_data ${USERS.users['${provider}']['claim_data4']['claim_resp']['data']['id']}
789 788 Log ${answer_data}
790 789 Викликати для учасника ${tender_owner}
791 790 ... Відповісти на вирішену вимогу
792 791 ... ${TENDER['TENDER_UAID']}
793   - ... ${USERS.users['${provider}']['complaint_data4']['complaint_resp']}
  792 + ... ${USERS.users['${provider}']['claim_data4']['claim_resp']}
794 793 ... ${answer_data}
795 794
796 795
797 796 ${cancellation_reason}= Set variable prosto tak :)
798   - ${cancellation_data}= test_cancel_complaint_data ${USERS.users['${provider}']['complaint_data4']['complaint_resp']['data']['id']} ${cancellation_reason}
  797 + ${cancellation_data}= test_cancel_claim_data ${USERS.users['${provider}']['claim_data4']['claim_resp']['data']['id']} ${cancellation_reason}
799 798 Викликати для учасника ${provider}
800 799 ... Скасувати вимогу
801 800 ... ${TENDER['TENDER_UAID']}
802   - ... ${USERS.users['${provider}']['complaint_data4']['complaint_resp']}
  801 + ... ${USERS.users['${provider}']['claim_data4']['claim_resp']}
803 802 ... ${cancellation_data}
804   - Set To Dictionary ${USERS.users['${provider}'].complaint_data4} cancellation ${cancellation_data}
  803 + Set To Dictionary ${USERS.users['${provider}'].claim_data4} cancellation ${cancellation_data}
805 804
806 805 ##############################################################################################
807 806 # ВІДОБРАЖЕННЯ ДЛЯ ГЛЯДАЧА
... ... @@ -815,8 +814,8 @@ ${broker} Quinta
815 814 [Setup] Дочекатись синхронізації з майданчиком ${viewer}
816 815 Log ${USERS.users['${viewer}'].tender_data}
817 816 Звірити поле тендера із значенням ${viewer}
818   - ... ${USERS.users['${provider}'].complaint_data4['cancellation']['data']['status']}
819   - ... complaints[${COMPLAINT_NUM}].status
  817 + ... ${USERS.users['${provider}'].claim_data4['cancellation']['data']['status']}
  818 + ... complaints[${CLAIM_NUM}].status
820 819
821 820 ##############################################################################################
822 821 # ВІДОБРАЖЕННЯ ДЛЯ КОРИСТУВАЧА
... ... @@ -829,5 +828,5 @@ ${broker} Quinta
829 828 ... from-0.12
830 829 [Setup] Дочекатись синхронізації з майданчиком ${provider}
831 830 Звірити поле тендера із значенням ${provider}
832   - ... ${USERS.users['${provider}'].complaint_data3['cancellation']['data']['status']}
833   - ... complaints[${COMPLAINT_NUM}].status
  831 + ... ${USERS.users['${provider}'].claim_data3['cancellation']['data']['status']}
  832 + ... complaints[${CLAIM_NUM}].status
... ...
Please register or login to post a comment