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
846 lines (621 loc) · 26.5 KB
/
test__helpers.py
File metadata and controls
846 lines (621 loc) · 26.5 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
# Copyright 2014 Google Inc.
#
# 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
import mock
class Test__LocalStack(unittest.TestCase):
@staticmethod
def _get_target_class():
from google.cloud._helpers import _LocalStack
return _LocalStack
def _make_one(self):
return self._get_target_class()()
def test_it(self):
batch1, batch2 = object(), object()
batches = self._make_one()
self.assertEqual(list(batches), [])
self.assertIsNone(batches.top)
batches.push(batch1)
self.assertIs(batches.top, batch1)
batches.push(batch2)
self.assertIs(batches.top, batch2)
popped = batches.pop()
self.assertIs(popped, batch2)
self.assertIs(batches.top, batch1)
self.assertEqual(list(batches), [batch1])
popped = batches.pop()
self.assertIsNone(batches.top)
self.assertEqual(list(batches), [])
class Test__UTC(unittest.TestCase):
@staticmethod
def _get_target_class():
from google.cloud._helpers import _UTC
return _UTC
def _make_one(self):
return self._get_target_class()()
def test_module_property(self):
from google.cloud import _helpers as MUT
klass = self._get_target_class()
try:
import pytz
except ImportError:
self.assertIsInstance(MUT.UTC, klass)
else:
self.assertIs(MUT.UTC, pytz.UTC) # pragma: NO COVER
def test_dst(self):
import datetime
tz = self._make_one()
self.assertEqual(tz.dst(None), datetime.timedelta(0))
def test_fromutc(self):
import datetime
naive_epoch = datetime.datetime.utcfromtimestamp(0)
self.assertIsNone(naive_epoch.tzinfo)
tz = self._make_one()
epoch = tz.fromutc(naive_epoch)
self.assertEqual(epoch.tzinfo, tz)
def test_tzname(self):
tz = self._make_one()
self.assertEqual(tz.tzname(None), 'UTC')
def test_utcoffset(self):
import datetime
tz = self._make_one()
self.assertEqual(tz.utcoffset(None), datetime.timedelta(0))
def test___repr__(self):
tz = self._make_one()
self.assertEqual(repr(tz), '<UTC>')
def test___str__(self):
tz = self._make_one()
self.assertEqual(str(tz), 'UTC')
class Test__ensure_tuple_or_list(unittest.TestCase):
def _call_fut(self, arg_name, tuple_or_list):
from google.cloud._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._call_fut('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._call_fut('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._call_fut('ARGNAME', invalid_tuple_or_list)
def test_invalid_iterable(self):
invalid_tuple_or_list = 'FOO'
with self.assertRaises(TypeError):
self._call_fut('ARGNAME', invalid_tuple_or_list)
class Test__determine_default_project(unittest.TestCase):
def _call_fut(self, project=None):
from google.cloud._helpers import _determine_default_project
return _determine_default_project(project=project)
def test_it(self):
with mock.patch('google.auth.default', autospec=True) as default:
default.return_value = (
mock.sentinel.credentials, mock.sentinel.project)
project = self._call_fut()
self.assertEqual(project, mock.sentinel.project)
default.assert_called_once_with()
def test_explicit(self):
with mock.patch('google.auth.default', autospec=True) as default:
project = self._call_fut(mock.sentinel.project)
self.assertEqual(project, mock.sentinel.project)
self.assertFalse(default.called)
class Test__millis(unittest.TestCase):
def _call_fut(self, value):
from google.cloud._helpers import _millis
return _millis(value)
def test_one_second_from_epoch(self):
import datetime
from google.cloud._helpers import UTC
WHEN = datetime.datetime(1970, 1, 1, 0, 0, 1, tzinfo=UTC)
self.assertEqual(self._call_fut(WHEN), 1000)
class Test__microseconds_from_datetime(unittest.TestCase):
def _call_fut(self, value):
from google.cloud._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._call_fut(timestamp)
self.assertEqual(result, microseconds)
class Test__millis_from_datetime(unittest.TestCase):
def _call_fut(self, value):
from google.cloud._helpers import _millis_from_datetime
return _millis_from_datetime(value)
def test_w_none(self):
self.assertIsNone(self._call_fut(None))
def test_w_utc_datetime(self):
import datetime
import six
from google.cloud._helpers import UTC
from google.cloud._helpers import _microseconds_from_datetime
NOW = datetime.datetime.utcnow().replace(tzinfo=UTC)
NOW_MICROS = _microseconds_from_datetime(NOW)
MILLIS = NOW_MICROS // 1000
result = self._call_fut(NOW)
self.assertIsInstance(result, six.integer_types)
self.assertEqual(result, MILLIS)
def test_w_non_utc_datetime(self):
import datetime
import six
from google.cloud._helpers import _UTC
from google.cloud._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._call_fut(NOW)
self.assertIsInstance(result, six.integer_types)
self.assertEqual(result, MILLIS)
def test_w_naive_datetime(self):
import datetime
import six
from google.cloud._helpers import UTC
from google.cloud._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._call_fut(NOW)
self.assertIsInstance(result, six.integer_types)
self.assertEqual(result, MILLIS)
class Test__datetime_from_microseconds(unittest.TestCase):
def _call_fut(self, value):
from google.cloud._helpers import _datetime_from_microseconds
return _datetime_from_microseconds(value)
def test_it(self):
import datetime
from google.cloud._helpers import UTC
from google.cloud._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._call_fut(NOW_MICROS), NOW)
class Test___date_from_iso8601_date(unittest.TestCase):
def _call_fut(self, value):
from google.cloud._helpers import _date_from_iso8601_date
return _date_from_iso8601_date(value)
def test_todays_date(self):
import datetime
TODAY = datetime.date.today()
self.assertEqual(self._call_fut(TODAY.strftime("%Y-%m-%d")), TODAY)
class Test___time_from_iso8601_time_naive(unittest.TestCase):
def _call_fut(self, value):
from google.cloud._helpers import _time_from_iso8601_time_naive
return _time_from_iso8601_time_naive(value)
def test_todays_date(self):
import datetime
WHEN = datetime.time(12, 9, 42)
self.assertEqual(self._call_fut(("12:09:42")), WHEN)
class Test__rfc3339_to_datetime(unittest.TestCase):
def _call_fut(self, dt_str):
from google.cloud._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._call_fut(dt_str)
def test_w_microseconds(self):
import datetime
from google.cloud._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._call_fut(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._call_fut(dt_str)
class Test__rfc3339_nanos_to_datetime(unittest.TestCase):
def _call_fut(self, dt_str):
from google.cloud._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._call_fut(dt_str)
def test_w_truncated_nanos(self):
import datetime
from google.cloud._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._call_fut(dt_str)
expected_result = datetime.datetime(
year, month, day, hour, minute, seconds, micros, UTC)
self.assertEqual(result, expected_result)
def test_without_nanos(self):
import datetime
from google.cloud._helpers import UTC
year = 1988
month = 4
day = 29
hour = 12
minute = 12
seconds = 12
dt_str = '%d-%02d-%02dT%02d:%02d:%02dZ' % (
year, month, day, hour, minute, seconds)
result = self._call_fut(dt_str)
expected_result = datetime.datetime(
year, month, day, hour, minute, seconds, 0, UTC)
self.assertEqual(result, expected_result)
def test_w_naonseconds(self):
import datetime
from google.cloud._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._call_fut(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 _call_fut(self, *args, **kwargs):
from google.cloud._helpers import _datetime_to_rfc3339
return _datetime_to_rfc3339(*args, **kwargs)
@staticmethod
def _make_timezone(offset):
from google.cloud._helpers import _UTC
class CET(_UTC):
_tzname = 'CET'
_utcoffset = offset
return CET()
def test_w_utc_datetime(self):
import datetime
from google.cloud._helpers import UTC
TIMESTAMP = datetime.datetime(2016, 4, 5, 13, 30, 0, tzinfo=UTC)
result = self._call_fut(TIMESTAMP, ignore_zone=False)
self.assertEqual(result, '2016-04-05T13:30:00.000000Z')
def test_w_non_utc_datetime(self):
import datetime
zone = self._make_timezone(offset=datetime.timedelta(hours=-1))
TIMESTAMP = datetime.datetime(2016, 4, 5, 13, 30, 0, tzinfo=zone)
result = self._call_fut(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
zone = self._make_timezone(offset=datetime.timedelta(hours=-1))
TIMESTAMP = datetime.datetime(2016, 4, 5, 13, 30, 0, tzinfo=zone)
result = self._call_fut(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._call_fut(TIMESTAMP)
self.assertEqual(result, '2016-04-05T13:30:00.000000Z')
class Test__to_bytes(unittest.TestCase):
def _call_fut(self, *args, **kwargs):
from google.cloud._helpers import _to_bytes
return _to_bytes(*args, **kwargs)
def test_with_bytes(self):
value = b'bytes-val'
self.assertEqual(self._call_fut(value), value)
def test_with_unicode(self):
value = u'string-val'
encoded_value = b'string-val'
self.assertEqual(self._call_fut(value), encoded_value)
def test_unicode_non_ascii(self):
value = u'\u2013' # Long hyphen
encoded_value = b'\xe2\x80\x93'
self.assertRaises(UnicodeEncodeError, self._call_fut, value)
self.assertEqual(self._call_fut(value, encoding='utf-8'),
encoded_value)
def test_with_nonstring_type(self):
value = object()
self.assertRaises(TypeError, self._call_fut, value)
class Test__bytes_to_unicode(unittest.TestCase):
def _call_fut(self, *args, **kwargs):
from google.cloud._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._call_fut(value), encoded_value)
def test_with_unicode(self):
value = u'string-val'
encoded_value = 'string-val'
self.assertEqual(self._call_fut(value), encoded_value)
def test_with_nonstring_type(self):
value = object()
self.assertRaises(ValueError, self._call_fut, value)
class Test__pb_timestamp_to_datetime(unittest.TestCase):
def _call_fut(self, timestamp):
from google.cloud._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 google.cloud._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._call_fut(timestamp), dt_stamp)
class Test__pb_timestamp_to_rfc3339(unittest.TestCase):
def _call_fut(self, timestamp):
from google.cloud._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._call_fut(timestamp),
'1970-01-01T00:01:01.001234Z')
class Test__datetime_to_pb_timestamp(unittest.TestCase):
def _call_fut(self, when):
from google.cloud._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 google.cloud._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._call_fut(dt_stamp), timestamp)
class Test__timedelta_to_duration_pb(unittest.TestCase):
def _call_fut(self, *args, **kwargs):
from google.cloud._helpers import _timedelta_to_duration_pb
return _timedelta_to_duration_pb(*args, **kwargs)
def test_it(self):
import datetime
from google.protobuf import duration_pb2
seconds = microseconds = 1
timedelta_val = datetime.timedelta(seconds=seconds,
microseconds=microseconds)
result = self._call_fut(timedelta_val)
self.assertIsInstance(result, duration_pb2.Duration)
self.assertEqual(result.seconds, seconds)
self.assertEqual(result.nanos, 1000 * microseconds)
def test_with_negative_microseconds(self):
import datetime
from google.protobuf import duration_pb2
seconds = 1
microseconds = -5
timedelta_val = datetime.timedelta(seconds=seconds,
microseconds=microseconds)
result = self._call_fut(timedelta_val)
self.assertIsInstance(result, duration_pb2.Duration)
self.assertEqual(result.seconds, seconds - 1)
self.assertEqual(result.nanos, 10**9 + 1000 * microseconds)
def test_with_negative_seconds(self):
import datetime
from google.protobuf import duration_pb2
seconds = -1
microseconds = 5
timedelta_val = datetime.timedelta(seconds=seconds,
microseconds=microseconds)
result = self._call_fut(timedelta_val)
self.assertIsInstance(result, duration_pb2.Duration)
self.assertEqual(result.seconds, seconds + 1)
self.assertEqual(result.nanos, -(10**9 - 1000 * microseconds))
class Test__duration_pb_to_timedelta(unittest.TestCase):
def _call_fut(self, *args, **kwargs):
from google.cloud._helpers import _duration_pb_to_timedelta
return _duration_pb_to_timedelta(*args, **kwargs)
def test_it(self):
import datetime
from google.protobuf import duration_pb2
seconds = microseconds = 1
duration_pb = duration_pb2.Duration(seconds=seconds,
nanos=1000 * microseconds)
timedelta_val = datetime.timedelta(seconds=seconds,
microseconds=microseconds)
result = self._call_fut(duration_pb)
self.assertIsInstance(result, datetime.timedelta)
self.assertEqual(result, timedelta_val)
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 _call_fut(self, path, project, template):
from google.cloud._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._call_fut(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._call_fut(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._call_fut(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._call_fut(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._call_fut(PATH, None, self.TEMPLATE)
name = self._call_fut(PATH, None, self.TEMPLATE)
self.assertEqual(name, self.THING_NAME)
class Test_make_secure_channel(unittest.TestCase):
def _call_fut(self, *args, **kwargs):
from google.cloud._helpers import make_secure_channel
return make_secure_channel(*args, **kwargs)
def test_it(self):
from six.moves import http_client
credentials = object()
host = 'HOST'
user_agent = 'USER_AGENT'
secure_authorized_channel_patch = mock.patch(
'google.auth.transport.grpc.secure_authorized_channel',
autospec=True)
with secure_authorized_channel_patch as secure_authorized_channel:
result = self._call_fut(credentials, user_agent, host)
self.assertIs(result, secure_authorized_channel.return_value)
expected_target = '%s:%d' % (host, http_client.HTTPS_PORT)
expected_options = (('grpc.primary_user_agent', user_agent),)
secure_authorized_channel.assert_called_once_with(
credentials, mock.ANY, expected_target, options=expected_options)
def test_extra_options(self):
from six.moves import http_client
credentials = object()
host = 'HOST'
user_agent = 'USER_AGENT'
extra_options = (('some', 'option'),)
secure_authorized_channel_patch = mock.patch(
'google.auth.transport.grpc.secure_authorized_channel',
autospec=True)
with secure_authorized_channel_patch as secure_authorized_channel:
result = self._call_fut(credentials, user_agent, host,
extra_options)
self.assertIs(result, secure_authorized_channel.return_value)
expected_target = '%s:%d' % (host, http_client.HTTPS_PORT)
expected_options = (
('grpc.primary_user_agent', user_agent),
extra_options[0],
)
secure_authorized_channel.assert_called_once_with(
credentials, mock.ANY, expected_target, options=expected_options)
class Test_make_secure_stub(unittest.TestCase):
def _call_fut(self, *args, **kwargs):
from google.cloud._helpers import make_secure_stub
return make_secure_stub(*args, **kwargs)
def test_it(self):
from google.cloud._testing import _Monkey
from google.cloud import _helpers as MUT
result = object()
channel_obj = object()
channels = []
channel_args = []
def stub_class(channel):
channels.append(channel)
return result
def mock_channel(*args, **kwargs):
channel_args.append(args)
channel_args.append(kwargs)
return channel_obj
credentials = object()
user_agent = 'you-sir-age-int'
host = 'localhost'
extra_options = {'extra_options': ()}
with _Monkey(MUT, make_secure_channel=mock_channel):
stub = self._call_fut(credentials, user_agent,
stub_class, host)
self.assertIs(stub, result)
self.assertEqual(channels, [channel_obj])
self.assertEqual(channel_args,
[(credentials, user_agent, host), extra_options])
class Test_make_insecure_stub(unittest.TestCase):
def _call_fut(self, *args, **kwargs):
from google.cloud._helpers import make_insecure_stub
return make_insecure_stub(*args, **kwargs)
def _helper(self, target, host, port=None):
from google.cloud._testing import _Monkey
from google.cloud import _helpers as MUT
mock_result = object()
stub_inputs = []
CHANNEL = object()
class _GRPCModule(object):
def insecure_channel(self, *args):
self.insecure_channel_args = args
return CHANNEL
grpc_mod = _GRPCModule()
def mock_stub_class(channel):
stub_inputs.append(channel)
return mock_result
with _Monkey(MUT, grpc=grpc_mod):
result = self._call_fut(mock_stub_class, host, port=port)
self.assertIs(result, mock_result)
self.assertEqual(stub_inputs, [CHANNEL])
self.assertEqual(grpc_mod.insecure_channel_args, (target,))
def test_with_port_argument(self):
host = 'HOST'
port = 1025
target = '%s:%d' % (host, port)
self._helper(target, host, port=port)
def test_without_port_argument(self):
host = 'HOST:1114'
self._helper(host, host)