forked from googleapis/python-bigquery-sqlalchemy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconftest.py
100 lines (81 loc) · 3.56 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
# Copyright (c) 2021 The sqlalchemy-bigquery Authors
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the rights to
# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
# the Software, and to permit persons to whom the Software is furnished to do so,
# subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
# FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
# COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
import contextlib
import mock
import sqlite3
import packaging.version
import pytest
import sqlalchemy
from . import fauxdbi
sqlalchemy_version = packaging.version.parse(sqlalchemy.__version__)
sqlalchemy_1_3_or_higher = pytest.mark.skipif(
sqlalchemy_version < packaging.version.parse("1.3"),
reason="requires sqlalchemy 1.3 or higher",
)
sqlalchemy_1_4_or_higher = pytest.mark.skipif(
sqlalchemy_version < packaging.version.parse("1.4"),
reason="requires sqlalchemy 1.4 or higher",
)
sqlalchemy_before_1_4 = pytest.mark.skipif(
sqlalchemy_version >= packaging.version.parse("1.4"),
reason="requires sqlalchemy 1.3 or lower",
)
@pytest.fixture()
def faux_conn():
test_data = dict(execute=[])
connection = sqlite3.connect(":memory:")
def factory(*args, **kw):
conn = fauxdbi.Connection(connection, test_data, *args, **kw)
return conn
with mock.patch("google.cloud.bigquery.dbapi.connection.Connection", factory):
# We want to bypass client creation. We don't need it and it requires creds.
with mock.patch(
"sqlalchemy_bigquery._helpers.create_bigquery_client", fauxdbi.FauxClient
):
with mock.patch("google.auth.default", return_value=("authdb", "authproj")):
engine = sqlalchemy.create_engine("bigquery://myproject/mydataset")
conn = engine.connect()
conn.test_data = test_data
def ex(sql, *args, **kw):
with contextlib.closing(
conn.connection.connection.connection.cursor()
) as cursor:
cursor.execute(sql, *args, **kw)
conn.ex = ex
ex("create table comments" " (key string primary key, comment string)")
yield conn
conn.close()
@pytest.fixture()
def last_query(faux_conn):
def last_query(sql, params=None, offset=1):
actual_sql, actual_params = faux_conn.test_data["execute"][-offset]
assert actual_sql == sql
if params is not None:
assert actual_params == params
return last_query
@pytest.fixture()
def metadata():
return sqlalchemy.MetaData()
def setup_table(connection, name, *columns, initial_data=(), **kw):
metadata = sqlalchemy.MetaData()
table = sqlalchemy.Table(name, metadata, *columns, **kw)
metadata.create_all(connection.engine)
if initial_data:
connection.execute(table.insert(), initial_data)
return table