This repository was archived by the owner on Apr 1, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathmocks.py
More file actions
148 lines (121 loc) · 5.45 KB
/
mocks.py
File metadata and controls
148 lines (121 loc) · 5.45 KB
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
# Copyright 2023 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import copy
import datetime
from typing import Any, Dict, Optional, Sequence
import unittest.mock as mock
import google.auth.credentials
import google.cloud.bigquery
import pytest
import bigframes
import bigframes.clients
import bigframes.core.global_session
import bigframes.dataframe
import bigframes.session.clients
"""Utilities for creating test resources."""
TEST_SCHEMA = (google.cloud.bigquery.SchemaField("col", "INTEGER"),)
def create_bigquery_session(
*,
bqclient: Optional[mock.Mock] = None,
session_id: str = "abcxyz",
table_schema: Sequence[google.cloud.bigquery.SchemaField] = TEST_SCHEMA,
anonymous_dataset: Optional[google.cloud.bigquery.DatasetReference] = None,
location: str = "test-region",
) -> bigframes.Session:
"""[Experimental] Create a mock BigQuery DataFrames session that avoids making Google Cloud API calls.
Intended for unit test environments that don't have access to the network.
"""
credentials = mock.create_autospec(
google.auth.credentials.Credentials, instance=True
)
bq_time = datetime.datetime.now()
table_time = bq_time + datetime.timedelta(minutes=1)
if anonymous_dataset is None:
anonymous_dataset = google.cloud.bigquery.DatasetReference(
"test-project",
"test_dataset",
)
if bqclient is None:
bqclient = mock.create_autospec(google.cloud.bigquery.Client, instance=True)
bqclient.project = "test-project"
bqclient.location = location
# Mock the location.
table = mock.create_autospec(google.cloud.bigquery.Table, instance=True)
table._properties = {}
# TODO(tswast): support tables created before and after the session started.
type(table).created = mock.PropertyMock(return_value=table_time)
type(table).location = mock.PropertyMock(return_value=location)
type(table).schema = mock.PropertyMock(return_value=table_schema)
type(table).reference = mock.PropertyMock(
return_value=anonymous_dataset.table("test_table")
)
type(table).num_rows = mock.PropertyMock(return_value=1000000000)
bqclient.get_table.return_value = table
queries = []
job_configs = []
def query_mock(query, *args, job_config=None, **kwargs):
queries.append(query)
job_configs.append(copy.deepcopy(job_config))
query_job = mock.create_autospec(google.cloud.bigquery.QueryJob)
query_job._properties = {}
type(query_job).destination = mock.PropertyMock(
return_value=anonymous_dataset.table("test_table"),
)
type(query_job).session_info = google.cloud.bigquery.SessionInfo(
{"sessionInfo": {"sessionId": session_id}},
)
if query.startswith("SELECT CURRENT_TIMESTAMP()"):
query_job.result = mock.MagicMock(return_value=[[bq_time]])
else:
type(query_job).schema = mock.PropertyMock(return_value=table_schema)
return query_job
existing_query_and_wait = bqclient.query_and_wait
def query_and_wait_mock(query, *args, job_config=None, **kwargs):
queries.append(query)
job_configs.append(copy.deepcopy(job_config))
if query.startswith("SELECT CURRENT_TIMESTAMP()"):
return iter([[datetime.datetime.now()]])
else:
return existing_query_and_wait(query, *args, **kwargs)
bqclient.query = query_mock
bqclient.query_and_wait = query_and_wait_mock
clients_provider = mock.create_autospec(bigframes.session.clients.ClientsProvider)
type(clients_provider).bqclient = mock.PropertyMock(return_value=bqclient)
clients_provider._credentials = credentials
bqoptions = bigframes.BigQueryOptions(credentials=credentials, location=location)
session = bigframes.Session(context=bqoptions, clients_provider=clients_provider)
session._bq_connection_manager = mock.create_autospec(
bigframes.clients.BqConnectionManager, instance=True
)
session._queries = queries # type: ignore
session._job_configs = job_configs # type: ignore
return session
def create_dataframe(
monkeypatch: pytest.MonkeyPatch,
*,
session: Optional[bigframes.Session] = None,
data: Optional[Dict[str, Sequence[Any]]] = None,
) -> bigframes.dataframe.DataFrame:
"""[Experimental] Create a mock DataFrame that avoids making Google Cloud API calls.
Intended for unit test environments that don't have access to the network.
"""
if session is None:
session = create_bigquery_session()
if data is None:
data = {"col": []}
# Since this may create a ReadLocalNode, the session we explicitly pass in
# might not actually be used. Mock out the global session, too.
monkeypatch.setattr(bigframes.core.global_session, "_global_session", session)
bigframes.options.bigquery._session_started = True
return bigframes.dataframe.DataFrame(data, session=session)