-
Notifications
You must be signed in to change notification settings - Fork 200
/
Copy pathtest_integration.py
5216 lines (4405 loc) · 187 KB
/
test_integration.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 collections import Counter
from datetime import timedelta
from unittest import mock
from unittest.mock import patch
import numpy as np
import pandas as pd
import pytest
from pathlib import Path
import time_machine
from pytest_mock.plugin import MockerFixture
from sqlglot import exp
from sqlglot.expressions import DataType
from sqlmesh import CustomMaterialization
from sqlmesh.cli.example_project import init_example_project
from sqlmesh.core import constants as c
from sqlmesh.core import dialect as d
from sqlmesh.core.config import (
AutoCategorizationMode,
Config,
GatewayConfig,
ModelDefaultsConfig,
DuckDBConnectionConfig,
)
from sqlmesh.core.console import Console, get_console
from sqlmesh.core.context import Context
from sqlmesh.core.config.categorizer import CategorizerConfig
from sqlmesh.core.engine_adapter import EngineAdapter
from sqlmesh.core.environment import EnvironmentNamingInfo
from sqlmesh.core.macros import macro
from sqlmesh.core.model import (
FullKind,
IncrementalByTimeRangeKind,
IncrementalByUniqueKeyKind,
Model,
ModelKind,
ModelKindName,
SqlModel,
PythonModel,
ViewKind,
CustomKind,
TimeColumn,
load_sql_based_model,
)
from sqlmesh.core.model.kind import model_kind_type_from_name
from sqlmesh.core.plan import Plan, PlanBuilder, SnapshotIntervals
from sqlmesh.core.snapshot import (
DeployabilityIndex,
Snapshot,
SnapshotChangeCategory,
SnapshotId,
SnapshotInfoLike,
SnapshotTableInfo,
)
from sqlmesh.utils.date import TimeLike, now, to_date, to_datetime, to_timestamp
from sqlmesh.utils.errors import NoChangesPlanError
from sqlmesh.utils.pydantic import validate_string
from tests.conftest import DuckDBMetadata, SushiDataValidator
from tests.utils.test_helpers import use_terminal_console
if t.TYPE_CHECKING:
from sqlmesh import QueryOrDF
pytestmark = pytest.mark.slow
@pytest.fixture(autouse=True)
def mock_choices(mocker: MockerFixture):
mocker.patch("sqlmesh.core.console.TerminalConsole._get_snapshot_change_category")
mocker.patch("sqlmesh.core.console.TerminalConsole._prompt_backfill")
def plan_choice(plan_builder: PlanBuilder, choice: SnapshotChangeCategory) -> None:
for snapshot in plan_builder.build().snapshots.values():
if not snapshot.version:
plan_builder.set_choice(snapshot, choice)
@time_machine.travel("2023-01-08 15:00:00 UTC")
@pytest.mark.parametrize(
"context_fixture",
["sushi_context", "sushi_no_default_catalog"],
)
def test_forward_only_plan_with_effective_date(context_fixture: Context, request):
context = request.getfixturevalue(context_fixture)
model_name = "sushi.waiter_revenue_by_day"
model = context.get_model(model_name)
context.upsert_model(add_projection_to_model(t.cast(SqlModel, model)), start="2023-01-01")
snapshot = context.get_snapshot(model, raise_if_missing=True)
top_waiters_snapshot = context.get_snapshot("sushi.top_waiters", raise_if_missing=True)
plan_builder = context.plan_builder("dev", skip_tests=True, forward_only=True)
plan = plan_builder.build()
assert len(plan.new_snapshots) == 2
assert (
plan.context_diff.snapshots[snapshot.snapshot_id].change_category
== SnapshotChangeCategory.FORWARD_ONLY
)
assert (
plan.context_diff.snapshots[top_waiters_snapshot.snapshot_id].change_category
== SnapshotChangeCategory.FORWARD_ONLY
)
assert to_timestamp(plan.start) == to_timestamp("2023-01-07")
assert plan.missing_intervals == [
SnapshotIntervals(
snapshot_id=top_waiters_snapshot.snapshot_id,
intervals=[(to_timestamp("2023-01-07"), to_timestamp("2023-01-08"))],
),
SnapshotIntervals(
snapshot_id=snapshot.snapshot_id,
intervals=[(to_timestamp("2023-01-07"), to_timestamp("2023-01-08"))],
),
]
plan = plan_builder.set_effective_from("2023-01-05").build()
# Default start should be set to effective_from
assert plan.missing_intervals == [
SnapshotIntervals(
snapshot_id=top_waiters_snapshot.snapshot_id,
intervals=[
(to_timestamp("2023-01-05"), to_timestamp("2023-01-06")),
(to_timestamp("2023-01-06"), to_timestamp("2023-01-07")),
(to_timestamp("2023-01-07"), to_timestamp("2023-01-08")),
],
),
SnapshotIntervals(
snapshot_id=snapshot.snapshot_id,
intervals=[
(to_timestamp("2023-01-05"), to_timestamp("2023-01-06")),
(to_timestamp("2023-01-06"), to_timestamp("2023-01-07")),
(to_timestamp("2023-01-07"), to_timestamp("2023-01-08")),
],
),
]
plan = plan_builder.set_start("2023-01-06").build()
# Start override should take precedence
assert plan.missing_intervals == [
SnapshotIntervals(
snapshot_id=top_waiters_snapshot.snapshot_id,
intervals=[
(to_timestamp("2023-01-06"), to_timestamp("2023-01-07")),
(to_timestamp("2023-01-07"), to_timestamp("2023-01-08")),
],
),
SnapshotIntervals(
snapshot_id=snapshot.snapshot_id,
intervals=[
(to_timestamp("2023-01-06"), to_timestamp("2023-01-07")),
(to_timestamp("2023-01-07"), to_timestamp("2023-01-08")),
],
),
]
plan = plan_builder.set_effective_from("2023-01-04").build()
# Start should remain unchanged
assert plan.start == "2023-01-06"
assert plan.missing_intervals == [
SnapshotIntervals(
snapshot_id=top_waiters_snapshot.snapshot_id,
intervals=[
(to_timestamp("2023-01-06"), to_timestamp("2023-01-07")),
(to_timestamp("2023-01-07"), to_timestamp("2023-01-08")),
],
),
SnapshotIntervals(
snapshot_id=snapshot.snapshot_id,
intervals=[
(to_timestamp("2023-01-06"), to_timestamp("2023-01-07")),
(to_timestamp("2023-01-07"), to_timestamp("2023-01-08")),
],
),
]
context.apply(plan)
dev_df = context.engine_adapter.fetchdf(
"SELECT DISTINCT event_date FROM sushi__dev.waiter_revenue_by_day ORDER BY event_date"
)
assert dev_df["event_date"].tolist() == [
pd.to_datetime("2023-01-06"),
pd.to_datetime("2023-01-07"),
]
prod_plan = context.plan_builder(skip_tests=True).build()
# Make sure that the previously set effective_from is respected
assert prod_plan.start == to_timestamp("2023-01-04")
assert prod_plan.missing_intervals == [
SnapshotIntervals(
snapshot_id=top_waiters_snapshot.snapshot_id,
intervals=[
(to_timestamp("2023-01-04"), to_timestamp("2023-01-05")),
(to_timestamp("2023-01-05"), to_timestamp("2023-01-06")),
(to_timestamp("2023-01-06"), to_timestamp("2023-01-07")),
(to_timestamp("2023-01-07"), to_timestamp("2023-01-08")),
],
),
SnapshotIntervals(
snapshot_id=snapshot.snapshot_id,
intervals=[
(to_timestamp("2023-01-04"), to_timestamp("2023-01-05")),
(to_timestamp("2023-01-05"), to_timestamp("2023-01-06")),
(to_timestamp("2023-01-06"), to_timestamp("2023-01-07")),
(to_timestamp("2023-01-07"), to_timestamp("2023-01-08")),
],
),
]
context.apply(prod_plan)
prod_df = context.engine_adapter.fetchdf(
"SELECT DISTINCT event_date FROM sushi.waiter_revenue_by_day WHERE one IS NOT NULL ORDER BY event_date"
)
assert prod_df["event_date"].tolist() == [
pd.to_datetime(x) for x in ["2023-01-04", "2023-01-05", "2023-01-06", "2023-01-07"]
]
@time_machine.travel("2023-01-08 15:00:00 UTC")
def test_forward_only_model_regular_plan(init_and_plan_context: t.Callable):
context, plan = init_and_plan_context("examples/sushi")
context.apply(plan)
model_name = "sushi.waiter_revenue_by_day"
model = context.get_model(model_name)
model = add_projection_to_model(t.cast(SqlModel, model))
forward_only_kind = model.kind.copy(update={"forward_only": True})
model = model.copy(update={"kind": forward_only_kind})
context.upsert_model(model)
snapshot = context.get_snapshot(model, raise_if_missing=True)
top_waiters_snapshot = context.get_snapshot("sushi.top_waiters", raise_if_missing=True)
plan = context.plan_builder("dev", skip_tests=True, enable_preview=False).build()
assert len(plan.new_snapshots) == 2
assert (
plan.context_diff.snapshots[snapshot.snapshot_id].change_category
== SnapshotChangeCategory.FORWARD_ONLY
)
assert (
plan.context_diff.snapshots[top_waiters_snapshot.snapshot_id].change_category
== SnapshotChangeCategory.FORWARD_ONLY
)
assert plan.start == to_datetime("2023-01-01")
assert not plan.missing_intervals
context.apply(plan)
dev_df = context.engine_adapter.fetchdf(
"SELECT DISTINCT event_date FROM sushi__dev.waiter_revenue_by_day ORDER BY event_date"
)
assert not dev_df["event_date"].tolist()
# Run a restatement plan to preview changes
plan_builder = context.plan_builder(
"dev", skip_tests=True, restate_models=[model_name], enable_preview=False
)
plan_builder.set_start("2023-01-06")
assert plan_builder.build().missing_intervals == [
SnapshotIntervals(
snapshot_id=top_waiters_snapshot.snapshot_id,
intervals=[
(to_timestamp("2023-01-01"), to_timestamp("2023-01-02")),
(to_timestamp("2023-01-02"), to_timestamp("2023-01-03")),
(to_timestamp("2023-01-03"), to_timestamp("2023-01-04")),
(to_timestamp("2023-01-04"), to_timestamp("2023-01-05")),
(to_timestamp("2023-01-05"), to_timestamp("2023-01-06")),
(to_timestamp("2023-01-06"), to_timestamp("2023-01-07")),
(to_timestamp("2023-01-07"), to_timestamp("2023-01-08")),
],
),
SnapshotIntervals(
snapshot_id=snapshot.snapshot_id,
intervals=[
(to_timestamp("2023-01-06"), to_timestamp("2023-01-07")),
(to_timestamp("2023-01-07"), to_timestamp("2023-01-08")),
],
),
]
# Make sure that changed start is reflected in missing intervals
plan_builder.set_start("2023-01-07")
assert plan_builder.build().missing_intervals == [
SnapshotIntervals(
snapshot_id=top_waiters_snapshot.snapshot_id,
intervals=[
(to_timestamp("2023-01-01"), to_timestamp("2023-01-02")),
(to_timestamp("2023-01-02"), to_timestamp("2023-01-03")),
(to_timestamp("2023-01-03"), to_timestamp("2023-01-04")),
(to_timestamp("2023-01-04"), to_timestamp("2023-01-05")),
(to_timestamp("2023-01-05"), to_timestamp("2023-01-06")),
(to_timestamp("2023-01-06"), to_timestamp("2023-01-07")),
(to_timestamp("2023-01-07"), to_timestamp("2023-01-08")),
],
),
SnapshotIntervals(
snapshot_id=snapshot.snapshot_id,
intervals=[
(to_timestamp("2023-01-07"), to_timestamp("2023-01-08")),
],
),
]
context.apply(plan_builder.build())
dev_df = context.engine_adapter.fetchdf(
"SELECT DISTINCT event_date FROM sushi__dev.waiter_revenue_by_day ORDER BY event_date"
)
assert dev_df["event_date"].tolist() == [pd.to_datetime("2023-01-07")]
# Promote changes to prod
prod_plan = context.plan_builder(skip_tests=True).build()
assert not prod_plan.missing_intervals
context.apply(prod_plan)
# The change was applied in a forward-only manner so no values in the new column should be populated
prod_df = context.engine_adapter.fetchdf(
"SELECT DISTINCT event_date FROM sushi.waiter_revenue_by_day WHERE one IS NOT NULL ORDER BY event_date"
)
assert not prod_df["event_date"].tolist()
@time_machine.travel("2023-01-08 15:00:00 UTC")
def test_forward_only_model_regular_plan_preview_enabled(init_and_plan_context: t.Callable):
context, plan = init_and_plan_context("examples/sushi")
context.apply(plan)
model_name = "sushi.waiter_revenue_by_day"
model = context.get_model(model_name)
model = add_projection_to_model(t.cast(SqlModel, model))
forward_only_kind = model.kind.copy(update={"forward_only": True})
model = model.copy(update={"kind": forward_only_kind})
context.upsert_model(model)
snapshot = context.get_snapshot(model, raise_if_missing=True)
top_waiters_snapshot = context.get_snapshot("sushi.top_waiters", raise_if_missing=True)
plan = context.plan_builder("dev", skip_tests=True, enable_preview=True).build()
assert len(plan.new_snapshots) == 2
assert (
plan.context_diff.snapshots[snapshot.snapshot_id].change_category
== SnapshotChangeCategory.FORWARD_ONLY
)
assert (
plan.context_diff.snapshots[top_waiters_snapshot.snapshot_id].change_category
== SnapshotChangeCategory.FORWARD_ONLY
)
assert to_timestamp(plan.start) == to_timestamp("2023-01-07")
assert plan.missing_intervals == [
SnapshotIntervals(
snapshot_id=top_waiters_snapshot.snapshot_id,
intervals=[
(to_timestamp("2023-01-07"), to_timestamp("2023-01-08")),
],
),
SnapshotIntervals(
snapshot_id=snapshot.snapshot_id,
intervals=[
(to_timestamp("2023-01-07"), to_timestamp("2023-01-08")),
],
),
]
context.apply(plan)
dev_df = context.engine_adapter.fetchdf(
"SELECT DISTINCT event_date FROM sushi__dev.waiter_revenue_by_day ORDER BY event_date"
)
assert dev_df["event_date"].tolist() == [pd.to_datetime("2023-01-07")]
@time_machine.travel("2023-01-08 15:00:00 UTC")
def test_forward_only_model_restate_full_history_in_dev(init_and_plan_context: t.Callable):
context, _ = init_and_plan_context("examples/sushi")
model_name = "memory.sushi.customer_max_revenue"
expressions = d.parse(
f"""
MODEL (
name {model_name},
kind INCREMENTAL_BY_UNIQUE_KEY (
unique_key customer_id,
forward_only true,
),
);
SELECT
customer_id, MAX(revenue) AS max_revenue
FROM memory.sushi.customer_revenue_lifetime
GROUP BY 1;
"""
)
model = load_sql_based_model(expressions)
assert model.forward_only
assert model.kind.full_history_restatement_only
context.upsert_model(model)
context.plan("prod", skip_tests=True, auto_apply=True, enable_preview=False)
model_kwargs = {
**model.dict(),
# Make a breaking change.
"query": model.query.order_by("customer_id"), # type: ignore
}
context.upsert_model(SqlModel.parse_obj(model_kwargs))
# Apply the model change in dev
plan = context.plan_builder("dev", skip_tests=True, enable_preview=False).build()
assert not plan.missing_intervals
context.apply(plan)
snapshot = context.get_snapshot(model, raise_if_missing=True)
snapshot_table_name = snapshot.table_name(False)
# Manually insert a dummy value to check that the table is recreated during the restatement
context.engine_adapter.insert_append(
snapshot_table_name,
pd.DataFrame({"customer_id": [-1], "max_revenue": [100]}),
)
df = context.engine_adapter.fetchdf(
"SELECT COUNT(*) AS cnt FROM sushi__dev.customer_max_revenue WHERE customer_id = -1"
)
assert df["cnt"][0] == 1
# Apply a restatement plan in dev
plan = context.plan("dev", restate_models=[model.name], auto_apply=True, enable_preview=False)
assert len(plan.missing_intervals) == 1
# Check that the dummy value is not present
df = context.engine_adapter.fetchdf(
"SELECT COUNT(*) AS cnt FROM sushi__dev.customer_max_revenue WHERE customer_id = -1"
)
assert df["cnt"][0] == 0
# Check that the table is not empty
df = context.engine_adapter.fetchdf(
"SELECT COUNT(*) AS cnt FROM sushi__dev.customer_max_revenue"
)
assert df["cnt"][0] > 0
@time_machine.travel("2023-01-08 15:00:00 UTC")
def test_full_history_restatement_model_regular_plan_preview_enabled(
init_and_plan_context: t.Callable,
):
context, plan = init_and_plan_context("examples/sushi")
context.apply(plan)
model_name = "sushi.marketing" # SCD2 model
model = context.get_model(model_name)
model = add_projection_to_model(t.cast(SqlModel, model))
context.upsert_model(model)
snapshot = context.get_snapshot(model, raise_if_missing=True)
customers_snapshot = context.get_snapshot("sushi.customers", raise_if_missing=True)
active_customers_snapshot = context.get_snapshot(
"sushi.active_customers", raise_if_missing=True
)
waiter_as_customer_snapshot = context.get_snapshot(
"sushi.waiter_as_customer_by_day", raise_if_missing=True
)
plan = context.plan_builder("dev", skip_tests=True, enable_preview=True).build()
assert len(plan.new_snapshots) == 4
assert (
plan.context_diff.snapshots[snapshot.snapshot_id].change_category
== SnapshotChangeCategory.FORWARD_ONLY
)
assert (
plan.context_diff.snapshots[customers_snapshot.snapshot_id].change_category
== SnapshotChangeCategory.FORWARD_ONLY
)
assert (
plan.context_diff.snapshots[active_customers_snapshot.snapshot_id].change_category
== SnapshotChangeCategory.FORWARD_ONLY
)
assert (
plan.context_diff.snapshots[waiter_as_customer_snapshot.snapshot_id].change_category
== SnapshotChangeCategory.FORWARD_ONLY
)
assert to_timestamp(plan.start) == to_timestamp("2023-01-07")
assert plan.missing_intervals == [
SnapshotIntervals(
snapshot_id=active_customers_snapshot.snapshot_id,
intervals=[
(to_timestamp("2023-01-07"), to_timestamp("2023-01-08")),
],
),
SnapshotIntervals(
snapshot_id=customers_snapshot.snapshot_id,
intervals=[
(to_timestamp("2023-01-07"), to_timestamp("2023-01-08")),
],
),
SnapshotIntervals(
snapshot_id=snapshot.snapshot_id,
intervals=[
(to_timestamp("2023-01-07"), to_timestamp("2023-01-08")),
],
),
SnapshotIntervals(
snapshot_id=waiter_as_customer_snapshot.snapshot_id,
intervals=[
(to_timestamp("2023-01-07"), to_timestamp("2023-01-08")),
],
),
]
context.apply(plan)
@time_machine.travel("2023-01-08 15:00:00 UTC")
def test_metadata_changed_regular_plan_preview_enabled(init_and_plan_context: t.Callable):
context, plan = init_and_plan_context("examples/sushi")
context.apply(plan)
model_name = "sushi.waiter_revenue_by_day"
model = context.get_model(model_name)
model = model.copy(update={"owner": "new_owner"})
context.upsert_model(model)
snapshot = context.get_snapshot(model, raise_if_missing=True)
top_waiters_snapshot = context.get_snapshot("sushi.top_waiters", raise_if_missing=True)
plan = context.plan_builder("dev", skip_tests=True, enable_preview=True).build()
assert len(plan.new_snapshots) == 2
assert (
plan.context_diff.snapshots[snapshot.snapshot_id].change_category
== SnapshotChangeCategory.METADATA
)
assert (
plan.context_diff.snapshots[top_waiters_snapshot.snapshot_id].change_category
== SnapshotChangeCategory.METADATA
)
assert not plan.missing_intervals
assert not plan.restatements
@time_machine.travel("2023-01-08 15:00:00 UTC")
def test_hourly_model_with_lookback_no_backfill_in_dev(init_and_plan_context: t.Callable):
context, plan = init_and_plan_context("examples/sushi")
model_name = "sushi.waiter_revenue_by_day"
model = context.get_model(model_name)
model = SqlModel.parse_obj(
{
**model.dict(),
"kind": model.kind.copy(update={"lookback": 1}),
"cron": "@hourly",
"audits": [],
}
)
context.upsert_model(model)
plan = context.plan_builder("prod", skip_tests=True).build()
context.apply(plan)
top_waiters_model = context.get_model("sushi.top_waiters")
top_waiters_model = add_projection_to_model(t.cast(SqlModel, top_waiters_model), literal=True)
context.upsert_model(top_waiters_model)
context.get_snapshot(model, raise_if_missing=True)
top_waiters_snapshot = context.get_snapshot("sushi.top_waiters", raise_if_missing=True)
with time_machine.travel(now() + timedelta(hours=2)):
plan = context.plan_builder("dev", skip_tests=True).build()
# Make sure the waiter_revenue_by_day model is not backfilled.
assert plan.missing_intervals == [
SnapshotIntervals(
snapshot_id=top_waiters_snapshot.snapshot_id,
intervals=[
(to_timestamp("2023-01-01"), to_timestamp("2023-01-02")),
(to_timestamp("2023-01-02"), to_timestamp("2023-01-03")),
(to_timestamp("2023-01-03"), to_timestamp("2023-01-04")),
(to_timestamp("2023-01-04"), to_timestamp("2023-01-05")),
(to_timestamp("2023-01-05"), to_timestamp("2023-01-06")),
(to_timestamp("2023-01-06"), to_timestamp("2023-01-07")),
(to_timestamp("2023-01-07"), to_timestamp("2023-01-08")),
],
),
]
@time_machine.travel("2023-01-08 00:00:00 UTC", tick=False)
def test_parent_cron_after_child(init_and_plan_context: t.Callable):
context, plan = init_and_plan_context("examples/sushi")
model = context.get_model("sushi.waiter_revenue_by_day")
model = SqlModel.parse_obj(
{
**model.dict(),
"cron": "50 23 * * *",
}
)
context.upsert_model(model)
plan = context.plan_builder("prod", skip_tests=True).build()
context.apply(plan)
waiter_revenue_by_day_snapshot = context.get_snapshot(model.name, raise_if_missing=True)
assert waiter_revenue_by_day_snapshot.intervals == [
(to_timestamp("2023-01-01"), to_timestamp("2023-01-07"))
]
top_waiters_model = context.get_model("sushi.top_waiters")
top_waiters_model = add_projection_to_model(t.cast(SqlModel, top_waiters_model), literal=True)
context.upsert_model(top_waiters_model)
top_waiters_snapshot = context.get_snapshot("sushi.top_waiters", raise_if_missing=True)
with time_machine.travel("2023-01-08 23:55:00 UTC"): # Past parent's cron, but before child's
plan = context.plan_builder("dev", skip_tests=True).build()
# Make sure the waiter_revenue_by_day model is not backfilled.
assert plan.missing_intervals == [
SnapshotIntervals(
snapshot_id=top_waiters_snapshot.snapshot_id,
intervals=[
(to_timestamp("2023-01-01"), to_timestamp("2023-01-02")),
(to_timestamp("2023-01-02"), to_timestamp("2023-01-03")),
(to_timestamp("2023-01-03"), to_timestamp("2023-01-04")),
(to_timestamp("2023-01-04"), to_timestamp("2023-01-05")),
(to_timestamp("2023-01-05"), to_timestamp("2023-01-06")),
(to_timestamp("2023-01-06"), to_timestamp("2023-01-07")),
(to_timestamp("2023-01-07"), to_timestamp("2023-01-08")),
],
),
]
@time_machine.travel("2023-01-08 00:00:00 UTC")
@pytest.mark.parametrize(
"forward_only, expected_intervals",
[
(
False,
[
(to_timestamp("2023-01-01"), to_timestamp("2023-01-02")),
(to_timestamp("2023-01-02"), to_timestamp("2023-01-03")),
(to_timestamp("2023-01-03"), to_timestamp("2023-01-04")),
(to_timestamp("2023-01-04"), to_timestamp("2023-01-05")),
(to_timestamp("2023-01-05"), to_timestamp("2023-01-06")),
(to_timestamp("2023-01-06"), to_timestamp("2023-01-07")),
],
),
(
True,
[
(to_timestamp("2023-01-06"), to_timestamp("2023-01-07")),
],
),
],
)
def test_cron_not_aligned_with_day_boundary(
init_and_plan_context: t.Callable,
forward_only: bool,
expected_intervals: t.List[t.Tuple[int, int]],
):
context, plan = init_and_plan_context("examples/sushi")
model = context.get_model("sushi.waiter_revenue_by_day")
model = SqlModel.parse_obj(
{
**model.dict(),
"kind": model.kind.copy(update={"forward_only": forward_only}),
"cron": "0 12 * * *",
}
)
context.upsert_model(model)
plan = context.plan_builder("prod", skip_tests=True).build()
context.apply(plan)
waiter_revenue_by_day_snapshot = context.get_snapshot(model.name, raise_if_missing=True)
assert waiter_revenue_by_day_snapshot.intervals == [
(to_timestamp("2023-01-01"), to_timestamp("2023-01-07"))
]
model = add_projection_to_model(t.cast(SqlModel, model), literal=True)
context.upsert_model(model)
waiter_revenue_by_day_snapshot = context.get_snapshot(
"sushi.waiter_revenue_by_day", raise_if_missing=True
)
with time_machine.travel("2023-01-08 00:10:00 UTC"): # Past model's cron.
plan = context.plan_builder(
"dev", select_models=[model.name], skip_tests=True, enable_preview=True
).build()
assert plan.missing_intervals == [
SnapshotIntervals(
snapshot_id=waiter_revenue_by_day_snapshot.snapshot_id,
intervals=expected_intervals,
),
]
@time_machine.travel("2023-01-08 00:00:00 UTC")
def test_cron_not_aligned_with_day_boundary_new_model(init_and_plan_context: t.Callable):
context, _ = init_and_plan_context("examples/sushi")
existing_model = context.get_model("sushi.waiter_revenue_by_day")
existing_model = SqlModel.parse_obj(
{
**existing_model.dict(),
"kind": existing_model.kind.copy(update={"forward_only": True}),
}
)
context.upsert_model(existing_model)
plan = context.plan_builder("prod", skip_tests=True).build()
context.apply(plan)
# Add a new model and make a change to a forward-only model.
# The cron of the new model is not aligned with the day boundary.
new_model = load_sql_based_model(
d.parse(
"""
MODEL (
name memory.sushi.new_model,
kind FULL,
cron '0 8 * * *',
start '2023-01-01',
);
SELECT 1 AS one;
"""
)
)
context.upsert_model(new_model)
existing_model = add_projection_to_model(t.cast(SqlModel, existing_model), literal=True)
context.upsert_model(existing_model)
plan = context.plan_builder("dev", skip_tests=True, enable_preview=True).build()
assert plan.missing_intervals == [
SnapshotIntervals(
snapshot_id=context.get_snapshot(
"memory.sushi.new_model", raise_if_missing=True
).snapshot_id,
intervals=[(to_timestamp("2023-01-06"), to_timestamp("2023-01-07"))],
),
SnapshotIntervals(
snapshot_id=context.get_snapshot(
"sushi.top_waiters", raise_if_missing=True
).snapshot_id,
intervals=[
(to_timestamp("2023-01-06"), to_timestamp("2023-01-07")),
(to_timestamp("2023-01-07"), to_timestamp("2023-01-08")),
],
),
SnapshotIntervals(
snapshot_id=context.get_snapshot(
"sushi.waiter_revenue_by_day", raise_if_missing=True
).snapshot_id,
intervals=[
(to_timestamp("2023-01-06"), to_timestamp("2023-01-07")),
(to_timestamp("2023-01-07"), to_timestamp("2023-01-08")),
],
),
]
@time_machine.travel("2023-01-08 00:00:00 UTC")
def test_forward_only_preview_child_that_runs_before_parent(init_and_plan_context: t.Callable):
context, _ = init_and_plan_context("examples/sushi")
# This model runs at minute 30 of every hour
upstream_model = load_sql_based_model(
d.parse(
"""
MODEL (
name memory.sushi.upstream_model,
kind FULL,
cron '30 * * * *',
start '2023-01-01',
);
SELECT 1 AS a;
"""
)
)
context.upsert_model(upstream_model)
# This model runs at minute 0 of every hour, so it runs before the upstream model
downstream_model = load_sql_based_model(
d.parse(
"""
MODEL (
name memory.sushi.downstream_model,
kind INCREMENTAL_BY_TIME_RANGE(
time_column event_date,
forward_only True,
),
cron '0 * * * *',
start '2023-01-01',
);
SELECT a, '2023-01-06' AS event_date FROM memory.sushi.upstream_model;
"""
)
)
context.upsert_model(downstream_model)
context.plan("prod", skip_tests=True, auto_apply=True)
with time_machine.travel("2023-01-08 00:05:00 UTC"):
# The downstream model runs but not the upstream model
context.run("prod")
# Now it's time for the upstream model to run but it hasn't run yet
with time_machine.travel("2023-01-08 00:35:00 UTC"):
# Make a change to the downstream model.
downstream_model = add_projection_to_model(t.cast(SqlModel, downstream_model), literal=True)
context.upsert_model(downstream_model)
# The plan should only backfill the downstream model despite upstream missing intervals
plan = context.plan_builder("dev", skip_tests=True, enable_preview=True).build()
assert plan.missing_intervals == [
SnapshotIntervals(
snapshot_id=context.get_snapshot(
downstream_model.name, raise_if_missing=True
).snapshot_id,
intervals=[
(to_timestamp("2023-01-07 23:00:00"), to_timestamp("2023-01-08 00:00:00"))
],
),
]
@time_machine.travel("2023-01-08 00:00:00 UTC")
def test_forward_only_monthly_model(init_and_plan_context: t.Callable):
context, _ = init_and_plan_context("examples/sushi")
model = context.get_model("sushi.waiter_revenue_by_day")
model = SqlModel.parse_obj(
{
**model.dict(),
"kind": model.kind.copy(update={"forward_only": True}),
"cron": "0 0 1 * *",
"start": "2022-01-01",
"audits": [],
}
)
context.upsert_model(model)
plan = context.plan_builder("prod", skip_tests=True).build()
context.apply(plan)
waiter_revenue_by_day_snapshot = context.get_snapshot(model.name, raise_if_missing=True)
assert waiter_revenue_by_day_snapshot.intervals == [
(to_timestamp("2022-01-01"), to_timestamp("2023-01-01"))
]
model = add_projection_to_model(t.cast(SqlModel, model), literal=True)
context.upsert_model(model)
waiter_revenue_by_day_snapshot = context.get_snapshot(
"sushi.waiter_revenue_by_day", raise_if_missing=True
)
plan = context.plan_builder(
"dev", select_models=[model.name], skip_tests=True, enable_preview=True
).build()
assert to_timestamp(plan.start) == to_timestamp("2022-12-01")
assert to_timestamp(plan.end) == to_timestamp("2023-01-08")
assert plan.missing_intervals == [
SnapshotIntervals(
snapshot_id=waiter_revenue_by_day_snapshot.snapshot_id,
intervals=[(to_timestamp("2022-12-01"), to_timestamp("2023-01-01"))],
),
]
@time_machine.travel("2023-01-08 15:00:00 UTC")
def test_forward_only_parent_created_in_dev_child_created_in_prod(
init_and_plan_context: t.Callable,
):
context, plan = init_and_plan_context("examples/sushi")
context.apply(plan)
waiter_revenue_by_day_model = context.get_model("sushi.waiter_revenue_by_day")
waiter_revenue_by_day_model = add_projection_to_model(
t.cast(SqlModel, waiter_revenue_by_day_model)
)
forward_only_kind = waiter_revenue_by_day_model.kind.copy(update={"forward_only": True})
waiter_revenue_by_day_model = waiter_revenue_by_day_model.copy(
update={"kind": forward_only_kind}
)
context.upsert_model(waiter_revenue_by_day_model)
waiter_revenue_by_day_snapshot = context.get_snapshot(
waiter_revenue_by_day_model, raise_if_missing=True
)
top_waiters_snapshot = context.get_snapshot("sushi.top_waiters", raise_if_missing=True)
plan = context.plan_builder("dev", skip_tests=True, enable_preview=False).build()
assert len(plan.new_snapshots) == 2
assert (
plan.context_diff.snapshots[waiter_revenue_by_day_snapshot.snapshot_id].change_category
== SnapshotChangeCategory.FORWARD_ONLY
)
assert (
plan.context_diff.snapshots[top_waiters_snapshot.snapshot_id].change_category
== SnapshotChangeCategory.FORWARD_ONLY
)
assert plan.start == to_datetime("2023-01-01")
assert not plan.missing_intervals
context.apply(plan)
# Update the child to refer to a newly added column.
top_waiters_model = context.get_model("sushi.top_waiters")
top_waiters_model = add_projection_to_model(t.cast(SqlModel, top_waiters_model), literal=False)
context.upsert_model(top_waiters_model)
top_waiters_snapshot = context.get_snapshot("sushi.top_waiters", raise_if_missing=True)
plan = context.plan_builder("prod", skip_tests=True, enable_preview=False).build()
assert len(plan.new_snapshots) == 1
assert (
plan.context_diff.snapshots[top_waiters_snapshot.snapshot_id].change_category
== SnapshotChangeCategory.NON_BREAKING
)
context.apply(plan)
@time_machine.travel("2023-01-08 00:00:00 UTC")
def test_new_forward_only_model(init_and_plan_context: t.Callable):
context, _ = init_and_plan_context("examples/sushi")
context.plan("dev", skip_tests=True, no_prompts=True, auto_apply=True, enable_preview=False)
snapshot = context.get_snapshot("sushi.marketing")
# The deployable table should not exist yet
assert not context.engine_adapter.table_exists(snapshot.table_name())
assert context.engine_adapter.table_exists(snapshot.table_name(is_deployable=False))
context.plan("prod", skip_tests=True, no_prompts=True, auto_apply=True)
assert context.engine_adapter.table_exists(snapshot.table_name())
assert context.engine_adapter.table_exists(snapshot.table_name(is_deployable=False))
@time_machine.travel("2023-01-08 15:00:00 UTC")
def test_plan_set_choice_is_reflected_in_missing_intervals(init_and_plan_context: t.Callable):
context, plan = init_and_plan_context("examples/sushi")
context.apply(plan)
model_name = "sushi.waiter_revenue_by_day"
model = context.get_model(model_name)
context.upsert_model(add_projection_to_model(t.cast(SqlModel, model)))
snapshot = context.get_snapshot(model, raise_if_missing=True)
top_waiters_snapshot = context.get_snapshot("sushi.top_waiters", raise_if_missing=True)
plan_builder = context.plan_builder("dev", skip_tests=True)
plan = plan_builder.build()
assert len(plan.new_snapshots) == 2
assert (
plan.context_diff.snapshots[snapshot.snapshot_id].change_category
== SnapshotChangeCategory.NON_BREAKING
)
assert (
plan.context_diff.snapshots[top_waiters_snapshot.snapshot_id].change_category
== SnapshotChangeCategory.INDIRECT_NON_BREAKING
)
assert plan.start == to_timestamp("2023-01-01")
assert plan.missing_intervals == [
SnapshotIntervals(
snapshot_id=snapshot.snapshot_id,
intervals=[
(to_timestamp("2023-01-01"), to_timestamp("2023-01-02")),
(to_timestamp("2023-01-02"), to_timestamp("2023-01-03")),
(to_timestamp("2023-01-03"), to_timestamp("2023-01-04")),
(to_timestamp("2023-01-04"), to_timestamp("2023-01-05")),
(to_timestamp("2023-01-05"), to_timestamp("2023-01-06")),
(to_timestamp("2023-01-06"), to_timestamp("2023-01-07")),
(to_timestamp("2023-01-07"), to_timestamp("2023-01-08")),
],
),
]
# Change the category to BREAKING
plan = plan_builder.set_choice(
plan.context_diff.snapshots[snapshot.snapshot_id], SnapshotChangeCategory.BREAKING