Commit 496570b46014ff99a1fb43d4264b86567c6d7906
Committed by
GitHub
Merge pull request #250 from ProzorroUKR/cancellation
Cancellation
Showing
4 changed files
with
55 additions
and
5 deletions
@@ -771,7 +771,7 @@ Library openprocurement_client.utils | @@ -771,7 +771,7 @@ Library openprocurement_client.utils | ||
771 | ${cancellation_id}= Set variable ${cancel_reply.data.id} | 771 | ${cancellation_id}= Set variable ${cancel_reply.data.id} |
772 | ${document_id}= openprocurement_client.Завантажити документацію до запиту на скасування ${username} ${tender_uaid} ${cancellation_id} ${document} | 772 | ${document_id}= openprocurement_client.Завантажити документацію до запиту на скасування ${username} ${tender_uaid} ${cancellation_id} ${document} |
773 | openprocurement_client.Змінити опис документа в скасуванні ${username} ${tender_uaid} ${cancellation_id} ${document_id} ${new_description} | 773 | openprocurement_client.Змінити опис документа в скасуванні ${username} ${tender_uaid} ${cancellation_id} ${document_id} ${new_description} |
774 | - ${cancellation}= run keyword if '${procurementMethodType}' in ['belowThreshold', 'reporting', 'closeFrameworkAgreementSelectionUA'] | 774 | + ${cancellation}= run keyword if '${procurementMethodType}' in ['belowThreshold', 'reporting', 'closeFrameworkAgreementSelectionUA', 'negotiation', 'negotiation.quick'] |
775 | ... openprocurement_client.Підтвердити скасування закупівлі ${username} ${tender_uaid} ${cancellation_id} | 775 | ... openprocurement_client.Підтвердити скасування закупівлі ${username} ${tender_uaid} ${cancellation_id} |
776 | ... ELSE openprocurement_client.Перевести скасування закупівлі в період очікування ${username} ${tender_uaid} ${cancellation_id} | 776 | ... ELSE openprocurement_client.Перевести скасування закупівлі в період очікування ${username} ${tender_uaid} ${cancellation_id} |
777 | Set To Dictionary ${USERS.users['${tender_owner}']} cancellation_data=${cancellation} | 777 | Set To Dictionary ${USERS.users['${tender_owner}']} cancellation_data=${cancellation} |
@@ -1919,7 +1919,7 @@ Library openprocurement_client.utils | @@ -1919,7 +1919,7 @@ Library openprocurement_client.utils | ||
1919 | ... ${cancellation_id} | 1919 | ... ${cancellation_id} |
1920 | ... ${document_id} | 1920 | ... ${document_id} |
1921 | ... ${new_description} | 1921 | ... ${new_description} |
1922 | - ${cancellation}= run keyword if '${procurementMethodType}' in ['belowThreshold', 'reporting', 'closeFrameworkAgreementSelectionUA'] | 1922 | + ${cancellation}= run keyword if '${procurementMethodType}' in ['belowThreshold', 'reporting', 'closeFrameworkAgreementSelectionUA', 'negotiation', 'negotiation.quick'] |
1923 | ... openprocurement_client.Підтвердити скасування закупівлі ${username} ${tender_uaid} ${cancellation_id} | 1923 | ... openprocurement_client.Підтвердити скасування закупівлі ${username} ${tender_uaid} ${cancellation_id} |
1924 | ... ELSE openprocurement_client.Перевести скасування закупівлі в період очікування ${username} ${tender_uaid} ${cancellation_id} | 1924 | ... ELSE openprocurement_client.Перевести скасування закупівлі в період очікування ${username} ${tender_uaid} ${cancellation_id} |
1925 | Set To Dictionary ${USERS.users['${tender_owner}']} cancellation_data=${cancellation} | 1925 | Set To Dictionary ${USERS.users['${tender_owner}']} cancellation_data=${cancellation} |
@@ -4,7 +4,7 @@ Suite Setup Test Suite Setup | @@ -4,7 +4,7 @@ Suite Setup Test Suite Setup | ||
4 | Suite Teardown Test Suite Teardown | 4 | Suite Teardown Test Suite Teardown |
5 | 5 | ||
6 | *** Variables *** | 6 | *** Variables *** |
7 | -@{USED_ROLES} tender_owner viewer | 7 | +@{USED_ROLES} tender_owner viewer provider provider1 provider2 |
8 | ${MOZ_INTEGRATION} ${False} | 8 | ${MOZ_INTEGRATION} ${False} |
9 | ${VAT_INCLUDED} ${True} | 9 | ${VAT_INCLUDED} ${True} |
10 | ${NUMBER_OF_MILESTONES} ${1} | 10 | ${NUMBER_OF_MILESTONES} ${1} |
@@ -31,6 +31,50 @@ ${PLAN_TENDER} ${True} | @@ -31,6 +31,50 @@ ${PLAN_TENDER} ${True} | ||
31 | :FOR ${username} IN ${tender_owner} ${viewer} | 31 | :FOR ${username} IN ${tender_owner} ${viewer} |
32 | \ Можливість знайти тендер по ідентифікатору для користувача ${username} | 32 | \ Можливість знайти тендер по ідентифікатору для користувача ${username} |
33 | 33 | ||
34 | + | ||
35 | +Можливість подати пропозицію першим учасником | ||
36 | + [Tags] ${USERS.users['${provider}'].broker}: Подання пропозиції | ||
37 | + ... provider | ||
38 | + ... ${USERS.users['${provider}'].broker} | ||
39 | + ... make_bid_by_provider | ||
40 | + ... critical | ||
41 | + [Setup] Дочекатись дати початку прийому пропозицій ${provider} ${TENDER['TENDER_UAID']} | ||
42 | + [Teardown] Оновити LAST_MODIFICATION_DATE | ||
43 | + Можливість подати цінову пропозицію користувачем ${provider} | ||
44 | + | ||
45 | + | ||
46 | +Можливість подати пропозицію другим учасником | ||
47 | + [Tags] ${USERS.users['${provider1}'].broker}: Подання пропозиції | ||
48 | + ... provider1 | ||
49 | + ... ${USERS.users['${provider1}'].broker} | ||
50 | + ... make_bid_by_provider1 | ||
51 | + ... critical | ||
52 | + [Setup] Дочекатись дати початку прийому пропозицій ${provider1} ${TENDER['TENDER_UAID']} | ||
53 | + [Teardown] Оновити LAST_MODIFICATION_DATE | ||
54 | + Можливість подати цінову пропозицію користувачем ${provider1} | ||
55 | + | ||
56 | + | ||
57 | +Можливість подати пропозицію третім учасником | ||
58 | + [Tags] ${USERS.users['${provider1}'].broker}: Подання пропозиції | ||
59 | + ... provider2 | ||
60 | + ... ${USERS.users['${provider1}'].broker} | ||
61 | + ... make_bid_by_provider2 level1 | ||
62 | + ... critical | ||
63 | + [Setup] Дочекатись дати початку прийому пропозицій ${provider2} ${TENDER['TENDER_UAID']} | ||
64 | + [Teardown] Оновити LAST_MODIFICATION_DATE | ||
65 | + Можливість подати цінову пропозицію користувачем ${provider2} | ||
66 | + | ||
67 | + | ||
68 | +Дочекатися кінця complaint періоду тендера | ||
69 | + [Tags] ${USERS.users['${tender_owner}'].broker}: Скасування тендера | ||
70 | + ... tender_owner | ||
71 | + ... ${USERS.users['${tender_owner}'].broker} | ||
72 | + ... tender_complaintPeriond_stand_still | ||
73 | + ... critical | ||
74 | + Дочекатись дати ${USERS.users['${tender_owner}'].tender_data.data.complaintPeriod.endDate} | ||
75 | + Sleep 30s | ||
76 | + Оновити LAST_MODIFICATION_DATE | ||
77 | + | ||
34 | ############################################################################################## | 78 | ############################################################################################## |
35 | # LOT CANCELLATION | 79 | # LOT CANCELLATION |
36 | ############################################################################################## | 80 | ############################################################################################## |
@@ -114,7 +158,7 @@ ${PLAN_TENDER} ${True} | @@ -114,7 +158,7 @@ ${PLAN_TENDER} ${True} | ||
114 | Можливість скасувати тендер | 158 | Можливість скасувати тендер |
115 | 159 | ||
116 | 160 | ||
117 | -Дочекатися закічення complait періоду | 161 | +Дочекатися закічення complait періоду скасування тендера |
118 | [Tags] ${USERS.users['${tender_owner}'].broker}: Скасування тендера | 162 | [Tags] ${USERS.users['${tender_owner}'].broker}: Скасування тендера |
119 | ... tender_owner | 163 | ... tender_owner |
120 | ... ${USERS.users['${tender_owner}'].broker} | 164 | ... ${USERS.users['${tender_owner}'].broker} |
@@ -748,7 +748,7 @@ ${PLAN_TENDER} ${True} | @@ -748,7 +748,7 @@ ${PLAN_TENDER} ${True} | ||
748 | ... ${USERS.users['${viewer}'].broker} | 748 | ... ${USERS.users['${viewer}'].broker} |
749 | ... stop_award_complaint | 749 | ... stop_award_complaint |
750 | ... non-critical | 750 | ... non-critical |
751 | - Звірити відображення поля status скарги ${award_index} із stoped об'єкта awards для користувача ${viewer} | 751 | + Звірити відображення поля status скарги ${award_index} із stopped об'єкта awards для користувача ${viewer} |
752 | 752 | ||
753 | ############################################################################################## | 753 | ############################################################################################## |
754 | # CANCELLATION COMPLAINT | 754 | # CANCELLATION COMPLAINT |
@@ -9,6 +9,12 @@ | @@ -9,6 +9,12 @@ | ||
9 | 9 | ||
10 | -i create_tender | 10 | -i create_tender |
11 | -i find_tender | 11 | -i find_tender |
12 | + | ||
13 | +-i make_bid_by_provider | ||
14 | +-i make_bid_by_provider1 | ||
15 | +-i make_bid_by_provider2 | ||
16 | + | ||
17 | +-i tender_complaintPeriond_stand_still | ||
12 | -i lot_cancellation | 18 | -i lot_cancellation |
13 | -i lot_cancellation_stand_still | 19 | -i lot_cancellation_stand_still |
14 | -i lot_cancellation_view | 20 | -i lot_cancellation_view |
Please
register
or
login
to post a comment