initial_data.py
13.9 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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
# -*- coding: utf-8 -
from datetime import timedelta
from faker import Factory
from faker.providers.company.en_US import Provider as CompanyProviderEnUs
from faker.providers.company.ru_RU import Provider as CompanyProviderRuRu
from munch import munchify
from uuid import uuid4
from tempfile import NamedTemporaryFile
from .local_time import get_now
from op_faker import OP_Provider
import os
import random
fake_en = Factory.create(locale='en_US')
fake_ru = Factory.create(locale='ru_RU')
fake_uk = Factory.create(locale='uk_UA')
fake_uk.add_provider(OP_Provider)
fake = fake_uk
# This workaround fixes an error caused by missing "catch_phrase" class method
# for the "ru_RU" locale in Faker >= 0.7.4
fake_ru.add_provider(CompanyProviderEnUs)
fake_ru.add_provider(CompanyProviderRuRu)
def create_fake_sentence():
return fake.sentence(nb_words=10, variable_nb_words=True)
def field_with_id(prefix, sentence):
return u"{}-{}: {}".format(prefix, fake.uuid4()[:8], sentence)
def translate_country_en(country):
if country == u"Україна":
return "Ukraine"
else:
raise Exception(u"Cannot translate country to english: {}".format(country))
def translate_country_ru(country):
if country == u"Україна":
return u"Украина"
else:
raise Exception(u"Cannot translate country to russian: {}".format(country))
def create_fake_doc():
content = fake.text()
suffix = fake.random_element(('.doc', '.docx', '.pdf'))
prefix = "{}-{}{}".format("d", fake.uuid4()[:8], fake_en.word())
tf = NamedTemporaryFile(delete=False, suffix=suffix, prefix=prefix)
tf.write(content)
tf.close()
return tf.name, os.path.basename(tf.name), content
def test_tender_data(params, periods=("enquiry", "tender")):
now = get_now()
value_amount = round(random.uniform(3000, 99999999999.99), 2) # max value equals to budget of Ukraine in hryvnias
data = {
"mode": "test",
"submissionMethodDetails": "quick",
"description": fake.description(),
"description_en": fake_en.sentence(nb_words=10, variable_nb_words=True),
"description_ru": fake_ru.sentence(nb_words=10, variable_nb_words=True),
"title": fake.title(),
"title_en": fake_en.catch_phrase(),
"title_ru": fake_ru.catch_phrase(),
"procuringEntity": fake.procuringEntity(),
"value": {
"amount": value_amount,
"currency": u"UAH",
"valueAddedTaxIncluded": True
},
"minimalStep": {
"amount": round(random.uniform(0.005, 0.03) * value_amount, 2),
"currency": u"UAH"
},
"items": [],
"features": []
}
accelerator = params['intervals']['accelerator']
data['procurementMethodDetails'] = 'quick, ' \
'accelerator={}'.format(accelerator)
data["procuringEntity"]["kind"] = "other"
if data.get("mode") == "test":
data["title"] = u"[ТЕСТУВАННЯ] {}".format(data["title"])
data["title_en"] = u"[TESTING] {}".format(data["title_en"])
data["title_ru"] = u"[ТЕСТИРОВАНИЕ] {}".format(data["title_ru"])
period_dict = {}
inc_dt = now
for period_name in periods:
period_dict[period_name + "Period"] = {}
for i, j in zip(range(2), ("start", "end")):
inc_dt += timedelta(minutes=params['intervals'][period_name][i])
period_dict[period_name + "Period"][j + "Date"] = inc_dt.isoformat()
data.update(period_dict)
cpv_group = fake.cpv()[:3]
if params.get('number_of_lots'):
data['lots'] = []
for lot_number in range(params['number_of_lots']):
lot_id = uuid4().hex
new_lot = test_lot_data(data['value']['amount'])
data['lots'].append(new_lot)
data['lots'][lot_number]['id'] = lot_id
for i in range(params['number_of_items']):
new_item = test_item_data(cpv_group)
new_item['relatedLot'] = lot_id
data['items'].append(new_item)
value_amount = round(sum(lot['value']['amount'] for lot in data['lots']), 2)
minimalStep = min(lot['minimalStep']['amount'] for lot in data['lots'])
data['value']['amount'] = value_amount
data['minimalStep']['amount'] = minimalStep
if params.get('lot_meat'):
new_feature = test_feature_data()
new_feature['featureOf'] = "lot"
data['lots'][0]['id'] = data['lots'][0].get('id', uuid4().hex)
new_feature['relatedItem'] = data['lots'][0]['id']
data['features'].append(new_feature)
else:
for i in range(params['number_of_items']):
new_item = test_item_data(cpv_group)
data['items'].append(new_item)
if params.get('tender_meat'):
new_feature = test_feature_data()
new_feature.featureOf = "tenderer"
data['features'].append(new_feature)
if params.get('item_meat'):
new_feature = test_feature_data()
new_feature['featureOf'] = "item"
data['items'][0]['id'] = data['items'][0].get('id', uuid4().hex)
new_feature['relatedItem'] = data['items'][0]['id']
data['features'].append(new_feature)
if not data['features']:
del data['features']
return munchify(data)
def test_tender_data_limited(params):
data = test_tender_data(params)
del data["submissionMethodDetails"]
del data["minimalStep"]
del data["enquiryPeriod"]
del data["tenderPeriod"]
data["procuringEntity"]["kind"] = "general"
data.update({"procurementMethodType": params['mode'], "procurementMethod": "limited"})
if params['mode'] == "negotiation":
cause_variants = (
"artContestIP",
"noCompetition",
"twiceUnsuccessful",
"additionalPurchase",
"additionalConstruction",
"stateLegalServices"
)
cause = fake.random_element(cause_variants)
elif params['mode'] == "negotiation.quick":
cause_variants = ('quick',)
if params['mode'] in ("negotiation", "negotiation.quick"):
cause = fake.random_element(cause_variants)
data.update({
"cause": cause,
"causeDescription": fake.description()
})
return munchify(data)
def test_feature_data():
return munchify({
"code": uuid4().hex,
"title": field_with_id("f", fake.title()),
"title_en": field_with_id('f', fake_en.sentence(nb_words=5, variable_nb_words=True)),
"title_ru": field_with_id('f', fake_ru.sentence(nb_words=5, variable_nb_words=True)),
"description": fake.description(),
"enum": [
{
"value": 0.05,
"title": fake.word()
},
{
"value": 0.01,
"title": fake.word()
},
{
"value": 0,
"title": fake.word()
}
]
})
def test_question_data():
return munchify({
"data": {
"author": fake.procuringEntity(),
"description": fake.description(),
"title": field_with_id("q", fake.title())
}
})
def test_related_question(question, relation, obj_id):
question.data.update({"questionOf": relation, "relatedItem": obj_id})
return munchify(question)
def test_question_answer_data():
return munchify({
"data": {
"answer": fake.sentence(nb_words=40, variable_nb_words=True)
}
})
def test_complaint_data():
data = munchify({
"data": {
"author": fake.procuringEntity(),
"description": fake.description(),
"title": fake.title()
}
})
return data
test_claim_data = test_complaint_data
def test_claim_answer_data():
return munchify({
"data": {
"status": "answered",
"resolutionType": "resolved",
"tendererAction": fake.sentence(nb_words=10, variable_nb_words=True),
"resolution": fake.sentence(nb_words=15, variable_nb_words=True)
}
})
def test_confirm_data(id):
return munchify({
"data": {
"status": "active",
"id": id
}
})
def test_submit_claim_data(claim_id):
return munchify({
"data": {
"id": claim_id,
"status": "claim"
}
})
def test_complaint_reply_data():
return munchify({
"data": {
"status": "resolved"
}
})
def test_bid_data():
bid = munchify({
"data": {
"tenderers": [
fake.procuringEntity()
]
}
})
bid.data.tenderers[0].address.countryName_en = translate_country_en(bid.data.tenderers[0].address.countryName)
bid.data.tenderers[0].address.countryName_ru = translate_country_ru(bid.data.tenderers[0].address.countryName)
return bid
def test_bid_value(max_value_amount):
return munchify({
"value": {
"currency": "UAH",
"amount": round(random.uniform(1, max_value_amount), 2),
"valueAddedTaxIncluded": True
}
})
def test_supplier_data():
return munchify({
"data": {
"suppliers": [
fake.procuringEntity()
],
"value": {
"amount": fake.random_int(min=1),
"currency": "UAH",
"valueAddedTaxIncluded": True
},
"qualified": True
}
})
def test_item_data(cpv=None):
data = fake.fake_item(cpv)
data["description"] = field_with_id("i", data["description"])
data["description_en"] = field_with_id("i", data["description_en"])
data["description_ru"] = field_with_id("i", data["description_ru"])
days = fake.random_int(min=1, max=30)
data["deliveryDate"] = {"endDate": (get_now() + timedelta(days=days)).isoformat()}
data["deliveryAddress"]["countryName_en"] = translate_country_en(data["deliveryAddress"]["countryName"])
data["deliveryAddress"]["countryName_ru"] = translate_country_ru(data["deliveryAddress"]["countryName"])
return munchify(data)
def test_invalid_features_data():
return [
{
"code": "ee3e24bc17234a41bd3e3a04cc28e9c6",
"featureOf": "tenderer",
"title": fake.title(),
"description": fake.description(),
"enum": [
{
"value": 0.35,
"title": fake.word()
},
{
"value": 0,
"title": fake.word()
}
]
}
]
def test_lot_data(max_value_amount):
value_amount = round(random.uniform(1, max_value_amount), 2)
return munchify(
{
"description": fake.description(),
"title": field_with_id('l', fake.title()),
"title_en": field_with_id('l', fake_en.sentence(nb_words=5, variable_nb_words=True)),
"title_ru": field_with_id('l', fake_ru.sentence(nb_words=5, variable_nb_words=True)),
"value": {
"currency": "UAH",
"amount": value_amount,
"valueAddedTaxIncluded": True
},
"minimalStep": {
"currency": "UAH",
"amount": round(random.uniform(0.005, 0.03) * value_amount, 2),
"valueAddedTaxIncluded": True
},
"status": "active"
})
def test_lot_document_data(document, lot_id):
document.data.update({"documentOf": "lot", "relatedItem": lot_id})
return munchify(document)
def test_tender_data_openua(params):
# We should not provide any values for `enquiryPeriod` when creating
# an openUA or openEU procedure. That field should not be present at all.
# Therefore, we pass a nondefault list of periods to `test_tender_data()`.
data = test_tender_data(params, ('tender',))
data['procurementMethodType'] = 'aboveThresholdUA'
data['procuringEntity']['kind'] = 'general'
return data
def test_tender_data_openeu(params):
# We should not provide any values for `enquiryPeriod` when creating
# an openUA or openEU procedure. That field should not be present at all.
# Therefore, we pass a nondefault list of periods to `test_tender_data()`.
data = test_tender_data(params, ('tender',))
data['procurementMethodType'] = 'aboveThresholdEU'
data['title_en'] = "[TESTING]"
for item_number, item in enumerate(data['items']):
item['description_en'] = "Test item #{}".format(item_number)
data['procuringEntity']['name_en'] = fake_en.name()
data['procuringEntity']['contactPoint']['name_en'] = fake_en.name()
data['procuringEntity']['contactPoint']['availableLanguage'] = "en"
data['procuringEntity']['identifier']['legalName_en'] = "Institution \"Vinnytsia City Council primary and secondary general school № 10\""
data['procuringEntity']['kind'] = 'general'
return data
def test_tender_data_competitive_dialogue(params):
# We should not provide any values for `enquiryPeriod` when creating
# an openUA or openEU procedure. That field should not be present at all.
# Therefore, we pass a nondefault list of periods to `test_tender_data()`.
data = test_tender_data(params, ('tender',))
if params.get('dialogue_type') == 'UA':
data['procurementMethodType'] = 'competitiveDialogueUA'
else:
data['procurementMethodType'] = 'competitiveDialogueEU'
data['procuringEntity']['contactPoint']['availableLanguage'] = "en"
data['title_en'] = "[TESTING] {}".format(fake_en.sentence(nb_words=3, variable_nb_words=True))
for item in data['items']:
item['description_en'] = fake_en.sentence(nb_words=3, variable_nb_words=True)
data['procuringEntity']['name_en'] = fake_en.name()
data['procuringEntity']['contactPoint']['name_en'] = fake_en.name()
data['procuringEntity']['identifier']['legalName_en'] = fake_en.sentence(nb_words=10, variable_nb_words=True)
data['procuringEntity']['kind'] = 'general'
return data