forked from gouline/dbt-metabase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_metabase.py
338 lines (327 loc) · 12.1 KB
/
test_metabase.py
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
import json
import logging
import os
import unittest
import yaml
from dbtmetabase.metabase import MetabaseClient
from dbtmetabase.models.metabase import (
MetabaseModel,
MetabaseColumn,
ModelType,
)
MODELS = [
MetabaseModel(
name="orders",
schema="PUBLIC",
description="This table has basic information about orders, as well as some derived facts based on payments",
model_type=ModelType.nodes,
columns=[
MetabaseColumn(
name="ORDER_ID",
description="This is a unique identifier for an order",
meta_fields={},
semantic_type=None,
visibility_type=None,
fk_target_table=None,
fk_target_field=None,
),
MetabaseColumn(
name="CUSTOMER_ID",
description="Foreign key to the customers table",
meta_fields={},
semantic_type="type/FK",
visibility_type=None,
fk_target_table="PUBLIC.customers",
fk_target_field="CUSTOMER_ID",
),
MetabaseColumn(
name="ORDER_DATE",
description="Date (UTC) that the order was placed",
meta_fields={},
semantic_type=None,
visibility_type=None,
fk_target_table=None,
fk_target_field=None,
),
MetabaseColumn(
name="STATUS",
description="Orders can be one of the following statuses:\n\n| status | description |\n|----------------|------------------------------------------------------------------------------------------------------------------------|\n| placed | The order has been placed but has not yet left the warehouse |\n| shipped | The order has ben shipped to the customer and is currently in transit |\n| completed | The order has been received by the customer |\n| return_pending | The customer has indicated that they would like to return the order, but it has not yet been received at the warehouse |\n| returned | The order has been returned by the customer and received at the warehouse |",
meta_fields={},
semantic_type=None,
visibility_type=None,
fk_target_table=None,
fk_target_field=None,
),
MetabaseColumn(
name="AMOUNT",
description="Total amount (AUD) of the order",
meta_fields={},
semantic_type=None,
visibility_type=None,
fk_target_table=None,
fk_target_field=None,
),
MetabaseColumn(
name="CREDIT_CARD_AMOUNT",
description="Amount of the order (AUD) paid for by credit card",
meta_fields={},
semantic_type=None,
visibility_type=None,
fk_target_table=None,
fk_target_field=None,
),
MetabaseColumn(
name="COUPON_AMOUNT",
description="Amount of the order (AUD) paid for by coupon",
meta_fields={},
semantic_type=None,
visibility_type=None,
fk_target_table=None,
fk_target_field=None,
),
MetabaseColumn(
name="BANK_TRANSFER_AMOUNT",
description="Amount of the order (AUD) paid for by bank transfer",
meta_fields={},
semantic_type=None,
visibility_type=None,
fk_target_table=None,
fk_target_field=None,
),
MetabaseColumn(
name="GIFT_CARD_AMOUNT",
description="Amount of the order (AUD) paid for by gift card",
meta_fields={},
semantic_type=None,
visibility_type=None,
fk_target_table=None,
fk_target_field=None,
),
],
),
MetabaseModel(
name="customers",
schema="PUBLIC",
description="This table has basic information about a customer, as well as some derived facts based on a customer's orders",
model_type=ModelType.nodes,
columns=[
MetabaseColumn(
name="CUSTOMER_ID",
description="This is a unique identifier for a customer",
meta_fields={},
semantic_type="type/FK",
visibility_type=None,
fk_target_table="PUBLIC.orders",
fk_target_field="CUSTOMER_ID",
),
MetabaseColumn(
name="FIRST_NAME",
description="Customer's first name. PII.",
meta_fields={},
semantic_type=None,
visibility_type=None,
fk_target_table=None,
fk_target_field=None,
),
MetabaseColumn(
name="LAST_NAME",
description="Customer's last name. PII.",
meta_fields={},
semantic_type=None,
visibility_type=None,
fk_target_table=None,
fk_target_field=None,
),
MetabaseColumn(
name="FIRST_ORDER",
description="Date (UTC) of a customer's first order",
meta_fields={},
semantic_type=None,
visibility_type=None,
fk_target_table=None,
fk_target_field=None,
),
MetabaseColumn(
name="MOST_RECENT_ORDER",
description="Date (UTC) of a customer's most recent order",
meta_fields={},
semantic_type=None,
visibility_type=None,
fk_target_table=None,
fk_target_field=None,
),
MetabaseColumn(
name="NUMBER_OF_ORDERS",
description="Count of the number of orders a customer has placed",
meta_fields={"display_name": "order_count"},
semantic_type=None,
visibility_type=None,
fk_target_table=None,
fk_target_field=None,
),
MetabaseColumn(
name="TOTAL_ORDER_AMOUNT",
description="Total value (AUD) of a customer's orders",
meta_fields={},
semantic_type=None,
visibility_type=None,
fk_target_table=None,
fk_target_field=None,
),
],
),
MetabaseModel(
name="stg_orders",
schema="PUBLIC",
description="",
model_type=ModelType.nodes,
columns=[
MetabaseColumn(
name="ORDER_ID",
description="",
meta_fields={},
semantic_type=None,
visibility_type=None,
fk_target_table=None,
fk_target_field=None,
),
MetabaseColumn(
name="STATUS",
description="",
meta_fields={},
semantic_type=None,
visibility_type=None,
fk_target_table=None,
fk_target_field=None,
),
],
),
MetabaseModel(
name="stg_payments",
schema="PUBLIC",
description="",
model_type=ModelType.nodes,
columns=[
MetabaseColumn(
name="PAYMENT_ID",
description="",
meta_fields={},
semantic_type=None,
visibility_type=None,
fk_target_table=None,
fk_target_field=None,
),
MetabaseColumn(
name="PAYMENT_METHOD",
description="",
meta_fields={},
semantic_type=None,
visibility_type=None,
fk_target_table=None,
fk_target_field=None,
),
],
),
MetabaseModel(
name="stg_customers",
schema="PUBLIC",
description="",
model_type=ModelType.nodes,
columns=[
MetabaseColumn(
name="CUSTOMER_ID",
description="",
meta_fields={},
semantic_type=None,
visibility_type=None,
fk_target_table=None,
fk_target_field=None,
)
],
),
]
class MockMetabaseClient(MetabaseClient):
def get_session_id(self, user: str, password: str) -> str:
return "dummy"
def api(self, method: str, path: str, **kwargs):
BASE_PATH = "tests/fixtures/mock_api/"
if method == "get":
if os.path.exists(f"{BASE_PATH}/{path.lstrip('/')}.json"):
with open(f"{BASE_PATH}/{path.lstrip('/')}.json") as f:
return json.load(f)
else:
return {}
class TestMetabaseClient(unittest.TestCase):
def setUp(self):
self.client = MockMetabaseClient(
host="localhost:3000",
user="dummy",
password="dummy",
use_http=True,
)
logging.getLogger(__name__)
logging.basicConfig(level=logging.DEBUG)
def test_exposures(self):
mbc = self.client
mbc.extract_exposures(
MODELS,
output_name="unittest_exposures",
output_path="tests/fixtures/exposure/",
)
# Baseline in SCM
with open(
"tests/fixtures/exposure/baseline_test_exposures.yml", "r", encoding="utf-8"
) as f:
baseline = yaml.safe_load(f)
# Load from YAML and tear down
with open(
"tests/fixtures/exposure/unittest_exposures.yml", "r", encoding="utf-8"
) as f:
sample = yaml.safe_load(f)
baseline_exposures = sorted(baseline["exposures"], key=lambda ele: ele["name"])
sample_exposures = sorted(sample["exposures"], key=lambda ele: ele["name"])
self.assertEqual(baseline_exposures, sample_exposures)
def test_build_lookups(self):
mbc = self.client
baseline_tables = [
"PUBLIC.CUSTOMERS",
"PUBLIC.ORDERS",
"PUBLIC.RAW_CUSTOMERS",
"PUBLIC.RAW_ORDERS",
"PUBLIC.RAW_PAYMENTS",
"PUBLIC.STG_CUSTOMERS",
"PUBLIC.STG_ORDERS",
"PUBLIC.STG_PAYMENTS",
]
metadata = mbc.build_metadata(database_id=2)
self.assertEqual(baseline_tables, list(metadata.tables.keys()))
baseline_columns = [
[
"CUSTOMER_ID",
"FIRST_NAME",
"LAST_NAME",
"FIRST_ORDER",
"MOST_RECENT_ORDER",
"NUMBER_OF_ORDERS",
"CUSTOMER_LIFETIME_VALUE",
],
[
"ORDER_ID",
"CUSTOMER_ID",
"ORDER_DATE",
"STATUS",
"CREDIT_CARD_AMOUNT",
"COUPON_AMOUNT",
"BANK_TRANSFER_AMOUNT",
"GIFT_CARD_AMOUNT",
"AMOUNT",
],
["ID", "FIRST_NAME", "LAST_NAME"],
["ID", "USER_ID", "ORDER_DATE", "STATUS"],
["ID", "ORDER_ID", "PAYMENT_METHOD", "AMOUNT"],
["CUSTOMER_ID", "FIRST_NAME", "LAST_NAME"],
["ORDER_ID", "CUSTOMER_ID", "ORDER_DATE", "STATUS"],
["PAYMENT_ID", "ORDER_ID", "PAYMENT_METHOD", "AMOUNT"],
]
for table, columns in zip(baseline_tables, baseline_columns):
self.assertEqual(columns, list(metadata.tables[table]["fields"].keys()))