-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
60053c5
commit f585b79
Showing
1 changed file
with
27 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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
from unittest import mock | ||
|
||
import dbt.adapters.snowflake.__version__ | ||
|
||
from dbt.adapters.snowflake.impl import SnowflakeAdapter | ||
from dbt.adapters.base.relation import AdapterTrackingRelationInfo | ||
|
||
|
||
def test_telemetry_with_snowflake_details(): | ||
mock_model_config = mock.MagicMock() | ||
mock_model_config._extra = mock.MagicMock() | ||
mock_model_config._extra = { | ||
"adapter_type": "snowflake", | ||
"table_format": "iceberg", | ||
} | ||
|
||
res = SnowflakeAdapter.get_adapter_run_info(mock_model_config) | ||
|
||
assert res.adapter_name == "snowflake" | ||
assert res.base_adapter_version == dbt.adapters.__about__.version | ||
assert res.adapter_version == dbt.adapters.snowflake.__version__.version | ||
assert res.adapter_details == { | ||
"adapter_type": "snowflake", | ||
"table_format": "iceberg", | ||
} | ||
|
||
assert type(res) is AdapterTrackingRelationInfo |