service_keywords.py
8.19 KB
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
237
238
239
240
241
242
243
244
245
# -*- coding: utf-8 -
from datetime import datetime, timedelta, date
from dateutil.parser import parse
from dateutil.tz import tzlocal
from dpath.util import set as xpathset
from iso8601 import parse_date
from json import load
from jsonpath_rw import parse as parse_path
from munch import fromYAML, Munch, munchify
from pytz import timezone
from robot.errors import HandlerExecutionFailed
from robot.libraries.BuiltIn import BuiltIn
from robot.output import LOGGER
from robot.output.loggerhelper import Message
from .initial_data import (
auction_bid, create_fake_doc, prom_test_tender_data,
test_award_data, test_bid_data, test_complaint_data,
test_complaint_reply_data, test_question_answer_data,
test_question_data, test_tender_data, test_tender_data_multiple_lots
)
import calendar
import os
import time
TZ = timezone(os.environ['TZ'] if 'TZ' in os.environ else 'Europe/Kiev')
def get_now():
return datetime.now(TZ)
def get_date():
return get_now().isoformat()
def get_file_contents(path):
with open(path, 'r') as f:
return unicode(f.read()) or u''
def change_state(arguments):
try:
if arguments[0] == "shouldfail":
return "shouldfail"
return "pass"
except IndexError:
return "pass"
def prepare_prom_test_tender_data():
return munchify({'data': prom_test_tender_data()})
def compare_date(data1, data2):
data1 = parse(data1)
data2 = parse(data2)
if data1.tzinfo is None:
data1 = TZ.localize(data1)
if data2.tzinfo is None:
data2 = TZ.localize(data2)
delta = (data1 - data2).total_seconds()
if abs(delta) > 60:
return False
return True
def log_object_data(data, file_name=None, format="yaml"):
"""Log object data in pretty format (JSON or YAML)
Two output formats are supported: "yaml" and "json".
If a file name is specified, the output is written into that file.
If you would like to get similar output everywhere,
use the following snippet somewhere in your code
before actually using Munch. For instance,
put it into your __init__.py, or, if you use zc.buildout,
specify it in "initialization" setting of zc.recipe.egg.
from munch import Munch
Munch.__str__ = lambda self: Munch.toYAML(self, allow_unicode=True,
default_flow_style=False)
Munch.__repr__ = Munch.__str__
"""
if not isinstance(data, Munch):
data = munchify(data)
if format.lower() == 'json':
data = data.toJSON(indent=2)
else:
data = data.toYAML(allow_unicode=True, default_flow_style=False)
format = 'yaml'
LOGGER.log_message(Message(data.decode('utf-8'), "INFO"))
if file_name:
output_dir = BuiltIn().get_variable_value("${OUTPUT_DIR}")
with open(os.path.join(output_dir, file_name + '.' + format), "w") as file_obj:
file_obj.write(data)
def convert_date_to_prom_format(isodate):
iso_dt = parse_date(isodate)
day_string = iso_dt.strftime("%d.%m.%Y %H:%M")
return day_string
def load_initial_data_from(file_name):
if not os.path.exists(file_name):
file_name = os.path.join(os.path.dirname(__file__), 'data/{}'.format(file_name))
with open(file_name) as file_obj:
if file_name.endswith(".json"):
return Munch.fromDict(load(file_obj))
elif file_name.endswith(".yaml"):
return fromYAML(file_obj)
def prepare_test_tender_data(period_interval=2, mode='single'):
if mode == 'single':
return munchify({'data': test_tender_data(period_interval=period_interval)})
elif mode == 'multi':
return munchify({'data': test_tender_data_multiple_lots(period_interval=period_interval)})
raise ValueError('A very specific bad thing happened')
def run_keyword_and_ignore_keyword_definitions(name, *args):
"""Runs the given keyword with given arguments and returns the status as a Boolean value.
This keyword returns `True` if the keyword that is executed succeeds and
`False` if it fails. This is useful, for example, in combination with
`Run Keyword If`. If you are interested in the error message or return
value, use `Run Keyword And Ignore Error` instead.
The keyword name and arguments work as in `Run Keyword`.
Example:
| ${passed} = | `Run Keyword And Return Status` | Keyword | args |
| `Run Keyword If` | ${passed} | Another keyword |
New in Robot Framework 2.7.6.
"""
try:
status, _ = BuiltIn().run_keyword_and_ignore_error(name, *args)
except HandlerExecutionFailed, e:
LOGGER.log_message(Message("Keyword {} not implemented", "ERROR"))
return "FAIL", ""
return status, _
def set_tender_periods(tender):
now = get_now()
tender.data.enquiryPeriod.endDate = (now + timedelta(minutes=2)).isoformat()
tender.data.tenderPeriod.startDate = (now + timedelta(minutes=2)).isoformat()
tender.data.tenderPeriod.endDate = (now + timedelta(minutes=4)).isoformat()
return tender
def set_access_key(tender, access_token):
tender.access = munchify({"token": access_token})
return tender
def set_to_object(obj, attribute, value):
xpathset(obj, attribute.replace('.', '/'), value)
return obj
def get_from_object(obj, attribute):
"""Gets data from a dictionary using a dotted accessor-string"""
jsonpath_expr = parse_path(attribute)
return_list = [i.value for i in jsonpath_expr.find(obj)]
if return_list:
return return_list[0]
return None
def wait_to_date(date_stamp):
date = parse(date_stamp)
LOGGER.log_message(Message("date: {}".format(date.isoformat()), "INFO"))
now = get_now()
LOGGER.log_message(Message("now: {}".format(now.isoformat()), "INFO"))
wait_seconds = (date - now).total_seconds()
wait_seconds += 2
if wait_seconds < 0:
return 0
return wait_seconds
##GUI Frontends common
def convert_date_to_slash_format(isodate):
iso_dt=parse_date(isodate)
date_string = iso_dt.strftime("%d/%m/%Y")
return date_string
def Add_data_for_GUI_FrontEnds(INITIAL_TENDER_DATA):
now = datetime.now()
#INITIAL_TENDER_DATA.data.enquiryPeriod['startDate'] = (now + timedelta(minutes=2)).isoformat()
INITIAL_TENDER_DATA.data.enquiryPeriod['endDate'] = (now + timedelta(minutes=6)).isoformat()
INITIAL_TENDER_DATA.data.tenderPeriod['startDate'] = (now + timedelta(minutes=7)).isoformat()
INITIAL_TENDER_DATA.data.tenderPeriod['endDate'] = (now + timedelta(minutes=11)).isoformat()
return INITIAL_TENDER_DATA
def local_path_to_file(file_name):
return os.path.join(os.path.dirname(__file__), 'documents', file_name)
## E-Tender
def convert_date_to_etender_format(isodate):
iso_dt=parse_date(isodate)
date_string = iso_dt.strftime("%d-%m-%Y")
return date_string
def convert_date_for_delivery(isodate):
iso_dt=parse_date(isodate)
date_string = iso_dt.strftime("%Y-%m-%d %H:%M")
return date_string
def convert_time_to_etender_format(isodate):
iso_dt=parse_date(isodate)
time_string = iso_dt.strftime("%H:%M")
return time_string
def procuringEntity_name(INITIAL_TENDER_DATA):
INITIAL_TENDER_DATA.data.procuringEntity['name'] = u"Повна назва невідомо чого"
return INITIAL_TENDER_DATA
##Newtend
def newtend_date_picker_index(isodate):
now = datetime.today()
date_str = '01' + str(now.month) + str(now.year)
first_day_of_month = datetime.strptime(date_str, "%d%m%Y")
mod = first_day_of_month.isoweekday() - 2
iso_dt=parse_date(isodate)
last_day_of_month = calendar.monthrange(now.year, now.month)[1]
#LOGGER.log_message(Message("last_day_of_month: {}".format(last_day_of_month), "INFO"))
if now.day>iso_dt.day:
mod = calendar.monthrange(now.year, now.month)[1] + mod
return mod + iso_dt.day
def Update_data_for_Newtend(INITIAL_TENDER_DATA):
#INITIAL_TENDER_DATA.data.items[0].classification['description'] = u"Картонки"
INITIAL_TENDER_DATA.data.procuringEntity['name'] = u"openprocurement"
return INITIAL_TENDER_DATA
def subtract_from_time(date_time,substr_min,substr_sec):
now = datetime.strptime(date_time,"%d.%m.%Y %H:%M")
now = (now - timedelta(minutes=int(substr_min), seconds = int (substr_sec) )).isoformat()
return now