3
3
from unittest .mock import patch
4
4
5
5
import pandas as pd
6
+ import sqlalchemy
6
7
from dune_client .models import ExecutionResult , ResultMetadata
7
8
from sqlalchemy import BIGINT
8
9
from sqlalchemy .dialects .postgresql import BYTEA
9
10
10
11
from src .config import RuntimeConfig
11
12
from src .sources .dune import _reformat_varbinary_columns , dune_result_to_df
12
- from src .sources .postgres import _convert_bytea_to_hex
13
+ from src .sources .postgres import PostgresSource , _convert_bytea_to_hex
13
14
from tests import fixtures_root , config_root
14
15
15
16
@@ -70,14 +71,21 @@ def test_convert_bytea_to_hex(self):
70
71
71
72
class TestPostgresSource (unittest .TestCase ):
72
73
73
- @patch .dict (
74
- os .environ ,
75
- {
76
- "DUNE_API_KEY" : "test_key" ,
77
- "DB_URL" : "postgresql://postgres:postgres@localhost:5432/postgres" ,
78
- },
79
- clear = True ,
80
- )
74
+ @classmethod
75
+ def setUpClass (cls ):
76
+ cls .env_patcher = patch .dict (
77
+ os .environ ,
78
+ {
79
+ "DUNE_API_KEY" : "test_key" ,
80
+ "DB_URL" : "postgresql://postgres:postgres@localhost:5432/postgres" ,
81
+ },
82
+ clear = True ,
83
+ )
84
+ cls .env_patcher .start ()
85
+
86
+ # TODO: This test is a Config loader test not directly testing PostgresSource
87
+ # When changing it to call PGSource directly, yields a bug with the constructor.
88
+ # The constructor only accepts string input, not Path!
81
89
def test_load_sql_file (self ):
82
90
os .chdir (fixtures_root )
83
91
@@ -88,3 +96,30 @@ def test_load_sql_file(self):
88
96
missing_file .unlink (missing_ok = True )
89
97
with self .assertRaises (RuntimeError ):
90
98
RuntimeConfig .load_from_yaml (config_root / "invalid_sql_file.yaml" )
99
+
100
+ def test_invalid_query_string (self ):
101
+ with self .assertRaises (ValueError ) as context :
102
+ PostgresSource (
103
+ db_url = os .environ ["DB_URL" ],
104
+ query_string = "SELECT * FROM does_not_exist" ,
105
+ )
106
+ self .assertEqual ("Config for PostgresSource is invalid" , str (context .exception ))
107
+
108
+ def test_invalid_connection_string (self ):
109
+ with self .assertRaises (sqlalchemy .exc .ArgumentError ) as context :
110
+ PostgresSource (
111
+ db_url = "invalid connection string" ,
112
+ query_string = "SELECT 1" ,
113
+ )
114
+ self .assertEqual (
115
+ "Could not parse SQLAlchemy URL from string 'invalid connection string'" ,
116
+ str (context .exception ),
117
+ )
118
+
119
+ def test_invalid_db_url (self ):
120
+ with self .assertRaises (ValueError ) as context :
121
+ PostgresSource (
122
+ db_url = "postgresql://postgres:BAD_PASSWORD@localhost:5432/postgres" ,
123
+ query_string = "SELECT 1" ,
124
+ )
125
+ self .assertEqual ("Config for PostgresSource is invalid" , str (context .exception ))
0 commit comments