Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Der-Henning
GitHub Repository: Der-Henning/tgtg
Path: blob/main/tests/conftest.py
725 views
1
import pytest
2
3
from tgtg_scanner.models import Item
4
5
6
@pytest.fixture
7
def item_properties():
8
return {
9
"GLOBAL_PROPERTIES": [
10
"item",
11
"store",
12
"display_name",
13
"pickup_location",
14
"items_available",
15
"favorite",
16
],
17
"STORE_PROPERTIES": ["store_id"],
18
"ITEM_PROPERTIES": ["item_id", "price_including_taxes", "description"],
19
"PRICE_PROPERTIES": ["code", "minor_units", "decimals"],
20
}
21
22
23
@pytest.fixture
24
def test_item(tgtg_item: dict):
25
return Item(tgtg_item)
26
27
28
@pytest.fixture
29
def tgtg_item():
30
return {
31
"display_name": "Chutney Indian Food - Hamburg - Europapassage 2.OG",
32
"distance": 6025.8258209576325,
33
"favorite": False,
34
"in_sales_window": True,
35
"item": {
36
"average_overall_rating": {"average_overall_rating": 3.6324786324786325, "month_count": 6, "rating_count": 117},
37
"badges": [
38
{
39
"badge_type": "OVERALL_RATING_TRUST_SCORE",
40
"month_count": 6,
41
"percentage": 81,
42
"rating_group": "LIKED",
43
"user_count": 124,
44
},
45
{
46
"badge_type": "SERVICE_RATING_SCORE",
47
"month_count": 6,
48
"percentage": 82,
49
"rating_group": "LIKED",
50
"user_count": 124,
51
},
52
],
53
"buffet": False,
54
"can_user_supply_packaging": False,
55
"collection_info": "Wir befinden uns im 2. Obergeschoss in der Europapassage.",
56
"cover_picture": {
57
"current_url": "https://images.tgtg.ninja/standard_images/Chinese/korean-food-1699781_1280.jpg",
58
"is_automatically_created": False,
59
"picture_id": "282115",
60
},
61
"description": "Rette eine Überraschungstüte mit leckerem indischen Essen.",
62
"diet_categories": [],
63
"favorite_count": 0,
64
"food_handling_instructions": "",
65
"item_category": "MEAL",
66
"item_id": "774625",
67
"item_price": {"code": "EUR", "decimals": 2, "minor_units": 300},
68
"item_value": {"code": "EUR", "decimals": 2, "minor_units": 900},
69
"logo_picture": {
70
"current_url": "https://images.tgtg.ninja/store/e7fee96e-318a-4056-aaff-496794906be1.png",
71
"is_automatically_created": False,
72
"picture_id": "768433",
73
},
74
"name": "",
75
"packaging_option": "BAG_ALLOWED",
76
"positive_rating_reasons": [
77
"POSITIVE_FEEDBACK_DELICIOUS_FOOD",
78
"POSITIVE_FEEDBACK_QUICK_COLLECTION",
79
"POSITIVE_FEEDBACK_FRIENDLY_STAFF",
80
"POSITIVE_FEEDBACK_GREAT_VALUE",
81
"POSITIVE_FEEDBACK_GREAT_QUANTITY",
82
"POSITIVE_FEEDBACK_GREAT_VARIETY",
83
],
84
},
85
"item_tags": [{"id": "SOLD_OUT", "short_text": "Sold out"}],
86
"item_type": "MAGIC_BAG",
87
"items_available": 3,
88
"matches_filters": True,
89
"new_item": False,
90
"pickup_interval": {"end": "2021-01-04T19:30:00Z", "start": "2021-01-04T19:00:00Z"},
91
"pickup_location": {
92
"address": {
93
"address_line": "Ballindamm 40, 20095 Hamburg, Deutschland",
94
"city": "",
95
"country": {"iso_code": "DE", "name": "Germany"},
96
"postal_code": "",
97
},
98
"location": {"latitude": 53.55182, "longitude": 9.99532},
99
},
100
"purchase_end": "2024-01-04T19:30:00Z",
101
"sold_out_at": "2024-01-04T13:00:43Z",
102
"store": {
103
"branch": "Hamburg - Europapassage 2.OG",
104
"cover_picture": {
105
"current_url": "https://images.tgtg.ninja/standard_images/Chinese/korean-food-1699781_1280.jpg",
106
"is_automatically_created": False,
107
"picture_id": "282115",
108
},
109
"description": "",
110
"distance": 6025.8258209576325,
111
"favorite_count": 0,
112
"hidden": False,
113
"is_manufacturer": False,
114
"logo_picture": {
115
"current_url": "https://images.tgtg.ninja/store/e7fee96e-318a-4056-aaff-496794906be1.png",
116
"is_automatically_created": False,
117
"picture_id": "768433",
118
},
119
"store_id": "758373",
120
"store_location": {
121
"address": {
122
"address_line": "Ballindamm 40, 20095 Hamburg, Deutschland",
123
"city": "",
124
"country": {"iso_code": "DE", "name": "Germany"},
125
"postal_code": "",
126
},
127
"location": {"latitude": 53.55182, "longitude": 9.99532},
128
},
129
"store_name": "Chutney Indian Food",
130
"store_time_zone": "Europe/Berlin",
131
"tax_identifier": "DE252292855",
132
"we_care": False,
133
"website": "",
134
},
135
}
136
137