forked from googleapis/google-cloud-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest__helpers.py
More file actions
999 lines (758 loc) · 31.4 KB
/
test__helpers.py
File metadata and controls
999 lines (758 loc) · 31.4 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
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
# Copyright 2014 Google Inc. All rights reserved.
#
# 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
class Test__LocalStack(unittest.TestCase):
def _getTargetClass(self):
from gcloud._helpers import _LocalStack
return _LocalStack
def _makeOne(self):
return self._getTargetClass()()
def test_it(self):
batch1, batch2 = object(), object()
batches = self._makeOne()
self.assertEqual(list(batches), [])
self.assertTrue(batches.top is None)
batches.push(batch1)
self.assertTrue(batches.top is batch1)
batches.push(batch2)
self.assertTrue(batches.top is batch2)
popped = batches.pop()
self.assertTrue(popped is batch2)
self.assertTrue(batches.top is batch1)
self.assertEqual(list(batches), [batch1])
popped = batches.pop()
self.assertTrue(batches.top is None)
self.assertEqual(list(batches), [])
class Test__UTC(unittest.TestCase):
def _getTargetClass(self):
from gcloud._helpers import _UTC
return _UTC
def _makeOne(self):
return self._getTargetClass()()
def test_module_property(self):
from gcloud import _helpers as MUT
klass = self._getTargetClass()
try:
import pytz
except ImportError:
self.assertTrue(isinstance(MUT.UTC, klass))
else:
self.assertIs(MUT.UTC, pytz.UTC) # pragma: NO COVER
def test_dst(self):
import datetime
tz = self._makeOne()
self.assertEqual(tz.dst(None), datetime.timedelta(0))
def test_fromutc(self):
import datetime
naive_epoch = datetime.datetime.utcfromtimestamp(0)
self.assertEqual(naive_epoch.tzinfo, None)
tz = self._makeOne()
epoch = tz.fromutc(naive_epoch)
self.assertEqual(epoch.tzinfo, tz)
def test_tzname(self):
tz = self._makeOne()
self.assertEqual(tz.tzname(None), 'UTC')
def test_utcoffset(self):
import datetime
tz = self._makeOne()
self.assertEqual(tz.utcoffset(None), datetime.timedelta(0))
def test___repr__(self):
tz = self._makeOne()
self.assertEqual(repr(tz), '<UTC>')
def test___str__(self):
tz = self._makeOne()
self.assertEqual(str(tz), 'UTC')
class Test__ensure_tuple_or_list(unittest.TestCase):
def _callFUT(self, arg_name, tuple_or_list):
from gcloud._helpers import _ensure_tuple_or_list
return _ensure_tuple_or_list(arg_name, tuple_or_list)
def test_valid_tuple(self):
valid_tuple_or_list = ('a', 'b', 'c', 'd')
result = self._callFUT('ARGNAME', valid_tuple_or_list)
self.assertEqual(result, ['a', 'b', 'c', 'd'])
def test_valid_list(self):
valid_tuple_or_list = ['a', 'b', 'c', 'd']
result = self._callFUT('ARGNAME', valid_tuple_or_list)
self.assertEqual(result, valid_tuple_or_list)
def test_invalid(self):
invalid_tuple_or_list = object()
with self.assertRaises(TypeError):
self._callFUT('ARGNAME', invalid_tuple_or_list)
def test_invalid_iterable(self):
invalid_tuple_or_list = 'FOO'
with self.assertRaises(TypeError):
self._callFUT('ARGNAME', invalid_tuple_or_list)
class Test__app_engine_id(unittest.TestCase):
def _callFUT(self):
from gcloud._helpers import _app_engine_id
return _app_engine_id()
def test_no_value(self):
from gcloud._testing import _Monkey
from gcloud import _helpers
with _Monkey(_helpers, app_identity=None):
dataset_id = self._callFUT()
self.assertEqual(dataset_id, None)
def test_value_set(self):
from gcloud._testing import _Monkey
from gcloud import _helpers
APP_ENGINE_ID = object()
APP_IDENTITY = _AppIdentity(APP_ENGINE_ID)
with _Monkey(_helpers, app_identity=APP_IDENTITY):
dataset_id = self._callFUT()
self.assertEqual(dataset_id, APP_ENGINE_ID)
class Test__get_credentials_file_project_id(unittest.TestCase):
def _callFUT(self):
from gcloud._helpers import _file_project_id
return _file_project_id()
def setUp(self):
import os
self.old_env = os.environ.get('GOOGLE_APPLICATION_CREDENTIALS')
def tearDown(self):
import os
if (not self.old_env and
'GOOGLE_APPLICATION_CREDENTIALS' in os.environ):
del os.environ['GOOGLE_APPLICATION_CREDENTIALS']
def test_success(self):
import os
from gcloud._testing import _NamedTemporaryFile
with _NamedTemporaryFile() as temp:
with open(temp.name, mode='w') as creds_file:
creds_file.write('{"project_id": "test-project-id"}')
creds_file.seek(0)
os.environ['GOOGLE_APPLICATION_CREDENTIALS'] = creds_file.name
self.assertEqual('test-project-id', self._callFUT())
def test_no_environment(self):
self.assertEqual(None, self._callFUT())
class Test__get_default_service_project_id(unittest.TestCase):
config_path = '.config/gcloud/configurations/'
config_file = 'config_default'
temp_APPDATA = ''
def setUp(self):
import tempfile
import os
self.temp_config_path = tempfile.mkdtemp()
self.temp_APPDATA = os.getenv('APPDATA')
if self.temp_APPDATA: # pragma: NO COVER Windows
os.environ['APPDATA'] = self.temp_config_path
self.config_path = os.path.join(os.getenv('APPDATA', '~/.config'),
'gcloud', 'configurations')
conf_path = os.path.join(self.temp_config_path, self.config_path)
os.makedirs(conf_path)
self.temp_config_file = os.path.join(conf_path, self.config_file)
with open(self.temp_config_file, 'w') as conf_file:
conf_file.write('[core]\nproject = test-project-id')
def tearDown(self):
import shutil
import os
if os.path.exists(self.temp_config_path):
shutil.rmtree(self.temp_config_path)
if self.temp_APPDATA: # pragma: NO COVER Windows
os.environ['APPDATA'] = self.temp_APPDATA
def callFUT(self, project_id=None):
import os
from gcloud._helpers import _default_service_project_id
from gcloud._testing import _Monkey
def mock_expanduser(path=None):
if project_id and path:
__import__('pwd') # Simulate actual expanduser imports.
return self.temp_config_file
return ''
with _Monkey(os.path, expanduser=mock_expanduser):
return _default_service_project_id()
def test_read_from_cli_info(self):
project_id = self.callFUT('test-project-id')
self.assertEqual('test-project-id', project_id)
def test_gae_without_expanduser(self):
import sys
import shutil
shutil.rmtree(self.temp_config_path)
try:
sys.modules['pwd'] = None # Blocks pwd from being imported.
project_id = self.callFUT('test-project-id')
self.assertEqual(None, project_id)
finally:
del sys.modules['pwd'] # Unblocks importing of pwd.
def test_info_value_not_present(self):
import shutil
shutil.rmtree(self.temp_config_path)
project_id = self.callFUT()
self.assertEqual(None, project_id)
class Test__compute_engine_id(unittest.TestCase):
def _callFUT(self):
from gcloud._helpers import _compute_engine_id
return _compute_engine_id()
def _monkeyConnection(self, connection):
from gcloud._testing import _Monkey
from gcloud import _helpers
def _factory(host, timeout):
connection.host = host
connection.timeout = timeout
return connection
return _Monkey(_helpers, HTTPConnection=_factory)
def test_bad_status(self):
connection = _HTTPConnection(404, None)
with self._monkeyConnection(connection):
dataset_id = self._callFUT()
self.assertEqual(dataset_id, None)
def test_success(self):
COMPUTE_ENGINE_ID = object()
connection = _HTTPConnection(200, COMPUTE_ENGINE_ID)
with self._monkeyConnection(connection):
dataset_id = self._callFUT()
self.assertEqual(dataset_id, COMPUTE_ENGINE_ID)
def test_socket_raises(self):
connection = _TimeoutHTTPConnection()
with self._monkeyConnection(connection):
dataset_id = self._callFUT()
self.assertEqual(dataset_id, None)
class Test__get_production_project(unittest.TestCase):
def _callFUT(self):
from gcloud._helpers import _get_production_project
return _get_production_project()
def test_no_value(self):
import os
from gcloud._testing import _Monkey
environ = {}
with _Monkey(os, getenv=environ.get):
project = self._callFUT()
self.assertEqual(project, None)
def test_value_set(self):
import os
from gcloud._testing import _Monkey
from gcloud._helpers import PROJECT
MOCK_PROJECT = object()
environ = {PROJECT: MOCK_PROJECT}
with _Monkey(os, getenv=environ.get):
project = self._callFUT()
self.assertEqual(project, MOCK_PROJECT)
class Test__determine_default_project(unittest.TestCase):
def _callFUT(self, project=None):
from gcloud._helpers import _determine_default_project
return _determine_default_project(project=project)
def _determine_default_helper(self, prod=None, gae=None, gce=None,
file_id=None, srv_id=None, project=None):
from gcloud._testing import _Monkey
from gcloud import _helpers
_callers = []
def prod_mock():
_callers.append('prod_mock')
return prod
def file_id_mock():
_callers.append('file_id_mock')
return file_id
def srv_id_mock():
_callers.append('srv_id_mock')
return srv_id
def gae_mock():
_callers.append('gae_mock')
return gae
def gce_mock():
_callers.append('gce_mock')
return gce
patched_methods = {
'_get_production_project': prod_mock,
'_file_project_id': file_id_mock,
'_default_service_project_id': srv_id_mock,
'_app_engine_id': gae_mock,
'_compute_engine_id': gce_mock,
}
with _Monkey(_helpers, **patched_methods):
returned_project = self._callFUT(project)
return returned_project, _callers
def test_no_value(self):
project, callers = self._determine_default_helper()
self.assertEqual(project, None)
self.assertEqual(callers, ['prod_mock', 'file_id_mock', 'srv_id_mock',
'gae_mock', 'gce_mock'])
def test_explicit(self):
PROJECT = object()
project, callers = self._determine_default_helper(project=PROJECT)
self.assertEqual(project, PROJECT)
self.assertEqual(callers, [])
def test_prod(self):
PROJECT = object()
project, callers = self._determine_default_helper(prod=PROJECT)
self.assertEqual(project, PROJECT)
self.assertEqual(callers, ['prod_mock'])
def test_gae(self):
PROJECT = object()
project, callers = self._determine_default_helper(gae=PROJECT)
self.assertEqual(project, PROJECT)
self.assertEqual(callers, ['prod_mock', 'file_id_mock',
'srv_id_mock', 'gae_mock'])
def test_gce(self):
PROJECT = object()
project, callers = self._determine_default_helper(gce=PROJECT)
self.assertEqual(project, PROJECT)
self.assertEqual(callers, ['prod_mock', 'file_id_mock', 'srv_id_mock',
'gae_mock', 'gce_mock'])
class Test__millis(unittest.TestCase):
def _callFUT(self, value):
from gcloud._helpers import _millis
return _millis(value)
def test_one_second_from_epoch(self):
import datetime
from gcloud._helpers import UTC
WHEN = datetime.datetime(1970, 1, 1, 0, 0, 1, tzinfo=UTC)
self.assertEqual(self._callFUT(WHEN), 1000)
class Test__microseconds_from_datetime(unittest.TestCase):
def _callFUT(self, value):
from gcloud._helpers import _microseconds_from_datetime
return _microseconds_from_datetime(value)
def test_it(self):
import datetime
microseconds = 314159
timestamp = datetime.datetime(1970, 1, 1, hour=0,
minute=0, second=0,
microsecond=microseconds)
result = self._callFUT(timestamp)
self.assertEqual(result, microseconds)
class Test__millis_from_datetime(unittest.TestCase):
def _callFUT(self, value):
from gcloud._helpers import _millis_from_datetime
return _millis_from_datetime(value)
def test_w_none(self):
self.assertTrue(self._callFUT(None) is None)
def test_w_utc_datetime(self):
import datetime
import six
from gcloud._helpers import UTC
from gcloud._helpers import _microseconds_from_datetime
NOW = datetime.datetime.utcnow().replace(tzinfo=UTC)
NOW_MICROS = _microseconds_from_datetime(NOW)
MILLIS = NOW_MICROS // 1000
result = self._callFUT(NOW)
self.assertTrue(isinstance(result, six.integer_types))
self.assertEqual(result, MILLIS)
def test_w_non_utc_datetime(self):
import datetime
import six
from gcloud._helpers import _UTC
from gcloud._helpers import _microseconds_from_datetime
class CET(_UTC):
_tzname = 'CET'
_utcoffset = datetime.timedelta(hours=-1)
zone = CET()
NOW = datetime.datetime(2015, 7, 28, 16, 34, 47, tzinfo=zone)
NOW_MICROS = _microseconds_from_datetime(NOW)
MILLIS = NOW_MICROS // 1000
result = self._callFUT(NOW)
self.assertTrue(isinstance(result, six.integer_types))
self.assertEqual(result, MILLIS)
def test_w_naive_datetime(self):
import datetime
import six
from gcloud._helpers import UTC
from gcloud._helpers import _microseconds_from_datetime
NOW = datetime.datetime.utcnow()
UTC_NOW = NOW.replace(tzinfo=UTC)
UTC_NOW_MICROS = _microseconds_from_datetime(UTC_NOW)
MILLIS = UTC_NOW_MICROS // 1000
result = self._callFUT(NOW)
self.assertTrue(isinstance(result, six.integer_types))
self.assertEqual(result, MILLIS)
class Test__datetime_from_microseconds(unittest.TestCase):
def _callFUT(self, value):
from gcloud._helpers import _datetime_from_microseconds
return _datetime_from_microseconds(value)
def test_it(self):
import datetime
from gcloud._helpers import UTC
from gcloud._helpers import _microseconds_from_datetime
NOW = datetime.datetime(2015, 7, 29, 17, 45, 21, 123456,
tzinfo=UTC)
NOW_MICROS = _microseconds_from_datetime(NOW)
self.assertEqual(self._callFUT(NOW_MICROS), NOW)
class Test__rfc3339_to_datetime(unittest.TestCase):
def _callFUT(self, dt_str):
from gcloud._helpers import _rfc3339_to_datetime
return _rfc3339_to_datetime(dt_str)
def test_w_bogus_zone(self):
year = 2009
month = 12
day = 17
hour = 12
minute = 44
seconds = 32
micros = 123456789
dt_str = '%d-%02d-%02dT%02d:%02d:%02d.%06dBOGUS' % (
year, month, day, hour, minute, seconds, micros)
with self.assertRaises(ValueError):
self._callFUT(dt_str)
def test_w_microseconds(self):
import datetime
from gcloud._helpers import UTC
year = 2009
month = 12
day = 17
hour = 12
minute = 44
seconds = 32
micros = 123456
dt_str = '%d-%02d-%02dT%02d:%02d:%02d.%06dZ' % (
year, month, day, hour, minute, seconds, micros)
result = self._callFUT(dt_str)
expected_result = datetime.datetime(
year, month, day, hour, minute, seconds, micros, UTC)
self.assertEqual(result, expected_result)
def test_w_naonseconds(self):
year = 2009
month = 12
day = 17
hour = 12
minute = 44
seconds = 32
nanos = 123456789
dt_str = '%d-%02d-%02dT%02d:%02d:%02d.%09dZ' % (
year, month, day, hour, minute, seconds, nanos)
with self.assertRaises(ValueError):
self._callFUT(dt_str)
class Test__rfc3339_nanos_to_datetime(unittest.TestCase):
def _callFUT(self, dt_str):
from gcloud._helpers import _rfc3339_nanos_to_datetime
return _rfc3339_nanos_to_datetime(dt_str)
def test_w_bogus_zone(self):
year = 2009
month = 12
day = 17
hour = 12
minute = 44
seconds = 32
micros = 123456789
dt_str = '%d-%02d-%02dT%02d:%02d:%02d.%06dBOGUS' % (
year, month, day, hour, minute, seconds, micros)
with self.assertRaises(ValueError):
self._callFUT(dt_str)
def test_w_truncated_nanos(self):
import datetime
from gcloud._helpers import UTC
year = 2009
month = 12
day = 17
hour = 12
minute = 44
seconds = 32
truncateds_and_micros = [
('12345678', 123456),
('1234567', 123456),
('123456', 123456),
('12345', 123450),
('1234', 123400),
('123', 123000),
('12', 120000),
('1', 100000),
]
for truncated, micros in truncateds_and_micros:
dt_str = '%d-%02d-%02dT%02d:%02d:%02d.%sZ' % (
year, month, day, hour, minute, seconds, truncated)
result = self._callFUT(dt_str)
expected_result = datetime.datetime(
year, month, day, hour, minute, seconds, micros, UTC)
self.assertEqual(result, expected_result)
def test_w_naonseconds(self):
import datetime
from gcloud._helpers import UTC
year = 2009
month = 12
day = 17
hour = 12
minute = 44
seconds = 32
nanos = 123456789
micros = nanos // 1000
dt_str = '%d-%02d-%02dT%02d:%02d:%02d.%09dZ' % (
year, month, day, hour, minute, seconds, nanos)
result = self._callFUT(dt_str)
expected_result = datetime.datetime(
year, month, day, hour, minute, seconds, micros, UTC)
self.assertEqual(result, expected_result)
class Test__datetime_to_rfc3339(unittest.TestCase):
def _callFUT(self, *args, **kwargs):
from gcloud._helpers import _datetime_to_rfc3339
return _datetime_to_rfc3339(*args, **kwargs)
@staticmethod
def _make_timezone(offset):
from gcloud._helpers import _UTC
class CET(_UTC):
_tzname = 'CET'
_utcoffset = offset
return CET()
def test_w_utc_datetime(self):
import datetime
from gcloud._helpers import UTC
TIMESTAMP = datetime.datetime(2016, 4, 5, 13, 30, 0, tzinfo=UTC)
result = self._callFUT(TIMESTAMP, ignore_zone=False)
self.assertEqual(result, '2016-04-05T13:30:00.000000Z')
def test_w_non_utc_datetime(self):
import datetime
from gcloud._helpers import _UTC
zone = self._make_timezone(offset=datetime.timedelta(hours=-1))
TIMESTAMP = datetime.datetime(2016, 4, 5, 13, 30, 0, tzinfo=zone)
result = self._callFUT(TIMESTAMP, ignore_zone=False)
self.assertEqual(result, '2016-04-05T14:30:00.000000Z')
def test_w_non_utc_datetime_and_ignore_zone(self):
import datetime
from gcloud._helpers import _UTC
zone = self._make_timezone(offset=datetime.timedelta(hours=-1))
TIMESTAMP = datetime.datetime(2016, 4, 5, 13, 30, 0, tzinfo=zone)
result = self._callFUT(TIMESTAMP)
self.assertEqual(result, '2016-04-05T13:30:00.000000Z')
def test_w_naive_datetime(self):
import datetime
TIMESTAMP = datetime.datetime(2016, 4, 5, 13, 30, 0)
result = self._callFUT(TIMESTAMP)
self.assertEqual(result, '2016-04-05T13:30:00.000000Z')
class Test__to_bytes(unittest.TestCase):
def _callFUT(self, *args, **kwargs):
from gcloud._helpers import _to_bytes
return _to_bytes(*args, **kwargs)
def test_with_bytes(self):
value = b'bytes-val'
self.assertEqual(self._callFUT(value), value)
def test_with_unicode(self):
value = u'string-val'
encoded_value = b'string-val'
self.assertEqual(self._callFUT(value), encoded_value)
def test_unicode_non_ascii(self):
value = u'\u2013' # Long hyphen
encoded_value = b'\xe2\x80\x93'
self.assertRaises(UnicodeEncodeError, self._callFUT, value)
self.assertEqual(self._callFUT(value, encoding='utf-8'),
encoded_value)
def test_with_nonstring_type(self):
value = object()
self.assertRaises(TypeError, self._callFUT, value)
class Test__bytes_to_unicode(unittest.TestCase):
def _callFUT(self, *args, **kwargs):
from gcloud._helpers import _bytes_to_unicode
return _bytes_to_unicode(*args, **kwargs)
def test_with_bytes(self):
value = b'bytes-val'
encoded_value = 'bytes-val'
self.assertEqual(self._callFUT(value), encoded_value)
def test_with_unicode(self):
value = u'string-val'
encoded_value = 'string-val'
self.assertEqual(self._callFUT(value), encoded_value)
def test_with_nonstring_type(self):
value = object()
self.assertRaises(ValueError, self._callFUT, value)
class Test__pb_timestamp_to_datetime(unittest.TestCase):
def _callFUT(self, timestamp):
from gcloud._helpers import _pb_timestamp_to_datetime
return _pb_timestamp_to_datetime(timestamp)
def test_it(self):
import datetime
from google.protobuf.timestamp_pb2 import Timestamp
from gcloud._helpers import UTC
# Epoch is midnight on January 1, 1970 ...
dt_stamp = datetime.datetime(1970, month=1, day=1, hour=0,
minute=1, second=1, microsecond=1234,
tzinfo=UTC)
# ... so 1 minute and 1 second after is 61 seconds and 1234
# microseconds is 1234000 nanoseconds.
timestamp = Timestamp(seconds=61, nanos=1234000)
self.assertEqual(self._callFUT(timestamp), dt_stamp)
class Test__pb_timestamp_to_rfc3339(unittest.TestCase):
def _callFUT(self, timestamp):
from gcloud._helpers import _pb_timestamp_to_rfc3339
return _pb_timestamp_to_rfc3339(timestamp)
def test_it(self):
from google.protobuf.timestamp_pb2 import Timestamp
# Epoch is midnight on January 1, 1970 ...
# ... so 1 minute and 1 second after is 61 seconds and 1234
# microseconds is 1234000 nanoseconds.
timestamp = Timestamp(seconds=61, nanos=1234000)
self.assertEqual(self._callFUT(timestamp),
'1970-01-01T00:01:01.001234Z')
class Test__datetime_to_pb_timestamp(unittest.TestCase):
def _callFUT(self, when):
from gcloud._helpers import _datetime_to_pb_timestamp
return _datetime_to_pb_timestamp(when)
def test_it(self):
import datetime
from google.protobuf.timestamp_pb2 import Timestamp
from gcloud._helpers import UTC
# Epoch is midnight on January 1, 1970 ...
dt_stamp = datetime.datetime(1970, month=1, day=1, hour=0,
minute=1, second=1, microsecond=1234,
tzinfo=UTC)
# ... so 1 minute and 1 second after is 61 seconds and 1234
# microseconds is 1234000 nanoseconds.
timestamp = Timestamp(seconds=61, nanos=1234000)
self.assertEqual(self._callFUT(dt_stamp), timestamp)
class Test__name_from_project_path(unittest.TestCase):
PROJECT = 'PROJECT'
THING_NAME = 'THING_NAME'
TEMPLATE = r'projects/(?P<project>\w+)/things/(?P<name>\w+)'
def _callFUT(self, path, project, template):
from gcloud._helpers import _name_from_project_path
return _name_from_project_path(path, project, template)
def test_w_invalid_path_length(self):
PATH = 'projects/foo'
with self.assertRaises(ValueError):
self._callFUT(PATH, None, self.TEMPLATE)
def test_w_invalid_path_segments(self):
PATH = 'foo/%s/bar/%s' % (self.PROJECT, self.THING_NAME)
with self.assertRaises(ValueError):
self._callFUT(PATH, self.PROJECT, self.TEMPLATE)
def test_w_mismatched_project(self):
PROJECT1 = 'PROJECT1'
PROJECT2 = 'PROJECT2'
PATH = 'projects/%s/things/%s' % (PROJECT1, self.THING_NAME)
with self.assertRaises(ValueError):
self._callFUT(PATH, PROJECT2, self.TEMPLATE)
def test_w_valid_data_w_compiled_regex(self):
import re
template = re.compile(self.TEMPLATE)
PATH = 'projects/%s/things/%s' % (self.PROJECT, self.THING_NAME)
name = self._callFUT(PATH, self.PROJECT, template)
self.assertEqual(name, self.THING_NAME)
def test_w_project_passed_as_none(self):
PROJECT1 = 'PROJECT1'
PATH = 'projects/%s/things/%s' % (PROJECT1, self.THING_NAME)
self._callFUT(PATH, None, self.TEMPLATE)
name = self._callFUT(PATH, None, self.TEMPLATE)
self.assertEqual(name, self.THING_NAME)
class TestMetadataPlugin(unittest.TestCase):
def _getTargetClass(self):
from gcloud._helpers import MetadataPlugin
return MetadataPlugin
def _makeOne(self, *args, **kwargs):
return self._getTargetClass()(*args, **kwargs)
def test_constructor(self):
credentials = object()
user_agent = object()
plugin = self._makeOne(credentials, user_agent)
self.assertIs(plugin._credentials, credentials)
self.assertIs(plugin._user_agent, user_agent)
def test___call__(self):
access_token_expected = 'FOOBARBAZ'
credentials = _Credentials(access_token=access_token_expected)
user_agent = 'USER_AGENT'
callback_args = []
def callback(*args):
callback_args.append(args)
transformer = self._makeOne(credentials, user_agent)
result = transformer(None, callback)
cb_headers = [
('Authorization', 'Bearer ' + access_token_expected),
('User-agent', user_agent),
]
self.assertEqual(result, None)
self.assertEqual(callback_args, [(cb_headers, None)])
self.assertEqual(len(credentials._tokens), 1)
class Test_make_stub(unittest.TestCase):
def _callFUT(self, *args, **kwargs):
from gcloud._helpers import make_stub
return make_stub(*args, **kwargs)
def test_it(self):
from gcloud._testing import _Monkey
from gcloud import _helpers as MUT
mock_result = object()
stub_inputs = []
SSL_CREDS = object()
METADATA_CREDS = object()
COMPOSITE_CREDS = object()
CHANNEL = object()
class _ImplementationsModule(object):
def __init__(self):
self.ssl_channel_credentials_args = None
self.metadata_call_credentials_args = None
self.composite_channel_credentials_args = None
self.secure_channel_args = None
def ssl_channel_credentials(self, *args):
self.ssl_channel_credentials_args = args
return SSL_CREDS
def metadata_call_credentials(self, *args, **kwargs):
self.metadata_call_credentials_args = (args, kwargs)
return METADATA_CREDS
def composite_channel_credentials(self, *args):
self.composite_channel_credentials_args = args
return COMPOSITE_CREDS
def secure_channel(self, *args):
self.secure_channel_args = args
return CHANNEL
implementations_mod = _ImplementationsModule()
def mock_stub_factory(channel):
stub_inputs.append(channel)
return mock_result
metadata_plugin = object()
plugin_args = []
def mock_plugin(*args):
plugin_args.append(args)
return metadata_plugin
host = 'HOST'
port = 1025
credentials = object()
user_agent = 'USER_AGENT'
with _Monkey(MUT, implementations=implementations_mod,
MetadataPlugin=mock_plugin):
result = self._callFUT(credentials, user_agent,
mock_stub_factory, host, port)
self.assertTrue(result is mock_result)
self.assertEqual(stub_inputs, [CHANNEL])
self.assertEqual(plugin_args, [(credentials, user_agent)])
self.assertEqual(implementations_mod.ssl_channel_credentials_args,
(None, None, None))
self.assertEqual(implementations_mod.metadata_call_credentials_args,
((metadata_plugin,), {'name': 'google_creds'}))
self.assertEqual(
implementations_mod.composite_channel_credentials_args,
(SSL_CREDS, METADATA_CREDS))
self.assertEqual(implementations_mod.secure_channel_args,
(host, port, COMPOSITE_CREDS))
class _AppIdentity(object):
def __init__(self, app_id):
self.app_id = app_id
def get_application_id(self):
return self.app_id
class _HTTPResponse(object):
def __init__(self, status, data):
self.status = status
self.data = data
def read(self):
return self.data
class _BaseHTTPConnection(object):
host = timeout = None
def __init__(self):
self._close_count = 0
self._called_args = []
self._called_kwargs = []
def request(self, method, uri, **kwargs):
self._called_args.append((method, uri))
self._called_kwargs.append(kwargs)
def close(self):
self._close_count += 1
class _HTTPConnection(_BaseHTTPConnection):
def __init__(self, status, project):
super(_HTTPConnection, self).__init__()
self.status = status
self.project = project
def getresponse(self):
return _HTTPResponse(self.status, self.project)
class _TimeoutHTTPConnection(_BaseHTTPConnection):
def getresponse(self):
import socket
raise socket.timeout('timed out')
class _Credentials(object):
def __init__(self, access_token=None):
self._access_token = access_token
self._tokens = []
def get_access_token(self):
from oauth2client.client import AccessTokenInfo
token = AccessTokenInfo(access_token=self._access_token,
expires_in=None)
self._tokens.append(token)
return token