This repository was archived by the owner on Mar 31, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 173
Expand file tree
/
Copy pathtest_async_grpc_client.py
More file actions
184 lines (150 loc) · 7.23 KB
/
Copy pathtest_async_grpc_client.py
File metadata and controls
184 lines (150 loc) · 7.23 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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
# Copyright 2025 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 unittest
from unittest import mock
from google.auth import credentials as auth_credentials
from google.auth.credentials import AnonymousCredentials
from google.api_core import client_info as client_info_lib
from google.cloud.storage._experimental.asyncio import async_grpc_client
from google.cloud.storage._experimental.asyncio.async_grpc_client import (
DEFAULT_CLIENT_INFO,
)
def _make_credentials(spec=None):
if spec is None:
return mock.Mock(spec=auth_credentials.Credentials)
return mock.Mock(spec=spec)
class TestAsyncGrpcClient(unittest.TestCase):
@mock.patch("google.cloud._storage_v2.StorageAsyncClient")
def test_constructor_default_options(self, mock_async_storage_client):
# Arrange
mock_transport_cls = mock.MagicMock()
mock_async_storage_client.get_transport_class.return_value = mock_transport_cls
mock_creds = _make_credentials()
primary_user_agent = DEFAULT_CLIENT_INFO.to_user_agent()
expected_options = (("grpc.primary_user_agent", primary_user_agent),)
# Act
async_grpc_client.AsyncGrpcClient(credentials=mock_creds)
# Assert
mock_async_storage_client.get_transport_class.assert_called_once_with(
"grpc_asyncio"
)
mock_transport_cls.create_channel.assert_called_once_with(
attempt_direct_path=True,
credentials=mock_creds,
options=expected_options,
)
mock_channel = mock_transport_cls.create_channel.return_value
mock_transport_cls.assert_called_once_with(channel=mock_channel)
mock_transport = mock_transport_cls.return_value
mock_async_storage_client.assert_called_once_with(
transport=mock_transport,
client_options=None,
client_info=DEFAULT_CLIENT_INFO,
)
@mock.patch("google.cloud._storage_v2.StorageAsyncClient")
def test_constructor_with_client_info(self, mock_async_storage_client):
mock_transport_cls = mock.MagicMock()
mock_async_storage_client.get_transport_class.return_value = mock_transport_cls
mock_creds = _make_credentials()
client_info = client_info_lib.ClientInfo(
client_library_version="1.2.3",
)
async_grpc_client.AsyncGrpcClient(
credentials=mock_creds, client_info=client_info
)
primary_user_agent = client_info.to_user_agent()
expected_options = (("grpc.primary_user_agent", primary_user_agent),)
mock_transport_cls.create_channel.assert_called_once_with(
attempt_direct_path=True,
credentials=mock_creds,
options=expected_options,
)
@mock.patch("google.cloud._storage_v2.StorageAsyncClient")
def test_constructor_disables_directpath(self, mock_async_storage_client):
mock_transport_cls = mock.MagicMock()
mock_async_storage_client.get_transport_class.return_value = mock_transport_cls
mock_creds = _make_credentials()
async_grpc_client.AsyncGrpcClient(
credentials=mock_creds, attempt_direct_path=False
)
primary_user_agent = DEFAULT_CLIENT_INFO.to_user_agent()
expected_options = (("grpc.primary_user_agent", primary_user_agent),)
mock_transport_cls.create_channel.assert_called_once_with(
attempt_direct_path=False,
credentials=mock_creds,
options=expected_options,
)
mock_channel = mock_transport_cls.create_channel.return_value
mock_transport_cls.assert_called_once_with(channel=mock_channel)
@mock.patch("google.cloud._storage_v2.StorageAsyncClient")
def test_grpc_client_property(self, mock_grpc_gapic_client):
# Arrange
mock_transport_cls = mock.MagicMock()
mock_grpc_gapic_client.get_transport_class.return_value = mock_transport_cls
channel_sentinel = mock.sentinel.channel
mock_transport_cls.create_channel.return_value = channel_sentinel
mock_transport_cls.return_value = mock.sentinel.transport
mock_creds = _make_credentials()
mock_client_info = mock.MagicMock(spec=client_info_lib.ClientInfo)
mock_client_info.to_user_agent.return_value = "test-user-agent"
mock_client_options = mock.sentinel.client_options
mock_attempt_direct_path = mock.sentinel.attempt_direct_path
# Act
client = async_grpc_client.AsyncGrpcClient(
credentials=mock_creds,
client_info=mock_client_info,
client_options=mock_client_options,
attempt_direct_path=mock_attempt_direct_path,
)
mock_grpc_gapic_client.get_transport_class.return_value = mock_transport_cls
mock_transport_cls.create_channel.return_value = channel_sentinel
mock_transport_instance = mock.sentinel.transport
mock_transport_cls.return_value = mock_transport_instance
retrieved_client = client.grpc_client
# Assert
expected_options = (("grpc.primary_user_agent", "test-user-agent"),)
mock_transport_cls.create_channel.assert_called_once_with(
attempt_direct_path=mock_attempt_direct_path,
credentials=mock_creds,
options=expected_options,
)
mock_transport_cls.assere_with(channel=channel_sentinel)
mock_grpc_gapic_client.assert_called_once_with(
transport=mock_transport_instance,
client_info=mock_client_info,
client_options=mock_client_options,
)
self.assertIs(retrieved_client, mock_grpc_gapic_client.return_value)
@mock.patch("google.cloud._storage_v2.StorageAsyncClient")
def test_grpc_client_with_anon_creds(self, mock_grpc_gapic_client):
# Arrange
mock_transport_cls = mock.MagicMock()
mock_grpc_gapic_client.get_transport_class.return_value = mock_transport_cls
channel_sentinel = mock.sentinel.channel
mock_transport_cls.create_channel.return_value = channel_sentinel
mock_transport_cls.return_value = mock.sentinel.transport
# Act
anonymous_creds = AnonymousCredentials()
client = async_grpc_client.AsyncGrpcClient(credentials=anonymous_creds)
retrieved_client = client.grpc_client
# Assert
self.assertIs(retrieved_client, mock_grpc_gapic_client.return_value)
primary_user_agent = DEFAULT_CLIENT_INFO.to_user_agent()
expected_options = (("grpc.primary_user_agent", primary_user_agent),)
mock_transport_cls.create_channel.assert_called_once_with(
attempt_direct_path=True,
credentials=anonymous_creds,
options=expected_options,
)
mock_transport_cls.assert_called_once_with(channel=channel_sentinel)