-
Notifications
You must be signed in to change notification settings - Fork 30
/
test_seed.py
293 lines (258 loc) · 11.3 KB
/
test_seed.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
import pytest
from dbt.tests.adapter.simple_seed.seeds import seeds__expected_sql
from dbt.tests.adapter.simple_seed.test_seed import (
BaseBasicSeedTests,
BaseSeedConfigFullRefreshOff,
BaseSeedConfigFullRefreshOn,
BaseSeedCustomSchema,
BaseSeedWithEmptyDelimiter,
BaseSeedWithUniqueDelimiter,
BaseSeedWithWrongDelimiter,
BaseSimpleSeedEnabledViaConfig,
)
from dbt.tests.util import check_table_does_exist, check_table_does_not_exist, run_dbt
seeds__expected_sql = seeds__expected_sql.replace(
"TIMESTAMP WITHOUT TIME ZONE", "DATETIME2(6)"
).replace("TEXT", "VARCHAR(8000)")
properties__schema_yml = """
version: 2
seeds:
- name: seed_enabled
columns:
- name: birthday
data_tests:
- column_type:
type: date
- name: seed_id
data_tests:
- column_type:
type: varchar(8000)
- name: seed_tricky
columns:
- name: seed_id
data_tests:
- column_type:
type: integer
- name: seed_id_str
data_tests:
- column_type:
type: varchar(8000)
- name: a_bool
data_tests:
- column_type:
type: boolean
- name: looks_like_a_bool
data_tests:
- column_type:
type: varchar(8000)
- name: a_date
data_tests:
- column_type:
type: datetime2(6)
- name: looks_like_a_date
data_tests:
- column_type:
type: varchar(8000)
- name: relative
data_tests:
- column_type:
type: varchar(8000)
- name: weekday
data_tests:
- column_type:
type: varchar(8000)
"""
class TestBasicSeedTests(BaseBasicSeedTests):
@pytest.fixture(scope="class", autouse=True)
def setUp(self, project):
"""Create table for ensuring seeds and models used in tests build correctly"""
project.run_sql(seeds__expected_sql)
def test_simple_seed_full_refresh_flag(self, project):
"""
Drop the seed_actual table and re-create.
Verifies correct behavior by the absence of the
model which depends on seed_actual."""
self._build_relations_for_test(project)
self._check_relation_end_state(
run_result=run_dbt(["seed", "--full-refresh"]), project=project, exists=True
)
class TestSeedConfigFullRefreshOn(BaseSeedConfigFullRefreshOn):
@pytest.fixture(scope="class", autouse=True)
def setUp(self, project):
"""Create table for ensuring seeds and models used in tests build correctly"""
project.run_sql(seeds__expected_sql)
def test_simple_seed_full_refresh_config(self, project):
"""config option should drop current model and cascade drop to downstream models"""
self._build_relations_for_test(project)
self._check_relation_end_state(run_result=run_dbt(["seed"]), project=project, exists=True)
class TestSeedConfigFullRefreshOff(BaseSeedConfigFullRefreshOff):
@pytest.fixture(scope="class", autouse=True)
def setUp(self, project):
"""Create table for ensuring seeds and models used in tests build correctly"""
project.run_sql(seeds__expected_sql)
@pytest.mark.skip("Unable to inject custom schema to project_config_update")
class TestSeedCustomSchema(BaseSeedCustomSchema):
@pytest.fixture(scope="class", autouse=True)
def setUp(self, project):
"""Create table for ensuring seeds and models used in tests build correctly"""
project.run_sql(seeds__expected_sql)
class TestSeedWithUniqueDelimiter(BaseSeedWithUniqueDelimiter):
@pytest.fixture(scope="class", autouse=True)
def setUp(self, project):
"""Create table for ensuring seeds and models used in tests build correctly"""
project.run_sql(seeds__expected_sql)
class TestSeedWithWrongDelimiter(BaseSeedWithWrongDelimiter):
@pytest.fixture(scope="class", autouse=True)
def setUp(self, project):
"""Create table for ensuring seeds and models used in tests build correctly"""
project.run_sql(seeds__expected_sql)
def test_seed_with_wrong_delimiter(self, project):
"""Testing failure of running dbt seed with a wrongly configured delimiter"""
seed_result = run_dbt(["seed"], expect_pass=False)
assert "incorrect syntax" in seed_result.results[0].message.lower()
class TestSeedWithEmptyDelimiter(BaseSeedWithEmptyDelimiter):
@pytest.fixture(scope="class", autouse=True)
def setUp(self, project):
"""Create table for ensuring seeds and models used in tests build correctly"""
project.run_sql(seeds__expected_sql)
class TestSimpleSeedEnabledViaConfig__seed_with_disabled(BaseSimpleSeedEnabledViaConfig):
@pytest.fixture(scope="function")
def clear_test_schema(self, project):
yield
project.run_sql(
f"drop table if exists {project.database}.{project.test_schema}.seed_enabled"
)
project.run_sql(
f"drop table if exists {project.database}.{project.test_schema}.seed_disabled"
)
project.run_sql(
f"drop table if exists {project.database}.{project.test_schema}.seed_tricky"
)
project.run_sql(f"drop view if exists {project.test_schema}.seed_enabled")
project.run_sql(f"drop view if exists {project.test_schema}.seed_disabled")
project.run_sql(f"drop view if exists {project.test_schema}.seed_tricky")
project.run_sql(f"drop schema if exists {project.test_schema}")
def test_simple_seed_with_disabled(self, clear_test_schema, project):
results = run_dbt(["seed"])
assert len(results) == 2
check_table_does_exist(project.adapter, "seed_enabled")
check_table_does_not_exist(project.adapter, "seed_disabled")
check_table_does_exist(project.adapter, "seed_tricky")
@pytest.mark.skip(
reason="""
Running all the tests in the same schema causes the tests to fail
as they all share the same schema across the tests
"""
)
def test_simple_seed_selection(self, clear_test_schema, project):
results = run_dbt(["seed", "--select", "seed_enabled"])
assert len(results) == 1
check_table_does_exist(project.adapter, "seed_enabled")
check_table_does_not_exist(project.adapter, "seed_disabled")
check_table_does_not_exist(project.adapter, "seed_tricky")
@pytest.mark.skip(
reason="""
Running all the tests in the same schema causes the tests to fail
as they all share the same schema across the tests
"""
)
def test_simple_seed_exclude(self, clear_test_schema, project):
results = run_dbt(["seed", "--exclude", "seed_enabled"])
assert len(results) == 1
check_table_does_not_exist(project.adapter, "seed_enabled")
check_table_does_not_exist(project.adapter, "seed_disabled")
check_table_does_exist(project.adapter, "seed_tricky")
class TestSimpleSeedEnabledViaConfig__seed_selection(BaseSimpleSeedEnabledViaConfig):
@pytest.fixture(scope="function")
def clear_test_schema(self, project):
yield
project.run_sql(
f"drop table if exists {project.database}.{project.test_schema}.seed_enabled"
)
project.run_sql(
f"drop table if exists {project.database}.{project.test_schema}.seed_disabled"
)
project.run_sql(
f"drop table if exists {project.database}.{project.test_schema}.seed_tricky"
)
project.run_sql(f"drop view if exists {project.test_schema}.seed_enabled")
project.run_sql(f"drop view if exists {project.test_schema}.seed_disabled")
project.run_sql(f"drop view if exists {project.test_schema}.seed_tricky")
project.run_sql(f"drop schema if exists {project.test_schema}")
@pytest.mark.skip(
reason="""
Running all the tests in the same schema causes the tests to fail
as they all share the same schema across the tests
"""
)
def test_simple_seed_with_disabled(self, clear_test_schema, project):
results = run_dbt(["seed"])
assert len(results) == 2
check_table_does_exist(project.adapter, "seed_enabled")
check_table_does_not_exist(project.adapter, "seed_disabled")
check_table_does_exist(project.adapter, "seed_tricky")
def test_simple_seed_selection(self, clear_test_schema, project):
results = run_dbt(["seed", "--select", "seed_enabled"])
assert len(results) == 1
check_table_does_exist(project.adapter, "seed_enabled")
check_table_does_not_exist(project.adapter, "seed_disabled")
check_table_does_not_exist(project.adapter, "seed_tricky")
@pytest.mark.skip(
reason="""
Running all the tests in the same schema causes the tests to fail
as they all share the same schema across the tests
"""
)
def test_simple_seed_exclude(self, clear_test_schema, project):
results = run_dbt(["seed", "--exclude", "seed_enabled"])
assert len(results) == 1
check_table_does_not_exist(project.adapter, "seed_enabled")
check_table_does_not_exist(project.adapter, "seed_disabled")
check_table_does_exist(project.adapter, "seed_tricky")
class TestSimpleSeedEnabledViaConfig__seed_exclude(BaseSimpleSeedEnabledViaConfig):
@pytest.fixture(scope="function")
def clear_test_schema(self, project):
yield
project.run_sql(
f"drop table if exists {project.database}.{project.test_schema}.seed_enabled"
)
project.run_sql(
f"drop table if exists {project.database}.{project.test_schema}.seed_disabled"
)
project.run_sql(
f"drop table if exists {project.database}.{project.test_schema}.seed_tricky"
)
project.run_sql(f"drop view if exists {project.test_schema}.seed_enabled")
project.run_sql(f"drop view if exists {project.test_schema}.seed_disabled")
project.run_sql(f"drop view if exists {project.test_schema}.seed_tricky")
project.run_sql(f"drop schema if exists {project.test_schema}")
@pytest.mark.skip(
reason="""
Running all the tests in the same schema causes the tests to fail
as they all share the same schema across the tests
"""
)
def test_simple_seed_with_disabled(self, clear_test_schema, project):
results = run_dbt(["seed"])
assert len(results) == 2
check_table_does_exist(project.adapter, "seed_enabled")
check_table_does_not_exist(project.adapter, "seed_disabled")
check_table_does_exist(project.adapter, "seed_tricky")
@pytest.mark.skip(
reason="""
Running all the tests in the same schema causes the tests to fail
as they all share the same schema across the tests
"""
)
def test_simple_seed_selection(self, clear_test_schema, project):
results = run_dbt(["seed", "--select", "seed_enabled"])
assert len(results) == 1
check_table_does_exist(project.adapter, "seed_enabled")
check_table_does_not_exist(project.adapter, "seed_disabled")
check_table_does_not_exist(project.adapter, "seed_tricky")
def test_simple_seed_exclude(self, clear_test_schema, project):
results = run_dbt(["seed", "--exclude", "seed_enabled"])
assert len(results) == 1
check_table_does_not_exist(project.adapter, "seed_enabled")
check_table_does_not_exist(project.adapter, "seed_disabled")
check_table_does_exist(project.adapter, "seed_tricky")