-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '1.6.latest' into backport-8768-to-1.6.latest
- Loading branch information
Showing
4 changed files
with
198 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
kind: Fixes | ||
body: Group updates on unmodified nodes are handled gracefully for state:modified | ||
time: 2023-10-10T12:59:48.390113-05:00 | ||
custom: | ||
Author: emmyoop | ||
Issue: "8371" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
import os | ||
|
||
import pytest | ||
|
||
from dbt.tests.util import run_dbt, write_file, copy_file | ||
from dbt.exceptions import ParsingError | ||
|
||
|
||
from tests.functional.defer_state.fixtures import ( | ||
seed_csv, | ||
model_1_sql, | ||
modified_model_1_sql, | ||
model_2_sql, | ||
modified_model_2_sql, | ||
group_schema_yml, | ||
group_modified_schema_yml, | ||
group_modified_fail_schema_yml, | ||
) | ||
|
||
|
||
class GroupSetup: | ||
@pytest.fixture(scope="class") | ||
def models(self): | ||
return { | ||
"model_1.sql": model_1_sql, | ||
"model_2.sql": model_2_sql, | ||
"schema.yml": group_schema_yml, | ||
} | ||
|
||
@pytest.fixture(scope="class") | ||
def seeds(self): | ||
return { | ||
"seed.csv": seed_csv, | ||
} | ||
|
||
def group_setup(self): | ||
# save initial state | ||
run_dbt(["seed"]) | ||
results = run_dbt(["compile"]) | ||
|
||
# add sanity checks for first result | ||
assert len(results) == 3 | ||
seed_result = results[0].node | ||
assert seed_result.unique_id == "seed.test.seed" | ||
model_1_result = results[1].node | ||
assert model_1_result.unique_id == "model.test.model_1" | ||
assert model_1_result.group == "finance" | ||
model_2_result = results[2].node | ||
assert model_2_result.unique_id == "model.test.model_2" | ||
assert model_2_result.group == "finance" | ||
|
||
|
||
class TestFullyModifiedGroups(GroupSetup): | ||
def test_changed_groups(self, project): | ||
self.group_setup() | ||
|
||
# copy manifest.json to "state" directory | ||
os.makedirs("state") | ||
target_path = os.path.join(project.project_root, "target") | ||
copy_file(target_path, "manifest.json", project.project_root, ["state", "manifest.json"]) | ||
|
||
# update group name, modify model so it gets picked up | ||
write_file(modified_model_1_sql, "models", "model_1.sql") | ||
write_file(modified_model_2_sql, "models", "model_2.sql") | ||
write_file(group_modified_schema_yml, "models", "schema.yml") | ||
|
||
# this test is flaky if you don't clean first before the build | ||
run_dbt(["clean"]) | ||
# only thing in results should be model_1 | ||
results = run_dbt(["build", "-s", "state:modified", "--defer", "--state", "./state"]) | ||
|
||
assert len(results) == 2 | ||
model_1_result = results[0].node | ||
assert model_1_result.unique_id == "model.test.model_1" | ||
assert model_1_result.group == "accounting" # new group name! | ||
model_2_result = results[1].node | ||
assert model_2_result.unique_id == "model.test.model_2" | ||
assert model_2_result.group == "accounting" # new group name! | ||
|
||
|
||
class TestPartiallyModifiedGroups(GroupSetup): | ||
def test_changed_groups(self, project): | ||
self.group_setup() | ||
|
||
# copy manifest.json to "state" directory | ||
os.makedirs("state") | ||
target_path = os.path.join(project.project_root, "target") | ||
copy_file(target_path, "manifest.json", project.project_root, ["state", "manifest.json"]) | ||
|
||
# update group name, modify model so it gets picked up | ||
write_file(modified_model_1_sql, "models", "model_1.sql") | ||
write_file(group_modified_schema_yml, "models", "schema.yml") | ||
|
||
# this test is flaky if you don't clean first before the build | ||
run_dbt(["clean"]) | ||
# only thing in results should be model_1 | ||
results = run_dbt(["build", "-s", "state:modified", "--defer", "--state", "./state"]) | ||
|
||
assert len(results) == 1 | ||
model_1_result = results[0].node | ||
assert model_1_result.unique_id == "model.test.model_1" | ||
assert model_1_result.group == "accounting" # new group name! | ||
|
||
|
||
class TestBadGroups(GroupSetup): | ||
def test_changed_groups(self, project): | ||
self.group_setup() | ||
|
||
# copy manifest.json to "state" directory | ||
os.makedirs("state") | ||
target_path = os.path.join(project.project_root, "target") | ||
copy_file(target_path, "manifest.json", project.project_root, ["state", "manifest.json"]) | ||
|
||
# update group with invalid name, modify model so it gets picked up | ||
write_file(modified_model_1_sql, "models", "model_1.sql") | ||
write_file(group_modified_fail_schema_yml, "models", "schema.yml") | ||
|
||
# this test is flaky if you don't clean first before the build | ||
run_dbt(["clean"]) | ||
with pytest.raises(ParsingError, match="Invalid group 'accounting'"): | ||
run_dbt(["build", "-s", "state:modified", "--defer", "--state", "./state"]) |