-
Notifications
You must be signed in to change notification settings - Fork 380
Expand file tree
/
Copy pathtest_builtin.py
More file actions
233 lines (200 loc) · 8.11 KB
/
test_builtin.py
File metadata and controls
233 lines (200 loc) · 8.11 KB
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
import os
from sqlmesh import Context
from sqlmesh.core.linter.rule import Position, Range
from sqlmesh.core.model import load_sql_based_model
from sqlmesh.core import dialect as d
def test_no_missing_external_models(tmp_path, copy_to_temp_path) -> None:
"""
Tests that the linter correctly identifies unregistered external model dependencies.
This test removes the `external_models.yaml` file from the sushi example project,
enables the linter, and verifies that the linter raises a violation for a model
that depends on unregistered external models.
"""
sushi_paths = copy_to_temp_path("examples/sushi")
sushi_path = sushi_paths[0]
# Remove the external_models.yaml file
os.remove(sushi_path / "external_models.yaml")
# Override the config.py to turn on lint
with open(sushi_path / "config.py", "r") as f:
read_file = f.read()
before = """ linter=LinterConfig(
enabled=False,
rules=[
"ambiguousorinvalidcolumn",
"invalidselectstarexpansion",
"noselectstar",
"nomissingaudits",
"nomissingowner",
"nomissingexternalmodels",
"cronvalidator",
],
),"""
after = """linter=LinterConfig(enabled=True, rules=["nomissingexternalmodels"]),"""
read_file = read_file.replace(before, after)
assert after in read_file
with open(sushi_path / "config.py", "w") as f:
f.writelines(read_file)
# Load the context with the temporary sushi path
context = Context(paths=[sushi_path])
# Lint the models
lints = context.lint_models(raise_on_error=False)
assert len(lints) == 1
lint = lints[0]
assert lint.violation_range is not None
assert (
lint.violation_msg
== """Model '"memory"."sushi"."customers"' depends on unregistered external model '"memory"."raw"."demographics"'. Please register it in the external models file. This can be done by running 'sqlmesh create_external_models'."""
)
assert len(lint.fixes) == 1
fix = lint.fixes[0]
assert len(fix.edits) == 0
assert len(fix.create_files) == 1
create = fix.create_files[0]
assert create.path == sushi_path / "external_models.yaml"
assert create.text == '- name: \'"memory"."raw"."demographics"\'\n'
def test_no_missing_external_models_with_existing_file_ending_in_newline(
tmp_path, copy_to_temp_path
) -> None:
sushi_paths = copy_to_temp_path("examples/sushi")
sushi_path = sushi_paths[0]
# Overwrite the external_models.yaml file to end with a random file and a newline
os.remove(sushi_path / "external_models.yaml")
with open(sushi_path / "external_models.yaml", "w") as f:
f.write("- name: memory.raw.test\n")
# Override the config.py to turn on lint
with open(sushi_path / "config.py", "r") as f:
read_file = f.read()
before = """ linter=LinterConfig(
enabled=False,
rules=[
"ambiguousorinvalidcolumn",
"invalidselectstarexpansion",
"noselectstar",
"nomissingaudits",
"nomissingowner",
"nomissingexternalmodels",
"cronvalidator",
],
),"""
after = """linter=LinterConfig(enabled=True, rules=["nomissingexternalmodels"]),"""
read_file = read_file.replace(before, after)
assert after in read_file
with open(sushi_path / "config.py", "w") as f:
f.writelines(read_file)
# Load the context with the temporary sushi path
context = Context(paths=[sushi_path])
# Lint the models
lints = context.lint_models(raise_on_error=False)
assert len(lints) == 1
lint = lints[0]
assert lint.violation_range is not None
assert (
lint.violation_msg
== """Model '"memory"."sushi"."customers"' depends on unregistered external model '"memory"."raw"."demographics"'. Please register it in the external models file. This can be done by running 'sqlmesh create_external_models'."""
)
assert len(lint.fixes) == 1
fix = lint.fixes[0]
assert len(fix.edits) == 1
edit = fix.edits[0]
assert edit.new_text == """- name: '"memory"."raw"."demographics"'\n"""
assert edit.range == Range(
start=Position(line=1, character=0),
end=Position(line=1, character=0),
)
fix_path = sushi_path / "external_models.yaml"
assert edit.path == fix_path
def test_no_missing_external_models_with_existing_file_not_ending_in_newline(
tmp_path, copy_to_temp_path
) -> None:
sushi_paths = copy_to_temp_path("examples/sushi")
sushi_path = sushi_paths[0]
# Overwrite the external_models.yaml file to end with a random file and a newline
os.remove(sushi_path / "external_models.yaml")
with open(sushi_path / "external_models.yaml", "w") as f:
f.write("- name: memory.raw.test")
# Override the config.py to turn on lint
with open(sushi_path / "config.py", "r") as f:
read_file = f.read()
before = """ linter=LinterConfig(
enabled=False,
rules=[
"ambiguousorinvalidcolumn",
"invalidselectstarexpansion",
"noselectstar",
"nomissingaudits",
"nomissingowner",
"nomissingexternalmodels",
"cronvalidator",
],
),"""
after = """linter=LinterConfig(enabled=True, rules=["nomissingexternalmodels"]),"""
read_file = read_file.replace(before, after)
assert after in read_file
with open(sushi_path / "config.py", "w") as f:
f.writelines(read_file)
# Load the context with the temporary sushi path
context = Context(paths=[sushi_path])
# Lint the models
lints = context.lint_models(raise_on_error=False)
assert len(lints) == 1
lint = lints[0]
assert lint.violation_range is not None
assert (
lint.violation_msg
== """Model '"memory"."sushi"."customers"' depends on unregistered external model '"memory"."raw"."demographics"'. Please register it in the external models file. This can be done by running 'sqlmesh create_external_models'."""
)
assert len(lint.fixes) == 1
fix = lint.fixes[0]
assert len(fix.edits) == 1
edit = fix.edits[0]
assert edit.new_text == """\n- name: '"memory"."raw"."demographics"'\n"""
assert edit.range == Range(
start=Position(line=0, character=23),
end=Position(line=0, character=23),
)
fix_path = sushi_path / "external_models.yaml"
assert edit.path == fix_path
def test_cron_validator(tmp_path, copy_to_temp_path) -> None:
sushi_paths = copy_to_temp_path("examples/sushi")
sushi_path = sushi_paths[0]
# Override the config.py to turn on lint
with open(sushi_path / "config.py", "r") as f:
read_file = f.read()
before = """ linter=LinterConfig(
enabled=False,
rules=[
"ambiguousorinvalidcolumn",
"invalidselectstarexpansion",
"noselectstar",
"nomissingaudits",
"nomissingowner",
"nomissingexternalmodels",
"cronvalidator",
],
),"""
after = """linter=LinterConfig(enabled=True, rules=["cronvalidator"]),"""
read_file = read_file.replace(before, after)
assert after in read_file
with open(sushi_path / "config.py", "w") as f:
f.writelines(read_file)
# Load the context with the temporary sushi path
context = Context(paths=[sushi_path])
context.load()
# Create model with shorter cron interval that depends on model with longer interval
upstream_model = load_sql_based_model(
d.parse("MODEL (name memory.sushi.step_1, cron '@weekly'); SELECT * FROM (SELECT 1)")
)
downstream_model = load_sql_based_model(
d.parse(
"MODEL (name memory.sushi.step_2, cron '@daily', depends_on ['memory.sushi.step_1']); SELECT * FROM (SELECT 1)"
)
)
context.upsert_model(upstream_model)
context.upsert_model(downstream_model)
lints = context.lint_models(raise_on_error=False)
assert len(lints) == 1
lint = lints[0]
assert (
lint.violation_msg
== 'Upstream model "memory"."sushi"."step_1" has longer cron interval (@weekly) than this model (@daily)'
)