forked from TobikoData/sqlmesh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconftest.py
493 lines (400 loc) · 16.6 KB
/
conftest.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
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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
from __future__ import annotations
import datetime
import logging
import typing as t
import uuid
from pathlib import Path
from shutil import copytree, rmtree
from tempfile import TemporaryDirectory
from unittest import mock
from unittest.mock import PropertyMock
import duckdb
import pandas as pd
import pytest
from pytest_mock.plugin import MockerFixture
from sqlglot import exp, maybe_parse, parse_one
from sqlglot.dialects.dialect import DialectType
from sqlglot.helper import ensure_list
from sqlglot.optimizer.normalize_identifiers import normalize_identifiers
from sqlmesh.core.config import BaseDuckDBConnectionConfig
from sqlmesh.core.context import Context
from sqlmesh.core.engine_adapter import MSSQLEngineAdapter, SparkEngineAdapter
from sqlmesh.core.engine_adapter.base import EngineAdapter
from sqlmesh.core.environment import EnvironmentNamingInfo
from sqlmesh.core import lineage
from sqlmesh.core.macros import macro
from sqlmesh.core.model import IncrementalByTimeRangeKind, SqlModel, model
from sqlmesh.core.model.kind import OnDestructiveChange
from sqlmesh.core.plan import BuiltInPlanEvaluator, Plan
from sqlmesh.core.snapshot import (
Node,
Snapshot,
SnapshotChangeCategory,
SnapshotDataVersion,
SnapshotFingerprint,
)
from sqlmesh.utils import random_id
from sqlmesh.utils.date import TimeLike, to_date
from sqlmesh.core.engine_adapter.shared import CatalogSupport
pytest_plugins = ["tests.common_fixtures"]
T = t.TypeVar("T", bound=EngineAdapter)
class DuckDBMetadata:
def __init__(self, engine_adapter: EngineAdapter):
assert engine_adapter.dialect == "duckdb"
self.engine_adapter = engine_adapter
@classmethod
def from_context(cls, context: Context):
return cls(engine_adapter=context.engine_adapter)
@property
def tables(self) -> t.List[exp.Table]:
qualified_tables = self.qualified_tables
for table in qualified_tables:
table.set("db", None)
table.set("catalog", None)
return qualified_tables
@property
def qualified_tables(self) -> t.List[exp.Table]:
return sorted(
[
exp.to_table(x, dialect="duckdb")
for x in self._get_single_col(
f"SELECT table_catalog || '.' || table_schema || '.' || table_name as qualified_name FROM information_schema.tables WHERE table_type = 'BASE TABLE' AND {self._system_schema_filter('table_schema')}",
"qualified_name",
self.engine_adapter,
)
],
key=lambda x: x.sql(),
)
@property
def views(self) -> t.List[exp.Table]:
qualified_views = self.qualified_views
for view in qualified_views:
view.set("db", None)
view.set("catalog", None)
return qualified_views
@property
def qualified_views(self) -> t.List[exp.Table]:
return sorted(
[
exp.to_table(x, dialect="duckdb")
for x in self._get_single_col(
f"SELECT table_catalog || '.' || table_schema || '.' || table_name as qualified_name FROM information_schema.tables WHERE table_type = 'VIEW' AND {self._system_schema_filter('table_schema')}",
"qualified_name",
self.engine_adapter,
)
],
key=lambda x: x.sql(),
)
@property
def schemas(self) -> t.List[str]:
return self._get_single_col(
f"SELECT schema_name FROM information_schema.schemata WHERE catalog_name = '{self.engine_adapter.get_current_catalog()}' and {self._system_schema_filter('schema_name')}",
"schema_name",
self.engine_adapter,
)
def _system_schema_filter(self, col: str) -> str:
return f"{col} not in ('information_schema', 'pg_catalog', 'main')"
@staticmethod
def _get_single_col(query: str, col: str, engine_adapter: EngineAdapter) -> t.List[t.Any]:
return list(engine_adapter.fetchdf(query)[col].to_dict().values())
class SushiDataValidator:
def __init__(self, engine_adapter: EngineAdapter, sushi_schema_name: str):
self.engine_adapter = engine_adapter
self.sushi_schema_name = sushi_schema_name
@classmethod
def from_context(cls, context: Context, sushi_schema_name: str = "sushi"):
return cls(engine_adapter=context.engine_adapter, sushi_schema_name=sushi_schema_name)
def validate(
self,
model_name: str,
start: TimeLike,
end: TimeLike,
*,
env_name: t.Optional[str] = None,
dialect: t.Optional[str] = None,
environment_naming_info: t.Optional[EnvironmentNamingInfo] = None,
) -> t.Dict[t.Any, t.Any]:
if (
env_name
and dialect
and environment_naming_info
and environment_naming_info.normalize_name
):
# if the environment_naming_info was configured to normalize names, then Snapshot.qualified_view_name.table_for_enviromnent()
# returns schemas that contain the environment_name normalised for that engine
#
# in practice, this means "test_prod" becomes "TEST_PROD" on some engines so the final views are named like:
#
# "sushi__TEST_PROD"."waiter_as_customer_by_day"
#
# instead of:
#
# "sushi__test_prod"."waiter_as_customer_by_day"
#
# this matters for the reading the data back below to validate it
env_name = normalize_identifiers(env_name, dialect=dialect).name
"""
Both start and end are inclusive.
"""
if model_name in (
f"{self.sushi_schema_name}.customer_revenue_lifetime",
"sushi.customer_revenue_lifetime",
):
env_name = f"__{env_name}" if env_name else ""
full_table_path = f"{self.sushi_schema_name}{env_name}.customer_revenue_lifetime"
query = f"SELECT event_date, count(*) AS the_count FROM {full_table_path} group by event_date order by 2 desc, 1 desc"
results = self.engine_adapter.fetchdf(
parse_one(query), quote_identifiers=True
).to_dict()
start_date, end_date = to_date(start), to_date(end)
num_days_diff = (end_date - start_date).days + 1
assert len(results["event_date"]) == num_days_diff
# this creates Pandas Timestamp objects
expected_dates = [
pd.to_datetime(end_date - datetime.timedelta(days=x)) for x in range(num_days_diff)
]
# all engines but duckdb and clickhouse fetch dates as datetime.date objects
if dialect and dialect not in ("duckdb", "clickhouse"):
expected_dates = [x.date() for x in expected_dates] # type: ignore
assert list(results["event_date"].values()) == expected_dates
return results
else:
raise NotImplementedError(f"Unknown model_name: {model_name}")
def pytest_collection_modifyitems(items, *args, **kwargs):
test_type_markers = {"fast", "slow", "docker", "remote", "isolated"}
for item in items:
for marker in item.iter_markers():
if marker.name in test_type_markers:
break
else:
# if no test type marker is found, assume fast test
item.add_marker("fast")
# Ignore all local config files
@pytest.fixture(scope="session", autouse=True)
def ignore_local_config_files():
with mock.patch("sqlmesh.core.constants.SQLMESH_PATH", Path(TemporaryDirectory().name)):
yield
@pytest.fixture(scope="module", autouse=True)
def rescope_global_macros(request):
existing_registry = macro.get_registry().copy()
yield
macro.set_registry(existing_registry)
@pytest.fixture(scope="module", autouse=True)
def rescope_global_models(request):
existing_registry = model.get_registry().copy()
yield
model.set_registry(existing_registry)
@pytest.fixture(scope="function", autouse=True)
def rescope_duckdb_classvar(request):
BaseDuckDBConnectionConfig._data_file_to_adapter = {}
yield
@pytest.fixture(scope="module", autouse=True)
def rescope_log_handlers():
logging.getLogger().handlers.clear()
yield
@pytest.fixture(scope="function", autouse=True)
def rescope_lineage_cache(request):
lineage.CACHE.clear()
yield
@pytest.fixture
def duck_conn() -> duckdb.DuckDBPyConnection:
return duckdb.connect()
def push_plan(context: Context, plan: Plan) -> None:
plan_evaluator = BuiltInPlanEvaluator(
context.state_sync,
context.snapshot_evaluator,
context.create_scheduler,
context.default_catalog,
)
plan_evaluator._push(plan.to_evaluatable(), plan.snapshots)
promotion_result = plan_evaluator._promote(plan.to_evaluatable(), plan.snapshots)
plan_evaluator._update_views(plan.to_evaluatable(), plan.snapshots, promotion_result)
@pytest.fixture()
def sushi_context_pre_scheduling(init_and_plan_context: t.Callable) -> Context:
context, plan = init_and_plan_context("examples/sushi")
push_plan(context, plan)
return context
@pytest.fixture()
def sushi_context_fixed_date(init_and_plan_context: t.Callable) -> Context:
context, plan = init_and_plan_context("examples/sushi")
for model in context.models.values(): # noqa: F402
if model.start:
context.upsert_model(model.name, start="2022-01-01")
plan = context.plan("prod")
push_plan(context, plan)
return context
@pytest.fixture()
def sushi_context(init_and_plan_context: t.Callable) -> Context:
context, plan = init_and_plan_context("examples/sushi")
context.apply(plan)
return context
@pytest.fixture()
def sushi_dbt_context(init_and_plan_context: t.Callable) -> Context:
context, plan = init_and_plan_context("examples/sushi_dbt")
context.apply(plan)
return context
@pytest.fixture()
def sushi_test_dbt_context(init_and_plan_context) -> Context:
from tests.fixtures.dbt.sushi_test.seed_sources import init_raw_schema
context, plan = init_and_plan_context("tests/fixtures/dbt/sushi_test")
init_raw_schema(context.engine_adapter)
context.apply(plan)
return context
@pytest.fixture()
def sushi_no_default_catalog(mocker: MockerFixture, init_and_plan_context: t.Callable) -> Context:
mocker.patch(
"sqlmesh.core.engine_adapter.base.EngineAdapter.default_catalog",
PropertyMock(return_value=None),
)
context, plan = init_and_plan_context("examples/sushi")
assert context.default_catalog is None
context.apply(plan)
return context
@pytest.fixture
def init_and_plan_context(copy_to_temp_path, mocker) -> t.Callable:
def _make_function(
paths: str | t.List[str] | Path | t.List[Path], config="test_config"
) -> t.Tuple[Context, Plan]:
sushi_context = Context(paths=copy_to_temp_path(paths), config=config)
confirm = mocker.patch("sqlmesh.core.console.Confirm")
confirm.ask.return_value = False
plan = sushi_context.plan("prod")
return sushi_context, plan
return _make_function
@pytest.fixture
def assert_exp_eq() -> t.Callable:
def _assert_exp_eq(
source: exp.Expression | str, expected: exp.Expression | str, dialect: DialectType = None
) -> None:
source_exp = maybe_parse(source, dialect=dialect)
expected_exp = maybe_parse(expected, dialect=dialect)
if not source_exp:
raise ValueError(f"Could not parse {source}")
if not expected_exp:
raise ValueError(f"Could not parse {expected}")
if source_exp != expected_exp:
assert source_exp.sql(dialect=dialect, pretty=True) == expected_exp.sql(
dialect=dialect, pretty=True
)
assert source_exp == expected_exp
return _assert_exp_eq
@pytest.fixture
def make_snapshot() -> t.Callable:
def _make_function(node: Node, version: t.Optional[str] = None, **kwargs) -> Snapshot:
return Snapshot.from_node(
node,
**{ # type: ignore
"nodes": {},
"ttl": "in 1 week",
**kwargs,
},
version=version,
)
return _make_function
@pytest.fixture
def make_snapshot_on_destructive_change(make_snapshot: t.Callable) -> t.Callable:
def _make_function(
name: str = "a",
old_query: str = "select '1' as one, '2' as two, '2022-01-01' ds",
new_query: str = "select 1 as one, 2 as two, '2022-01-01' ds",
on_destructive_change: OnDestructiveChange = OnDestructiveChange.ERROR,
) -> t.Tuple[Snapshot, Snapshot]:
snapshot_old = make_snapshot(
SqlModel(
name=name,
dialect="duckdb",
query=parse_one(old_query),
kind=IncrementalByTimeRangeKind(
time_column="ds", forward_only=True, on_destructive_change=on_destructive_change
),
)
)
snapshot = make_snapshot(
SqlModel(
name=name,
dialect="duckdb",
query=parse_one(new_query),
kind=IncrementalByTimeRangeKind(
time_column="ds", forward_only=True, on_destructive_change=on_destructive_change
),
)
)
snapshot.previous_versions = (
SnapshotDataVersion(
fingerprint=SnapshotFingerprint(
data_hash="test_data_hash",
metadata_hash="test_metadata_hash",
),
version="test_version",
change_category=SnapshotChangeCategory.FORWARD_ONLY,
),
)
return snapshot_old, snapshot
return _make_function
@pytest.fixture
def random_name() -> t.Callable:
return lambda: f"generated_{random_id()}"
@pytest.fixture
def sushi_data_validator(sushi_context: Context) -> SushiDataValidator:
return SushiDataValidator.from_context(sushi_context)
@pytest.fixture
def sushi_fixed_date_data_validator(sushi_context_fixed_date: Context) -> SushiDataValidator:
return SushiDataValidator.from_context(sushi_context_fixed_date)
@pytest.fixture
def make_mocked_engine_adapter(mocker: MockerFixture) -> t.Callable:
def _make_function(
klass: t.Type[T], dialect: t.Optional[str] = None, register_comments: bool = True
) -> T:
connection_mock = mocker.NonCallableMock()
cursor_mock = mocker.Mock()
connection_mock.cursor.return_value = cursor_mock
cursor_mock.connection.return_value = connection_mock
adapter = klass(
lambda: connection_mock,
dialect=dialect or klass.DIALECT,
register_comments=register_comments,
)
if isinstance(adapter, SparkEngineAdapter):
mocker.patch(
"sqlmesh.engines.spark.db_api.spark_session.SparkSessionConnection._spark_major_minor",
new_callable=PropertyMock(return_value=(3, 5)),
)
if isinstance(adapter, MSSQLEngineAdapter):
mocker.patch(
"sqlmesh.core.engine_adapter.mssql.MSSQLEngineAdapter.catalog_support",
new_callable=PropertyMock(return_value=CatalogSupport.REQUIRES_SET_CATALOG),
)
return adapter
return _make_function
@pytest.fixture
def copy_to_temp_path(tmp_path: Path) -> t.Callable:
def ignore(src, names):
# do not copy any sub-dirs if current dir is named one of these
if Path(src).name in {".cache", "__pycache__", "logs", "data", "target"}:
return names
# do not copy sub-dirs named ".cache" for any current dir
return [name for name in names if name == ".cache"]
def _make_function(
paths: t.Union[t.Union[str, Path], t.Collection[t.Union[str, Path]]],
) -> t.List[Path]:
paths = ensure_list(paths)
temp_dirs = []
for path in paths:
temp_dir = Path(tmp_path) / uuid.uuid4().hex
copytree(path, temp_dir, symlinks=True, ignore=ignore)
temp_dirs.append(temp_dir)
return temp_dirs
return _make_function
def delete_cache(project_paths: str | t.List[str]) -> None:
for path in ensure_list(project_paths):
try:
rmtree(path + "/.cache")
except FileNotFoundError:
pass
@pytest.fixture
def make_temp_table_name(mocker: MockerFixture) -> t.Callable:
def _make_function(table_name: str, random_id: str) -> exp.Table:
temp_table = exp.to_table(table_name)
temp_table.set("this", exp.to_identifier(f"__temp_{temp_table.name}_{random_id}"))
return temp_table
return _make_function