forked from googleapis/google-cloud-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsystem.py
More file actions
964 lines (785 loc) · 37.2 KB
/
system.py
File metadata and controls
964 lines (785 loc) · 37.2 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
# Copyright 2016 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 datetime
import operator
import os
import unittest
from google.cloud._helpers import _datetime_from_microseconds
from google.cloud._helpers import _microseconds_from_datetime
from google.cloud._helpers import UTC
from google.cloud.bigtable.client import Client
from google.cloud.bigtable.column_family import MaxVersionsGCRule
from google.cloud.bigtable.row_filters import ApplyLabelFilter
from google.cloud.bigtable.row_filters import ColumnQualifierRegexFilter
from google.cloud.bigtable.row_filters import RowFilterChain
from google.cloud.bigtable.row_filters import RowFilterUnion
from google.cloud.bigtable.row_data import Cell
from google.cloud.bigtable.row_data import PartialRowData
from google.cloud.environment_vars import BIGTABLE_EMULATOR
from google.cloud.bigtable.row_set import RowSet
from google.cloud.bigtable.row_set import RowRange
from test_utils.retry import RetryErrors
from test_utils.system import EmulatorCreds
from test_utils.system import unique_resource_id
LOCATION_ID = 'us-central1-c'
INSTANCE_ID = 'g-c-p' + unique_resource_id('-')
TABLE_ID = 'google-cloud-python-test-table'
CLUSTER_ID = INSTANCE_ID+'-cluster'
SERVE_NODES = 3
COLUMN_FAMILY_ID1 = u'col-fam-id1'
COLUMN_FAMILY_ID2 = u'col-fam-id2'
COL_NAME1 = b'col-name1'
COL_NAME2 = b'col-name2'
COL_NAME3 = b'col-name3-but-other-fam'
CELL_VAL1 = b'cell-val'
CELL_VAL2 = b'cell-val-newer'
CELL_VAL3 = b'altcol-cell-val'
CELL_VAL4 = b'foo'
ROW_KEY = b'row-key'
ROW_KEY_ALT = b'row-key-alt'
ROUTING_POLICY_TYPE_ANY = 1
ROUTING_POLICY_TYPE_SINGLE = 2
EXISTING_INSTANCES = []
LABEL_KEY = u'python-system'
label_stamp = datetime.datetime.utcnow() \
.replace(microsecond=0, tzinfo=UTC,) \
.strftime("%Y-%m-%dt%H-%M-%S")
LABELS = {LABEL_KEY: str(label_stamp)}
class Config(object):
"""Run-time configuration to be modified at set-up.
This is a mutable stand-in to allow test set-up to modify
global state.
"""
CLIENT = None
INSTANCE = None
CLUSTER = None
IN_EMULATOR = False
def _retry_on_unavailable(exc):
"""Retry only errors whose status code is 'UNAVAILABLE'."""
from grpc import StatusCode
return exc.code() == StatusCode.UNAVAILABLE
def setUpModule():
from google.cloud.exceptions import GrpcRendezvous
Config.IN_EMULATOR = os.getenv(BIGTABLE_EMULATOR) is not None
if Config.IN_EMULATOR:
credentials = EmulatorCreds()
Config.CLIENT = Client(admin=True, credentials=credentials)
else:
Config.CLIENT = Client(admin=True)
Config.INSTANCE = Config.CLIENT.instance(INSTANCE_ID, labels=LABELS)
Config.CLUSTER = Config.INSTANCE.cluster(
CLUSTER_ID, location_id=LOCATION_ID, serve_nodes=SERVE_NODES)
if not Config.IN_EMULATOR:
retry = RetryErrors(GrpcRendezvous,
error_predicate=_retry_on_unavailable)
instances, failed_locations = retry(Config.CLIENT.list_instances)()
if len(failed_locations) != 0:
raise ValueError('List instances failed in module set up.')
EXISTING_INSTANCES[:] = instances
# After listing, create the test instance.
created_op = Config.INSTANCE.create(clusters=[Config.CLUSTER])
created_op.result(timeout=10)
def tearDownModule():
if not Config.IN_EMULATOR:
Config.INSTANCE.delete()
class TestInstanceAdminAPI(unittest.TestCase):
def setUp(self):
if Config.IN_EMULATOR:
self.skipTest(
'Instance Admin API not supported in Bigtable emulator')
self.instances_to_delete = []
def tearDown(self):
for instance in self.instances_to_delete:
instance.delete()
def test_list_instances(self):
instances, failed_locations = Config.CLIENT.list_instances()
self.assertEqual(failed_locations, [])
found = set([instance.name for instance in instances])
self.assertTrue(Config.INSTANCE.name in found)
def test_reload(self):
from google.cloud.bigtable import enums
# Use same arguments as Config.INSTANCE (created in `setUpModule`)
# so we can use reload() on a fresh instance.
alt_instance = Config.CLIENT.instance(INSTANCE_ID)
# Make sure metadata unset before reloading.
alt_instance.display_name = None
alt_instance.reload()
self.assertEqual(alt_instance.display_name,
Config.INSTANCE.display_name)
self.assertEqual(alt_instance.labels, Config.INSTANCE.labels)
self.assertEqual(alt_instance.type_, enums.Instance.Type.PRODUCTION)
def test_create_instance_defaults(self):
from google.cloud.bigtable import enums
ALT_INSTANCE_ID = 'ndef' + unique_resource_id('-')
instance = Config.CLIENT.instance(ALT_INSTANCE_ID, labels=LABELS)
ALT_CLUSTER_ID = ALT_INSTANCE_ID+'-cluster'
cluster = instance.cluster(
ALT_CLUSTER_ID, location_id=LOCATION_ID, serve_nodes=SERVE_NODES)
operation = instance.create(clusters=[cluster])
# We want to make sure the operation completes.
operation.result(timeout=10)
# Make sure this instance gets deleted after the test case.
self.instances_to_delete.append(instance)
# Create a new instance instance and make sure it is the same.
instance_alt = Config.CLIENT.instance(ALT_INSTANCE_ID)
instance_alt.reload()
self.assertEqual(instance, instance_alt)
self.assertEqual(instance.display_name, instance_alt.display_name)
# Make sure that by default a PRODUCTION type instance is created
self.assertIsNone(instance.type_)
self.assertEqual(instance_alt.type_, enums.Instance.Type.PRODUCTION)
def test_create_instance(self):
from google.cloud.bigtable import enums
_DEVELOPMENT = enums.Instance.Type.DEVELOPMENT
_STATE = enums.Instance.State.READY
ALT_INSTANCE_ID = 'new' + unique_resource_id('-')
instance = Config.CLIENT.instance(ALT_INSTANCE_ID,
instance_type=_DEVELOPMENT,
labels=LABELS)
ALT_CLUSTER_ID = ALT_INSTANCE_ID+'-cluster'
cluster = instance.cluster(ALT_CLUSTER_ID, location_id=LOCATION_ID)
operation = instance.create(clusters=[cluster])
# We want to make sure the operation completes.
operation.result(timeout=10)
# Make sure this instance gets deleted after the test case.
self.instances_to_delete.append(instance)
# Create a new instance instance and make sure it is the same.
instance_alt = Config.CLIENT.instance(ALT_INSTANCE_ID)
instance_alt.reload()
self.assertEqual(instance, instance_alt)
self.assertEqual(instance.display_name, instance_alt.display_name)
self.assertEqual(instance.type_, instance_alt.type_)
self.assertEqual(instance_alt.labels, LABELS)
self.assertEqual(_STATE, instance_alt.state)
def test_cluster_exists(self):
NONEXISTING_CLUSTER_ID = 'cluster-id'
cluster = Config.INSTANCE.cluster(CLUSTER_ID)
alt_cluster = Config.INSTANCE.cluster(NONEXISTING_CLUSTER_ID)
self.assertTrue(cluster.exists())
self.assertFalse(alt_cluster.exists())
def test_create_instance_w_two_clusters(self):
from google.cloud.bigtable import enums
_PRODUCTION = enums.Instance.Type.PRODUCTION
ALT_INSTANCE_ID = 'dif' + unique_resource_id('-')
instance = Config.CLIENT.instance(ALT_INSTANCE_ID,
instance_type=_PRODUCTION,
labels=LABELS)
ALT_CLUSTER_ID_1 = ALT_INSTANCE_ID+'-c1'
ALT_CLUSTER_ID_2 = ALT_INSTANCE_ID+'-c2'
LOCATION_ID_2 = 'us-central1-f'
STORAGE_TYPE = enums.StorageType.HDD
cluster_1 = instance.cluster(
ALT_CLUSTER_ID_1, location_id=LOCATION_ID, serve_nodes=SERVE_NODES,
default_storage_type=STORAGE_TYPE)
cluster_2 = instance.cluster(
ALT_CLUSTER_ID_2, location_id=LOCATION_ID_2,
serve_nodes=SERVE_NODES, default_storage_type=STORAGE_TYPE)
operation = instance.create(clusters=[cluster_1, cluster_2])
# We want to make sure the operation completes.
operation.result(timeout=10)
# Make sure this instance gets deleted after the test case.
self.instances_to_delete.append(instance)
# Create a new instance instance and make sure it is the same.
instance_alt = Config.CLIENT.instance(ALT_INSTANCE_ID)
instance_alt.reload()
self.assertEqual(instance, instance_alt)
self.assertEqual(instance.display_name, instance_alt.display_name)
self.assertEqual(instance.type_, instance_alt.type_)
clusters, failed_locations = instance_alt.list_clusters()
self.assertEqual(failed_locations, [])
clusters.sort(key=lambda x: x.name)
alt_cluster_1, alt_cluster_2 = clusters
self.assertEqual(cluster_1.location_id, alt_cluster_1.location_id)
self.assertEqual(alt_cluster_1.state, enums.Cluster.State.READY)
self.assertEqual(cluster_1.serve_nodes, alt_cluster_1.serve_nodes)
self.assertEqual(cluster_1.default_storage_type,
alt_cluster_1.default_storage_type)
self.assertEqual(cluster_2.location_id, alt_cluster_2.location_id)
self.assertEqual(alt_cluster_2.state, enums.Cluster.State.READY)
self.assertEqual(cluster_2.serve_nodes, alt_cluster_2.serve_nodes)
self.assertEqual(cluster_2.default_storage_type,
alt_cluster_2.default_storage_type)
# Test list clusters in project via 'client.list_clusters'
clusters, failed_locations = Config.CLIENT.list_clusters()
self.assertFalse(failed_locations)
found = set([cluster.name for cluster in clusters])
self.assertTrue({alt_cluster_1.name,
alt_cluster_2.name,
Config.CLUSTER.name}.issubset(found))
def test_update_display_name_and_labels(self):
OLD_DISPLAY_NAME = Config.INSTANCE.display_name
NEW_DISPLAY_NAME = 'Foo Bar Baz'
n_label_stamp = datetime.datetime.utcnow() \
.replace(microsecond=0, tzinfo=UTC) \
.strftime("%Y-%m-%dt%H-%M-%S")
NEW_LABELS = {LABEL_KEY: str(n_label_stamp)}
Config.INSTANCE.display_name = NEW_DISPLAY_NAME
Config.INSTANCE.labels = NEW_LABELS
operation = Config.INSTANCE.update()
# We want to make sure the operation completes.
operation.result(timeout=10)
# Create a new instance instance and reload it.
instance_alt = Config.CLIENT.instance(INSTANCE_ID, labels=LABELS)
self.assertEqual(instance_alt.display_name, OLD_DISPLAY_NAME)
self.assertEqual(instance_alt.labels, LABELS)
instance_alt.reload()
self.assertEqual(instance_alt.display_name, NEW_DISPLAY_NAME)
self.assertEqual(instance_alt.labels, NEW_LABELS)
# Make sure to put the instance back the way it was for the
# other test cases.
Config.INSTANCE.display_name = OLD_DISPLAY_NAME
Config.INSTANCE.labels = LABELS
operation = Config.INSTANCE.update()
# We want to make sure the operation completes.
operation.result(timeout=10)
def test_update_type(self):
from google.cloud.bigtable.enums import Instance
_DEVELOPMENT = Instance.Type.DEVELOPMENT
_PRODUCTION = Instance.Type.PRODUCTION
ALT_INSTANCE_ID = 'ndif' + unique_resource_id('-')
instance = Config.CLIENT.instance(ALT_INSTANCE_ID,
instance_type=_DEVELOPMENT,
labels=LABELS)
operation = instance.create(location_id=LOCATION_ID, serve_nodes=None)
# Make sure this instance gets deleted after the test case.
self.instances_to_delete.append(instance)
# We want to make sure the operation completes.
operation.result(timeout=10)
# Unset the display_name
instance.display_name = None
instance.type_ = _PRODUCTION
operation = instance.update()
# We want to make sure the operation completes.
operation.result(timeout=10)
# Create a new instance instance and reload it.
instance_alt = Config.CLIENT.instance(ALT_INSTANCE_ID)
self.assertIsNone(instance_alt.type_)
instance_alt.reload()
self.assertEqual(instance_alt.type_, _PRODUCTION)
def test_create_app_profile_with_multi_routing_policy(self):
from google.cloud.bigtable_admin_v2.types import instance_pb2
description = 'Foo App Profile'
instance = Config.INSTANCE
ignore_warnings = True
app_profile_id = 'app_profile_id_1'
app_profile = instance.create_app_profile(
app_profile_id=app_profile_id,
routing_policy_type=ROUTING_POLICY_TYPE_ANY,
description=description,
ignore_warnings=ignore_warnings
)
# Load a different app_profile objec form the server and
# verrify that it is the same
alt_app_profile = instance.get_app_profile(app_profile_id)
self.assertEqual(app_profile, alt_app_profile)
# Modify existing app_profile to singly routing policy and confirm
new_description = 'To single routing policy'
allow_transactional_writes = False
operation = instance.update_app_profile(
app_profile_id=app_profile_id,
routing_policy_type=ROUTING_POLICY_TYPE_SINGLE,
description=new_description,
cluster_id=CLUSTER_ID,
allow_transactional_writes=allow_transactional_writes)
operation.result(timeout=10)
alt_app_profile = instance.get_app_profile(app_profile_id)
self.assertEqual(alt_app_profile.description, new_description)
self.assertIsInstance(
alt_app_profile.single_cluster_routing,
instance_pb2.AppProfile.SingleClusterRouting)
self.assertEqual(
alt_app_profile.single_cluster_routing.cluster_id, CLUSTER_ID)
self.assertEqual(
alt_app_profile.single_cluster_routing.allow_transactional_writes,
allow_transactional_writes)
# Delete app_profile
instance.delete_app_profile(app_profile_id=app_profile_id,
ignore_warnings=ignore_warnings)
self.assertFalse(self._app_profile_exists(app_profile_id))
def test_create_app_profile_with_single_routing_policy(self):
from google.cloud.bigtable_admin_v2.types import instance_pb2
description = 'Foo App Profile'
instance = Config.INSTANCE
ignore_warnings = True
app_profile_id = 'app_profile_id_2'
app_profile = instance.create_app_profile(
app_profile_id=app_profile_id,
routing_policy_type=ROUTING_POLICY_TYPE_SINGLE,
description=description,
cluster_id=CLUSTER_ID,
)
# Load a different app_profile objec form the server and
# verrify that it is the same
alt_app_profile = instance.get_app_profile(app_profile_id)
self.assertEqual(app_profile, alt_app_profile)
# Modify existing app_profile to allow_transactional_writes
new_description = 'Allow transactional writes'
allow_transactional_writes = True
# Note: Do not need to ignore warnings when switching
# to allow transactional writes.
# Do need to set ignore_warnings to True, when switching to
# disallow the transactional writes.
operation = instance.update_app_profile(
app_profile_id=app_profile_id,
routing_policy_type=ROUTING_POLICY_TYPE_SINGLE,
description=new_description,
cluster_id=CLUSTER_ID,
allow_transactional_writes=allow_transactional_writes)
operation.result(timeout=10)
alt_app_profile = instance.get_app_profile(app_profile_id)
self.assertEqual(alt_app_profile.description, new_description)
self.assertEqual(
alt_app_profile.single_cluster_routing.allow_transactional_writes,
allow_transactional_writes)
# Modify existing app_proflie to multi cluster routing
new_description = 'To multi cluster routing'
operation = instance.update_app_profile(
app_profile_id=app_profile_id,
routing_policy_type=ROUTING_POLICY_TYPE_ANY,
description=new_description,
ignore_warnings=ignore_warnings)
operation.result(timeout=10)
alt_app_profile = instance.get_app_profile(app_profile_id)
self.assertEqual(alt_app_profile.description, new_description)
self.assertIsInstance(
alt_app_profile.multi_cluster_routing_use_any,
instance_pb2.AppProfile.MultiClusterRoutingUseAny)
def _app_profile_exists(self, app_profile_id):
from google.api_core import exceptions
try:
Config.INSTANCE.get_app_profile(app_profile_id)
except exceptions.NotFound:
return False
else:
return True
def test_reload_cluster(self):
from google.cloud.bigtable.enums import StorageType
from google.cloud.bigtable.enums import Cluster
# Use same arguments as Config.INSTANCE.cluster
# (created in `setUpModule`) so we can use reload()
# on a fresh cluster.
cluster = Config.INSTANCE.cluster(CLUSTER_ID)
cluster.reload()
self.assertEqual(cluster.location_id, LOCATION_ID)
self.assertEqual(cluster.state, Cluster.State.READY)
self.assertEqual(cluster.serve_nodes, SERVE_NODES)
# Make sure that by default an StorageType.SSD storage is used.
self.assertEqual(cluster.default_storage_type, StorageType.SSD)
def test_update_cluster(self):
NEW_SERVE_NODES = 4
Config.CLUSTER.serve_nodes = NEW_SERVE_NODES
operation = Config.CLUSTER.update()
# We want to make sure the operation completes.
operation.result(timeout=10)
# Create a new cluster instance and reload it.
alt_cluster = Config.INSTANCE.cluster(CLUSTER_ID)
alt_cluster.reload()
self.assertEqual(alt_cluster.serve_nodes, NEW_SERVE_NODES)
# Make sure to put the cluster back the way it was for the
# other test cases.
Config.CLUSTER.serve_nodes = SERVE_NODES
operation = Config.CLUSTER.update()
operation.result(timeout=10)
def test_create_cluster(self):
from google.cloud.bigtable.enums import StorageType
from google.cloud.bigtable.enums import Cluster
ALT_CLUSTER_ID = INSTANCE_ID+'-c2'
ALT_LOCATION_ID = 'us-central1-f'
ALT_SERVE_NODES = 4
cluster_2 = Config.INSTANCE.cluster(ALT_CLUSTER_ID,
location_id=ALT_LOCATION_ID,
serve_nodes=ALT_SERVE_NODES,
default_storage_type=(
StorageType.SSD))
operation = cluster_2.create()
# We want to make sure the operation completes.
operation.result(timeout=10)
# Create a new object instance, reload and make sure it is the same.
alt_cluster = Config.INSTANCE.cluster(ALT_CLUSTER_ID)
alt_cluster.reload()
self.assertEqual(cluster_2, alt_cluster)
self.assertEqual(cluster_2.location_id, alt_cluster.location_id)
self.assertEqual(alt_cluster.state, Cluster.State.READY)
self.assertEqual(cluster_2.serve_nodes, alt_cluster.serve_nodes)
self.assertEqual(cluster_2.default_storage_type,
alt_cluster.default_storage_type)
# Delete the newly created cluster and confirm
self.assertTrue(cluster_2.exists())
cluster_2.delete()
self.assertFalse(cluster_2.exists())
class TestTableAdminAPI(unittest.TestCase):
@classmethod
def setUpClass(cls):
cls._table = Config.INSTANCE.table(TABLE_ID)
cls._table.create()
@classmethod
def tearDownClass(cls):
cls._table.delete()
def setUp(self):
self.tables_to_delete = []
def tearDown(self):
for table in self.tables_to_delete:
table.delete()
def test_list_tables(self):
# Since `Config.INSTANCE` is newly created in `setUpModule`, the table
# created in `setUpClass` here will be the only one.
tables = Config.INSTANCE.list_tables()
self.assertEqual(tables, [self._table])
def test_exists(self):
temp_table_id = 'test-table_existence'
temp_table = Config.INSTANCE.table(temp_table_id)
self.assertFalse(temp_table.exists())
temp_table.create()
self.assertTrue(temp_table.exists())
temp_table.delete()
self.assertFalse(temp_table.exists())
def test_create_table(self):
temp_table_id = 'test-create-table'
temp_table = Config.INSTANCE.table(temp_table_id)
temp_table.create()
self.tables_to_delete.append(temp_table)
# First, create a sorted version of our expected result.
name_attr = operator.attrgetter('name')
expected_tables = sorted([temp_table, self._table], key=name_attr)
# Then query for the tables in the instance and sort them by
# name as well.
tables = Config.INSTANCE.list_tables()
sorted_tables = sorted(tables, key=name_attr)
self.assertEqual(sorted_tables, expected_tables)
def test_create_table_with_families(self):
temp_table_id = 'test-create-table-with-failies'
temp_table = Config.INSTANCE.table(temp_table_id)
gc_rule = MaxVersionsGCRule(1)
temp_table.create(column_families={COLUMN_FAMILY_ID1: gc_rule})
self.tables_to_delete.append(temp_table)
col_fams = temp_table.list_column_families()
self.assertEqual(len(col_fams), 1)
retrieved_col_fam = col_fams[COLUMN_FAMILY_ID1]
self.assertIs(retrieved_col_fam._table, temp_table)
self.assertEqual(retrieved_col_fam.column_family_id,
COLUMN_FAMILY_ID1)
self.assertEqual(retrieved_col_fam.gc_rule, gc_rule)
def test_create_table_with_split_keys(self):
temp_table_id = 'foo-bar-baz-split-table'
initial_split_keys = [b'split_key_1', b'split_key_10',
b'split_key_20']
temp_table = Config.INSTANCE.table(temp_table_id)
temp_table.create(initial_split_keys=initial_split_keys)
self.tables_to_delete.append(temp_table)
# Read Sample Row Keys for created splits
sample_row_keys = temp_table.sample_row_keys()
actual_keys = [srk.row_key for srk in sample_row_keys]
expected_keys = initial_split_keys
expected_keys.append(b'')
self.assertEqual(actual_keys, expected_keys)
def test_create_column_family(self):
temp_table_id = 'test-create-column-family'
temp_table = Config.INSTANCE.table(temp_table_id)
temp_table.create()
self.tables_to_delete.append(temp_table)
self.assertEqual(temp_table.list_column_families(), {})
gc_rule = MaxVersionsGCRule(1)
column_family = temp_table.column_family(COLUMN_FAMILY_ID1,
gc_rule=gc_rule)
column_family.create()
col_fams = temp_table.list_column_families()
self.assertEqual(len(col_fams), 1)
retrieved_col_fam = col_fams[COLUMN_FAMILY_ID1]
self.assertIs(retrieved_col_fam._table, column_family._table)
self.assertEqual(retrieved_col_fam.column_family_id,
column_family.column_family_id)
self.assertEqual(retrieved_col_fam.gc_rule, gc_rule)
def test_update_column_family(self):
temp_table_id = 'test-update-column-family'
temp_table = Config.INSTANCE.table(temp_table_id)
temp_table.create()
self.tables_to_delete.append(temp_table)
gc_rule = MaxVersionsGCRule(1)
column_family = temp_table.column_family(COLUMN_FAMILY_ID1,
gc_rule=gc_rule)
column_family.create()
# Check that our created table is as expected.
col_fams = temp_table.list_column_families()
self.assertEqual(col_fams, {COLUMN_FAMILY_ID1: column_family})
# Update the column family's GC rule and then try to update.
column_family.gc_rule = None
column_family.update()
# Check that the update has propagated.
col_fams = temp_table.list_column_families()
self.assertIsNone(col_fams[COLUMN_FAMILY_ID1].gc_rule)
def test_delete_column_family(self):
temp_table_id = 'test-delete-column-family'
temp_table = Config.INSTANCE.table(temp_table_id)
temp_table.create()
self.tables_to_delete.append(temp_table)
self.assertEqual(temp_table.list_column_families(), {})
column_family = temp_table.column_family(COLUMN_FAMILY_ID1)
column_family.create()
# Make sure the family is there before deleting it.
col_fams = temp_table.list_column_families()
self.assertEqual(list(col_fams.keys()), [COLUMN_FAMILY_ID1])
column_family.delete()
# Make sure we have successfully deleted it.
self.assertEqual(temp_table.list_column_families(), {})
class TestDataAPI(unittest.TestCase):
@classmethod
def setUpClass(cls):
cls._table = table = Config.INSTANCE.table('test-data-api')
table.create()
table.column_family(COLUMN_FAMILY_ID1).create()
table.column_family(COLUMN_FAMILY_ID2).create()
@classmethod
def tearDownClass(cls):
# Will also delete any data contained in the table.
cls._table.delete()
def _maybe_emulator_skip(self, message):
# NOTE: This method is necessary because ``Config.IN_EMULATOR``
# is set at runtime rather than import time, which means we
# can't use the @unittest.skipIf decorator.
if Config.IN_EMULATOR:
self.skipTest(message)
def setUp(self):
self.rows_to_delete = []
def tearDown(self):
for row in self.rows_to_delete:
row.clear()
row.delete()
row.commit()
def _write_to_row(self, row1=None, row2=None, row3=None, row4=None):
timestamp1 = datetime.datetime.utcnow().replace(tzinfo=UTC)
timestamp1_micros = _microseconds_from_datetime(timestamp1)
# Truncate to millisecond granularity.
timestamp1_micros -= (timestamp1_micros % 1000)
timestamp1 = _datetime_from_microseconds(timestamp1_micros)
# 1000 microseconds is a millisecond
timestamp2 = timestamp1 + datetime.timedelta(microseconds=1000)
timestamp2_micros = _microseconds_from_datetime(timestamp2)
timestamp3 = timestamp1 + datetime.timedelta(microseconds=2000)
timestamp3_micros = _microseconds_from_datetime(timestamp3)
timestamp4 = timestamp1 + datetime.timedelta(microseconds=3000)
timestamp4_micros = _microseconds_from_datetime(timestamp4)
if row1 is not None:
row1.set_cell(COLUMN_FAMILY_ID1, COL_NAME1, CELL_VAL1,
timestamp=timestamp1)
if row2 is not None:
row2.set_cell(COLUMN_FAMILY_ID1, COL_NAME1, CELL_VAL2,
timestamp=timestamp2)
if row3 is not None:
row3.set_cell(COLUMN_FAMILY_ID1, COL_NAME2, CELL_VAL3,
timestamp=timestamp3)
if row4 is not None:
row4.set_cell(COLUMN_FAMILY_ID2, COL_NAME3, CELL_VAL4,
timestamp=timestamp4)
# Create the cells we will check.
cell1 = Cell(CELL_VAL1, timestamp1_micros)
cell2 = Cell(CELL_VAL2, timestamp2_micros)
cell3 = Cell(CELL_VAL3, timestamp3_micros)
cell4 = Cell(CELL_VAL4, timestamp4_micros)
return cell1, cell2, cell3, cell4
def test_timestamp_filter_millisecond_granularity(self):
from google.cloud.bigtable import row_filters
end = datetime.datetime.now()
start = end - datetime.timedelta(minutes=60)
timestamp_range = row_filters.TimestampRange(start=start, end=end)
timefilter = row_filters.TimestampRangeFilter(timestamp_range)
row_data = self._table.read_rows(filter_=timefilter)
row_data.consume_all()
def test_mutate_rows(self):
row1 = self._table.row(ROW_KEY)
row1.set_cell(COLUMN_FAMILY_ID1, COL_NAME1, CELL_VAL1)
row1.commit()
self.rows_to_delete.append(row1)
row2 = self._table.row(ROW_KEY_ALT)
row2.set_cell(COLUMN_FAMILY_ID1, COL_NAME1, CELL_VAL2)
row2.commit()
self.rows_to_delete.append(row2)
# Change the contents
row1.set_cell(COLUMN_FAMILY_ID1, COL_NAME1, CELL_VAL3)
row2.set_cell(COLUMN_FAMILY_ID1, COL_NAME1, CELL_VAL4)
rows = [row1, row2]
statuses = self._table.mutate_rows(rows)
result = [status.code for status in statuses]
expected_result = [0, 0]
self.assertEqual(result, expected_result)
# Check the contents
row1_data = self._table.read_row(ROW_KEY)
self.assertEqual(
row1_data.cells[COLUMN_FAMILY_ID1][COL_NAME1][0].value, CELL_VAL3)
row2_data = self._table.read_row(ROW_KEY_ALT)
self.assertEqual(
row2_data.cells[COLUMN_FAMILY_ID1][COL_NAME1][0].value, CELL_VAL4)
def test_truncate_table(self):
row_keys = [
b'row_key_1', b'row_key_2', b'row_key_3', b'row_key_4',
b'row_key_5', b'row_key_pr_1', b'row_key_pr_2', b'row_key_pr_3',
b'row_key_pr_4', b'row_key_pr_5']
for row_key in row_keys:
row = self._table.row(row_key)
row.set_cell(COLUMN_FAMILY_ID1, COL_NAME1, CELL_VAL1)
row.commit()
self.rows_to_delete.append(row)
self._table.truncate(timeout=200)
read_rows = self._table.yield_rows()
for row in read_rows:
self.assertNotIn(row.row_key.decode('utf-8'), row_keys)
def test_drop_by_prefix_table(self):
row_keys = [
b'row_key_1', b'row_key_2', b'row_key_3', b'row_key_4',
b'row_key_5', b'row_key_pr_1', b'row_key_pr_2', b'row_key_pr_3',
b'row_key_pr_4', b'row_key_pr_5']
for row_key in row_keys:
row = self._table.row(row_key)
row.set_cell(COLUMN_FAMILY_ID1, COL_NAME1, CELL_VAL1)
row.commit()
self.rows_to_delete.append(row)
self._table.drop_by_prefix(row_key_prefix='row_key_pr', timeout=200)
read_rows = self._table.yield_rows()
expected_rows_count = 5
read_rows_count = 0
for row in read_rows:
if row.row_key in row_keys:
read_rows_count += 1
self.assertEqual(expected_rows_count, read_rows_count)
def test_yield_rows_with_row_set(self):
row_keys = [
b'row_key_1', b'row_key_2', b'row_key_3', b'row_key_4',
b'row_key_5', b'row_key_6', b'row_key_7', b'row_key_8',
b'row_key_9']
rows = []
for row_key in row_keys:
row = self._table.row(row_key)
row.set_cell(COLUMN_FAMILY_ID1, COL_NAME1, CELL_VAL1)
rows.append(row)
self.rows_to_delete.append(row)
self._table.mutate_rows(rows)
row_set = RowSet()
row_set.add_row_range(RowRange(start_key=b'row_key_3',
end_key=b'row_key_7'))
row_set.add_row_key(b'row_key_1')
read_rows = self._table.yield_rows(row_set=row_set)
expected_row_keys = set([b'row_key_1', b'row_key_3', b'row_key_4',
b'row_key_5', b'row_key_6'])
found_row_keys = set([row.row_key for row in read_rows])
self.assertEqual(found_row_keys, set(expected_row_keys))
def test_read_large_cell_limit(self):
row = self._table.row(ROW_KEY)
self.rows_to_delete.append(row)
number_of_bytes = 10 * 1024 * 1024
data = b'1' * number_of_bytes # 10MB of 1's.
row.set_cell(COLUMN_FAMILY_ID1, COL_NAME1, data)
row.commit()
# Read back the contents of the row.
partial_row_data = self._table.read_row(ROW_KEY)
self.assertEqual(partial_row_data.row_key, ROW_KEY)
cell = partial_row_data.cells[COLUMN_FAMILY_ID1]
column = cell[COL_NAME1]
self.assertEqual(len(column), 1)
self.assertEqual(column[0].value, data)
def test_read_row(self):
row = self._table.row(ROW_KEY)
self.rows_to_delete.append(row)
cell1, cell2, cell3, cell4 = self._write_to_row(row, row, row, row)
row.commit()
# Read back the contents of the row.
partial_row_data = self._table.read_row(ROW_KEY)
self.assertEqual(partial_row_data.row_key, ROW_KEY)
# Check the cells match.
ts_attr = operator.attrgetter('timestamp')
expected_row_contents = {
COLUMN_FAMILY_ID1: {
COL_NAME1: sorted([cell1, cell2], key=ts_attr, reverse=True),
COL_NAME2: [cell3],
},
COLUMN_FAMILY_ID2: {
COL_NAME3: [cell4],
},
}
self.assertEqual(partial_row_data.cells, expected_row_contents)
def test_read_rows(self):
row = self._table.row(ROW_KEY)
row_alt = self._table.row(ROW_KEY_ALT)
self.rows_to_delete.extend([row, row_alt])
cell1, cell2, cell3, cell4 = self._write_to_row(row, row_alt,
row, row_alt)
row.commit()
row_alt.commit()
rows_data = self._table.read_rows()
self.assertEqual(rows_data.rows, {})
rows_data.consume_all()
# NOTE: We should refrain from editing protected data on instances.
# Instead we should make the values public or provide factories
# for constructing objects with them.
row_data = PartialRowData(ROW_KEY)
row_data._chunks_encountered = True
row_data._committed = True
row_data._cells = {
COLUMN_FAMILY_ID1: {
COL_NAME1: [cell1],
COL_NAME2: [cell3],
},
}
row_alt_data = PartialRowData(ROW_KEY_ALT)
row_alt_data._chunks_encountered = True
row_alt_data._committed = True
row_alt_data._cells = {
COLUMN_FAMILY_ID1: {
COL_NAME1: [cell2],
},
COLUMN_FAMILY_ID2: {
COL_NAME3: [cell4],
},
}
expected_rows = {
ROW_KEY: row_data,
ROW_KEY_ALT: row_alt_data,
}
self.assertEqual(rows_data.rows, expected_rows)
def test_read_with_label_applied(self):
self._maybe_emulator_skip('Labels not supported by Bigtable emulator')
row = self._table.row(ROW_KEY)
self.rows_to_delete.append(row)
cell1, _, cell3, _ = self._write_to_row(row, None, row)
row.commit()
# Combine a label with column 1.
label1 = u'label-red'
label1_filter = ApplyLabelFilter(label1)
col1_filter = ColumnQualifierRegexFilter(COL_NAME1)
chain1 = RowFilterChain(filters=[col1_filter, label1_filter])
# Combine a label with column 2.
label2 = u'label-blue'
label2_filter = ApplyLabelFilter(label2)
col2_filter = ColumnQualifierRegexFilter(COL_NAME2)
chain2 = RowFilterChain(filters=[col2_filter, label2_filter])
# Bring our two labeled columns together.
row_filter = RowFilterUnion(filters=[chain1, chain2])
partial_row_data = self._table.read_row(ROW_KEY, filter_=row_filter)
self.assertEqual(partial_row_data.row_key, ROW_KEY)
cells_returned = partial_row_data.cells
col_fam1 = cells_returned.pop(COLUMN_FAMILY_ID1)
# Make sure COLUMN_FAMILY_ID1 was the only key.
self.assertEqual(len(cells_returned), 0)
cell1_new, = col_fam1.pop(COL_NAME1)
cell3_new, = col_fam1.pop(COL_NAME2)
# Make sure COL_NAME1 and COL_NAME2 were the only keys.
self.assertEqual(len(col_fam1), 0)
# Check that cell1 has matching values and gained a label.
self.assertEqual(cell1_new.value, cell1.value)
self.assertEqual(cell1_new.timestamp, cell1.timestamp)
self.assertEqual(cell1.labels, [])
self.assertEqual(cell1_new.labels, [label1])
# Check that cell3 has matching values and gained a label.
self.assertEqual(cell3_new.value, cell3.value)
self.assertEqual(cell3_new.timestamp, cell3.timestamp)
self.assertEqual(cell3.labels, [])
self.assertEqual(cell3_new.labels, [label2])