-
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
Showing
1 changed file
with
115 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,115 @@ | ||
""" | ||
The first time using an account for testing, you should run this: | ||
``` | ||
CREATE OR REPLACE SECURITY INTEGRATION DBT_INTEGRATION_TEST_OAUTH | ||
TYPE = OAUTH | ||
ENABLED = TRUE | ||
OAUTH_CLIENT = CUSTOM | ||
OAUTH_CLIENT_TYPE = 'CONFIDENTIAL' | ||
OAUTH_REDIRECT_URI = 'http://localhost:8080' | ||
oauth_issue_refresh_tokens = true | ||
OAUTH_ALLOW_NON_TLS_REDIRECT_URI = true | ||
BLOCKED_ROLES_LIST = <everything but your integration test role goes here: ('ACCOUNTADMIN', 'SECURITYADMIN'), or ignore it if you don't care> | ||
oauth_refresh_token_validity = 7776000; | ||
``` | ||
Every month (or any amount <90 days): | ||
Run `select SYSTEM$SHOW_OAUTH_CLIENT_SECRETS('DBT_INTEGRATION_TEST_OAUTH');` | ||
The only row/column of output should be a json blob, it goes (within single | ||
quotes!) as the second argument to the server script: | ||
python scripts/werkzeug-refresh-token.py ${acount_name} '${json_blob}' | ||
Open http://localhost:8080 | ||
Log in as the test user, get a response page with some environment variables. | ||
Update CI providers and test.env with the new values (If you kept the security | ||
integration the same, just the refresh token changed) | ||
""" | ||
|
||
import pytest | ||
import os | ||
from dbt.tests.util import run_dbt, check_relations_equal | ||
|
||
from dbt.adapters.snowflake import SnowflakeCredentials | ||
|
||
_MODELS__MODEL_1_SQL = """ | ||
select 1 as id | ||
""" | ||
|
||
|
||
_MODELS__MODEL_2_SQL = """ | ||
select 2 as id | ||
""" | ||
|
||
|
||
_MODELS__MODEL_3_SQL = """ | ||
select * from {{ ref('model_1') }} | ||
union all | ||
select * from {{ ref('model_2') }} | ||
""" | ||
|
||
|
||
_MODELS__MODEL_4_SQL = """ | ||
select 1 as id | ||
union all | ||
select 2 as id | ||
""" | ||
|
||
|
||
class TestSnowflakeJWT: | ||
"""Tests that setting authenticator: jwt allows setting token to a plain JWT | ||
that will be passed into the Snowflake connection without modification.""" | ||
|
||
@pytest.fixture(scope="class", autouse=True) | ||
def access_token(self): | ||
"""Because JWTs are short-lived, we need to get a fresh JWT via the refresh | ||
token flow before running the test. | ||
This fixture leverages the existing SnowflakeCredentials._get_access_token | ||
method to retrieve a valid JWT from Snowflake. | ||
""" | ||
client_id = os.getenv("SNOWFLAKE_TEST_OAUTH_CLIENT_ID") | ||
client_secret = os.getenv("SNOWFLAKE_TEST_OAUTH_CLIENT_SECRET") | ||
refresh_token = os.getenv("SNOWFLAKE_TEST_OAUTH_REFRESH_TOKEN") | ||
|
||
credentials = SnowflakeCredentials( | ||
account=os.getenv("SNOWFLAKE_TEST_ACCOUNT"), | ||
database="", | ||
schema="", | ||
authenticator="oauth", | ||
oauth_client_id=client_id, | ||
oauth_client_secret=client_secret, | ||
token=refresh_token, | ||
) | ||
|
||
yield credentials._get_access_token() | ||
|
||
@pytest.fixture(scope="class", autouse=True) | ||
def dbt_profile_target(self, access_token): | ||
return { | ||
"type": "snowflake", | ||
"threads": 4, | ||
"account": os.getenv("SNOWFLAKE_TEST_ACCOUNT"), | ||
"token": access_token, | ||
"database": os.getenv("SNOWFLAKE_TEST_DATABASE"), | ||
"warehouse": os.getenv("SNOWFLAKE_TEST_WAREHOUSE"), | ||
"authenticator": "jwt", | ||
} | ||
|
||
@pytest.fixture(scope="class") | ||
def models(self): | ||
return { | ||
"model_1.sql": _MODELS__MODEL_1_SQL, | ||
"model_2.sql": _MODELS__MODEL_2_SQL, | ||
"model_3.sql": _MODELS__MODEL_3_SQL, | ||
"model_4.sql": _MODELS__MODEL_4_SQL, | ||
} | ||
|
||
def test_snowflake_basic(self, project): | ||
run_dbt() | ||
check_relations_equal(project.adapter, ["MODEL_3", "MODEL_4"]) |