-
Notifications
You must be signed in to change notification settings - Fork 170
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
160 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,160 @@ | ||
"""Tests for the Oracle profile.""" | ||
|
||
from unittest.mock import patch | ||
|
||
import pytest | ||
from airflow.models.connection import Connection | ||
|
||
from cosmos.profiles import get_automatic_profile_mapping | ||
from cosmos.profiles.oracle.user_pass import OracleUserPasswordProfileMapping | ||
|
||
|
||
@pytest.fixture() | ||
def mock_oracle_conn(): # type: ignore | ||
""" | ||
Sets the Oracle connection as an environment variable. | ||
""" | ||
conn = Connection( | ||
conn_id="my_oracle_connection", | ||
conn_type="oracle", | ||
host="my_host", | ||
login="my_user", | ||
password="my_password", | ||
port=1521, | ||
extra='{"service_name": "my_service"}', | ||
) | ||
|
||
with patch("airflow.hooks.base.BaseHook.get_connection", return_value=conn): | ||
yield conn | ||
|
||
|
||
@pytest.fixture() | ||
def mock_oracle_conn_custom_port(): # type: ignore | ||
""" | ||
Sets the Oracle connection with a custom port as an environment variable. | ||
""" | ||
conn = Connection( | ||
conn_id="my_oracle_connection", | ||
conn_type="oracle", | ||
host="my_host", | ||
login="my_user", | ||
password="my_password", | ||
port=1600, | ||
extra='{"service_name": "my_service"}', | ||
) | ||
|
||
with patch("airflow.hooks.base.BaseHook.get_connection", return_value=conn): | ||
yield conn | ||
|
||
|
||
def test_connection_claiming() -> None: | ||
""" | ||
Tests that the Oracle profile mapping claims the correct connection type. | ||
""" | ||
potential_values = { | ||
"conn_type": "oracle", | ||
"host": "my_host", | ||
"login": "my_user", | ||
"password": "my_password", | ||
"extra": '{"service_name": "my_service"}', | ||
} | ||
|
||
# if we're missing any of the required values, it shouldn't claim | ||
for key in potential_values: | ||
values = potential_values.copy() | ||
del values[key] | ||
conn = Connection(**values) # type: ignore | ||
|
||
with patch("airflow.hooks.base.BaseHook.get_connection", return_value=conn): | ||
profile_mapping = OracleUserPasswordProfileMapping(conn, {"schema": "my_schema"}) | ||
assert not profile_mapping.can_claim_connection() | ||
|
||
# if we have all the required values, it should claim | ||
conn = Connection(**potential_values) # type: ignore | ||
with patch("airflow.hooks.base.BaseHook.get_connection", return_value=conn): | ||
profile_mapping = OracleUserPasswordProfileMapping(conn, {"schema": "my_schema"}) | ||
assert profile_mapping.can_claim_connection() | ||
|
||
|
||
def test_profile_mapping_selected( | ||
mock_oracle_conn: Connection, | ||
) -> None: | ||
""" | ||
Tests that the correct profile mapping is selected. | ||
""" | ||
profile_mapping = get_automatic_profile_mapping( | ||
mock_oracle_conn.conn_id, | ||
{"schema": "my_schema"}, | ||
) | ||
assert isinstance(profile_mapping, OracleUserPasswordProfileMapping) | ||
|
||
|
||
def test_profile_mapping_keeps_custom_port(mock_oracle_conn_custom_port: Connection) -> None: | ||
profile = OracleUserPasswordProfileMapping(mock_oracle_conn_custom_port.conn_id, {"schema": "my_schema"}) | ||
assert profile.profile["port"] == 1600 | ||
|
||
|
||
def test_profile_args( | ||
mock_oracle_conn: Connection, | ||
) -> None: | ||
""" | ||
Tests that the profile values are set correctly. | ||
""" | ||
profile_mapping = get_automatic_profile_mapping( | ||
mock_oracle_conn.conn_id, | ||
profile_args={"schema": "my_schema"}, | ||
) | ||
assert profile_mapping.profile_args == { | ||
"schema": "my_schema", | ||
} | ||
|
||
assert profile_mapping.profile == { | ||
"type": mock_oracle_conn.conn_type, | ||
"host": mock_oracle_conn.host, | ||
"user": mock_oracle_conn.login, | ||
"password": "{{ env_var('COSMOS_CONN_ORACLE_PASSWORD') }}", | ||
"port": mock_oracle_conn.port, | ||
"service_name": "my_service", | ||
"schema": "my_schema", | ||
} | ||
|
||
|
||
def test_profile_args_overrides( | ||
mock_oracle_conn: Connection, | ||
) -> None: | ||
""" | ||
Tests that profile values can be overridden. | ||
""" | ||
profile_mapping = get_automatic_profile_mapping( | ||
mock_oracle_conn.conn_id, | ||
profile_args={"schema": "my_schema", "service_name": "my_service_override"}, | ||
) | ||
assert profile_mapping.profile_args == { | ||
"schema": "my_schema", | ||
"service_name": "my_service_override", | ||
} | ||
|
||
assert profile_mapping.profile == { | ||
"type": mock_oracle_conn.conn_type, | ||
"host": mock_oracle_conn.host, | ||
"user": mock_oracle_conn.login, | ||
"password": "{{ env_var('COSMOS_CONN_ORACLE_PASSWORD') }}", | ||
"port": mock_oracle_conn.port, | ||
"service_name": "my_service_override", | ||
"schema": "my_schema", | ||
} | ||
|
||
|
||
def test_profile_env_vars( | ||
mock_oracle_conn: Connection, | ||
) -> None: | ||
""" | ||
Tests that environment variables are set correctly. | ||
""" | ||
profile_mapping = get_automatic_profile_mapping( | ||
mock_oracle_conn.conn_id, | ||
profile_args={"schema": "my_schema"}, | ||
) | ||
assert profile_mapping.env_vars == { | ||
"COSMOS_CONN_ORACLE_PASSWORD": mock_oracle_conn.password, | ||
} |