forked from geldata/gel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_edgeql_group.py
1201 lines (1157 loc) · 39.5 KB
/
test_edgeql_group.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#
# This source file is part of the EdgeDB open source project.
#
# Copyright 2012-present MagicStack Inc. and the EdgeDB authors.
#
# 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.
#
# ALL OF THESE TESTS USE OUT OF DATE SYNTAX.
# They are left in as a starting point for new tests.
import os.path
from edb.testbase import server as tb
from edb.tools import test
@test.not_implemented('GROUP statement is not yet implemented')
class TestEdgeQLGroup(tb.QueryTestCase):
'''These tests are focused on using GROUP statement.'''
SCHEMA = os.path.join(os.path.dirname(__file__), 'schemas',
'issues.esdl')
SCHEMA_CARDS = os.path.join(os.path.dirname(__file__), 'schemas',
'cards.esdl')
SETUP = os.path.join(os.path.dirname(__file__), 'schemas',
'groups_setup.edgeql')
async def test_edgeql_group_simple_01(self):
await self.assert_query_result(
r'''
GROUP User
USING _ := User.name
BY _
INTO User
UNION count(User.<owner);
''',
{4, 2},
)
async def test_edgeql_group_simple_02(self):
await self.assert_query_result(
r'''
GROUP Issue := Issue
# time_estimate is {} on some Issues,
# but that's a valid grouping
USING _ := Issue.time_estimate
BY _
INTO Issue
# count using a property
UNION count(Issue.id);
''',
{3, 1},
)
async def test_edgeql_group_simple_03(self):
await self.assert_query_result(
r'''
GROUP Issue
USING _ := Issue.time_estimate
BY _
INTO Issue
# count Issue directly
UNION count(Issue);
''',
{3, 1},
)
async def test_edgeql_group_simple_04(self):
await self.assert_query_result(
r'''
GROUP Issue
USING _ := Issue.time_estimate
BY _
INTO Issue
# count Issue name, which should be same as counting
# Issues, since the name property is *1
UNION count(Issue.name);
''',
{3, 1},
)
async def test_edgeql_group_simple_05(self):
await self.assert_query_result(
r'''
GROUP Issue
USING _ := Issue.time_estimate
BY _
INTO Issue
# count Issue statuses, which is not the same as counting
# Issues, since multiple Issues can point to the same Status
UNION count(Issue.status);
''',
{2, 1},
)
async def test_edgeql_group_simple_06(self):
await self.assert_query_result(
r'''
GROUP Issue
USING _ := Issue.time_estimate
BY _
INTO Issue
# unusual qualifier for 'count', but should be the same as
# counting the statuses directly
UNION count(DISTINCT Issue.status.id);
''',
{2, 1},
)
async def test_edgeql_group_by_01(self):
await self.assert_query_result(
r"""
GROUP Issue
USING B := Issue.status.name
BY B
INTO Issue
UNION (
sum := sum(<int64>Issue.number),
status := B,
) ORDER BY B;
""",
[
{
'status': 'Closed',
'sum': 7,
},
{
'status': 'Open',
'sum': 3,
}
],
)
async def test_edgeql_group_by_02(self):
await self.assert_query_result(
r"""
GROUP Issue
USING B := Issue.status.name
BY B
INTO Issue
UNION _ := (
sum := sum(<int64>Issue.number),
status := B,
)
FILTER
_.sum > 5
ORDER BY
B;
""",
[{
'status': 'Closed',
'sum': 7,
}],
)
async def test_edgeql_group_result_alias_01(self):
await self.assert_query_result(
r'''
# re-use the same "_" alias in nested scope
GROUP Issue
USING _ := Issue.time_estimate
BY _
INTO Issue
UNION _ := (
count := count(Issue.status.id),
te := array_agg(DISTINCT Issue.time_estimate > 0),
) ORDER BY
_.te;
''',
[{'count': 3, 'te': []}, {'count': 1, 'te': [True]}]
)
await self.assert_query_result(
r'''
GROUP Issue
USING _ := Issue.time_estimate
BY _
INTO Issue
UNION _ := (
count := count(Issue.status.id),
te := array_agg(DISTINCT Issue.time_estimate > 0),
) ORDER BY
_.te DESC;
''',
[{'count': 1, 'te': [True]}, {'count': 3, 'te': []}],
)
async def test_edgeql_group_result_alias_02(self):
await self.assert_query_result(
r'''
# re-use the same "_" alias in nested scope
GROUP Issue
USING _ := Issue.time_estimate
BY _
INTO Issue
UNION _ := (
count := count(Issue.status.id),
# confusing, but legal usage of '_' to refer to BY
# (this is comparable to SELECT Issue := count(Issue))
te := array_agg(_ > 0),
) ORDER BY
_.te DESC;
''',
[{'count': 1, 'te': [True]}, {'count': 3, 'te': []}],
)
async def test_edgeql_group_nested_01(self):
await self.assert_query_result(
r"""
SELECT
R := (
name := User.name,
issues := array_agg(
(
GROUP UserIssue := User.<owner[IS Issue]
USING B := UserIssue.status.name
BY B
INTO UserIssue
UNION (
status := B,
count := count(UserIssue),
)
ORDER BY
B
)
)
)
ORDER BY R.name;
""",
[
{
'name': 'Elvis',
'issues': [{
'status': 'Closed',
'count': 1,
}, {
'status': 'Open',
'count': 1,
}]
},
{
'name': 'Yury',
'issues': [{
'status': 'Closed',
'count': 1,
}, {
'status': 'Open',
'count': 1,
}]
},
]
)
async def test_edgeql_group_returning_01(self):
await self.assert_query_result(
r'''
GROUP Issue
USING _ := Issue.time_estimate
BY _
INTO Issue
# The issues should be partitioned into 2 sub-sets by
# Issue.time_estimate (with values {} and 3000). Therefore
# we expect 2 results combined via UNION.
UNION 42;
''',
[42, 42],
)
async def test_edgeql_group_returning_02(self):
await self.assert_query_result(
r'''
GROUP Issue
USING B := Issue.time_estimate
BY B
INTO Issue
# No reason to restrict the above example to doing a
# UNION of singletons.
UNION _ := {42, count(Issue)}
ORDER BY _;
''',
[1, 3, 42, 42],
)
async def test_edgeql_group_returning_03(self):
await self.assert_query_result(
r'''
GROUP Issue
USING B := Issue.status
BY B
INTO Issue
# The result should be a set of status objects,
# augmented with Issue.numbers corresponding to the
# status.
UNION B {
name,
nums := Issue.number
}
ORDER BY B.name;
''',
[
{
'name': 'Closed',
'nums': {'3', '4'},
},
{
'name': 'Open',
'nums': {'1', '2'},
}
],
)
async def test_edgeql_group_returning_04(self):
await self.assert_query_result(
r'''
GROUP Issue
USING _ := Issue.status
BY _
INTO Issue
# Identical to the previous example, but expressed
# slightly differently.
UNION (
SELECT
Status {
name,
nums := Issue.number
}
# all issues in this subset will have the same
# status, so this FILTER is valid, although not
# necessarily optimal
FILTER Status = Issue.status
)
ORDER BY Status.name;
''',
[
{
'name': 'Closed',
'nums': {'3', '4'},
},
{
'name': 'Open',
'nums': {'1', '2'},
}
],
)
async def test_edgeql_group_returning_05(self):
await self.assert_query_result(
r'''
# a trivial group that is actually not doing anything
# different from a plain SELECT
WITH MODULE cards
GROUP Card
USING _ := Card.element
BY _
INTO Card
UNION Card.name
ORDER BY
Card.name;
''',
[
'Bog monster',
'Djinn',
'Dragon',
'Dwarf',
'Giant eagle',
'Giant turtle',
'Golem',
'Imp',
'Sprite',
],
)
async def test_edgeql_group_returning_06(self):
await self.assert_query_result(
r'''
# a trivial group that is actually not doing anything
# different from a plain SELECT
WITH MODULE cards
GROUP Card
USING _ := Card.element
BY _
INTO Card
UNION Card {name}
ORDER BY
Card.name;
''',
[
{'name': 'Bog monster'},
{'name': 'Djinn'},
{'name': 'Dragon'},
{'name': 'Dwarf'},
{'name': 'Giant eagle'},
{'name': 'Giant turtle'},
{'name': 'Golem'},
{'name': 'Imp'},
{'name': 'Sprite'},
],
)
async def test_edgeql_group_returning_07(self):
await self.assert_query_result(
r'''
# Nominate a leader in each group from among the group.
#
# The below is a very long and explicit way of forming a
# set of "leaders" and associated "members" for each
# element.
WITH
MODULE cards,
C2 := Card,
ELEMENTAL := (
# group cards into arrays by element
GROUP Card
USING _ := Card.element
BY _
INTO Card
UNION array_agg(Card)
)
SELECT _ := (
FOR X IN {ELEMENTAL}
# for each "elemental" array select a "leader"
UNION (
# the selection of leader is nested and has its
# own application of ORDER BY and LIMIT clauses
SELECT Card {
element,
name,
cost,
members := (
# just unpacking the elemental cards
# with a particular ordering and
# specific links included in the final
# result
SELECT C2{name, cost}
FILTER contains(X, C2)
ORDER BY C2.cost
)
}
# the leader is selected from among the elemental array
FILTER contains(X, Card)
# the leader is defined as the one with the
# highest cost
ORDER BY Card.cost DESC
LIMIT 1
)
)
ORDER BY _.element;
''',
[
{
'cost': 4,
'name': 'Djinn',
'element': 'Air',
'members': [
{'cost': 1, 'name': 'Sprite'},
{'cost': 2, 'name': 'Giant eagle'},
{'cost': 4, 'name': 'Djinn'},
],
},
{
'cost': 3,
'name': 'Golem',
'element': 'Earth',
'members': [
{'cost': 1, 'name': 'Dwarf'},
{'cost': 3, 'name': 'Golem'},
],
},
{
'cost': 5,
'name': 'Dragon',
'element': 'Fire',
'members': [
{'cost': 1, 'name': 'Imp'},
{'cost': 5, 'name': 'Dragon'},
],
},
{
'cost': 3,
'name': 'Giant turtle',
'element': 'Water',
'members': [
{'cost': 2, 'name': 'Bog monster'},
{'cost': 3, 'name': 'Giant turtle'},
],
}
]
)
async def test_edgeql_group_returning_08(self):
await self.assert_query_result(
r'''
# Nominate a leader in each group from among the group.
#
# Same as previous test, but with all of the shape spec
# factored out tot he outermost SELECT.
WITH
MODULE cards,
ELEMENTAL := (
GROUP Card
USING _ := Card.element
BY _
INTO Card
UNION array_agg(Card)
)
SELECT _ := (
FOR X IN {ELEMENTAL}
UNION (
SELECT Card {
element,
name,
cost,
members := (
SELECT C2 := array_unpack(X)
ORDER BY C2.cost
)
}
FILTER contains(X, Card)
ORDER BY Card.cost DESC
LIMIT 1
)
) {
# the entire shape spec of the result is now here
element,
name,
cost,
members: {
name,
cost
}
}
ORDER BY _.element;
''',
[
{
'cost': 4,
'name': 'Djinn',
'element': 'Air',
'members': [
{'cost': 1, 'name': 'Sprite'},
{'cost': 2, 'name': 'Giant eagle'},
{'cost': 4, 'name': 'Djinn'},
],
},
{
'cost': 3,
'name': 'Golem',
'element': 'Earth',
'members': [
{'cost': 1, 'name': 'Dwarf'},
{'cost': 3, 'name': 'Golem'},
],
},
{
'cost': 5,
'name': 'Dragon',
'element': 'Fire',
'members': [
{'cost': 1, 'name': 'Imp'},
{'cost': 5, 'name': 'Dragon'},
],
},
{
'cost': 3,
'name': 'Giant turtle',
'element': 'Water',
'members': [
{'cost': 2, 'name': 'Bog monster'},
{'cost': 3, 'name': 'Giant turtle'},
],
}
]
)
async def test_edgeql_group_returning_09(self):
await self.assert_query_result(
r'''
# Nominate a leader in each group from among the group.
#
# Same as previous tests, but refactored to take full
# advantage of GROUP semantics and BY aliasing.
WITH
MODULE cards,
C2 := Card
GROUP Card
USING Element :=
# partition cards by element
Card.element
BY Element
INTO Card
UNION (
# for every partition, compute the "leader"
SELECT C2 {
element,
name,
cost,
members := (
# all members of the particular elemental
# partition
SELECT Card{name, cost}
ORDER BY Card.cost
)
}
# the leader is a member of its elemental group
FILTER
C2 IN Card
# the leader is simply the one with the highest cost
ORDER BY
C2.cost DESC
LIMIT 1
)
# Ordering by the expression used to partition the
# original set. This happens to be unambiguous since we
# compute a singleton (LIMIT 1) set for each partition.
ORDER BY Element;
''',
[
{
'cost': 4,
'name': 'Djinn',
'element': 'Air',
'members': [
{'cost': 1, 'name': 'Sprite'},
{'cost': 2, 'name': 'Giant eagle'},
{'cost': 4, 'name': 'Djinn'},
],
},
{
'cost': 3,
'name': 'Golem',
'element': 'Earth',
'members': [
{'cost': 1, 'name': 'Dwarf'},
{'cost': 3, 'name': 'Golem'},
],
},
{
'cost': 5,
'name': 'Dragon',
'element': 'Fire',
'members': [
{'cost': 1, 'name': 'Imp'},
{'cost': 5, 'name': 'Dragon'},
],
},
{
'cost': 3,
'name': 'Giant turtle',
'element': 'Water',
'members': [
{'cost': 2, 'name': 'Bog monster'},
{'cost': 3, 'name': 'Giant turtle'},
],
}
]
)
async def test_edgeql_group_by_tuple_01(self):
await self.assert_query_result(
r"""
GROUP Issue
USING B := (Issue.status.name, Issue.time_estimate)
# This tuple will be {} for Issues lacking
# time_estimate. So effectively we're expecting only 2
# subsets, grouped by:
# - {}
# - ('Open', 3000)
BY B
INTO Issue
UNION _ := (
sum := sum(<int64>Issue.number),
# don't forget to coalesce the {} or else the whole
# tuple will collapse
status := B.0 ?? '',
time_estimate := B.1 ?? 0
) ORDER BY B;
""",
[
{
'status': '', 'sum': 9, 'time_estimate': 0
},
{
'status': 'Open', 'sum': 1, 'time_estimate': 3000
}
],
)
async def test_edgeql_group_by_multiple_01(self):
await self.assert_query_result(
r"""
GROUP Issue
USING
Stat := Issue.status.name,
Est := Issue.time_estimate
# Unlike the tuple example, these grouping sets
# generate more combinations:
# - 'Closed', {}
# - 'Open', {}
# - 'Open', 3000
BY Stat, Est
INTO Issue
UNION _ := (
sum := sum(<int64>Issue.number),
# Stat is never {}, so coalescing is not needed
status := Stat,
# only this one needs to be coalesced
time_estimate := Est ?? 0
) ORDER BY _;
""",
[
{
'status': 'Closed', 'sum': 7, 'time_estimate': 0,
},
{
'status': 'Open', 'sum': 2, 'time_estimate': 0,
},
{
'status': 'Open', 'sum': 1, 'time_estimate': 3000,
}
],
)
async def test_edgeql_group_by_multiple_02(self):
await self.assert_query_result(
r"""
GROUP Issue
USING
Stat := Issue.status.name,
Est := Issue.time_estimate
BY Stat, Est
INTO Issue
UNION (
sum := sum(<int64>Issue.number),
status := Stat,
time_estimate := Est ?? 0
)
# ordering condition derived from the grouping parameters
ORDER BY Stat
THEN Est > 0 EMPTY FIRST;
""",
[
{
'status': 'Closed', 'sum': 7, 'time_estimate': 0
},
{
'status': 'Open', 'sum': 2, 'time_estimate': 0
},
{
'status': 'Open', 'sum': 1, 'time_estimate': 3000
}
],
)
async def test_edgeql_group_by_multiple_03(self):
await self.assert_query_result(
r"""
GROUP Issue
USING
Stat := Issue.status.name,
Est := Issue.time_estimate
BY Stat, Est
INTO Issue
UNION (
# array_agg with ordering instead of sum
numbers := array_agg(
<int64>Issue.number ORDER BY Issue.number),
status := Stat,
time_estimate := Est ?? 0
) ORDER BY Stat THEN Est;
""",
[
{
'status': 'Closed',
'time_estimate': 0,
'numbers': [3, 4],
},
{
'status': 'Open',
'time_estimate': 0,
'numbers': [2],
},
{
'status': 'Open',
'time_estimate': 3000,
'numbers': [1],
}
],
)
async def test_edgeql_group_by_multiple_04(self):
await self.assert_query_result(
r"""
GROUP Issue
USING
Stat := Issue.status.name,
Est := Issue.time_estimate
BY Stat, Est
INTO Issue
UNION (
# a couple of array_agg
numbers := array_agg(
<int64>Issue.number ORDER BY Issue.number),
watchers := array_agg(
<str>Issue.watchers.name ORDER BY Issue.watchers.name),
status := Stat,
time_estimate := Est ?? 0
) ORDER BY Stat THEN Est;
""",
[
{
'status': 'Closed',
'time_estimate': 0,
'numbers': [3, 4],
'watchers': ['Elvis'],
},
{
'status': 'Open',
'time_estimate': 0,
'numbers': [2],
'watchers': ['Elvis'],
},
{
'status': 'Open',
'time_estimate': 3000,
'numbers': [1],
'watchers': ['Yury'],
}
],
)
async def test_edgeql_group_by_multiple_05(self):
await self.assert_query_result(
r"""
GROUP
# define a computable in the GROUP expr
Issue := Issue {
less_than_four := <int64>Issue.number < 4
}
USING
Stat := Issue.status.name,
# group by computable
X := Issue.less_than_four
BY Stat, X
INTO Issue
UNION (
numbers := array_agg(
Issue.number ORDER BY Issue.number),
# watchers will sometimes be empty resulting in []
watchers := array_agg(
Issue.watchers.name ORDER BY Issue.watchers.name),
status := Stat,
) ORDER BY Stat THEN X;
""",
[
{
'status': 'Closed',
'numbers': ['4'],
'watchers': []
},
{
'status': 'Closed',
'numbers': ['3'],
'watchers': ['Elvis']
},
{
'status': 'Open',
'numbers': ['1', '2'],
'watchers': ['Elvis', 'Yury']
}
],
)
async def test_edgeql_group_by_multiple_06(self):
await self.assert_query_result(
r"""
GROUP Issue
USING
Stat := Issue.status.name,
# group by some non-trivial expression
X := <int64>Issue.number < 4
BY Stat, X
INTO Issue
UNION I := (
numbers := array_agg(
<int64>Issue.number ORDER BY Issue.number),
watchers := count(DISTINCT Issue.watchers),
status := Stat,
) ORDER BY
# used a mixture of different aliases in ORDER BY
Stat
THEN I.watchers
# should work because count evaluates to a singleton
THEN count(DISTINCT Issue);
""",
[
{
'status': 'Closed',
'numbers': [4],
'watchers': 0
},
{
'status': 'Closed',
'numbers': [3],
'watchers': 1
},
{
'status': 'Open',
'numbers': [1, 2],
'watchers': 2
}
],
)
async def test_edgeql_group_by_multiple_07(self):
await self.assert_query_result(
r"""
WITH MODULE cards
GROUP C := Card
USING x := C.cost
BY x
INTO C
UNION (
array_agg(C.name ORDER BY C.name),
# At this point C is a subset of Card. So the below
# expression should be the size of the subset in
# percent.
100 * count(C) / count(Card)
) ORDER BY x;
""",
[
[['Dwarf', 'Imp', 'Sprite'], 33],
[['Bog monster', 'Giant eagle'], 22],
[['Giant turtle', 'Golem'], 22],
[['Djinn'], 11],
[['Dragon'], 11]
]
)
async def test_edgeql_group_linkproperty_simple_01(self):
await self.assert_query_result(
r"""
# group by link property
WITH MODULE cards
GROUP Card
USING B := Card.<deck[IS User]@count
BY B
INTO Card
UNION _ := (
cards := array_agg(
DISTINCT Card.name ORDER BY Card.name),
count := B,
) ORDER BY _.count;
""",
[
{
'cards': ['Bog monster', 'Djinn', 'Dragon', 'Giant eagle',
'Giant turtle', 'Golem'],
'count': 1
},
{
'cards': ['Dragon', 'Giant turtle', 'Golem', 'Imp'],
'count': 2
},
{
'cards': ['Bog monster', 'Dwarf', 'Giant eagle',
'Giant turtle', 'Golem'],
'count': 3
},
{
'cards': ['Dwarf', 'Sprite'],
'count': 4
},
],
)
async def test_edgeql_group_linkproperty_simple_02(self):
await self.assert_query_result(
r"""
# use link property inside a group aggregate
WITH MODULE cards
GROUP Card
USING El :=
Card.element
BY El
INTO Card
UNION _ := (