-
Notifications
You must be signed in to change notification settings - Fork 155
/
Copy pathtest_client.py
3143 lines (2643 loc) · 113 KB
/
test_client.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
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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Copyright 2015 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 base64
import http.client
import io
import json
from unittest.mock import patch
import mock
import pytest
import re
import requests
import unittest
import urllib
from google.api_core import exceptions
from google.auth.credentials import AnonymousCredentials
from google.oauth2.service_account import Credentials
from google.cloud.storage import _helpers
from google.cloud.storage._helpers import _NOW
from google.cloud.storage._helpers import _UTC
from google.cloud.storage._helpers import STORAGE_EMULATOR_ENV_VAR
from google.cloud.storage._helpers import _API_ENDPOINT_OVERRIDE_ENV_VAR
from google.cloud.storage._helpers import _get_default_headers
from google.cloud.storage._helpers import _DEFAULT_UNIVERSE_DOMAIN
from google.cloud.storage._http import Connection
from google.cloud.storage.retry import DEFAULT_RETRY
from google.cloud.storage.retry import DEFAULT_RETRY_IF_GENERATION_SPECIFIED
from tests.unit.test__helpers import GCCL_INVOCATION_TEST_CONST
from . import _read_local_json
_SERVICE_ACCOUNT_JSON = _read_local_json("url_signer_v4_test_account.json")
_CONFORMANCE_TESTS = _read_local_json("url_signer_v4_test_data.json")[
"postPolicyV4Tests"
]
_POST_POLICY_TESTS = [test for test in _CONFORMANCE_TESTS if "policyInput" in test]
_FAKE_CREDENTIALS = Credentials.from_service_account_info(_SERVICE_ACCOUNT_JSON)
def _make_credentials(project=None, universe_domain=_DEFAULT_UNIVERSE_DOMAIN):
import google.auth.credentials
if project is not None:
return mock.Mock(
spec=google.auth.credentials.Credentials,
project_id=project,
universe_domain=universe_domain,
)
return mock.Mock(
spec=google.auth.credentials.Credentials, universe_domain=universe_domain
)
def _create_signing_credentials():
import google.auth.credentials
class _SigningCredentials(
google.auth.credentials.Credentials, google.auth.credentials.Signing
):
pass
credentials = mock.Mock(
spec=_SigningCredentials, universe_domain=_DEFAULT_UNIVERSE_DOMAIN
)
credentials.sign_bytes = mock.Mock(return_value=b"Signature_bytes")
credentials.signer_email = "[email protected]"
return credentials
def _make_connection(*responses):
import google.cloud.storage._http
from google.cloud.exceptions import NotFound
mock_conn = mock.create_autospec(google.cloud.storage._http.Connection)
mock_conn.user_agent = "testing 1.2.3"
mock_conn.api_request.side_effect = list(responses) + [NotFound("miss")]
return mock_conn
def _make_response(status=http.client.OK, content=b"", headers={}):
response = requests.Response()
response.status_code = status
response._content = content
response.headers = headers
response.request = requests.Request()
return response
def _make_json_response(data, status=http.client.OK, headers=None):
headers = headers or {}
headers["Content-Type"] = "application/json"
return _make_response(
status=status, content=json.dumps(data).encode("utf-8"), headers=headers
)
def _make_requests_session(responses):
session = mock.create_autospec(requests.Session, instance=True)
session.request.side_effect = responses
session.is_mtls = False
return session
class TestClient(unittest.TestCase):
@staticmethod
def _get_target_class():
from google.cloud.storage.client import Client
return Client
@staticmethod
def _get_default_timeout():
from google.cloud.storage.constants import _DEFAULT_TIMEOUT
return _DEFAULT_TIMEOUT
def _make_one(self, *args, **kw):
return self._get_target_class()(*args, **kw)
def test_ctor_connection_type(self):
from google.cloud._http import ClientInfo
PROJECT = "PROJECT"
credentials = _make_credentials()
client = self._make_one(project=PROJECT, credentials=credentials)
self.assertEqual(client.project, PROJECT)
self.assertIsInstance(client._connection, Connection)
self.assertIs(client._connection.credentials, credentials)
self.assertIsNone(client.current_batch)
self.assertEqual(list(client._batch_stack), [])
self.assertIsInstance(client._connection._client_info, ClientInfo)
self.assertEqual(
client._connection.API_BASE_URL, Connection.DEFAULT_API_ENDPOINT
)
def test_ctor_w_empty_client_options(self):
from google.api_core.client_options import ClientOptions
PROJECT = "PROJECT"
credentials = _make_credentials()
client_options = ClientOptions()
client = self._make_one(
project=PROJECT, credentials=credentials, client_options=client_options
)
self.assertEqual(
client._connection.API_BASE_URL, client._connection.DEFAULT_API_ENDPOINT
)
def test_ctor_w_client_options_dict(self):
PROJECT = "PROJECT"
credentials = _make_credentials()
api_endpoint = "https://www.foo-googleapis.com"
client_options = {"api_endpoint": api_endpoint}
client = self._make_one(
project=PROJECT, credentials=credentials, client_options=client_options
)
self.assertEqual(client._connection.API_BASE_URL, api_endpoint)
self.assertEqual(client.api_endpoint, api_endpoint)
def test_ctor_w_client_options_object(self):
from google.api_core.client_options import ClientOptions
PROJECT = "PROJECT"
credentials = _make_credentials()
api_endpoint = "https://www.foo-googleapis.com"
client_options = ClientOptions(api_endpoint=api_endpoint)
client = self._make_one(
project=PROJECT, credentials=credentials, client_options=client_options
)
self.assertEqual(client._connection.API_BASE_URL, api_endpoint)
self.assertEqual(client.api_endpoint, api_endpoint)
def test_ctor_w_universe_domain_and_matched_credentials(self):
PROJECT = "PROJECT"
universe_domain = "example.com"
expected_api_endpoint = f"https://storage.{universe_domain}"
credentials = _make_credentials(universe_domain=universe_domain)
client_options = {"universe_domain": universe_domain}
client = self._make_one(
project=PROJECT, credentials=credentials, client_options=client_options
)
self.assertEqual(client._connection.API_BASE_URL, expected_api_endpoint)
self.assertEqual(client.api_endpoint, expected_api_endpoint)
self.assertEqual(client.universe_domain, universe_domain)
def test_ctor_w_universe_domain_and_mismatched_credentials(self):
PROJECT = "PROJECT"
universe_domain = "example.com"
credentials = _make_credentials() # default universe domain
client_options = {"universe_domain": universe_domain}
with self.assertRaises(ValueError):
self._make_one(
project=PROJECT, credentials=credentials, client_options=client_options
)
def test_ctor_w_universe_domain_and_mtls(self):
PROJECT = "PROJECT"
universe_domain = "example.com"
client_options = {"universe_domain": universe_domain}
credentials = _make_credentials(
project=PROJECT, universe_domain=universe_domain
)
environ = {"GOOGLE_API_USE_CLIENT_CERTIFICATE": "true"}
with mock.patch("os.environ", environ):
with self.assertRaises(ValueError):
self._make_one(credentials=credentials, client_options=client_options)
def test_ctor_w_custom_headers(self):
PROJECT = "PROJECT"
credentials = _make_credentials()
custom_headers = {"x-goog-custom-audit-foo": "bar"}
client = self._make_one(
project=PROJECT, credentials=credentials, extra_headers=custom_headers
)
self.assertEqual(
client._connection.API_BASE_URL, client._connection.DEFAULT_API_ENDPOINT
)
self.assertEqual(client._connection.extra_headers, custom_headers)
def test_ctor_wo_project(self):
PROJECT = "PROJECT"
credentials = _make_credentials(project=PROJECT)
client = self._make_one(credentials=credentials)
self.assertEqual(client.project, PROJECT)
self.assertIsInstance(client._connection, Connection)
self.assertIs(client._connection.credentials, credentials)
self.assertIsNone(client.current_batch)
self.assertEqual(list(client._batch_stack), [])
def test_ctor_w_project_explicit_none(self):
credentials = _make_credentials()
client = self._make_one(project=None, credentials=credentials)
self.assertIsNone(client.project)
self.assertIsInstance(client._connection, Connection)
self.assertIs(client._connection.credentials, credentials)
self.assertIsNone(client.current_batch)
self.assertEqual(list(client._batch_stack), [])
def test_ctor_w_client_info(self):
from google.cloud._http import ClientInfo
credentials = _make_credentials()
client_info = ClientInfo()
client = self._make_one(
project=None, credentials=credentials, client_info=client_info
)
self.assertIsNone(client.project)
self.assertIsInstance(client._connection, Connection)
self.assertIs(client._connection.credentials, credentials)
self.assertIsNone(client.current_batch)
self.assertEqual(list(client._batch_stack), [])
self.assertIs(client._connection._client_info, client_info)
def test_ctor_mtls(self):
PROJECT = "PROJECT"
credentials = _make_credentials(project=PROJECT)
client = self._make_one(credentials=credentials)
self.assertEqual(client._connection.ALLOW_AUTO_SWITCH_TO_MTLS_URL, True)
self.assertEqual(
client._connection.API_BASE_URL, "https://storage.googleapis.com"
)
client = self._make_one(
credentials=credentials, client_options={"api_endpoint": "http://foo"}
)
self.assertEqual(client._connection.ALLOW_AUTO_SWITCH_TO_MTLS_URL, False)
self.assertEqual(client._connection.API_BASE_URL, "http://foo")
def test_ctor_w_custom_endpoint_use_auth(self):
custom_endpoint = "storage-example.p.googleapis.com"
client = self._make_one(client_options={"api_endpoint": custom_endpoint})
self.assertEqual(client._connection.API_BASE_URL, custom_endpoint)
self.assertIsNotNone(client.project)
self.assertIsInstance(client._connection, Connection)
self.assertIsNotNone(client._connection.credentials)
self.assertNotIsInstance(client._connection.credentials, AnonymousCredentials)
def test_ctor_w_custom_endpoint_bypass_auth(self):
custom_endpoint = "storage-example.p.googleapis.com"
client = self._make_one(
client_options={"api_endpoint": custom_endpoint},
use_auth_w_custom_endpoint=False,
)
self.assertEqual(client._connection.API_BASE_URL, custom_endpoint)
self.assertEqual(client.project, None)
self.assertIsInstance(client._connection, Connection)
self.assertIsInstance(client._connection.credentials, AnonymousCredentials)
def test_ctor_w_custom_endpoint_w_credentials(self):
PROJECT = "PROJECT"
custom_endpoint = "storage-example.p.googleapis.com"
credentials = _make_credentials(project=PROJECT)
client = self._make_one(
credentials=credentials, client_options={"api_endpoint": custom_endpoint}
)
self.assertEqual(client._connection.API_BASE_URL, custom_endpoint)
self.assertEqual(client.project, PROJECT)
self.assertIsInstance(client._connection, Connection)
self.assertIs(client._connection.credentials, credentials)
def test_ctor_w_emulator_wo_project(self):
# bypasses authentication if STORAGE_EMULATOR_ENV_VAR is set
host = "http://localhost:8080"
environ = {STORAGE_EMULATOR_ENV_VAR: host}
with mock.patch("os.environ", environ):
client = self._make_one()
self.assertIsNone(client.project)
self.assertEqual(client._connection.API_BASE_URL, host)
self.assertIsInstance(client._connection.credentials, AnonymousCredentials)
def test_ctor_w_emulator_w_environ_project(self):
# bypasses authentication and infers the project from the environment
host = "http://localhost:8080"
environ_project = "environ-project"
environ = {
STORAGE_EMULATOR_ENV_VAR: host,
"GOOGLE_CLOUD_PROJECT": environ_project,
}
with mock.patch("os.environ", environ):
client = self._make_one()
self.assertEqual(client.project, environ_project)
self.assertEqual(client._connection.API_BASE_URL, host)
self.assertIsInstance(client._connection.credentials, AnonymousCredentials)
def test_ctor_w_emulator_w_project_arg(self):
# project argument overrides project set in the enviroment
host = "http://localhost:8080"
environ_project = "environ-project"
project = "my-test-project"
environ = {
STORAGE_EMULATOR_ENV_VAR: host,
"GOOGLE_CLOUD_PROJECT": environ_project,
}
with mock.patch("os.environ", environ):
client = self._make_one(project=project)
self.assertEqual(client.project, project)
self.assertEqual(client._connection.API_BASE_URL, host)
self.assertIsInstance(client._connection.credentials, AnonymousCredentials)
def test_ctor_w_emulator_w_credentials(self):
host = "http://localhost:8080"
environ = {STORAGE_EMULATOR_ENV_VAR: host}
credentials = _make_credentials()
with mock.patch("os.environ", environ):
client = self._make_one(credentials=credentials)
self.assertEqual(client._connection.API_BASE_URL, host)
self.assertIs(client._connection.credentials, credentials)
def test_ctor_w_api_endpoint_override(self):
host = "http://localhost:8080"
environ = {_API_ENDPOINT_OVERRIDE_ENV_VAR: host}
project = "my-test-project"
with mock.patch("os.environ", environ):
client = self._make_one(project=project)
self.assertEqual(client.project, project)
self.assertEqual(client._connection.API_BASE_URL, host)
def test_create_anonymous_client(self):
klass = self._get_target_class()
client = klass.create_anonymous_client()
self.assertIsNone(client.project)
self.assertIsInstance(client._connection, Connection)
self.assertIsInstance(client._connection.credentials, AnonymousCredentials)
def test__push_batch_and__pop_batch(self):
from google.cloud.storage.batch import Batch
PROJECT = "PROJECT"
CREDENTIALS = _make_credentials()
client = self._make_one(project=PROJECT, credentials=CREDENTIALS)
batch1 = Batch(client)
batch2 = Batch(client)
client._push_batch(batch1)
self.assertEqual(list(client._batch_stack), [batch1])
self.assertIs(client.current_batch, batch1)
client._push_batch(batch2)
self.assertIs(client.current_batch, batch2)
# list(_LocalStack) returns in reverse order.
self.assertEqual(list(client._batch_stack), [batch2, batch1])
self.assertIs(client._pop_batch(), batch2)
self.assertEqual(list(client._batch_stack), [batch1])
self.assertIs(client._pop_batch(), batch1)
self.assertEqual(list(client._batch_stack), [])
def test__connection_setter(self):
PROJECT = "PROJECT"
CREDENTIALS = _make_credentials()
client = self._make_one(project=PROJECT, credentials=CREDENTIALS)
client._base_connection = None # Unset the value from the constructor
client._connection = connection = object()
self.assertIs(client._base_connection, connection)
def test__connection_setter_when_set(self):
PROJECT = "PROJECT"
CREDENTIALS = _make_credentials()
client = self._make_one(project=PROJECT, credentials=CREDENTIALS)
self.assertRaises(ValueError, setattr, client, "_connection", None)
def test__connection_getter_no_batch(self):
PROJECT = "PROJECT"
CREDENTIALS = _make_credentials()
client = self._make_one(project=PROJECT, credentials=CREDENTIALS)
self.assertIs(client._connection, client._base_connection)
self.assertIsNone(client.current_batch)
def test__connection_getter_with_batch(self):
from google.cloud.storage.batch import Batch
PROJECT = "PROJECT"
CREDENTIALS = _make_credentials()
client = self._make_one(project=PROJECT, credentials=CREDENTIALS)
batch = Batch(client)
client._push_batch(batch)
self.assertIsNot(client._connection, client._base_connection)
self.assertIs(client._connection, batch)
self.assertIs(client.current_batch, batch)
def test_get_service_account_email_wo_project(self):
PROJECT = "PROJECT"
CREDENTIALS = _make_credentials()
EMAIL = "[email protected]"
RESOURCE = {"kind": "storage#serviceAccount", "email_address": EMAIL}
client = self._make_one(project=PROJECT, credentials=CREDENTIALS)
http = _make_requests_session([_make_json_response(RESOURCE)])
client._http_internal = http
service_account_email = client.get_service_account_email(timeout=42)
self.assertEqual(service_account_email, EMAIL)
http.request.assert_called_once_with(
method="GET", url=mock.ANY, data=None, headers=mock.ANY, timeout=42
)
_, kwargs = http.request.call_args
scheme, netloc, path, qs, _ = urllib.parse.urlsplit(kwargs.get("url"))
self.assertEqual(f"{scheme}://{netloc}", client._connection.API_BASE_URL)
self.assertEqual(
path,
"/".join(
[
"",
"storage",
client._connection.API_VERSION,
"projects",
PROJECT,
"serviceAccount",
]
),
)
def test_get_service_account_email_w_project(self):
PROJECT = "PROJECT"
OTHER_PROJECT = "OTHER_PROJECT"
CREDENTIALS = _make_credentials()
EMAIL = "[email protected]"
RESOURCE = {"kind": "storage#serviceAccount", "email_address": EMAIL}
client = self._make_one(project=PROJECT, credentials=CREDENTIALS)
http = _make_requests_session([_make_json_response(RESOURCE)])
client._http_internal = http
service_account_email = client.get_service_account_email(project=OTHER_PROJECT)
self.assertEqual(service_account_email, EMAIL)
http.request.assert_called_once_with(
method="GET",
url=mock.ANY,
data=None,
headers=mock.ANY,
timeout=self._get_default_timeout(),
)
_, kwargs = http.request.call_args
scheme, netloc, path, qs, _ = urllib.parse.urlsplit(kwargs.get("url"))
self.assertEqual(f"{scheme}://{netloc}", client._connection.API_BASE_URL)
self.assertEqual(
path,
"/".join(
[
"",
"storage",
client._connection.API_VERSION,
"projects",
OTHER_PROJECT,
"serviceAccount",
]
),
)
def test_bucket(self):
from google.cloud.storage.bucket import Bucket
PROJECT = "PROJECT"
CREDENTIALS = _make_credentials()
BUCKET_NAME = "BUCKET_NAME"
GENERATION = 12345
client = self._make_one(project=PROJECT, credentials=CREDENTIALS)
bucket = client.bucket(BUCKET_NAME, generation=GENERATION)
self.assertIsInstance(bucket, Bucket)
self.assertIs(bucket.client, client)
self.assertEqual(bucket.name, BUCKET_NAME)
self.assertIsNone(bucket.user_project)
self.assertEqual(bucket.generation, GENERATION)
def test_bucket_w_user_project(self):
from google.cloud.storage.bucket import Bucket
PROJECT = "PROJECT"
USER_PROJECT = "USER_PROJECT"
CREDENTIALS = _make_credentials()
BUCKET_NAME = "BUCKET_NAME"
client = self._make_one(project=PROJECT, credentials=CREDENTIALS)
bucket = client.bucket(BUCKET_NAME, user_project=USER_PROJECT)
self.assertIsInstance(bucket, Bucket)
self.assertIs(bucket.client, client)
self.assertEqual(bucket.name, BUCKET_NAME)
self.assertEqual(bucket.user_project, USER_PROJECT)
def test_batch(self):
from google.cloud.storage.batch import Batch
PROJECT = "PROJECT"
CREDENTIALS = _make_credentials()
client = self._make_one(project=PROJECT, credentials=CREDENTIALS)
batch = client.batch()
self.assertIsInstance(batch, Batch)
self.assertIs(batch._client, client)
def test__get_resource_miss_w_defaults(self):
from google.cloud.exceptions import NotFound
project = "PROJECT"
path = "/path/to/something"
credentials = _make_credentials()
client = self._make_one(project=project, credentials=credentials)
connection = client._base_connection = _make_connection()
with self.assertRaises(NotFound):
client._get_resource(path)
connection.api_request.assert_called_once_with(
method="GET",
path=path,
query_params=None,
headers=None,
timeout=self._get_default_timeout(),
retry=DEFAULT_RETRY,
_target_object=None,
)
def test__get_resource_hit_w_explicit(self):
project = "PROJECT"
path = "/path/to/something"
query_params = {"foo": "Foo"}
headers = {"bar": "Bar"}
timeout = 100
retry = mock.Mock(spec=[])
credentials = _make_credentials()
client = self._make_one(project=project, credentials=credentials)
expected = mock.Mock(spec={})
connection = client._base_connection = _make_connection(expected)
target = mock.Mock(spec={})
found = client._get_resource(
path,
query_params=query_params,
headers=headers,
timeout=timeout,
retry=retry,
_target_object=target,
)
self.assertIs(found, expected)
connection.api_request.assert_called_once_with(
method="GET",
path=path,
query_params=query_params,
headers=headers,
timeout=timeout,
retry=retry,
_target_object=target,
)
def test__list_resource_w_defaults(self):
import functools
from google.api_core.page_iterator import HTTPIterator
from google.api_core.page_iterator import _do_nothing_page_start
project = "PROJECT"
path = "/path/to/list/resource"
item_to_value = mock.Mock(spec=[])
credentials = _make_credentials()
client = self._make_one(project=project, credentials=credentials)
connection = client._base_connection = _make_connection()
iterator = client._list_resource(
path=path,
item_to_value=item_to_value,
)
self.assertIsInstance(iterator, HTTPIterator)
self.assertIs(iterator.client, client)
self.assertIsInstance(iterator.api_request, functools.partial)
self.assertIs(iterator.api_request.func, connection.api_request)
self.assertEqual(iterator.api_request.args, ())
expected_keywords = {
"timeout": self._get_default_timeout(),
"retry": DEFAULT_RETRY,
}
self.assertEqual(iterator.api_request.keywords, expected_keywords)
self.assertEqual(iterator.path, path)
self.assertEqual(iterator.next_page_token, None)
self.assertEqual(iterator.max_results, None)
self.assertIs(iterator._page_start, _do_nothing_page_start)
def test__list_resource_w_explicit(self):
import functools
from google.api_core.page_iterator import HTTPIterator
project = "PROJECT"
path = "/path/to/list/resource"
item_to_value = mock.Mock(spec=[])
page_token = "PAGE-TOKEN"
max_results = 47
extra_params = {"foo": "Foo"}
page_start = mock.Mock(spec=[])
credentials = _make_credentials()
client = self._make_one(project=project, credentials=credentials)
connection = client._base_connection = _make_connection()
iterator = client._list_resource(
path=path,
item_to_value=item_to_value,
page_token=page_token,
max_results=max_results,
extra_params=extra_params,
page_start=page_start,
)
self.assertIsInstance(iterator, HTTPIterator)
self.assertIs(iterator.client, client)
self.assertIsInstance(iterator.api_request, functools.partial)
self.assertIs(iterator.api_request.func, connection.api_request)
self.assertEqual(iterator.api_request.args, ())
expected_keywords = {
"timeout": self._get_default_timeout(),
"retry": DEFAULT_RETRY,
}
self.assertEqual(iterator.api_request.keywords, expected_keywords)
self.assertEqual(iterator.path, path)
self.assertEqual(iterator.next_page_token, page_token)
self.assertEqual(iterator.max_results, max_results)
self.assertIs(iterator._page_start, page_start)
def test__patch_resource_miss_w_defaults(self):
from google.cloud.exceptions import NotFound
project = "PROJECT"
path = "/path/to/something"
credentials = _make_credentials()
data = {"baz": "Baz"}
client = self._make_one(project=project, credentials=credentials)
connection = client._base_connection = _make_connection()
with self.assertRaises(NotFound):
client._patch_resource(path, data)
connection.api_request.assert_called_once_with(
method="PATCH",
path=path,
data=data,
query_params=None,
headers=None,
timeout=self._get_default_timeout(),
retry=None,
_target_object=None,
)
def test__patch_resource_hit_w_explicit(self):
project = "PROJECT"
path = "/path/to/something"
data = {"baz": "Baz"}
query_params = {"foo": "Foo"}
headers = {"bar": "Bar"}
timeout = 100
retry = mock.Mock(spec=[])
credentials = _make_credentials()
client = self._make_one(project=project, credentials=credentials)
expected = mock.Mock(spec={})
connection = client._base_connection = _make_connection(expected)
target = mock.Mock(spec={})
found = client._patch_resource(
path,
data,
query_params=query_params,
headers=headers,
timeout=timeout,
retry=retry,
_target_object=target,
)
self.assertIs(found, expected)
connection.api_request.assert_called_once_with(
method="PATCH",
path=path,
data=data,
query_params=query_params,
headers=headers,
timeout=timeout,
retry=retry,
_target_object=target,
)
def test__put_resource_miss_w_defaults(self):
from google.cloud.exceptions import NotFound
project = "PROJECT"
path = "/path/to/something"
credentials = _make_credentials()
data = {"baz": "Baz"}
client = self._make_one(project=project, credentials=credentials)
connection = client._base_connection = _make_connection()
with self.assertRaises(NotFound):
client._put_resource(path, data)
connection.api_request.assert_called_once_with(
method="PUT",
path=path,
data=data,
query_params=None,
headers=None,
timeout=self._get_default_timeout(),
retry=None,
_target_object=None,
)
def test__put_resource_hit_w_explicit(self):
project = "PROJECT"
path = "/path/to/something"
data = {"baz": "Baz"}
query_params = {"foo": "Foo"}
headers = {"bar": "Bar"}
timeout = 100
retry = mock.Mock(spec=[])
credentials = _make_credentials()
client = self._make_one(project=project, credentials=credentials)
expected = mock.Mock(spec={})
connection = client._base_connection = _make_connection(expected)
target = mock.Mock(spec={})
found = client._put_resource(
path,
data,
query_params=query_params,
headers=headers,
timeout=timeout,
retry=retry,
_target_object=target,
)
self.assertIs(found, expected)
connection.api_request.assert_called_once_with(
method="PUT",
path=path,
data=data,
query_params=query_params,
headers=headers,
timeout=timeout,
retry=retry,
_target_object=target,
)
def test__post_resource_miss_w_defaults(self):
from google.cloud.exceptions import NotFound
project = "PROJECT"
path = "/path/to/something"
credentials = _make_credentials()
data = {"baz": "Baz"}
client = self._make_one(project=project, credentials=credentials)
connection = client._base_connection = _make_connection()
with self.assertRaises(NotFound):
client._post_resource(path, data)
connection.api_request.assert_called_once_with(
method="POST",
path=path,
data=data,
query_params=None,
headers=None,
timeout=self._get_default_timeout(),
retry=None,
_target_object=None,
)
def test__post_resource_hit_w_explicit(self):
project = "PROJECT"
path = "/path/to/something"
data = {"baz": "Baz"}
query_params = {"foo": "Foo"}
headers = {"bar": "Bar"}
timeout = 100
retry = mock.Mock(spec=[])
credentials = _make_credentials()
client = self._make_one(project=project, credentials=credentials)
expected = mock.Mock(spec={})
connection = client._base_connection = _make_connection(expected)
target = mock.Mock(spec={})
found = client._post_resource(
path,
data,
query_params=query_params,
headers=headers,
timeout=timeout,
retry=retry,
_target_object=target,
)
self.assertIs(found, expected)
connection.api_request.assert_called_once_with(
method="POST",
path=path,
data=data,
query_params=query_params,
headers=headers,
timeout=timeout,
retry=retry,
_target_object=target,
)
def test__delete_resource_miss_w_defaults(self):
from google.cloud.exceptions import NotFound
project = "PROJECT"
path = "/path/to/something"
credentials = _make_credentials()
client = self._make_one(project=project, credentials=credentials)
connection = client._base_connection = _make_connection()
with self.assertRaises(NotFound):
client._delete_resource(path)
connection.api_request.assert_called_once_with(
method="DELETE",
path=path,
query_params=None,
headers=None,
timeout=self._get_default_timeout(),
retry=DEFAULT_RETRY,
_target_object=None,
)
def test__delete_resource_hit_w_explicit(self):
project = "PROJECT"
path = "/path/to/something"
query_params = {"foo": "Foo"}
headers = {"bar": "Bar"}
timeout = 100
retry = mock.Mock(spec=[])
credentials = _make_credentials()
client = self._make_one(project=project, credentials=credentials)
expected = mock.Mock(spec={})
connection = client._base_connection = _make_connection(expected)
target = mock.Mock(spec={})
found = client._delete_resource(
path,
query_params=query_params,
headers=headers,
timeout=timeout,
retry=retry,
_target_object=target,
)
self.assertIs(found, expected)
connection.api_request.assert_called_once_with(
method="DELETE",
path=path,
query_params=query_params,
headers=headers,
timeout=timeout,
retry=retry,
_target_object=target,
)
def test__bucket_arg_to_bucket_w_bucket_w_client(self):
from google.cloud.storage.bucket import Bucket
project = "PROJECT"
credentials = _make_credentials()
client = self._make_one(project=project, credentials=credentials)
other_client = mock.Mock(spec=[])
bucket_name = "w_client"
bucket = Bucket(other_client, name=bucket_name)
found = client._bucket_arg_to_bucket(bucket)
self.assertIs(found, bucket)
self.assertIs(found.client, other_client)
def test__bucket_arg_to_bucket_raises_on_generation(self):
from google.cloud.storage.bucket import Bucket
project = "PROJECT"
credentials = _make_credentials()
client = self._make_one(project=project, credentials=credentials)
other_client = mock.Mock(spec=[])
bucket_name = "w_client"
bucket = Bucket(other_client, name=bucket_name)
with self.assertRaises(ValueError):
client._bucket_arg_to_bucket(bucket, generation=12345)
def test__bucket_arg_to_bucket_w_bucket_wo_client(self):
from google.cloud.storage.bucket import Bucket
project = "PROJECT"
credentials = _make_credentials()
client = self._make_one(project=project, credentials=credentials)
bucket_name = "wo_client"
bucket = Bucket(client=None, name=bucket_name)
found = client._bucket_arg_to_bucket(bucket)
self.assertIs(found, bucket)
self.assertIs(found.client, client)
def test__bucket_arg_to_bucket_w_bucket_name(self):
from google.cloud.storage.bucket import Bucket
project = "PROJECT"
generation = 12345
credentials = _make_credentials()
client = self._make_one(project=project, credentials=credentials)
bucket_name = "string-name"