-
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.
fix #10422: add test for env_var casing on windows
- Loading branch information
Showing
2 changed files
with
63 additions
and
0 deletions.
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 |
---|---|---|
|
@@ -105,3 +105,4 @@ venv/ | |
|
||
# poetry | ||
poetry.lock | ||
.venv/ |
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,62 @@ | ||
import os | ||
|
||
import pytest | ||
|
||
from dbt.tests.util import run_dbt | ||
|
||
context_sql = """ | ||
{{ | ||
config( | ||
materialized='table' | ||
) | ||
}} | ||
select | ||
'{{ env_var("local_user", "") }}' as lowercase, | ||
'{{ env_var("LOCAL_USER", "") }}' as uppercase, | ||
'{{ env_var("lOcAl_UsEr", "") }}' as mixedcase | ||
""" | ||
|
||
|
||
class TestEnvVars: | ||
@pytest.fixture(scope="class") | ||
def models(self): | ||
return {"context.sql": context_sql} | ||
|
||
@pytest.fixture(scope="class", autouse=True) | ||
def setup(self): | ||
os.environ["local_user"] = "dan" | ||
yield | ||
del os.environ["local_user"] | ||
|
||
def get_ctx_vars(self, project): | ||
fields = [ | ||
"lowercase", | ||
"uppercase", | ||
"mixedcase", | ||
] | ||
field_list = ", ".join(['"{}"'.format(f) for f in fields]) | ||
query = "select {field_list} from {schema}.context".format( | ||
field_list=field_list, schema=project.test_schema | ||
) | ||
vals = project.run_sql(query, fetch="all") | ||
ctx = dict([(k, v) for (k, v) in zip(fields, vals[0])]) | ||
return ctx | ||
|
||
def test_env_vars( | ||
self, | ||
project, | ||
): | ||
results = run_dbt(["run"]) | ||
assert len(results) == 1 | ||
ctx = self.get_ctx_vars(project) | ||
|
||
assert ctx["lowercase"] == "dan" | ||
|
||
if os.name == "nt": | ||
assert ctx["uppercase"] == "dan" | ||
assert ctx["mixedcase"] == "dan" | ||
else: | ||
assert ctx["uppercase"] == "" | ||
assert ctx["mixedcase"] == "" |