forked from googleapis/python-bigquery-sqlalchemy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_helpers.py
106 lines (80 loc) · 3.16 KB
/
test_helpers.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
101
102
103
104
105
106
# Copyright 2021 The sqlalchemy-bigquery Authors
#
# Use of this source code is governed by an MIT-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/MIT.
import base64
import os
import json
import pytest
@pytest.fixture(scope="session")
def module_under_test():
from sqlalchemy_bigquery import _helpers
return _helpers
@pytest.fixture
def credentials_path():
if "GOOGLE_APPLICATION_CREDENTIALS" not in os.environ:
pytest.skip("GOOGLE_APPLICATION_CREDENTIALS must be set")
return os.environ["GOOGLE_APPLICATION_CREDENTIALS"]
@pytest.fixture
def credentials_info(credentials_path):
with open(credentials_path) as credentials_file:
return json.load(credentials_file)
@pytest.fixture
def credentials_base64(credentials_path):
with open(credentials_path) as credentials_file:
return base64.b64encode(credentials_file.read().encode()).decode()
def test_create_bigquery_client_with_credentials_path(
module_under_test, credentials_path, credentials_info
):
bqclient = module_under_test.create_bigquery_client(
credentials_path=credentials_path
)
assert bqclient.project == credentials_info["project_id"]
def test_create_bigquery_client_with_credentials_path_respects_project(
module_under_test, credentials_path
):
"""Test that project_id is used, even when there is a default project.
https://github.com/googleapis/python-bigquery-sqlalchemy/issues/48
"""
bqclient = module_under_test.create_bigquery_client(
credentials_path=credentials_path,
project_id="connection-url-project",
)
assert bqclient.project == "connection-url-project"
def test_create_bigquery_client_with_credentials_info(
module_under_test, credentials_info
):
bqclient = module_under_test.create_bigquery_client(
credentials_info=credentials_info
)
assert bqclient.project == credentials_info["project_id"]
def test_create_bigquery_client_with_credentials_info_respects_project(
module_under_test, credentials_info
):
"""Test that project_id is used, even when there is a default project.
https://github.com/googleapis/python-bigquery-sqlalchemy/issues/48
"""
bqclient = module_under_test.create_bigquery_client(
credentials_info=credentials_info,
project_id="connection-url-project",
)
assert bqclient.project == "connection-url-project"
def test_create_bigquery_client_with_credentials_base64(
module_under_test, credentials_base64, credentials_info
):
bqclient = module_under_test.create_bigquery_client(
credentials_base64=credentials_base64
)
assert bqclient.project == credentials_info["project_id"]
def test_create_bigquery_client_with_credentials_base64_respects_project(
module_under_test, credentials_base64
):
"""Test that project_id is used, even when there is a default project.
https://github.com/googleapis/python-bigquery-sqlalchemy/issues/48
"""
bqclient = module_under_test.create_bigquery_client(
credentials_base64=credentials_base64,
project_id="connection-url-project",
)
assert bqclient.project == "connection-url-project"