forked from aplbrain/grand-cypher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_queries.py
1966 lines (1676 loc) · 65.4 KB
/
test_queries.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
import networkx as nx
import pytest
from . import _GrandCypherGrammar, _GrandCypherTransformer, GrandCypher
ACCEPTED_GRAPH_TYPES = [nx.MultiDiGraph, nx.DiGraph]
class TestWorking:
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_simple_structural_match(self, graph_type):
tree = _GrandCypherGrammar.parse(
"""
MATCH (A)-[B]->(C)
RETURN A
"""
)
host = graph_type()
host.add_edge("x", "y")
host.add_edge("y", "z")
gct = _GrandCypherTransformer(host)
gct.transform(tree)
assert len(gct._get_true_matches()) == 2
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_simple_structural_match_returns_nodes(self, graph_type):
tree = _GrandCypherGrammar.parse(
"""
MATCH (A)-[B]->(C)
RETURN A
"""
)
host = graph_type()
host.add_edge("x", "y")
host.add_edge("y", "z")
gct = _GrandCypherTransformer(host)
gct.transform(tree)
returns = gct.returns()
assert "A" in returns
assert len(returns["A"]) == 2
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_simple_structural_match_returns_node_attributes(self, graph_type):
tree = _GrandCypherGrammar.parse(
"""
MATCH (A)-[B]->(C)
RETURN A.dinnertime
"""
)
host = graph_type()
host.add_edge("x", "y")
host.add_edge("y", "z")
host.add_node("x", dinnertime="no thanks I already ate")
gct = _GrandCypherTransformer(host)
gct.transform(tree)
returns = gct.returns()
assert "A" not in returns
assert "A.dinnertime" in returns
assert len(returns["A.dinnertime"]) == 2
class TestSimpleAPI:
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_simple_api(self, graph_type):
host = graph_type()
host.add_edge("x", "y")
host.add_edge("y", "z")
host.add_node("x", dinnertime="no thanks I already ate")
qry = """
MATCH (A)-[B]->(C)
RETURN A.dinnertime
"""
assert len(GrandCypher(host).run(qry)["A.dinnertime"]) == 2
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_simple_api_triangles(self, graph_type):
host = graph_type()
host.add_edge("x", "y")
host.add_edge("y", "z")
host.add_edge("z", "x")
qry = """
MATCH (A)-[AB]->(B)
MATCH (B)-[BC]->(C)
MATCH (C)-[CA]->(A)
RETURN A
"""
assert len(GrandCypher(host).run(qry)["A"]) == 3
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_simple_api_single_node_where(self, graph_type):
host = graph_type()
host.add_edge("x", "y")
host.add_edge("y", "z")
host.add_edge("z", "x")
host.add_node("x", foo="bar")
qry = """
MATCH (A)-[X]->(B)
WHERE A.foo == "bar"
RETURN A
"""
assert len(GrandCypher(host).run(qry)["A"]) == 1
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_simple_api_single_node_multi_where(self, graph_type):
host = graph_type()
host.add_edge("x", "y")
host.add_edge("y", "z")
host.add_edge("z", "x")
host.add_node("x", foo="bar")
qry = """
MATCH (A)-[X]->(B)
WHERE A.foo == "bar"
AND A.foo <> "baz"
RETURN A
"""
assert len(GrandCypher(host).run(qry)["A"]) == 1
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_simple_api_single_node_multi_where_2(self, graph_type):
host = graph_type()
host.add_edge("x", "y")
host.add_edge("y", "z")
host.add_edge("z", "x")
host.add_node("x", foo=12)
host.add_node("y", foo=13)
host.add_node("z", foo=16)
qry = """
MATCH (A)-[X]->(B)
WHERE A.foo > 10
AND A.foo < 15
RETURN A
"""
assert len(GrandCypher(host).run(qry)["A"]) == 2
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_null_where(self, graph_type):
host = graph_type()
host.add_node("x", foo="foo")
host.add_node("y")
host.add_node("z")
qry = """
MATCH (A)
WHERE A.foo iS nUlL
RETURN A.foo
"""
assert len(GrandCypher(host).run(qry)["A.foo"]) == 2
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_simple_api_multi_node_multi_where(self, graph_type):
host = graph_type()
host.add_edge("x", "y")
host.add_edge("y", "z")
host.add_edge("z", "x")
host.add_node("x", foo=12)
host.add_node("y", foo=13)
host.add_node("z", foo=16)
qry = """
MATCH (A)-[X]->(B)
WHERE A.foo == 12
AND B.foo == 13
RETURN A
"""
assert len(GrandCypher(host).run(qry)["A"]) == 1
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_simple_api_anonymous_edge(self, graph_type):
host = graph_type()
host.add_edge("x", "y")
host.add_edge("y", "z")
host.add_edge("z", "x")
qry = """
MATCH (A)-[]->(B)
RETURN A
"""
assert len(GrandCypher(host).run(qry)["A"]) == 3
qry = """
MATCH (A)<-[]-(B)
RETURN A
"""
assert len(GrandCypher(host).run(qry)["A"]) == 3
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_simple_api_anonymous_node(self, graph_type):
host = graph_type()
host.add_edge("x", "y")
host.add_edge("y", "z")
host.add_edge("x", "z")
qry = """
MATCH () -[]-> (B)
RETURN B
"""
res = GrandCypher(host).run(qry)
assert len(res) == 1
assert list(res.values())[0] == ["y", "z", "z"]
qry = """
MATCH () <-[]- (B)
RETURN B
"""
res = GrandCypher(host).run(qry)
assert len(res) == 1
assert list(res.values())[0] == ["x", "x", "y"]
print(res)
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_single_edge_where(self, graph_type):
host = graph_type()
host.add_edge("y", "z")
qry = """
MATCH (A)-[AB]->(B)
RETURN AB
"""
assert len(GrandCypher(host).run(qry)["AB"]) == 1
qry = """
MATCH (A)<-[AB]-(B)
RETURN AB
"""
assert len(GrandCypher(host).run(qry)["AB"]) == 1
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_simple_api_single_edge_where(self, graph_type):
host = graph_type()
host.add_edge("x", "y")
host.add_edge("y", "z", foo="bar")
host.add_edge("z", "x")
qry = """
MATCH (A)-[AB]->(B)
WHERE AB.foo == "bar"
RETURN A
"""
assert len(GrandCypher(host).run(qry)["A"]) == 1
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_simple_api_two_edge_where_clauses_same_edge(self, graph_type):
host = graph_type()
host.add_edge("x", "y")
host.add_edge("y", "z", foo="bar", weight=12)
host.add_edge("z", "x")
qry = """
MATCH (A)-[AB]->(B)
WHERE AB.foo == "bar"
AND AB.weight > 11
RETURN AB
"""
assert len(GrandCypher(host).run(qry)["AB"]) == 1
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_simple_api_two_edge_where_clauses_diff_edge(self, graph_type):
host = graph_type()
host.add_edge("x", "y")
host.add_edge("y", "z", foo="bar")
host.add_edge("z", "x", weight=12)
qry = """
MATCH (A)-[AB]->(B)
MATCH (B)-[BC]->(C)
WHERE AB.foo == "bar"
AND BC.weight > 11
RETURN AB
"""
print(GrandCypher(host).run(qry))
assert len(GrandCypher(host).run(qry)["AB"]) == 1
class TestKarate:
def test_simple_multi_edge(self):
qry = """
MATCH (A)-[]->(B)
MATCH (B)-[]->(C)
WHERE A.club == "Mr. Hi"
RETURN A.club, B.club
"""
assert len(GrandCypher(nx.karate_club_graph()).run(qry)["A.club"]) == 544
class TestDictAttributes:
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_node_dict(self, graph_type):
qry = """
MATCH (A {type: "foo"})-[]->(B)
RETURN A
"""
host = graph_type()
host.add_node("Y", type="foo")
host.add_node("X", type="bar")
host.add_edge("X", "Y")
host.add_edge("Y", "Z", type="foo")
host.add_edge("X", "Z", type="bar")
assert len(GrandCypher(host).run(qry)["A"]) == 1
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_null_value(self, graph_type):
host = graph_type()
host.add_node("x", foo="foo")
host.add_node("y")
host.add_node("z")
qry = """
MATCH (A{foo:NuLl})
RETURN A.foo
"""
assert len(GrandCypher(host).run(qry)["A.foo"]) == 2
class TestLimitSkip:
def test_limit_only(self):
qry = """
MATCH (A)-[]->(B)
MATCH (B)-[]->(C)
WHERE A.club == "Mr. Hi"
RETURN A.club, B.club
LIMIT 10
"""
assert len(GrandCypher(nx.karate_club_graph()).run(qry)["A.club"]) == 10
def test_skip_only(self):
qry = """
MATCH (A)-[]->(B)
MATCH (B)-[]->(C)
WHERE A.club == "Mr. Hi"
RETURN A.club, B.club
SKIP 10
"""
assert len(GrandCypher(nx.karate_club_graph()).run(qry)["A.club"]) == 544 - 10
def test_skip_and_limit(self):
base_qry_for_comparison = """
MATCH (A)-[]->(B)
MATCH (B)-[]->(C)
WHERE A.club == "Mr. Hi"
RETURN A.club, B.club
"""
qry = """
MATCH (A)-[]->(B)
MATCH (B)-[]->(C)
WHERE A.club == "Mr. Hi"
RETURN A.club, B.club
SKIP 10 LIMIT 10
"""
results = GrandCypher(nx.karate_club_graph()).run(qry)["A.club"]
assert len(results) == 10
assert (
results
== GrandCypher(nx.karate_club_graph()).run(base_qry_for_comparison)[
"A.club"
][10:20]
)
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_single_node_query(self, graph_type):
"""
Test that you can search for individual nodes with properties
"""
qry = """
MATCH (c)
WHERE c.name = "London"
RETURN c
"""
host = graph_type()
host.add_node("London", type="City", name="London")
assert len(GrandCypher(host).run(qry)["c"]) == 1
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_multi_node_query(self, graph_type):
"""
Test that you can search for individual nodes with properties
"""
qry = """
MATCH (c)-[]->(b)
WHERE c.name = "London"
AND b.type = "City"
RETURN b, c
"""
host = graph_type()
host.add_node("London", type="City", name="London")
host.add_node("NYC", type="City", name="NYC")
host.add_edge("London", "NYC")
assert len(GrandCypher(host).run(qry)["c"]) == 1
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_left_or_right_direction_with_where(self, graph_type):
host = graph_type()
host.add_node("x", name="x")
host.add_node("y", name="y")
host.add_node("z", name="z")
host.add_edge("x", "y", foo="bar")
host.add_edge("z", "y")
qry = """Match (A{name:"x"}) -[AB]-> (B) return B.name"""
res = GrandCypher(host).run(qry)
assert len(res) == 1
assert list(res.values())[0] == ["y"]
qry = """Match (A{name:"y"}) <-[AB]- (B) return B.name"""
res = GrandCypher(host).run(qry)
assert len(res) == 1
assert list(res.values())[0] == ["x", "z"]
qry = """Match (A{name:"y"}) <-[AB]- (B) where AB.foo == "bar" return B.name"""
res = GrandCypher(host).run(qry)
assert len(res) == 1
assert list(res.values())[0] == ["x"]
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_disconected_multi_match(self, graph_type):
host = graph_type()
host.add_node("x", name="x")
host.add_node("y", name="y")
host.add_node("z", name="z")
host.add_edge("x", "y")
host.add_edge("y", "z")
qry = """match (A) -[]-> (B) match (C) -[]-> (D) return A.name, B.name, C.name, D.name"""
res = GrandCypher(host).run(qry)
assert len(res) == 4
assert res["A.name"] == ["x", "x", "y", "y"]
assert res["B.name"] == ["y", "y", "z", "z"]
assert res["C.name"] == ["x", "y", "x", "y"]
assert res["D.name"] == ["y", "z", "y", "z"]
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_chained_edges(self, graph_type):
host = graph_type()
host.add_node("x", name="x")
host.add_node("y", name="y")
host.add_node("z", name="z")
host.add_edge("x", "y")
host.add_edge("y", "z")
qry = (
"""Match (A{name:"x"}) -[]-> (B) -[]-> (C) return A.name, B.name, C.name"""
)
res = GrandCypher(host).run(qry)
assert len(res) == 3
assert res["A.name"] == ["x"]
assert res["B.name"] == ["y"]
assert res["C.name"] == ["z"]
qry = (
"""Match (A{name:"y"}) -[]-> (B) -[]-> (C) return A.name, B.name, C.name"""
)
res = GrandCypher(host).run(qry)
assert len(res) == 3
assert res["A.name"] == []
assert res["B.name"] == []
assert res["C.name"] == []
qry = (
"""Match (A) -[]-> (B{name:"y"}) -[]-> (C) return A.name, B.name, C.name"""
)
res = GrandCypher(host).run(qry)
assert len(res) == 3
assert res["A.name"] == ["x"]
assert res["B.name"] == ["y"]
assert res["C.name"] == ["z"]
qry = """Match (A) -[]-> (B) -[]-> (C) where B.name == "y" return A.name, B.name, C.name"""
res = GrandCypher(host).run(qry)
assert len(res) == 3
assert res["A.name"] == ["x"]
assert res["B.name"] == ["y"]
assert res["C.name"] == ["z"]
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_chained_backward_edges(self, graph_type):
host = graph_type()
host.add_node("x", name="x")
host.add_node("y", name="y")
host.add_node("z", name="z")
host.add_edge("x", "y")
host.add_edge("z", "y")
qry = (
"""Match (A{name:"x"}) -[]-> (B) -[]-> (C) return A.name, B.name, C.name"""
)
res = GrandCypher(host).run(qry)
assert len(res) == 3
assert res["A.name"] == []
assert res["B.name"] == []
assert res["C.name"] == []
qry = (
"""Match (A) -[]-> (B{name:"y"}) -[]-> (C) return A.name, B.name, C.name"""
)
res = GrandCypher(host).run(qry)
assert len(res) == 3
assert res["A.name"] == []
assert res["B.name"] == []
assert res["C.name"] == []
qry = """Match (A{name:"x"}) -[]-> (B) -[]-> (C) where B.name == "y" return A.name, B.name, C.name"""
res = GrandCypher(host).run(qry)
assert len(res) == 3
assert res["A.name"] == []
assert res["B.name"] == []
assert res["C.name"] == []
qry = (
"""Match (A{name:"x"}) -[]-> (B) <-[]- (C) return A.name, B.name, C.name"""
)
res = GrandCypher(host).run(qry)
assert len(res) == 3
assert res["A.name"] == ["x"]
assert res["B.name"] == ["y"]
assert res["C.name"] == ["z"]
qry = (
"""Match (A) -[]-> (B{name:"y"}) <-[]- (C) return A.name, B.name, C.name"""
)
res = GrandCypher(host).run(qry)
assert len(res) == 3
assert res["A.name"] == ["x", "z"]
assert res["B.name"] == ["y", "y"]
assert res["C.name"] == ["z", "x"]
qry = """Match (A) -[]-> (B) <-[]- (C) where C.name == "z" return A.name, B.name, C.name"""
res = GrandCypher(host).run(qry)
assert len(res) == 3
assert res["A.name"] == ["x"]
assert res["B.name"] == ["y"]
assert res["C.name"] == ["z"]
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_undirected(self, graph_type):
host = graph_type()
host.add_node("x", name="x")
host.add_node("y", name="y")
host.add_node("z", name="z")
host.add_edge("x", "y", foo="bar")
host.add_edge("y", "x")
host.add_edge("y", "z")
qry = """Match (A) -[]- (B) return A.name, B.name"""
res = GrandCypher(host).run(qry)
assert len(res) == 2
assert res["A.name"] == ["x", "y"]
assert res["B.name"] == ["y", "x"]
qry = """Match (A) <--> (B) return A.name, B.name"""
res = GrandCypher(host).run(qry)
assert len(res) == 2
assert res["A.name"] == ["x", "y"]
assert res["B.name"] == ["y", "x"]
qry = """Match (A) -[r]- (B) where r.foo == "bar" return A.name, B.name"""
res = GrandCypher(host).run(qry)
assert len(res) == 2
assert res["A.name"] == ["x"]
assert res["B.name"] == ["y"]
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_anonymous_node(self, graph_type):
host = graph_type()
host.add_node("x", name="x")
host.add_node("y", name="y")
host.add_node("z", name="z")
host.add_edge("x", "y")
host.add_edge("z", "y")
qry = """Match () -[]-> (B) <-[]- () return B.name"""
res = GrandCypher(host).run(qry)
assert len(res) == 1
assert res["B.name"] == ["y", "y"]
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_complex_where(self, graph_type):
host = graph_type()
host.add_node("x", foo=12)
host.add_node("y", foo=13)
host.add_node("z", foo=16)
host.add_edge("x", "y", bar="1")
host.add_edge("y", "z", bar="2")
host.add_edge("z", "x", bar="3")
qry = """
MATCH (A)-[X]->(B)
WHERE A.foo == 12 Or (B.foo>13 aNd X.bar>="2")
RETURN A, B
"""
res = GrandCypher(host).run(qry)
assert len(res) == 2
assert res["A"] == ["x", "y"]
assert res["B"] == ["y", "z"]
class TestDistinct:
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_basic_distinct1(self, graph_type):
host = graph_type()
host.add_node("a", name="Alice")
host.add_node("b", name="Bob")
host.add_node("c", name="Alice") # duplicate name
qry = """
MATCH (n)
RETURN DISTINCT n.name
"""
res = GrandCypher(host).run(qry)
assert len(res["n.name"]) == 2 # should return "Alice" and "Bob" only once
assert "Alice" in res["n.name"] and "Bob" in res["n.name"]
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_basic_distinct2(self, graph_type):
host = graph_type()
host.add_node("a", name="Alice", age=25)
host.add_node("b", name="Bob", age=30)
host.add_node("c", name="Carol", age=25)
host.add_node("c", name="Carol", age=21)
host.add_node("d", name="Alice", age=25)
host.add_node("e", name="Greg", age=32)
qry = """
MATCH (n)
RETURN DISTINCT n.name
"""
res = GrandCypher(host).run(qry)
assert len(res["n.name"]) == 4 # should return "Alice" and "Bob" only once
assert "Alice" in res["n.name"] and "Bob" in res["n.name"] and "Carol" in res["n.name"] and "Greg" in res["n.name"]
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_distinct_with_relationships(self, graph_type):
host = graph_type()
host.add_node("a", name="Alice")
host.add_node("b", name="Bob")
host.add_node("c", name="Alice") # duplicate name
host.add_edge("a", "b")
host.add_edge("c", "b")
qry = """
MATCH (n)-[]->(b)
RETURN DISTINCT n.name
"""
res = GrandCypher(host).run(qry)
assert len(res["n.name"]) == 1 # should return "Alice" only once
assert res["n.name"] == ["Alice"]
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_distinct_with_limit_and_skip(self, graph_type):
host = graph_type()
for i in range(5):
host.add_node(f"a{i}", name="Alice")
host.add_node(f"b{i}", name="Bob")
qry = """
MATCH (n)
RETURN DISTINCT n.name SKIP 1 LIMIT 1
"""
res = GrandCypher(host).run(qry)
assert len(res["n.name"]) == 1 # only one name should be returned
assert res["n.name"] == ["Bob"] # assuming alphabetical order
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_distinct_on_complex_graph(self, graph_type):
host = graph_type()
host.add_node("a", name="Alice")
host.add_node("b", name="Bob")
host.add_node("c", name="Carol")
host.add_node("d", name="Alice") # duplicate name
host.add_edge("a", "b")
host.add_edge("b", "c")
host.add_edge("c", "d")
qry = """
MATCH (n)-[]->(m)
RETURN DISTINCT n.name, m.name
"""
res = GrandCypher(host).run(qry)
assert len(res["n.name"]) == 3 # should account for paths without considering duplicate names
assert "Alice" in res["n.name"] and "Bob" in res["n.name"] and "Carol" in res["n.name"]
assert len(res["m.name"]) == 3 # should account for paths without considering duplicate names
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_distinct_with_attributes(self, graph_type):
host = graph_type()
host.add_node("a", name="Alice", age=25)
host.add_node("b", name="Alice", age=30) # same name, different attribute
host.add_node("c", name="Bob", age=25)
qry = """
MATCH (n)
WHERE n.age > 20
RETURN DISTINCT n.name
"""
res = GrandCypher(host).run(qry)
assert len(res["n.name"]) == 2 # "Alice" and "Bob" should be distinct
assert "Alice" in res["n.name"] and "Bob" in res["n.name"]
class TestOrderBy:
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_order_by_single_field_ascending(self, graph_type):
host = graph_type()
host.add_node("a", name="Alice", age=25)
host.add_node("b", name="Bob", age=30)
host.add_node("c", name="Carol", age=20)
qry = """
MATCH (n)
RETURN n.name
ORDER BY n.age ASC
"""
res = GrandCypher(host).run(qry)
assert res["n.name"] == ["Carol", "Alice", "Bob"]
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_order_by_single_field_descending(self, graph_type):
host = graph_type()
host.add_node("a", name="Alice", age=25)
host.add_node("b", name="Bob", age=30)
host.add_node("c", name="Carol", age=20)
qry = """
MATCH (n)
RETURN n.name
ORDER BY n.age DESC
"""
res = GrandCypher(host).run(qry)
assert res["n.name"] == ["Bob", "Alice", "Carol"]
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_order_by_single_field_no_direction_provided(self, graph_type):
host = graph_type()
host.add_node("a", name="Alice", age=25)
host.add_node("b", name="Bob", age=30)
host.add_node("c", name="Carol", age=20)
qry = """
MATCH (n)
RETURN n.name
ORDER BY n.age
"""
res = GrandCypher(host).run(qry)
assert res["n.name"] == ["Carol", "Alice", "Bob"]
def test_order_by_edge_attribute1(self):
host = nx.DiGraph()
host.add_node("a", name="Alice", age=25)
host.add_node("b", name="Bob", age=30)
host.add_node("c", name="Carol", age=20)
host.add_edge("b", "a", __labels__={"paid"}, value=14)
host.add_edge("a", "b", __labels__={"paid"}, value=9)
host.add_edge("a", "c", __labels__={"paid"}, value=4)
qry = """
MATCH (n)-[r]->(m)
RETURN n.name, r.value, m.name
ORDER BY r.value ASC
"""
res = GrandCypher(host).run(qry)
assert res['n.name'] == ['Alice', 'Alice', 'Bob']
assert res['m.name'] == ['Carol', 'Bob', 'Alice']
assert res['r.value'] == [[((0, 'paid'), 4)], [((0, 'paid'), 9)], [((0, 'paid'), 14)]]
qry = """
MATCH (n)-[r]->()
RETURN n.name, r.value
ORDER BY r.value DESC
"""
res = GrandCypher(host).run(qry)
assert res['n.name'] == ['Bob', 'Alice', 'Alice']
assert res['r.value'] == [[((0, 'paid'), 14)], [((0, 'paid'), 9)], [((0, 'paid'), 4)]]
def test_order_by_edge_attribute2(self):
host = nx.DiGraph()
host.add_node("a", name="Alice", age=25)
host.add_node("b", name="Bob", age=30)
host.add_node("c", name="Carol", age=20)
host.add_edge("b", "a", __labels__={"paid"}, amount=14) # different attribute name
host.add_edge("a", "b", __labels__={"paid"}, value=9)
host.add_edge("c", "b", __labels__={"paid"}, value=980)
host.add_edge("b", "c", __labels__={"paid"}, value=11)
qry = """
MATCH (n)-[r]->(m)
RETURN n.name, r.value, m.name
ORDER BY r.value ASC
"""
res = GrandCypher(host).run(qry)
assert res['n.name'] == ['Bob', 'Alice', 'Bob', 'Carol']
assert res['r.value'] == [
[((0, 'paid'), None)], # None for the different attribute edge
[((0, 'paid'), 9)], # within edges, the attributes are ordered
[((0, 'paid'), 11)],
[((0, 'paid'), 980)]
]
assert res['m.name'] == ['Alice', 'Bob', 'Carol', 'Bob']
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_order_by_multiple_fields(self, graph_type):
host = graph_type()
host.add_node("a", name="Alice", age=25)
host.add_node("b", name="Bob", age=30)
host.add_node("c", name="Carol", age=25)
host.add_node("d", name="Dave", age=25)
qry = """
MATCH (n)
RETURN n.name
ORDER BY n.age ASC, n.name DESC
"""
res = GrandCypher(host).run(qry)
# names sorted in descending order where ages are the same
assert res["n.name"] == ["Dave", "Carol", "Alice", "Bob"]
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_order_by_with_limit(self, graph_type):
host = graph_type()
host.add_node("a", name="Alice", age=25)
host.add_node("b", name="Bob", age=30)
host.add_node("c", name="Carol", age=20)
qry = """
MATCH (n)
RETURN n.name
ORDER BY n.age ASC LIMIT 2
"""
res = GrandCypher(host).run(qry)
assert res["n.name"] == ["Carol", "Alice"]
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_order_by_with_skip(self, graph_type):
host = graph_type()
host.add_node("a", name="Alice", age=25)
host.add_node("b", name="Bob", age=30)
host.add_node("c", name="Carol", age=20)
qry = """
MATCH (n)
RETURN n.name
ORDER BY n.age ASC SKIP 1
"""
res = GrandCypher(host).run(qry)
assert res["n.name"] == ["Alice", "Bob"]
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_order_by_with_distinct(self, graph_type):
host = graph_type()
host.add_node("a", name="Alice", age=25)
host.add_node("b", name="Bob", age=30)
host.add_node("c", name="Carol", age=25)
host.add_node("d", name="Alice", age=25)
host.add_node("e", name="Greg", age=32)
qry = """
MATCH (n)
RETURN DISTINCT n.name, n.age
ORDER BY n.age DESC
"""
res = GrandCypher(host).run(qry)
# Distinct names, ordered by age where available
assert res["n.name"] == ['Greg', 'Bob', 'Alice', 'Carol']
assert res["n.age"] == [32, 30, 25, 25]
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_error_on_order_by_with_distinct_and_non_returned_field(self, graph_type):
host = graph_type()
host.add_node("a", name="Alice", age=25)
host.add_node("b", name="Bob", age=30)
host.add_node("c", name="Carol", age=25)
host.add_node("d", name="Alice", age=25)
host.add_node("e", name="Greg", age=32)
qry = """
MATCH (n)
RETURN DISTINCT n.name
ORDER BY n.age DESC
"""
# Expect an error since 'n.age' is not included in the RETURN clause but used in ORDER BY
with pytest.raises(Exception):
res = GrandCypher(host).run(qry)
@pytest.mark.parametrize("graph_type", ACCEPTED_GRAPH_TYPES)
def test_order_by_with_non_returned_field(self, graph_type):
host = graph_type()
host.add_node("a", name="Alice", age=25)
host.add_node("b", name="Bob", age=30)
host.add_node("c", name="Carol", age=20)
qry = """
MATCH (n)
RETURN n.name ORDER BY n.age ASC
"""
res = GrandCypher(host).run(qry)
assert res["n.name"] == ["Carol", "Alice", "Bob"]
class TestMultigraphRelations:
def test_query_with_multiple_relations(self):
host = nx.MultiDiGraph()
host.add_node("a", name="Alice", age=25)
host.add_node("b", name="Bob", age=30)
host.add_node("c", name="Charlie", age=25)
host.add_node("d", name="Diana", age=25)
# Adding edges with labels for different types of relationship_type
host.add_edge("a", "b", __labels__={"friends"})
host.add_edge("a", "b", __labels__={"colleagues"})
host.add_edge("a", "c", __labels__={"colleagues"})
host.add_edge("b", "d", __labels__={"family"})
host.add_edge("c", "d", __labels__={"family"})
host.add_edge("c", "d", __labels__={"friends"})
host.add_edge("d", "a", __labels__={"friends"})
host.add_edge("d", "a", __labels__={"colleagues"})
qry = """
MATCH (n)-[r:friends]->(m)
RETURN n.name, m.name
"""
res = GrandCypher(host).run(qry)
assert res["n.name"] == ['Alice', 'Charlie', 'Diana']
assert res["m.name"] == ['Bob', 'Diana', 'Alice']
def test_multiple_edges_specific_attribute(self):
host = nx.MultiDiGraph()
host.add_node("a", name="Alice", age=30)
host.add_node("b", name="Bob", age=30)
host.add_edge("a", "b", __labels__={"colleague"}, years=3)
host.add_edge("a", "b", __labels__={"friend"}, years=5)
host.add_edge("a", "b", __labels__={"enemy"}, hatred=10)
qry = """
MATCH (a)-[r:friend]->(b)
RETURN a.name, b.name, r.years
"""
res = GrandCypher(host).run(qry)
assert res["a.name"] == ["Alice"]
assert res["b.name"] == ["Bob"]
assert res["r.years"] == [{(0, 'colleague'): 3, (1, 'friend'): 5, (2, 'enemy'): None}] # should return None when attr is missing
def test_edge_directionality(self):
host = nx.MultiDiGraph()
host.add_node("a", name="Alice", age=25)
host.add_node("b", name="Bob", age=30)
host.add_edge("a", "b", __labels__={"friend"}, years=1)
host.add_edge("b", "a", __labels__={"colleague"}, years=2)
host.add_edge("b", "a", __labels__={"mentor"}, years=4)
qry = """
MATCH (a)-[r]->(b)
RETURN a.name, b.name, r.__labels__, r.years
"""
res = GrandCypher(host).run(qry)
assert res["a.name"] == ["Alice", "Bob"]
assert res["b.name"] == ["Bob", "Alice"]
assert res["r.__labels__"] == [{(0, 'friend'): {'friend'}}, {(0, 'colleague'): {'colleague'}, (1, 'mentor'): {'mentor'}}]
assert res["r.years"] == [{(0, 'friend'): 1}, {(0, 'colleague'): 2, (1, 'mentor'): 4}]
def test_query_with_missing_edge_attribute(self):
host = nx.MultiDiGraph()
host.add_node("a", name="Alice", age=30)
host.add_node("b", name="Bob", age=40)
host.add_node("c", name="Charlie", age=50)
host.add_edge("a", "b", __labels__={"friend"}, years=3)
host.add_edge("a", "c", __labels__={"colleague"}, years=10)
host.add_edge("b", "c", __labels__={"colleague"}, duration=10)
host.add_edge("b", "c", __labels__={"mentor"}, years=2)
qry = """
MATCH (a)-[r:colleague]->(b)
RETURN a.name, b.name, r.duration
"""
res = GrandCypher(host).run(qry)