Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set relation_name in tests at compile time #6949

Merged
merged 3 commits into from
Feb 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changes/unreleased/Fixes-20230210-194157.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: Fixes
body: Set relation_name in test nodes at compile time
time: 2023-02-10T19:41:57.386766-05:00
custom:
Author: gshank
Issue: "6930"
12 changes: 12 additions & 0 deletions core/dbt/compilation.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,6 +371,18 @@ def _compile_node(
node,
)

# relation_name is set at parse time, except for tests without store_failures,
# but cli param can turn on store_failures, so we set here.
if (
mikealfare marked this conversation as resolved.
Show resolved Hide resolved
node.resource_type == NodeType.Test
and node.relation_name is None
and node.is_relational
):
adapter = get_adapter(self.config)
relation_cls = adapter.Relation
relation_name = str(relation_cls.create_from(self.config, node))
node.relation_name = relation_name

node.compiled = True

return node
Expand Down
48 changes: 48 additions & 0 deletions tests/functional/artifacts/test_artifact_fields.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
import pytest
from dbt.tests.util import run_dbt, get_manifest, get_artifact

# This is a place to put specific tests for contents of artifacts that we
# don't want to bother putting in the big artifact output test, which is
# hard to update.

my_model_sql = "select 1 as fun"

schema_yml = """
version: 2
models:
- name: my_model
columns:
- name: fun
tests:
- not_null
"""


class TestRelationNameInTests:
@pytest.fixture(scope="class")
def models(self):
return {
"my_model.sql": my_model_sql,
"schema.yml": schema_yml,
}

def test_relation_name_in_tests(self, project):
results = run_dbt(["run"])
assert len(results) == 1
manifest = get_manifest(project.project_root)
test_id = "test.test.not_null_my_model_fun.bf3b032a01"
assert test_id in manifest.nodes
assert manifest.nodes[test_id].relation_name is None

results = run_dbt(["test", "--store-failures"])
assert len(results) == 1
# The relation_name for tests with previously generated manifest and
# store_failures passed in on the command line, will be in the manifest.json
# but not in the parsed manifest.
manifest = get_manifest(project.project_root)
assert manifest.nodes[test_id].relation_name is None
manifest_json = get_artifact(project.project_root, "target", "manifest.json")
assert test_id in manifest_json["nodes"]
relation_name = manifest_json["nodes"][test_id]["relation_name"]
assert relation_name
assert '"not_null_my_model_fun"' in relation_name