|
...
|
...
|
@@ -404,3 +404,47 @@ def auction_bid(): |
|
404
|
404
|
|
|
405
|
405
|
def test_award_data():
|
|
406
|
406
|
return munchify({'data': {}})
|
|
|
407
|
+
|
|
|
408
|
+
|
|
|
409
|
+def test_item_data():
|
|
|
410
|
+ now = get_now()
|
|
|
411
|
+ return {
|
|
|
412
|
+ "description": fake.catch_phrase(),
|
|
|
413
|
+ "deliveryDate": {
|
|
|
414
|
+ "endDate": (now + timedelta(days=5)).isoformat()
|
|
|
415
|
+ },
|
|
|
416
|
+ "deliveryLocation": {
|
|
|
417
|
+ "latitude": 49.8500,
|
|
|
418
|
+ "longitude": 24.0167
|
|
|
419
|
+ },
|
|
|
420
|
+ "deliveryAddress": {
|
|
|
421
|
+ "countryName": u"Україна",
|
|
|
422
|
+ "countryName_ru": u"Украина",
|
|
|
423
|
+ "countryName_en": "Ukraine",
|
|
|
424
|
+ "postalCode": fake.postalcode(),
|
|
|
425
|
+ "region": u"м. Київ",
|
|
|
426
|
+ "locality": u"м. Київ",
|
|
|
427
|
+ "streetAddress": fake.street_address()
|
|
|
428
|
+ },
|
|
|
429
|
+ "classification": {
|
|
|
430
|
+ "scheme": u"CPV",
|
|
|
431
|
+ "id": u"44617100-9",
|
|
|
432
|
+ "description": u"Картонки",
|
|
|
433
|
+ "description_ru": u"Большие картонные коробки",
|
|
|
434
|
+ "description_en": u"Cartons"
|
|
|
435
|
+ },
|
|
|
436
|
+ "additionalClassifications": [
|
|
|
437
|
+ {
|
|
|
438
|
+ "scheme": u"ДКПП",
|
|
|
439
|
+ "id": u"17.21.1",
|
|
|
440
|
+ "description": u"Папір і картон гофровані, паперова й картонна тара"
|
|
|
441
|
+ }
|
|
|
442
|
+ ],
|
|
|
443
|
+ "unit": {
|
|
|
444
|
+ "name": u"кілограм",
|
|
|
445
|
+ "name_ru": u"килограмм",
|
|
|
446
|
+ "name_en": "kilogram",
|
|
|
447
|
+ "code": u"KGM"
|
|
|
448
|
+ },
|
|
|
449
|
+ "quantity": fake.pyint()
|
|
|
450
|
+ } |
...
|
...
|
|