-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathconftest.py
127 lines (99 loc) · 3.16 KB
/
conftest.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
import os
import pytest
from _pytest.fixtures import FixtureRequest
pytest_plugins = ["dbt.tests.fixtures.project"]
def pytest_addoption(parser):
parser.addoption(
"--profile",
action="store",
default=os.getenv("PROFILE_NAME", "user_azure"),
type=str,
)
@pytest.fixture(scope="class")
def dbt_profile_target(request: FixtureRequest, dbt_profile_target_update):
profile = request.config.getoption("--profile")
if profile == "ci_azure_cli":
target = _profile_ci_azure_cli()
elif profile == "ci_azure_auto":
target = _profile_ci_azure_auto()
elif profile == "ci_azure_environment":
target = _profile_ci_azure_environment()
elif profile == "user_azure":
target = _profile_user_azure()
elif profile == "integration_tests":
target = _profile_integration_tests()
else:
raise ValueError(f"Unknown profile: {profile}")
target.update(dbt_profile_target_update)
return target
@pytest.fixture(scope="class")
def dbt_profile_target_update():
return {}
def _all_profiles_base():
return {
"type": "fabric",
"driver": os.getenv("FABRIC_TEST_DRIVER", "ODBC Driver 18 for SQL Server"),
"retries": 2,
}
def _profile_ci_azure_base():
return {
**_all_profiles_base(),
**{
"host": os.getenv("DBT_AZURESQL_SERVER"),
"database": os.getenv("DBT_AZURESQL_DB"),
"encrypt": True,
"trust_cert": True,
"trace_flag": False,
},
}
def _profile_ci_azure_cli():
return {
**_profile_ci_azure_base(),
**{
"authentication": "CLI",
},
}
def _profile_ci_azure_auto():
return {
**_profile_ci_azure_base(),
**{
"authentication": "auto",
},
}
def _profile_ci_azure_environment():
return {
**_profile_ci_azure_base(),
**{
"authentication": "environment",
},
}
def _profile_user_azure():
profile = {
**_all_profiles_base(),
**{
"host": os.getenv("FABRIC_TEST_HOST"),
"authentication": os.getenv("FABRIC_TEST_AUTH", "CLI"),
"encrypt": True,
"trust_cert": True,
"database": os.getenv("FABRIC_TEST_DBNAME"),
},
}
return profile
def _profile_integration_tests():
profile = {
**_profile_ci_azure_base(),
**{
"authentication": os.getenv("FABRIC_TEST_AUTH", "ActiveDirectoryAccessToken"),
"access_token": os.getenv("FABRIC_INTEGRATION_TESTS_TOKEN"),
},
}
return profile
@pytest.fixture(autouse=True)
def skip_by_profile_type(request: FixtureRequest):
profile_type = request.config.getoption("--profile")
if request.node.get_closest_marker("skip_profile"):
if profile_type in request.node.get_closest_marker("skip_profile").args:
pytest.skip(f"Skipped on '{profile_type}' profile")
if request.node.get_closest_marker("only_with_profile"):
if profile_type not in request.node.get_closest_marker("only_with_profile").args:
pytest.skip(f"Skipped on '{profile_type}' profile")