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
256 lines (218 loc) · 10.6 KB
/
test_async_grpc_client.py
File metadata and controls
256 lines (218 loc) · 10.6 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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
# 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.
from unittest import mock
import pytest
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.asyncio import async_grpc_client
from google.cloud.storage import __version__
def _make_credentials(spec=None):
if spec is None:
return mock.Mock(spec=auth_credentials.Credentials)
return mock.Mock(spec=spec)
class TestAsyncGrpcClient:
@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()
# Act
async_grpc_client.AsyncGrpcClient(credentials=mock_creds)
# Assert
mock_async_storage_client.get_transport_class.assert_called_once_with(
"grpc_asyncio"
)
kwargs = mock_async_storage_client.call_args.kwargs
client_info = kwargs["client_info"]
agent_version = f"gcloud-python/{__version__}"
assert agent_version in client_info.user_agent
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_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
assert kwargs["transport"] is mock_transport
assert kwargs["client_options"] is None
@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
)
agent_version = f"gcloud-python/{__version__}"
assert agent_version in client_info.user_agent
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
)
kwargs = mock_async_storage_client.call_args.kwargs
client_info = kwargs["client_info"]
agent_version = f"gcloud-python/{__version__}"
assert agent_version in client_info.user_agent
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=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_instance = mock.sentinel.transport
mock_transport_cls.return_value = mock_transport_instance
mock_creds = _make_credentials()
# Use a real ClientInfo instance instead of a mock to properly test user agent logic
client_info = client_info_lib.ClientInfo(user_agent="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=client_info,
client_options=mock_client_options,
attempt_direct_path=mock_attempt_direct_path,
)
retrieved_client = client.grpc_client # This is what is being tested
# Assert - verify that gcloud-python agent version was added
agent_version = f"gcloud-python/{__version__}"
assert agent_version in client_info.user_agent
# Also verify original user_agent is still there
assert "test-user-agent" in client_info.user_agent
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=mock_attempt_direct_path,
credentials=mock_creds,
options=expected_options,
)
mock_transport_cls.assert_called_once_with(channel=channel_sentinel)
mock_grpc_gapic_client.assert_called_once_with(
transport=mock_transport_instance,
client_info=client_info,
client_options=mock_client_options,
)
assert retrieved_client is 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
assert retrieved_client is mock_grpc_gapic_client.return_value
kwargs = mock_grpc_gapic_client.call_args.kwargs
client_info = kwargs["client_info"]
agent_version = f"gcloud-python/{__version__}"
assert agent_version in client_info.user_agent
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=anonymous_creds,
options=expected_options,
)
mock_transport_cls.assert_called_once_with(channel=channel_sentinel)
@mock.patch("google.cloud._storage_v2.StorageAsyncClient")
def test_user_agent_with_custom_client_info(self, mock_async_storage_client):
"""Test that gcloud-python user agent is appended to existing user agent.
Regression test similar to test__http.py::TestConnection::test_duplicate_user_agent
"""
mock_transport_cls = mock.MagicMock()
mock_async_storage_client.get_transport_class.return_value = mock_transport_cls
mock_creds = _make_credentials()
# Create a client_info with an existing user_agent
client_info = client_info_lib.ClientInfo(user_agent="custom-app/1.0")
# Act
async_grpc_client.AsyncGrpcClient(
credentials=mock_creds,
client_info=client_info,
)
# Assert - verify that gcloud-python version was appended
agent_version = f"gcloud-python/{__version__}"
expected_user_agent = f"custom-app/1.0 {agent_version} "
assert client_info.user_agent == expected_user_agent
@mock.patch("google.cloud._storage_v2.StorageAsyncClient")
@pytest.mark.asyncio
async def test_delete_object(self, mock_async_storage_client):
# Arrange
mock_transport_cls = mock.MagicMock()
mock_async_storage_client.get_transport_class.return_value = mock_transport_cls
mock_gapic_client = mock.AsyncMock()
mock_async_storage_client.return_value = mock_gapic_client
client = async_grpc_client.AsyncGrpcClient(
credentials=_make_credentials(spec=AnonymousCredentials)
)
bucket_name = "bucket"
object_name = "object"
generation = 123
if_generation_match = 456
if_generation_not_match = 789
if_metageneration_match = 111
if_metageneration_not_match = 222
# Act
await client.delete_object(
bucket_name,
object_name,
generation=generation,
if_generation_match=if_generation_match,
if_generation_not_match=if_generation_not_match,
if_metageneration_match=if_metageneration_match,
if_metageneration_not_match=if_metageneration_not_match,
)
# Assert
call_args, call_kwargs = mock_gapic_client.delete_object.call_args
request = call_kwargs["request"]
assert request.bucket == "projects/_/buckets/bucket"
assert request.object == "object"
assert request.generation == generation
assert request.if_generation_match == if_generation_match
assert request.if_generation_not_match == if_generation_not_match
assert request.if_metageneration_match == if_metageneration_match
assert request.if_metageneration_not_match == if_metageneration_not_match