forked from TobikoData/sqlmesh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_snapshot_evaluator.py
4041 lines (3400 loc) · 130 KB
/
test_snapshot_evaluator.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
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
from __future__ import annotations
import typing as t
from typing_extensions import Self
from unittest.mock import call, patch
import re
import logging
import pytest
import pandas as pd
import json
from pydantic import model_validator
from pathlib import Path
from pytest_mock.plugin import MockerFixture
from sqlglot import expressions as exp
from sqlglot import parse, parse_one, select
from sqlmesh.core.audit import ModelAudit, StandaloneAudit
from sqlmesh.core import dialect as d
from sqlmesh.core.dialect import schema_, to_schema
from sqlmesh.core.engine_adapter import EngineAdapter, create_engine_adapter, BigQueryEngineAdapter
from sqlmesh.core.engine_adapter.base import MERGE_SOURCE_ALIAS, MERGE_TARGET_ALIAS
from sqlmesh.core.engine_adapter.shared import (
DataObject,
DataObjectType,
InsertOverwriteStrategy,
)
from sqlmesh.core.environment import EnvironmentNamingInfo
from sqlmesh.core.macros import RuntimeStage, macro, MacroEvaluator, MacroFunc
from sqlmesh.core.model import (
Model,
FullKind,
IncrementalByTimeRangeKind,
IncrementalUnmanagedKind,
IncrementalByPartitionKind,
IncrementalByUniqueKeyKind,
PythonModel,
SqlModel,
TimeColumn,
ViewKind,
CustomKind,
load_sql_based_model,
ExternalModel,
model,
)
from sqlmesh.core.model.kind import OnDestructiveChange, ExternalKind
from sqlmesh.core.node import IntervalUnit
from sqlmesh.core.snapshot import (
DeployabilityIndex,
Intervals,
Snapshot,
SnapshotDataVersion,
SnapshotFingerprint,
SnapshotChangeCategory,
SnapshotEvaluator,
SnapshotTableCleanupTask,
)
from sqlmesh.core.snapshot.definition import to_view_mapping
from sqlmesh.core.snapshot.evaluator import CustomMaterialization
from sqlmesh.utils.concurrency import NodeExecutionFailedError
from sqlmesh.utils.date import to_timestamp
from sqlmesh.utils.errors import ConfigError, SQLMeshError, DestructiveChangeError
from sqlmesh.utils.metaprogramming import Executable
from sqlmesh.utils.pydantic import list_of_fields_validator
if t.TYPE_CHECKING:
from sqlmesh.core.engine_adapter._typing import QueryOrDF
@pytest.fixture
def snapshot(duck_conn, make_snapshot) -> Snapshot:
duck_conn.execute("CREATE VIEW tbl AS SELECT 1 AS a")
model = SqlModel(
name="db.model",
kind=FullKind(),
query=parse_one("SELECT a::int FROM tbl"),
)
snapshot = make_snapshot(model)
snapshot.categorize_as(SnapshotChangeCategory.BREAKING)
return snapshot
@pytest.fixture
def date_kwargs() -> t.Dict[str, str]:
return {
"start": "2020-01-01",
"end": "2020-01-01",
"execution_time": "2020-01-01",
}
@pytest.fixture
def adapter_mock(mocker: MockerFixture):
transaction_mock = mocker.Mock()
transaction_mock.__enter__ = mocker.Mock()
transaction_mock.__exit__ = mocker.Mock()
session_mock = mocker.Mock()
session_mock.__enter__ = mocker.Mock()
session_mock.__exit__ = mocker.Mock()
adapter_mock = mocker.Mock()
adapter_mock.transaction.return_value = transaction_mock
adapter_mock.session.return_value = session_mock
adapter_mock.dialect = "duckdb"
adapter_mock.HAS_VIEW_BINDING = False
adapter_mock.wap_supported.return_value = False
adapter_mock.get_data_objects.return_value = []
return adapter_mock
@pytest.fixture
def adapters(mocker: MockerFixture):
adapters = []
for i in range(3):
transaction_mock = mocker.Mock()
transaction_mock.__enter__ = mocker.Mock()
transaction_mock.__exit__ = mocker.Mock()
session_mock = mocker.Mock()
session_mock.__enter__ = mocker.Mock()
session_mock.__exit__ = mocker.Mock()
adapter_mock = mocker.Mock()
adapter_mock.transaction.return_value = transaction_mock
adapter_mock.session.return_value = session_mock
adapter_mock.dialect = "duckdb"
adapter_mock.HAS_VIEW_BINDING = False
adapter_mock.wap_supported.return_value = False
adapter_mock.get_data_objects.return_value = []
adapters.append(adapter_mock)
return adapters
def test_evaluate(mocker: MockerFixture, adapter_mock, make_snapshot):
evaluator = SnapshotEvaluator(adapter_mock)
payload = {"calls": 0}
@macro()
def x(evaluator, y=None) -> None:
if "payload" not in evaluator.locals:
return
evaluator.locals["payload"]["calls"] += 1
if y is not None:
evaluator.locals["payload"]["y"] = y
model = load_sql_based_model(
parse( # type: ignore
"""
MODEL (
name test_schema.test_model,
kind INCREMENTAL_BY_TIME_RANGE (time_column a),
storage_format 'parquet',
);
@x();
@DEF(a, 1);
CREATE TABLE hook_called;
SELECT a::int FROM tbl WHERE ds BETWEEN @start_ds and @end_ds;
@x();
@DEF(b, 2);
@x(['a', 2, TRUE]);
"""
),
macros=macro.get_registry(),
)
snapshot = make_snapshot(model)
snapshot.categorize_as(SnapshotChangeCategory.BREAKING)
evaluator.create([snapshot], {})
evaluator.evaluate(
snapshot,
start="2020-01-01",
end="2020-01-02",
execution_time="2020-01-02",
snapshots={},
payload=payload,
)
assert payload["calls"] == 3
assert payload["y"] == exp.convert(["a", 2, True])
execute_calls = [call([parse_one('CREATE TABLE "hook_called"')])]
adapter_mock.execute.assert_has_calls(execute_calls)
adapter_mock.create_schema.assert_has_calls(
[
call(to_schema("sqlmesh__test_schema")),
]
)
common_kwargs = dict(
columns_to_types={"a": exp.DataType.build("int")},
table_format=None,
storage_format="parquet",
partitioned_by=[exp.to_column("a", quoted=True)],
partition_interval_unit=IntervalUnit.DAY,
clustered_by=[],
table_properties={},
table_description=None,
)
# Create will be called once and only prod table will be created
adapter_mock.create_table.assert_called_once_with(
snapshot.table_name(),
column_descriptions={},
**common_kwargs,
)
def test_runtime_stages(capsys, mocker, adapter_mock, make_snapshot):
evaluator = SnapshotEvaluator(adapter_mock)
@macro()
def increment_stage_counter(evaluator) -> None:
# Hack which allows us to intercept the different runtime stage values
print(f"RuntimeStage value: {evaluator.locals['runtime_stage']}")
model = load_sql_based_model(
parse( # type: ignore
"""
MODEL (
name test_schema.test_model,
kind FULL,
);
@increment_stage_counter();
@if(@runtime_stage = 'evaluating', ALTER TABLE test_schema.foo MODIFY COLUMN c SET MASKING POLICY p);
SELECT 1 AS a, @runtime_stage AS b;
"""
),
macros=macro.get_registry(),
)
capsys.readouterr()
snapshot = make_snapshot(model)
snapshot.categorize_as(SnapshotChangeCategory.BREAKING)
assert f"RuntimeStage value: {RuntimeStage.LOADING.value}" in capsys.readouterr().out
evaluator.create([snapshot], {})
assert f"RuntimeStage value: {RuntimeStage.CREATING.value}" in capsys.readouterr().out
evaluator.evaluate(
snapshot, start="2020-01-01", end="2020-01-02", execution_time="2020-01-02", snapshots={}
)
assert f"RuntimeStage value: {RuntimeStage.EVALUATING.value}" in capsys.readouterr().out
empty_call = call([])
non_empty_calls = [c for c in adapter_mock.execute.mock_calls if c != empty_call]
assert len(non_empty_calls) == 1
assert non_empty_calls[0] == call(
[parse_one("ALTER TABLE test_schema.foo MODIFY COLUMN c SET MASKING POLICY p")]
)
assert snapshot.model.render_query().sql() == '''SELECT 1 AS "a", 'loading' AS "b"'''
assert (
snapshot.model.render_query(runtime_stage=RuntimeStage.CREATING).sql()
== '''SELECT 1 AS "a", 'creating' AS "b"'''
)
assert (
snapshot.model.render_query(runtime_stage=RuntimeStage.EVALUATING).sql()
== '''SELECT 1 AS "a", 'evaluating' AS "b"'''
)
def test_promote(mocker: MockerFixture, adapter_mock, make_snapshot):
evaluator = SnapshotEvaluator(adapter_mock)
model = SqlModel(
name="test_schema.test_model",
kind=IncrementalByTimeRangeKind(time_column="a"),
storage_format="parquet",
query=parse_one("SELECT a FROM tbl WHERE ds BETWEEN @start_ds and @end_ds"),
)
snapshot = make_snapshot(model)
snapshot.categorize_as(SnapshotChangeCategory.BREAKING)
evaluator.promote([snapshot], EnvironmentNamingInfo(name="test_env"))
adapter_mock.create_schema.assert_called_once_with(to_schema("test_schema__test_env"))
adapter_mock.create_view.assert_called_once_with(
"test_schema__test_env.test_model",
parse_one(
f"SELECT * FROM sqlmesh__test_schema.test_schema__test_model__{snapshot.version}"
),
table_description=None,
column_descriptions=None,
view_properties={},
)
def test_demote(mocker: MockerFixture, adapter_mock, make_snapshot):
evaluator = SnapshotEvaluator(adapter_mock)
model = SqlModel(
name="test_schema.test_model",
kind=ViewKind(),
query=parse_one("SELECT a FROM tbl"),
)
snapshot = make_snapshot(model)
snapshot.categorize_as(SnapshotChangeCategory.BREAKING)
evaluator.demote([snapshot], EnvironmentNamingInfo(name="test_env"))
adapter_mock.drop_view.assert_called_once_with(
"test_schema__test_env.test_model",
cascade=False,
)
def test_promote_default_catalog(adapter_mock, make_snapshot):
evaluator = SnapshotEvaluator(adapter_mock)
model = SqlModel(
name="test_schema.test_model",
kind=IncrementalByTimeRangeKind(time_column="a"),
storage_format="parquet",
query=parse_one("SELECT a FROM tbl WHERE ds BETWEEN @start_ds and @end_ds"),
default_catalog="test_catalog",
)
snapshot = make_snapshot(model)
snapshot.categorize_as(SnapshotChangeCategory.BREAKING)
evaluator.promote([snapshot], EnvironmentNamingInfo(name="test_env"))
adapter_mock.create_schema.assert_called_once_with(
schema_("test_schema__test_env", "test_catalog")
)
adapter_mock.create_view.assert_called_once_with(
"test_catalog.test_schema__test_env.test_model",
parse_one(
f"SELECT * FROM test_catalog.sqlmesh__test_schema.test_schema__test_model__{snapshot.version}"
),
table_description=None,
column_descriptions=None,
view_properties={},
)
def test_promote_forward_only(mocker: MockerFixture, adapter_mock, make_snapshot):
evaluator = SnapshotEvaluator(adapter_mock)
model = SqlModel(
name="test_schema.test_model",
kind=IncrementalByTimeRangeKind(time_column="a"),
query=parse_one("SELECT a FROM tbl WHERE ds BETWEEN @start_ds and @end_ds"),
)
snapshot = make_snapshot(model)
snapshot.categorize_as(SnapshotChangeCategory.FORWARD_ONLY)
snapshot.version = "test_version"
evaluator.promote(
[snapshot],
EnvironmentNamingInfo(name="test_env"),
deployability_index=DeployabilityIndex.none_deployable(),
)
snapshot.unpaused_ts = to_timestamp("2023-01-01")
evaluator.promote(
[snapshot],
EnvironmentNamingInfo(name="test_env"),
deployability_index=DeployabilityIndex(indexed_ids=[snapshot.snapshot_id]),
)
adapter_mock.create_schema.assert_has_calls(
[
call(to_schema("test_schema__test_env")),
call(to_schema("test_schema__test_env")),
]
)
adapter_mock.create_view.assert_has_calls(
[
call(
"test_schema__test_env.test_model",
parse_one(
f"SELECT * FROM sqlmesh__test_schema.test_schema__test_model__{snapshot.fingerprint.to_version()}__dev"
),
table_description=None,
column_descriptions=None,
view_properties={},
),
call(
"test_schema__test_env.test_model",
parse_one(
"SELECT * FROM sqlmesh__test_schema.test_schema__test_model__test_version"
),
table_description=None,
column_descriptions=None,
view_properties={},
),
]
)
def test_cleanup(mocker: MockerFixture, adapter_mock, make_snapshot):
evaluator = SnapshotEvaluator(adapter_mock)
def create_and_cleanup(name: str, dev_table_only: bool):
model = SqlModel(
name=name,
kind=IncrementalByTimeRangeKind(time_column="a"),
storage_format="parquet",
query=parse_one("SELECT a FROM tbl WHERE ds BETWEEN @start_ds and @end_ds"),
)
snapshot = make_snapshot(model)
snapshot.categorize_as(SnapshotChangeCategory.FORWARD_ONLY)
snapshot.version = "test_version"
evaluator.promote([snapshot], EnvironmentNamingInfo(name="test_env"))
evaluator.cleanup(
[SnapshotTableCleanupTask(snapshot=snapshot.table_info, dev_table_only=dev_table_only)]
)
return snapshot
snapshot = create_and_cleanup("catalog.test_schema.test_model", True)
adapter_mock.drop_table.assert_called_once_with(
f"catalog.sqlmesh__test_schema.test_schema__test_model__{snapshot.fingerprint.to_version()}__dev"
)
adapter_mock.reset_mock()
snapshot = create_and_cleanup("test_schema.test_model", False)
adapter_mock.drop_table.assert_has_calls(
[
call(
f"sqlmesh__test_schema.test_schema__test_model__{snapshot.fingerprint.to_version()}__dev"
),
call(f"sqlmesh__test_schema.test_schema__test_model__{snapshot.version}"),
]
)
adapter_mock.reset_mock()
snapshot = create_and_cleanup("test_model", False)
adapter_mock.drop_table.assert_has_calls(
[
call(f"sqlmesh__default.test_model__{snapshot.fingerprint.to_version()}__dev"),
call(f"sqlmesh__default.test_model__{snapshot.version}"),
]
)
def test_cleanup_external_model(mocker: MockerFixture, adapter_mock, make_snapshot):
evaluator = SnapshotEvaluator(adapter_mock)
def create_and_cleanup_external_model(name: str, dev_table_only: bool):
model = ExternalModel(
name=name,
kind=ExternalKind(),
)
snapshot = make_snapshot(model)
snapshot.categorize_as(SnapshotChangeCategory.BREAKING)
snapshot.version = "test_version"
evaluator.promote([snapshot], EnvironmentNamingInfo(name="test_env"))
evaluator.cleanup(
[SnapshotTableCleanupTask(snapshot=snapshot.table_info, dev_table_only=dev_table_only)]
)
return snapshot
create_and_cleanup_external_model("catalog.test_schema.test_model", True)
adapter_mock.drop_table.assert_not_called()
@pytest.mark.parametrize("view_exists", [True, False])
def test_evaluate_materialized_view(
mocker: MockerFixture, adapter_mock, make_snapshot, view_exists: bool
):
adapter_mock.table_exists.return_value = view_exists
evaluator = SnapshotEvaluator(adapter_mock)
model = load_sql_based_model(
parse( # type: ignore
"""
MODEL (
name test_schema.test_model,
kind VIEW (
materialized true
)
);
SELECT a::int FROM tbl;
"""
),
)
snapshot = make_snapshot(model)
snapshot.categorize_as(SnapshotChangeCategory.BREAKING)
snapshot.add_interval("2023-01-01", "2023-01-01")
evaluator.evaluate(
snapshot,
start="2020-01-01",
end="2020-01-02",
execution_time="2020-01-02",
snapshots={},
)
adapter_mock.table_exists.assert_called_once_with(snapshot.table_name())
if view_exists:
# Evaluation shouldn't take place because the rendered query hasn't changed
# since the last view creation.
assert not adapter_mock.create_view.called
else:
# If the view doesn't exist, it should be created even if the rendered query
# hasn't changed since the last view creation.
adapter_mock.create_view.assert_called_once_with(
snapshot.table_name(),
model.render_query(),
model.columns_to_types,
replace=True,
materialized=True,
view_properties={},
table_description=None,
column_descriptions={},
)
def test_evaluate_materialized_view_with_partitioned_by_cluster_by(
mocker: MockerFixture, adapter_mock, make_snapshot
):
execute_mock = mocker.Mock()
# Use an engine adapter that supports cluster by/partitioned by
adapter = BigQueryEngineAdapter(lambda: mocker.Mock())
adapter.table_exists = lambda *args, **kwargs: False # type: ignore
adapter.get_data_objects = lambda *args, **kwargs: [] # type: ignore
adapter._execute = execute_mock # type: ignore
evaluator = SnapshotEvaluator(adapter)
model = SqlModel(
name="test_schema.test_model",
kind=ViewKind(
materialized=True,
),
partitioned_by=[exp.to_column("a")],
clustered_by=[exp.to_column("b")],
query=parse_one("SELECT a, b FROM tbl"),
)
snapshot = make_snapshot(model)
snapshot.categorize_as(SnapshotChangeCategory.BREAKING)
snapshot.add_interval("2023-01-01", "2023-01-01")
evaluator.create(
[snapshot],
snapshots={},
)
execute_mock.assert_has_calls(
[
call("CREATE SCHEMA IF NOT EXISTS `sqlmesh__test_schema`"),
call(
f"CREATE MATERIALIZED VIEW `sqlmesh__test_schema`.`test_schema__test_model__{snapshot.version}` PARTITION BY `a` CLUSTER BY `b` AS SELECT `a` AS `a`, `b` AS `b` FROM `tbl` AS `tbl`"
),
]
)
def test_evaluate_materialized_view_with_execution_time_macro(
mocker: MockerFixture, adapter_mock, make_snapshot
):
evaluator = SnapshotEvaluator(adapter_mock)
model = load_sql_based_model(
parse( # type: ignore
"""
MODEL (
name test_schema.test_model,
kind VIEW (
materialized true
)
);
SELECT a::int FROM tbl WHERE ds < @execution_ds;
"""
),
)
snapshot = make_snapshot(model)
snapshot.categorize_as(SnapshotChangeCategory.BREAKING)
evaluator.evaluate(
snapshot,
start="2020-01-01",
end="2020-01-02",
execution_time="2020-01-02",
snapshots={},
)
adapter_mock.create_view.assert_called_once_with(
snapshot.table_name(),
model.render_query(execution_time="2020-01-02"),
model.columns_to_types,
replace=True,
materialized=True,
view_properties={},
table_description=None,
column_descriptions={},
)
@pytest.mark.parametrize("insert_overwrite", [False, True])
def test_evaluate_incremental_unmanaged_with_intervals(
mocker: MockerFixture, make_snapshot, adapter_mock, insert_overwrite
):
model = SqlModel(
name="test_schema.test_model",
query=parse_one("SELECT 1, ds FROM tbl_a"),
kind=IncrementalUnmanagedKind(insert_overwrite=insert_overwrite),
partitioned_by=["ds"],
)
snapshot = make_snapshot(model)
snapshot.categorize_as(SnapshotChangeCategory.BREAKING)
snapshot.intervals = [(to_timestamp("2020-01-01"), to_timestamp("2020-01-02"))]
evaluator = SnapshotEvaluator(adapter_mock)
evaluator.evaluate(
snapshot,
start="2020-01-01",
end="2020-01-02",
execution_time="2020-01-02",
snapshots={},
)
if insert_overwrite:
adapter_mock.insert_overwrite_by_partition.assert_called_once_with(
snapshot.table_name(),
model.render_query(),
[exp.to_column("ds", quoted=True)],
columns_to_types=model.columns_to_types,
)
else:
adapter_mock.insert_append.assert_called_once_with(
snapshot.table_name(),
model.render_query(),
columns_to_types=model.columns_to_types,
)
@pytest.mark.parametrize("insert_overwrite", [False, True])
def test_evaluate_incremental_unmanaged_no_intervals(
mocker: MockerFixture, make_snapshot, adapter_mock, insert_overwrite
):
model = SqlModel(
name="test_schema.test_model",
query=parse_one("SELECT 1 as one, ds FROM tbl_a"),
kind=IncrementalUnmanagedKind(insert_overwrite=insert_overwrite),
partitioned_by=["ds"],
)
snapshot = make_snapshot(model)
snapshot.categorize_as(SnapshotChangeCategory.BREAKING)
table_columns = {"one": exp.DataType.build("int"), "ds": exp.DataType.build("timestamp")}
adapter_mock.columns.return_value = table_columns
evaluator = SnapshotEvaluator(adapter_mock)
evaluator.evaluate(
snapshot,
start="2020-01-01",
end="2020-01-02",
execution_time="2020-01-02",
snapshots={},
)
adapter_mock.replace_query.assert_called_once_with(
snapshot.table_name(),
model.render_query(),
clustered_by=[],
column_descriptions={},
columns_to_types=table_columns,
partition_interval_unit=model.partition_interval_unit,
partitioned_by=model.partitioned_by,
table_format=None,
storage_format=None,
table_description=None,
table_properties={},
)
adapter_mock.columns.assert_called_once_with(snapshot.table_name())
def test_create_prod_table_exists(mocker: MockerFixture, adapter_mock, make_snapshot):
model = load_sql_based_model(
parse( # type: ignore
"""
MODEL (
name test_schema.test_model,
kind VIEW
);
SELECT a::int FROM tbl;
"""
),
)
snapshot = make_snapshot(model)
snapshot.categorize_as(SnapshotChangeCategory.BREAKING)
adapter_mock.get_data_objects.return_value = [
DataObject(
name=f"test_schema__test_model__{snapshot.version}",
schema="sqlmesh__test_schema",
type=DataObjectType.VIEW,
),
]
evaluator = SnapshotEvaluator(adapter_mock)
evaluator.create([snapshot], {})
adapter_mock.create_view.assert_not_called()
adapter_mock.create_schema.assert_not_called()
adapter_mock.get_data_objects.assert_called_once_with(
schema_("sqlmesh__test_schema"),
{
f"test_schema__test_model__{snapshot.version}",
},
)
def test_create_only_dev_table_exists(mocker: MockerFixture, adapter_mock, make_snapshot):
model = load_sql_based_model(
parse( # type: ignore
"""
MODEL (
name test_schema.test_model,
kind VIEW
);
SELECT a::int FROM tbl;
"""
),
)
snapshot = make_snapshot(model)
snapshot.categorize_as(SnapshotChangeCategory.BREAKING)
adapter_mock.get_data_objects.return_value = [
DataObject(
name=f"test_schema__test_model__{snapshot.version}__dev",
schema="sqlmesh__test_schema",
type=DataObjectType.VIEW,
),
]
adapter_mock.table_exists.return_value = True
evaluator = SnapshotEvaluator(adapter_mock)
evaluator.create([snapshot], {})
adapter_mock.create_schema.assert_called_once_with(to_schema("sqlmesh__test_schema"))
adapter_mock.create_view.assert_not_called()
adapter_mock.get_data_objects.assert_called_once_with(
schema_("sqlmesh__test_schema"),
{
f"test_schema__test_model__{snapshot.version}",
},
)
def test_create_new_forward_only_model(mocker: MockerFixture, adapter_mock, make_snapshot):
model = load_sql_based_model(
parse( # type: ignore
"""
MODEL (
name test_schema.test_model,
kind INCREMENTAL_BY_TIME_RANGE (
time_column ds,
forward_only true,
)
);
SELECT a::int, '2024-01-01' as ds FROM tbl;
"""
),
)
snapshot = make_snapshot(model)
snapshot.categorize_as(SnapshotChangeCategory.BREAKING)
adapter_mock.get_data_objects.return_value = []
adapter_mock.table_exists.return_value = False
evaluator = SnapshotEvaluator(adapter_mock)
evaluator.create([snapshot], {}, deployability_index=DeployabilityIndex.none_deployable())
adapter_mock.create_schema.assert_called_once_with(to_schema("sqlmesh__test_schema"))
# Only non-deployable table should be created
adapter_mock.create_table.assert_called_once_with(
f"sqlmesh__test_schema.test_schema__test_model__{snapshot.dev_version}__dev",
columns_to_types={"a": exp.DataType.build("int"), "ds": exp.DataType.build("varchar")},
table_format=None,
storage_format=None,
partitioned_by=model.partitioned_by,
partition_interval_unit=model.partition_interval_unit,
clustered_by=[],
table_properties={},
table_description=None,
column_descriptions=None,
)
adapter_mock.get_data_objects.assert_called_once_with(
schema_("sqlmesh__test_schema"),
{
f"test_schema__test_model__{snapshot.version}",
f"test_schema__test_model__{snapshot.dev_version}__dev",
},
)
@pytest.mark.parametrize(
"deployability_index, snapshot_category, deployability_flags",
[
(DeployabilityIndex.all_deployable(), SnapshotChangeCategory.BREAKING, [False]),
(DeployabilityIndex.all_deployable(), SnapshotChangeCategory.NON_BREAKING, [False]),
(DeployabilityIndex.all_deployable(), SnapshotChangeCategory.FORWARD_ONLY, [True]),
(DeployabilityIndex.all_deployable(), SnapshotChangeCategory.INDIRECT_BREAKING, [False]),
(DeployabilityIndex.all_deployable(), SnapshotChangeCategory.INDIRECT_NON_BREAKING, [True]),
(DeployabilityIndex.all_deployable(), SnapshotChangeCategory.METADATA, [True]),
(
DeployabilityIndex.none_deployable(),
SnapshotChangeCategory.BREAKING,
[True, False],
),
(
DeployabilityIndex.none_deployable(),
SnapshotChangeCategory.NON_BREAKING,
[True, False],
),
(
DeployabilityIndex.none_deployable(),
SnapshotChangeCategory.FORWARD_ONLY,
[True],
),
(
DeployabilityIndex.none_deployable(),
SnapshotChangeCategory.INDIRECT_BREAKING,
[True, False],
),
(
DeployabilityIndex.none_deployable(),
SnapshotChangeCategory.INDIRECT_NON_BREAKING,
[True],
),
(
DeployabilityIndex.none_deployable(),
SnapshotChangeCategory.METADATA,
[True],
),
],
)
def test_create_tables_exist(
snapshot: Snapshot,
mocker: MockerFixture,
adapter_mock,
deployability_index: DeployabilityIndex,
deployability_flags: t.List[bool],
snapshot_category: SnapshotChangeCategory,
):
adapter_mock = mocker.patch("sqlmesh.core.engine_adapter.EngineAdapter")
adapter_mock.dialect = "duckdb"
evaluator = SnapshotEvaluator(adapter_mock)
snapshot.categorize_as(category=snapshot_category)
adapter_mock.get_data_objects.return_value = [
DataObject(
name=f"db__model__{snapshot.version}__dev",
schema="sqlmesh__db",
type=DataObjectType.TABLE,
),
DataObject(
name=f"db__model__{snapshot.version}",
schema="sqlmesh__db",
type=DataObjectType.TABLE,
),
]
evaluator.create(
target_snapshots=[snapshot],
snapshots={},
deployability_index=deployability_index,
)
adapter_mock.get_data_objects.assert_called_once_with(
schema_("sqlmesh__db"),
{
f"db__model__{snapshot.version}" if not flag else f"db__model__{snapshot.version}__dev"
for flag in set(deployability_flags + [False])
},
)
adapter_mock.create_schema.assert_not_called()
adapter_mock.create_table.assert_not_called()
def test_create_prod_table_exists_forward_only(mocker: MockerFixture, adapter_mock, make_snapshot):
model = load_sql_based_model(
parse( # type: ignore
"""
MODEL (
name test_schema.test_model,
kind FULL
);
SELECT a::int FROM tbl;
"""
),
)
snapshot = make_snapshot(model)
snapshot.categorize_as(SnapshotChangeCategory.FORWARD_ONLY)
adapter_mock.get_data_objects.return_value = [
DataObject(
name=f"test_schema__test_model__{snapshot.version}",
schema="sqlmesh__test_schema",
type=DataObjectType.TABLE,
),
]
evaluator = SnapshotEvaluator(adapter_mock)
evaluator.create([snapshot], {})
adapter_mock.get_data_objects.assert_called_once_with(
schema_("sqlmesh__test_schema"),
{
f"test_schema__test_model__{snapshot.version}__dev",
f"test_schema__test_model__{snapshot.version}",
},
)
adapter_mock.create_schema.assert_called_once_with(to_schema("sqlmesh__test_schema"))
adapter_mock.create_table.assert_called_once_with(
f"sqlmesh__test_schema.test_schema__test_model__{snapshot.version}__dev",
columns_to_types={"a": exp.DataType.build("int")},
table_format=None,
storage_format=None,
partitioned_by=[],
partition_interval_unit=None,
clustered_by=[],
table_properties={},
table_description=None,
column_descriptions=None,
)
def test_create_view_non_deployable_snapshot(mocker: MockerFixture, adapter_mock, make_snapshot):
model = load_sql_based_model(
parse( # type: ignore
"""
MODEL (
name test_schema.test_model,
kind VIEW
);
SELECT a::int FROM tbl;
"""
),
)
snapshot = make_snapshot(model)
snapshot.categorize_as(SnapshotChangeCategory.BREAKING)
adapter_mock.get_data_objects.return_value = []
adapter_mock.table_exists.return_value = False
evaluator = SnapshotEvaluator(adapter_mock)
deployability_index = DeployabilityIndex.none_deployable()
evaluator.create([snapshot], {}, deployability_index=deployability_index)
adapter_mock.create_view.assert_called_once_with(
snapshot.table_name(is_deployable=False),
model.render_query(),
column_descriptions=None,
view_properties={},
table_description=None,
materialized=False,
replace=False,
materialized_properties=None,
)
def test_create_materialized_view(mocker: MockerFixture, adapter_mock, make_snapshot):
adapter_mock.get_data_objects.return_value = []
adapter_mock.table_exists.return_value = False
evaluator = SnapshotEvaluator(adapter_mock)
model = load_sql_based_model(
parse( # type: ignore