forked from tylertreat/BigQuery-Python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_query_builder.py
More file actions
1005 lines (875 loc) · 43.2 KB
/
test_query_builder.py
File metadata and controls
1005 lines (875 loc) · 43.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
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
import six
import unittest
unittest.TestCase.maxDiff = None
class TestRenderSelect(unittest.TestCase):
def test_multiple_selects(self):
"""Ensure that render select can handle multiple selects."""
from bigquery.query_builder import _render_select
result = _render_select({
'start_time': {'alias': 'TimeStamp'},
'max_log_level': {'alias': 'MaxLogLevel'},
'user': {'alias': 'User'},
'status': {'alias': 'Status'},
'resource': {'alias': 'URL'},
'version_id': {'alias': 'Version'},
'latency': {'alias': 'Latency'},
'ip': {'alias': 'IP'},
'app_logs': {'alias': 'AppLogs'}})
expected = ('SELECT status as Status, latency as Latency, '
'max_log_level as MaxLogLevel, resource as URL, user as '
'User, ip as IP, start_time as TimeStamp, version_id as '
'Version, app_logs as AppLogs')
six.assertCountEqual(
self, sorted(expected[len('SELECT '):].split(', ')),
sorted(result[len('SELECT '):].split(', ')))
def test_casting(self):
"""Ensure that render select can handle custom casting."""
from bigquery.query_builder import _render_select
result = _render_select({
'start_time': {
'alias': 'TimeStamp',
'format': 'SEC_TO_MICRO-INTEGER-FORMAT_UTC_USEC'
}
})
self.assertEqual(
result,
'SELECT FORMAT_UTC_USEC(INTEGER(start_time*1000000)) as TimeStamp')
def test_no_selects(self):
"""Ensure that render select can handle being passed no selects."""
from bigquery.query_builder import _render_select
result = _render_select({})
self.assertEqual(result, 'SELECT *')
class TestRenderSources(unittest.TestCase):
def test_multi_tables(self):
"""Ensure that render sources can handle multiple sources."""
from bigquery.query_builder import _render_sources
result = _render_sources('spider', ['man', 'pig', 'bro'])
self.assertEqual(
result, 'FROM [spider.man], [spider.pig], [spider.bro]')
def test_no_tables(self):
"""Ensure that render sources can handle no tables."""
from bigquery.query_builder import _render_sources
result = _render_sources('spider', [])
self.assertEqual(result, 'FROM ')
def test_no_dataset(self):
"""Ensure that render sources can handle no data sets."""
from bigquery.query_builder import _render_sources
result = _render_sources('', ['man', 'pig', 'bro'])
self.assertEqual(result, 'FROM [.man], [.pig], [.bro]')
def test_tables_in_date_range(self):
"""Ensure that render sources can handle tables in DATE RANGE."""
from bigquery.query_builder import _render_sources
tables = {
'date_range': True,
'from_date': '2015-08-23',
'to_date': '2015-10-10',
'table': 'pets_'
}
result = _render_sources('animals', tables)
self.assertEqual(result, "FROM (TABLE_DATE_RANGE([animals.pets_], "
"TIMESTAMP('2015-08-23'), TIMESTAMP('2015-10-10'))) ")
class TestRenderConditions(unittest.TestCase):
def test_single_condition(self):
"""Ensure that render conditions can handle a single condition."""
from bigquery.query_builder \
import _render_conditions
result = _render_conditions([
{
'field': 'bar',
'type': 'STRING',
'comparators': [
{'condition': '>=', 'negate': False, 'value': '1'}
]
}
])
self.assertEqual(result, "WHERE (bar >= STRING('1'))")
def test_multiple_conditions(self):
"""Ensure that render conditions can handle multiple conditions."""
from bigquery.query_builder \
import _render_conditions
result = _render_conditions([
{
'field': 'a',
'type': 'STRING',
'comparators': [
{'condition': '>=', 'negate': False, 'value': 'foobar'}
]
},
{
'field': 'b',
'type': 'INTEGER',
'comparators': [
{'condition': '==', 'negate': True, 'value': '1'}
]
},
{
'field': 'c',
'type': 'STRING',
'comparators': [
{'condition': '!=', 'negate': False, 'value': 'Shark Week'}
]
},
])
self.assertEqual(result, "WHERE (a >= STRING('foobar')) AND "
"(NOT b == INTEGER('1')) AND "
"(c != STRING('Shark Week'))")
def test_multiple_comparators(self):
"""Ensure that render conditions can handle a multiple comparators."""
from bigquery.query_builder \
import _render_conditions
result = _render_conditions([
{
'field': 'foobar',
'type': 'STRING',
'comparators': [
{'condition': '>=', 'negate': False, 'value': 'a'},
{'condition': '==', 'negate': False, 'value': 'b'},
{'condition': '<=', 'negate': False, 'value': 'c'},
{'condition': '>=', 'negate': True, 'value': 'd'},
{'condition': '==', 'negate': True, 'value': 'e'},
{'condition': '<=', 'negate': True, 'value': 'f'}
]
}
])
self.assertEqual(result, "WHERE ((foobar >= STRING('a') AND "
"foobar == STRING('b') AND foobar <= "
"STRING('c')) AND (NOT foobar >= "
"STRING('d') AND NOT foobar == STRING('e') "
"AND NOT foobar <= STRING('f')))")
def test_boolean_field_type(self):
"""Ensure that render conditions can handle a boolean field."""
from bigquery.query_builder \
import _render_conditions
result = _render_conditions([
{
'field': 'foobar',
'type': 'BOOLEAN',
'comparators': [
{'condition': '==', 'negate': False, 'value': True},
{'condition': '!=', 'negate': False, 'value': False},
{'condition': '==', 'negate': False, 'value': 'a'},
{'condition': '!=', 'negate': False, 'value': ''},
{'condition': '==', 'negate': True, 'value': 100},
{'condition': '!=', 'negate': True, 'value': 0},
]
}
])
self.assertEqual(result, "WHERE ((foobar == BOOLEAN(1) AND "
"foobar != BOOLEAN(0) AND foobar == "
"BOOLEAN(1) AND foobar != BOOLEAN(0)) AND "
"(NOT foobar == BOOLEAN(1) AND NOT "
"foobar != BOOLEAN(0)))")
def test_in_comparator(self):
"""Ensure that render conditions can handle "IN" condition."""
from bigquery.query_builder \
import _render_conditions
result = _render_conditions([
{
'field': 'foobar',
'type': 'STRING',
'comparators': [
{'condition': 'IN', 'negate': False, 'value': ['a', 'b']},
{'condition': 'IN', 'negate': False, 'value': {'c', 'd'}},
{'condition': 'IN', 'negate': False, 'value': ('e', 'f')},
{'condition': 'IN', 'negate': False, 'value': 'g'},
{'condition': 'IN', 'negate': True, 'value': ['h', 'i']},
{'condition': 'IN', 'negate': True, 'value': {'j', 'k'}},
{'condition': 'IN', 'negate': True, 'value': ('l', 'm')},
{'condition': 'IN', 'negate': True, 'value': 'n'},
]
}
])
six.assertCountEqual(self, result[len('WHERE '):].split(' AND '),
"WHERE ((foobar IN (STRING('a'), STRING('b'))"
" AND foobar IN (STRING('c'), STRING('d')) "
"AND foobar IN (STRING('e'), STRING('f')) AND"
" foobar IN (STRING('g'))) AND (NOT foobar IN"
" (STRING('h'), STRING('i')) AND NOT foobar "
"IN (STRING('j'), STRING('k')) AND NOT foobar"
" IN (STRING('l'), STRING('m')) AND NOT "
"foobar IN (STRING('n'))))" [len('WHERE '):]
.split(' AND '))
def test_between_comparator(self):
"""Ensure that render conditions can handle "BETWEEN" condition."""
from bigquery.query_builder import _render_conditions
result = _render_conditions([
{
'field': 'foobar',
'type': 'STRING',
'comparators': [
{'condition': 'BETWEEN', 'negate': False,
'value': ['a', 'b']},
{'condition': 'BETWEEN', 'negate': False,
'value': {'c', 'd'}},
{'condition': 'BETWEEN', 'negate': False,
'value': ('e', 'f')},
{'condition': 'BETWEEN', 'negate': True,
'value': ['h', 'i']},
{'condition': 'BETWEEN', 'negate': True,
'value': {'j', 'k'}},
{'condition': 'BETWEEN', 'negate': True,
'value': ('l', 'm')}
]
}
])
six.assertCountEqual(self, result[len('WHERE '):].split(' AND '),
"WHERE ((foobar BETWEEN STRING('a') AND "
"STRING('b') AND foobar BETWEEN STRING('c') "
"AND STRING('d') AND foobar BETWEEN "
"STRING('e') AND STRING('f')) AND (NOT foobar "
"BETWEEN STRING('h') AND STRING('i') AND NOT "
"foobar BETWEEN STRING('j') AND STRING('k') "
"AND NOT foobar BETWEEN STRING('l') AND "
"STRING('m')))" [len('WHERE '):]
.split(' AND '))
class TestRenderOrder(unittest.TestCase):
def test_order(self):
"""Ensure that render order can work under expected conditions."""
from bigquery.query_builder import _render_order
result = _render_order({'fields': ['foo'], 'direction': 'desc'})
self.assertEqual(result, "ORDER BY foo desc")
def test_no_order(self):
"""Ensure that render order can work with out any arguments."""
from bigquery.query_builder import _render_order
result = _render_order(None)
self.assertEqual(result, "")
class TestGroupings(unittest.TestCase):
def test_mutliple_fields(self):
"""Ensure that render grouping works with multiple fields."""
from bigquery.query_builder \
import _render_groupings
result = _render_groupings(['foo', 'bar', 'shark'])
self.assertEqual(result, "GROUP BY foo, bar, shark")
def test_no_fields(self):
"""Ensure that render groupings can work with out any arguments."""
from bigquery.query_builder \
import _render_groupings
result = _render_groupings(None)
self.assertEqual(result, "")
class TestRenderHaving(unittest.TestCase):
def test_mutliple_fields(self):
"""Ensure that render having works with multiple fields."""
from bigquery.query_builder \
import _render_having
result = _render_having([
{
'field': 'bar',
'type': 'STRING',
'comparators': [
{'condition': '>=', 'negate': False, 'value': '1'}
]
}
])
self.assertEqual(result, "HAVING (bar >= STRING('1'))")
def test_no_fields(self):
"""Ensure that render having can work with out any arguments."""
from bigquery.query_builder \
import _render_having
result = _render_having(None)
self.assertEqual(result, "")
class TestLimit(unittest.TestCase):
def test_with_limit(self):
"""Ensure that render limit works."""
from bigquery.query_builder \
import _render_limit
result = _render_limit(8)
self.assertEqual(result, "LIMIT 8")
def test_no_fields(self):
"""Ensure that render limit can work without any arguments."""
from bigquery.query_builder \
import _render_limit
result = _render_limit(None)
self.assertEqual(result, "")
class TestRenderQuery(unittest.TestCase):
def test_full_query(self):
"""Ensure that all the render query arguments work together."""
from bigquery.query_builder import render_query
result = render_query(
dataset='dataset',
tables=['2013_06_appspot_1'],
select={
'start_time': {'alias': 'timestamp'},
'status': {'alias': 'status'},
'resource': {'alias': 'url'}
},
conditions=[
{
'field': 'start_time',
'comparators': [
{
'condition': '<=',
'value': 1371566954,
'negate': False
}
],
'type': 'INTEGER'
},
{
'field': 'start_time',
'comparators': [
{
'condition': '>=',
'value': 1371556954,
'negate': False
}
],
'type': 'INTEGER'
}
],
groupings=['timestamp', 'status'],
having=[
{
'field': 'status',
'comparators': [
{
'condition': '==',
'value': 1,
'negate': False
}
],
'type': 'INTEGER'
}
],
order_by={'fields': ['timestamp'], 'direction': 'desc'},
limit=10)
expected_query = ("SELECT status as status, start_time as timestamp, "
"resource as url FROM [dataset.2013_06_appspot_1]"
" WHERE (start_time <= INTEGER('1371566954')) AND "
"(start_time >= INTEGER('1371556954')) GROUP BY "
"timestamp, status HAVING (status == INTEGER('1')) "
"ORDER BY timestamp desc LIMIT 10")
expected_select = (expected_query[len('SELECT '):]
.split('FROM')[0].strip().split(', '))
expected_from = expected_query[len('SELECT '):].split('FROM')[1]
result_select = (result[len('SELECT '):].split('FROM')[0]
.strip().split(', '))
result_from = result[len('SELECT '):].split('FROM')[1]
six.assertCountEqual(self, expected_select, result_select)
six.assertCountEqual(self, expected_from, result_from)
def test_empty_conditions(self):
"""Ensure that render query can handle an empty list of conditions."""
from bigquery.query_builder import render_query
result = render_query(
dataset='dataset',
tables=['2013_06_appspot_1'],
select={
'start_time': {'alias': 'timestamp'},
'status': {'alias': 'status'},
'resource': {'alias': 'url'}
},
conditions=[],
order_by={'fields': ['timestamp'], 'direction': 'desc'})
expected_query = ("SELECT status as status, start_time as timestamp, "
"resource as url FROM "
"[dataset.2013_06_appspot_1] ORDER BY "
"timestamp desc ")
expected_select = (expected_query[len('SELECT '):]
.split('FROM')[0].strip().split(', '))
expected_from = expected_query[len('SELECT '):].split('FROM')[1]
result_select = (result[len('SELECT '):].split('FROM')[0]
.strip().split(', '))
result_from = result[len('SELECT '):].split('FROM')[1]
six.assertCountEqual(self, expected_select, result_select)
six.assertCountEqual(self, expected_from, result_from)
def test_incorrect_conditions(self):
"""Ensure that render query can handle incorrectly formatted
conditions.
"""
from bigquery.query_builder import render_query
result = render_query(
dataset='dataset',
tables=['2013_06_appspot_1'],
select={
'start_time': {'alias': 'timestamp'},
'status': {'alias': 'status'},
'resource': {'alias': 'url'}
},
conditions=[
{'asdfasdfasdf': 'start_time', 'ffd': 1371566954, 'comparator':
'<=', 'type': 'INTEGER'},
{'field': 'start_time', 'value': {'value': 1371556954,
'negate': False},
'compoorattor': '>=', 'type': 'INTEGER'}
],
order_by={'fields': ['timestamp'], 'direction': 'desc'})
expected_query = ("SELECT status as status, start_time as timestamp, "
"resource as url FROM "
"[dataset.2013_06_appspot_1] ORDER BY "
"timestamp desc ")
expected_select = (expected_query[len('SELECT '):]
.split('FROM')[0].strip().split(', '))
expected_from = expected_query[len('SELECT '):].split('FROM')[1]
result_select = (result[len('SELECT '):].split('FROM')[0]
.strip().split(', '))
result_from = result[len('SELECT '):].split('FROM')[1]
six.assertCountEqual(self, expected_select, result_select)
six.assertCountEqual(self, expected_from, result_from)
def test_multiple_condition_values(self):
"""Ensure that render query can handle conditions with multiple values.
"""
from bigquery.query_builder import render_query
result = render_query(
dataset='dataset',
tables=['2013_06_appspot_1'],
select={
'start_time': {'alias': 'timestamp'},
'status': {'alias': 'status'},
'resource': {'alias': 'url'}
},
conditions=[
{'field': 'start_time', 'comparators': [{'condition': '<=',
'value': 1371566954,
'negate': False}],
'type': 'INTEGER'},
{'field': 'start_time', 'comparators': [{'condition': '>=',
'value': 1371556954,
'negate': False}],
'type': 'INTEGER'},
{'field': 'resource', 'comparators': [{'condition': 'CONTAINS',
'value': 'foo',
'negate': False},
{'condition': 'CONTAINS',
'value': 'bar',
'negate': True},
{'condition': 'CONTAINS',
'value': 'baz',
'negate': False}],
'type': 'STRING'}
],
order_by={'fields': ['timestamp'], 'direction': 'desc'})
expected_query = ("SELECT status as status, start_time as timestamp, "
"resource as url FROM "
"[dataset.2013_06_appspot_1] WHERE (start_time "
"<= INTEGER('1371566954')) AND (start_time >= "
"INTEGER('1371556954')) AND "
"((resource CONTAINS STRING('foo') AND resource "
"CONTAINS STRING('baz')) AND (NOT resource CONTAINS "
"STRING('bar'))) ORDER BY timestamp desc ")
expected_select = (expected_query[len('SELECT '):]
.split('FROM')[0].strip().split(', '))
expected_from = expected_query[len('SELECT '):].split('FROM')[1]
result_select = (result[len('SELECT '):].split('FROM')[0]
.strip().split(', '))
result_from = result[len('SELECT '):].split('FROM')[1]
six.assertCountEqual(self, expected_select, result_select)
six.assertCountEqual(self, expected_from, result_from)
def test_negated_condition_value(self):
"""Ensure that render query can handle conditions with negated values.
"""
from bigquery.query_builder import render_query
result = render_query(
dataset='dataset',
tables=['2013_06_appspot_1'],
select={
'start_time': {'alias': 'timestamp'},
'status': {'alias': 'status'},
'resource': {'alias': 'url'}
},
conditions=[
{'field': 'resource', 'comparators': [{'condition': 'CONTAINS',
'value': 'foo',
'negate': True}],
'type': 'STRING'}
],
order_by={'fields': ['timestamp'], 'direction': 'desc'})
expected_query = ("SELECT status as status, start_time as timestamp, "
"resource as url FROM "
"[dataset.2013_06_appspot_1] WHERE (NOT resource "
"CONTAINS STRING('foo')) ORDER BY timestamp desc ")
expected_select = (expected_query[len('SELECT '):]
.split('FROM')[0].strip().split(', '))
expected_from = expected_query[len('SELECT '):].split('FROM')[1]
result_select = (result[len('SELECT '):].split('FROM')[0]
.strip().split(', '))
result_from = result[len('SELECT '):].split('FROM')[1]
six.assertCountEqual(self, expected_select, result_select)
six.assertCountEqual(self, expected_from, result_from)
def test_multiple_negated_condition_values(self):
"""Ensure that render query can handle conditions with multiple negated
values.
"""
from bigquery.query_builder import render_query
result = render_query(
dataset='dataset',
tables=['2013_06_appspot_1'],
select={
'start_time': {'alias': 'timestamp'},
'status': {'alias': 'status'},
'resource': {'alias': 'url'}
},
conditions=[
{'field': 'resource', 'comparators': [{'condition': 'CONTAINS',
'value': 'foo',
'negate': True},
{'condition': 'CONTAINS',
'value': 'baz',
'negate': True},
{'condition': 'CONTAINS',
'value': 'bar',
'negate': True}],
'type': 'STRING'}
],
order_by={'fields': ['timestamp'], 'direction': 'desc'})
expected_query = ("SELECT status as status, start_time as timestamp, "
"resource as url FROM "
"[dataset.2013_06_appspot_1] WHERE (NOT resource "
"CONTAINS STRING('foo') AND NOT resource CONTAINS "
"STRING('baz') AND NOT resource CONTAINS "
"STRING('bar')) ORDER BY timestamp desc ")
expected_select = (expected_query[len('SELECT '):]
.split('FROM')[0].strip().split(', '))
expected_from = expected_query[len('SELECT '):].split('FROM')[1]
result_select = (result[len('SELECT '):].split('FROM')[0]
.strip().split(', '))
result_from = result[len('SELECT '):].split('FROM')[1]
six.assertCountEqual(self, expected_select, result_select)
six.assertCountEqual(self, expected_from, result_from)
def test_empty_order(self):
"""Ensure that render query can handle an empty formatted order."""
from bigquery.query_builder import render_query
result = render_query(
dataset='dataset',
tables=['2013_06_appspot_1'],
select={
'start_time': {'alias': 'timestamp'},
'status': {'alias': 'status'},
'resource': {'alias': 'url'}
},
conditions=[
{'field': 'start_time', 'comparators': [{'condition': '<=',
'value': 1371566954,
'negate': False}],
'type': 'INTEGER'},
{'field': 'start_time', 'comparators': [{'condition': '>=',
'value': 1371556954,
'negate': False}],
'type': 'INTEGER'},
],
order_by={})
expected_query = ("SELECT status as status, start_time as timestamp, "
"resource as url FROM "
"[dataset.2013_06_appspot_1] WHERE (start_time "
"<= INTEGER('1371566954')) AND (start_time >= "
"INTEGER('1371556954')) ")
expected_select = (expected_query[len('SELECT '):]
.split('FROM')[0].strip().split(', '))
expected_from = expected_query[len('SELECT '):].split('FROM')[1]
result_select = (result[len('SELECT '):].split('FROM')[0]
.strip().split(', '))
result_from = result[len('SELECT '):].split('FROM')[1]
six.assertCountEqual(self, expected_select, result_select)
six.assertCountEqual(self, expected_from, result_from)
def test_incorrect_order(self):
"""Ensure that render query can handle inccorectly formatted order."""
from bigquery.query_builder import render_query
result = render_query(
dataset='dataset',
tables=['2013_06_appspot_1'],
select={
'start_time': {'alias': 'timestamp'},
'status': {'alias': 'status'},
'resource': {'alias': 'url'}
},
conditions=[
{'field': 'start_time', 'comparators': [{'condition': '<=',
'value': 1371566954,
'negate': False}],
'type': 'INTEGER'},
{'field': 'start_time', 'comparators': [{'condition': '>=',
'value': 1371556954,
'negate': False}],
'type': 'INTEGER'},
],
order_by={'feeld': 'timestamp', 'dir': 'desc'})
expected_query = ("SELECT status as status, start_time as timestamp, "
"resource as url FROM "
"[dataset.2013_06_appspot_1] WHERE (start_time "
"<= INTEGER('1371566954')) AND (start_time >= "
"INTEGER('1371556954')) ")
expected_select = (expected_query[len('SELECT '):]
.split('FROM')[0].strip().split(', '))
expected_from = expected_query[len('SELECT '):].split('FROM')[1]
result_select = (result[len('SELECT '):].split('FROM')[0]
.strip().split(', '))
result_from = result[len('SELECT '):].split('FROM')[1]
six.assertCountEqual(self, expected_select, result_select)
six.assertCountEqual(self, expected_from, result_from)
def test_empty_select(self):
"""Ensure that render query corrently handles no selection."""
from bigquery.query_builder import render_query
result = render_query(
dataset='dataset',
tables=['2013_06_appspot_1'],
select={},
conditions=[
{'field': 'start_time', 'comparators': [{'condition': '<=',
'value': 1371566954,
'negate': False}],
'type': 'INTEGER'},
{'field': 'start_time', 'comparators': [{'condition': '>=',
'value': 1371556954,
'negate': False}],
'type': 'INTEGER'},
],
order_by={'fields': ['timestamp'], 'direction': 'desc'})
expected_query = ("SELECT * FROM [dataset.2013_06_appspot_1] "
"WHERE (start_time <= INTEGER('1371566954')) AND "
"(start_time >= INTEGER('1371556954')) ORDER BY "
"timestamp desc ")
self.assertEqual(result, expected_query)
def test_no_alias(self):
"""Ensure that render query runs without an alias for a select."""
from bigquery.query_builder import render_query
result = render_query(
dataset='dataset',
tables=['2013_06_appspot_1'],
select={
'start_time': {},
'status': {},
'resource': {}
},
conditions=[
{'field': 'start_time', 'comparators': [{'condition': '<=',
'value': 1371566954,
'negate': False}],
'type': 'INTEGER'},
{'field': 'start_time', 'comparators': [{'condition': '>=',
'value': 1371556954,
'negate': False}],
'type': 'INTEGER'}
],
order_by={'fields': ['start_time'], 'direction': 'desc'})
expected_query = ("SELECT status , start_time , resource FROM "
"[dataset.2013_06_appspot_1] WHERE (start_time "
"<= INTEGER('1371566954')) AND (start_time >= "
"INTEGER('1371556954')) ORDER BY start_time desc ")
expected_select = (field.strip() for field in
expected_query[len('SELECT '):]
.split('FROM')[0].strip().split(', '))
expected_from = (expected_query[len('SELECT '):].split('FROM')[1]
.strip())
result_select = (field.strip() for field in
result[len('SELECT '):].split('FROM')[0]
.strip().split(', '))
result_from = result[len('SELECT '):].split('FROM')[1].strip()
six.assertCountEqual(self, expected_select, result_select)
six.assertCountEqual(self, expected_from, result_from)
def test_formatting(self):
"""Ensure that render query runs with formatting a select."""
from bigquery.query_builder import render_query
result = render_query(
dataset='dataset',
tables=['2013_06_appspot_1'],
select={
'start_time': {
'alias': 'timestamp',
'format': 'INTEGER-FORMAT_UTC_USEC'
},
'status': {'alias': 'status'},
'resource': {'alias': 'url'}
},
conditions=[
{'field': 'start_time', 'comparators': [{'condition': '<=',
'value': 1371566954,
'negate': False}],
'type': 'INTEGER'},
{'field': 'start_time', 'comparators': [{'condition': '>=',
'value': 1371556954,
'negate': False}],
'type': 'INTEGER'},
],
order_by={'fields': ['timestamp'], 'direction': 'desc'})
expected_query = ("SELECT status as status, "
"FORMAT_UTC_USEC(INTEGER(start_time)) as timestamp, "
"resource as url FROM "
"[dataset.2013_06_appspot_1] WHERE (start_time "
"<= INTEGER('1371566954')) AND (start_time >= "
"INTEGER('1371556954')) ORDER BY timestamp desc ")
expected_select = (expected_query[len('SELECT '):]
.split('FROM')[0].strip().split(', '))
expected_from = expected_query[len('SELECT '):].split('FROM')[1]
result_select = (result[len('SELECT '):].split('FROM')[0]
.strip().split(', '))
result_from = result[len('SELECT '):].split('FROM')[1]
six.assertCountEqual(self, expected_select, result_select)
six.assertCountEqual(self, expected_from, result_from)
def test_formatting_duplicate_columns(self):
"""Ensure that render query runs with formatting a select for a
column selected twice.
"""
from bigquery.query_builder import render_query
result = render_query(
dataset='dataset',
tables=['2013_06_appspot_1'],
select={
'start_time': [
{
'alias': 'timestamp',
'format': 'INTEGER-FORMAT_UTC_USEC'
},
{
'alias': 'day',
'format': ('SEC_TO_MICRO-INTEGER-'
'FORMAT_UTC_USEC-LEFT:10')
}
],
'status': {'alias': 'status'},
'resource': {'alias': 'url'}
},
conditions=[
{'field': 'start_time', 'comparators': [{'condition': '<=',
'value': 1371566954,
'negate': False}],
'type': 'INTEGER'},
{'field': 'start_time', 'comparators': [{'condition': '>=',
'value': 1371556954,
'negate': False}],
'type': 'INTEGER'},
],
order_by={'fields': ['timestamp'], 'direction': 'desc'})
expected_query = ("SELECT status as status, "
"FORMAT_UTC_USEC(INTEGER(start_time)) as timestamp, "
"LEFT(FORMAT_UTC_USEC(INTEGER(start_time*1000000)),"
"10) as day, resource as url FROM "
"[dataset.2013_06_appspot_1] WHERE "
"(start_time <= INTEGER('1371566954')) AND "
"(start_time >= INTEGER('1371556954')) ORDER BY "
"timestamp desc ")
expected_select = (expected_query[len('SELECT '):]
.split('FROM')[0].strip().split(', '))
expected_from = expected_query[len('SELECT '):].split('FROM')[1]
result_select = (result[len('SELECT '):].split('FROM')[0]
.strip().split(', '))
result_from = result[len('SELECT '):].split('FROM')[1]
six.assertCountEqual(self, expected_select, result_select)
six.assertCountEqual(self, expected_from, result_from)
def test_sec_to_micro_formatting(self):
"""Ensure that render query runs sec_to_micro formatting on a
select.
"""
from bigquery.query_builder import render_query
result = render_query(
dataset='dataset',
tables=['2013_06_appspot_1'],
select={
'start_time': {
'alias': 'timestamp',
'format': 'SEC_TO_MICRO-INTEGER-SEC_TO_TIMESTAMP'
},
'status': {'alias': 'status'},
'resource': {'alias': 'url'}
},
conditions=[
{'field': 'start_time', 'comparators': [{'condition': '<=',
'value': 1371566954,
'negate': False}],
'type': 'INTEGER'},
{'field': 'start_time', 'comparators': [{'condition': '>=',
'value': 1371556954,
'negate': False}],
'type': 'INTEGER'},
],
order_by={'fields': ['timestamp'], 'direction': 'desc'})
expected_query = ("SELECT status as status, "
"SEC_TO_TIMESTAMP(INTEGER(start_time*1000000)) as "
"timestamp, resource as url FROM "
"[dataset.2013_06_appspot_1] WHERE (start_time "
"<= INTEGER('1371566954')) AND (start_time >= "
"INTEGER('1371556954')) ORDER BY timestamp desc ")
expected_select = (expected_query[len('SELECT '):]
.split('FROM')[0].strip().split(', '))
expected_from = expected_query[len('SELECT '):].split('FROM')[1]
result_select = (result[len('SELECT '):].split('FROM')[0]
.strip().split(', '))
result_from = result[len('SELECT '):].split('FROM')[1]
six.assertCountEqual(self, expected_select, result_select)
six.assertCountEqual(self, expected_from, result_from)
def test_no_table_or_dataset(self):
"""Ensure that render query returns None if there is no dataset or
table.
"""
from bigquery.query_builder import render_query
result = render_query(
dataset=None,
tables=None,
select={
'start_time': {'alias': 'timestamp'},
'status': {'alias': 'status'},
'resource': {'alias': 'url'}
},
conditions=[
{'field': 'start_time', 'comparators': [{'condition': '<=',
'value': 1371566954,
'negate': False}],
'type': 'INTEGER'},
{'field': 'start_time', 'comparators': [{'condition': '>=',
'value': 1371556954,
'negate': False}],
'type': 'INTEGER'},
],
order_by={'fields': ['timestamp'], 'direction': 'desc'},
limit=10)
self.assertIsNone(result)
def test_empty_groupings(self):
"""Ensure that render query can handle an empty list of groupings."""
from bigquery.query_builder import render_query
result = render_query(
dataset='dataset',
tables=['2013_06_appspot_1'],
select={
'start_time': {'alias': 'timestamp'},
'status': {'alias': 'status'},
'resource': {'alias': 'url'}
},
groupings=[],
order_by={'fields': ['timestamp'], 'direction': 'desc'})
expected_query = ("SELECT status as status, start_time as timestamp, "
"resource as url FROM "
"[dataset.2013_06_appspot_1] ORDER BY "
"timestamp desc ")
expected_select = (expected_query[len('SELECT '):]
.split('FROM')[0].strip().split(', '))
expected_from = expected_query[len('SELECT '):].split('FROM')[1]
result_select = (result[len('SELECT '):].split('FROM')[0]
.strip().split(', '))
result_from = result[len('SELECT '):].split('FROM')[1]
six.assertCountEqual(self, expected_select, result_select)
six.assertCountEqual(self, expected_from, result_from)
def test_multi_tables(self):
"""Ensure that render query arguments work with multiple tables."""
from bigquery.query_builder import render_query
result = render_query(
dataset='dataset',
tables=['2013_06_appspot_1', '2013_07_appspot_1'],
select={
'start_time': {'alias': 'timestamp'},
'status': {'alias': 'status'},
'resource': {'alias': 'url'}
},
conditions=[
{'field': 'start_time', 'comparators': [{'condition': '<=',
'value': 1371566954,
'negate': False}],
'type': 'INTEGER'},
{'field': 'start_time', 'comparators': [{'condition': '>=',
'value': 1371556954,
'negate': False}],
'type': 'INTEGER'},
],
groupings=['timestamp', 'status'],
order_by={'fields': ['timestamp'], 'direction': 'desc'})
expected_query = ("SELECT status as status, start_time as timestamp, "
"resource as url FROM "
"[dataset.2013_06_appspot_1], "
"[dataset.2013_07_appspot_1] WHERE (start_time "
"<= INTEGER('1371566954')) AND (start_time >= "
"INTEGER('1371556954')) GROUP BY timestamp, status "
"ORDER BY timestamp desc ")
expected_select = (expected_query[len('SELECT '):]
.split('FROM')[0].strip().split(', '))
expected_from = expected_query[len('SELECT '):].split('FROM')[1]