Commit 3b28a1b8e8c98bae9754b73f73b2463da9c94b83

Authored by kosaniak
1 parent 6c0eb5c5

Add resource to api_wrapper

... ... @@ -58,7 +58,7 @@ gh_push = git@github.com:
58 58
59 59 [sources]
60 60 barbecue = git ${remotes:gh}openprocurement/barbecue.git
61   -openprocurement_client = git ${remotes:gh}openprocurement/openprocurement.client.python.git
  61 +openprocurement_client = git ${remotes:gh}openprocurement/openprocurement.client.python.git branch=use_requests
62 62 robot_tests.broker.alltenders = git ${remotes:gh}openprocurement/robot_tests.broker.alltenders.git
63 63 robot_tests.broker.aladdin = git ${remotes:gh}openprocurement/robot_tests.broker.aladdin.git
64 64 robot_tests.broker.dzo = git ${remotes:gh}openprocurement/robot_tests.broker.dzo.git
... ...
... ... @@ -16,6 +16,7 @@ Resource resource.robot
16 16 ... tender_meat=${${TENDER_MEAT}}
17 17 ... lot_meat=${${LOT_MEAT}}
18 18 ... item_meat=${${ITEM_MEAT}}
  19 + ... api_host_url=${API_HOST_URL}
19 20 ${DIALOGUE_TYPE}= Get Variable Value ${DIALOGUE_TYPE}
20 21 Run keyword if '${DIALOGUE_TYPE}' != '${None}' Set to dictionary ${tender_parameters} dialogue_type=${DIALOGUE_TYPE}
21 22 ${tender_data}= Підготувати дані для створення тендера ${tender_parameters}
... ...
... ... @@ -21,7 +21,7 @@ Library openprocurement_client_helper.py
21 21 [Documentation] Відкрити браузер, створити об’єкт api wrapper, тощо
22 22 Log ${API_HOST_URL}
23 23 Log ${API_VERSION}
24   - ${api_wrapper}= prepare_api_wrapper ${USERS.users['${username}'].api_key} ${API_HOST_URL} ${API_VERSION}
  24 + ${api_wrapper}= prepare_api_wrapper ${USERS.users['${username}'].api_key} ${RESOURCE} ${API_HOST_URL} ${API_VERSION}
25 25 Set To Dictionary ${USERS.users['${username}']} client=${api_wrapper}
26 26 Set To Dictionary ${USERS.users['${username}']} access_token=${EMPTY}
27 27 ${id_map}= Create Dictionary
... ...
... ... @@ -24,8 +24,8 @@ class StableClient(Client):
24 24 return super(StableClient, self).request(*args, **kwargs)
25 25
26 26
27   -def prepare_api_wrapper(key, host_url, api_version):
28   - return StableClient(key, host_url, api_version)
  27 +def prepare_api_wrapper(key, resource, host_url, api_version):
  28 + return StableClient(key, resource, host_url, api_version)
29 29
30 30
31 31 def get_complaint_internal_id(tender, complaintID):
... ...
... ... @@ -3,3 +3,4 @@ ${API_HOST_URL} https://lb.api-sandbox.openprocurement.org
3 3 ${API_VERSION} 2.3
4 4 ${BROKER} Quinta
5 5 ${ROLE} viewer
  6 +${RESOURCE} tenders
... ...
Please register or login to post a comment