initial_data.py
14.7 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
# -*- coding: utf-8 -
from datetime import timedelta
from faker import Factory
from munch import munchify
from tempfile import NamedTemporaryFile
from .local_time import get_now
fake = Factory.create('uk_UA')
fake_ru = Factory.create('ru')
fake_en = Factory.create()
def create_fake_doc():
content = fake.text()
tf = NamedTemporaryFile(delete=False)
tf.write(content)
tf.close()
return tf.name
def test_tender_data(intervals):
now = get_now()
return {
"title": u"[ТЕСТУВАННЯ] " + fake.catch_phrase(),
"mode": "test",
"submissionMethodDetails": "quick",
"description": u"Тестовий тендер",
"description_ru": u"Тестовый тендер",
"description_en": "Test tender",
"procuringEntity": {
"name": fake.company(),
"name_ru": fake_ru.company(),
"name_en": fake_en.company(),
"identifier": {
"scheme": u"UA-EDR",
"id": u"{:08d}".format(fake.pyint()),
"uri": fake.image_url(width=None, height=None)
},
"address": {
"countryName": u"Україна",
"countryName_ru": u"Украина",
"countryName_en": "Ukraine",
"postalCode": fake.postalcode(),
"region": u"м. Київ",
"locality": u"м. Київ",
"streetAddress": fake.street_address()
},
"contactPoint": {
"name": fake.name(),
"telephone": fake.phone_number()
}
},
"value": {
"amount": 50000.99,
"currency": u"UAH"
},
"minimalStep": {
"amount": 100.1,
"currency": u"UAH"
},
"items": [
{
"description": fake.catch_phrase(),
"deliveryDate": {
"endDate": (now + timedelta(days=5)).isoformat()
},
"deliveryLocation": {
"latitude": 49.8500,
"longitude": 24.0167
},
"deliveryAddress": {
"countryName": u"Україна",
"countryName_ru": u"Украина",
"countryName_en": "Ukraine",
"postalCode": fake.postalcode(),
"region": u"м. Київ",
"locality": u"м. Київ",
"streetAddress": fake.street_address()
},
"classification": {
"scheme": u"CPV",
"id": u"44617100-9",
"description": u"Картонки",
"description_ru": u"Большие картонные коробки",
"description_en": u"Cartons"
},
"additionalClassifications": [
{
"scheme": u"ДКПП",
"id": u"17.21.1",
"description": u"Папір і картон гофровані, паперова й картонна тара"
}
],
"unit": {
"name": u"кілограм",
"name_ru": u"килограмм",
"name_en": "kilogram",
"code": u"KGM"
},
"quantity": fake.pyint()
}
],
"enquiryPeriod": {
"startDate": (now).isoformat(),
"endDate": (now + timedelta(minutes=(
intervals['enquiry']))).isoformat()
},
"tenderPeriod": {
"startDate": (now + timedelta(minutes=2)).isoformat(),
"endDate": (now + timedelta(minutes=(
intervals['tender']))).isoformat()
}
}
def test_tender_data_multiple_lots(intervals):
now = get_now()
t_data = test_tender_data(intervals)
t_data.update({
"items": [
{
"description": fake.catch_phrase(),
"deliveryDate": {
"endDate": (now + timedelta(days=5)).isoformat()
},
"deliveryLocation": {
"latitude": 49.8500,
"longitude": 24.0167
},
"deliveryAddress": {
"countryName": u"Україна",
"countryName_ru": u"Украина",
"countryName_en": "Ukraine",
"postalCode": "01008",
"region": u"м. Київ",
"locality": u"м. Київ",
"streetAddress": u"ул. Грушевского, 12/2"
},
"classification": {
"scheme": u"CPV",
"id": u"44617100-9",
"description": u"Картонки",
"description_ru": u"Большие картонные коробки",
"description_en": u"Cartons"
},
"additionalClassifications": [
{
"scheme": u"ДКПП",
"id": u"17.29.12-00.00",
"description": u"Блоки, плити та пластини фільтрувальні, з паперової маси"
}
],
"unit": {
"name": u"кілограм",
"name_ru": u"килограмм",
"name_en": "kilogram",
"code": u"KGM"
},
"quantity": fake.pyint()
},
{
"description": fake.catch_phrase(),
"deliveryDate": {
"endDate": (now + timedelta(days=5)).isoformat()
},
"deliveryLocation": {
"latitude": 49.8500,
"longitude": 24.0167
},
"deliveryAddress": {
"countryName": u"Україна",
"countryName_ru": u"Украина",
"countryName_en": "Ukraine",
"postalCode": fake.postalcode(),
"region": u"м. Київ",
"locality": u"м. Київ",
"streetAddress": fake.street_address()
},
"classification": {
"scheme": u"CPV",
"id": u"44617100-9",
"description": u"Картонки",
"description_ru": u"Большие картонные коробки",
"description_en": u"Cartons"
},
"additionalClassifications": [
{
"scheme": u"ДКПП",
"id": u"17.21.99-00.00",
"description": u"Роботи субпідрядні як частина виробництва гофрованих паперу й картону, паперової та картонної тари"
}
],
"unit": {
"name": u"кілограм",
"name_ru": u"килограмм",
"name_en": "kilogram",
"code": u"KGM"
},
"quantity": fake.pyint()
},
{
"description": fake.catch_phrase(),
"deliveryDate": {
"endDate": (now + timedelta(days=5)).isoformat()
},
"deliveryLocation": {
"latitude": 49.3418,
"longitude": 39.1829
},
"deliveryAddress": {
"countryName": u"Україна",
"countryName_ru": u"Украина",
"countryName_en": "Ukraine",
"postalCode": fake.postalcode(),
"region": u"Луганська область",
"locality": u"м. Луганськ",
"streetAddress": u"Вул. Оборонна 28"
},
"classification": {
"scheme": u"CPV",
"id": u"44617100-9",
"description": u"Картонки",
"description_ru": u"Большие картонные коробки",
"description_en": u"Cartons"
},
"additionalClassifications": [
{
"scheme": u"ДКПП",
"id": u"17.22.12-40.00",
"description": u"Вата; вироби з вати, інші"
}
],
"unit": {
"name": u"кілограм",
"name_ru": u"килограмм",
"name_en": "kilogram",
"code": u"KGM"
},
"quantity": fake.pyint()
},
{
"description": fake.catch_phrase(),
"deliveryDate": {
"endDate": (now + timedelta(days=5)).isoformat()
},
"deliveryLocation": {
"latitude": 49.8500,
"longitude": 24.0167
},
"deliveryAddress": {
"countryName": u"Україна",
"countryName_ru": u"Украина",
"countryName_en": "Ukraine",
"postalCode": fake.postalcode(),
"region": u"м. Київ",
"locality": u"м. Київ",
"streetAddress": fake.street_address()
},
"classification": {
"scheme": u"CPV",
"id": u"44617100-9",
"description": u"Картонки",
"description_ru": u"Большие картонные коробки",
"description_en": u"Cartons"
},
"additionalClassifications": [
{
"scheme": u"ДКПП",
"id": u"17.22.12-50.00",
"description": u"Одяг і речі до одягу з паперової маси, паперу, целюлозної вати чи полотна з целюлозного волокна (крім носових хусточок, наголовних уборів)"
}
],
"unit": {
"name": u"кілограм",
"name_ru": u"килограмм",
"name_en": "kilogram",
"code": u"KGM"
},
"quantity": fake.pyint()
}
]
})
return t_data
def test_question_data():
return munchify({
"data": {
"author": {
"address": {
"countryName": u"Україна",
"countryName_ru": u"Украина",
"countryName_en": "Ukraine",
"locality": u"м. Вінниця",
"postalCode": "21100",
"region": u"Вінницька область",
"streetAddress": fake.street_address()
},
"contactPoint": {
"name": fake.name(),
"telephone": fake.phone_number()
},
"identifier": {
"scheme": u"UA-EDR",
"id": u"{:08d}".format(fake.pyint()),
"uri": fake.image_url(width=None, height=None)
},
"name": fake.company()
},
"description": fake.sentence(nb_words=10, variable_nb_words=True),
"title": fake.sentence(nb_words=6, variable_nb_words=True)
}
})
def test_question_answer_data():
return munchify({
"data": {
"answer": fake.sentence(nb_words=40, variable_nb_words=True)
}
})
def test_complaint_data():
return munchify({
"data": {
"author": {
"address": {
"countryName": u"Україна",
"countryName_ru": u"Украина",
"countryName_en": "Ukraine",
"locality": u"м. Вінниця",
"postalCode": "21100",
"region": u"Вінницька область",
"streetAddress": fake.street_address()
},
"contactPoint": {
"name": fake.name(),
"telephone": fake.phone_number()
},
"identifier": {
"scheme": u"UA-EDR",
"id": u"{:08d}".format(fake.pyint()),
"uri": fake.image_url(width=None, height=None)
},
"name": fake.company()
},
"description": fake.sentence(nb_words=10, variable_nb_words=True),
"title": fake.sentence(nb_words=6, variable_nb_words=True)
}
})
def test_complaint_reply_data():
return munchify({
"data": {
"status": "resolved"
}
})
def test_bid_data():
return munchify({
"data": {
"tenderers": [
{
"address": {
"countryName": u"Україна",
"countryName_ru": u"Украина",
"countryName_en": "Ukraine",
"locality": u"м. Вінниця",
"postalCode": "21100",
"region": u"Вінницька область",
"streetAddress": fake.street_address()
},
"contactPoint": {
"name": fake.name(),
"telephone": fake.phone_number()
},
"identifier": {
"scheme": u"UA-EDR",
"id": u"{:08d}".format(fake.pyint()),
},
"name": fake.company()
}
],
"value": {
"amount": 500
}
}
})
def auction_bid():
return munchify({
"data": {
"value": {
"amount": 200,
"currency": "UAH",
"valueAddedTaxIncluded": "true"
}
}
})
def test_award_data():
return munchify({'data': {}})