-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathgeneral.yaml
More file actions
937 lines (934 loc) · 24.9 KB
/
general.yaml
File metadata and controls
937 lines (934 loc) · 24.9 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
tests:
- description: selectSpecificFields
pipeline:
- Collection: books
- Select:
- title
- author
- Sort:
- Ordering:
- Field: author
- ASCENDING
assert_results:
- title: "The Hitchhiker's Guide to the Galaxy"
author: "Douglas Adams"
- title: "The Great Gatsby"
author: "F. Scott Fitzgerald"
- title: "Dune"
author: "Frank Herbert"
- title: "Crime and Punishment"
author: "Fyodor Dostoevsky"
- title: "One Hundred Years of Solitude"
author: "Gabriel García Márquez"
- title: "1984"
author: "George Orwell"
- title: "To Kill a Mockingbird"
author: "Harper Lee"
- title: "The Lord of the Rings"
author: "J.R.R. Tolkien"
- title: "Pride and Prejudice"
author: "Jane Austen"
- title: "The Handmaid's Tale"
author: "Margaret Atwood"
assert_proto:
pipeline:
stages:
- args:
- referenceValue: /books
name: collection
- args:
- mapValue:
fields:
author:
fieldReferenceValue: author
title:
fieldReferenceValue: title
name: select
- args:
- mapValue:
fields:
direction:
stringValue: ascending
expression:
fieldReferenceValue: author
name: sort
- description: addAndRemoveFields
pipeline:
- Collection: books
- AddFields:
- AliasedExpression:
- FunctionExpression.string_concat:
- Field: author
- Constant: _
- Field: title
- "author_title"
- AliasedExpression:
- FunctionExpression.string_concat:
- Field: title
- Constant: _
- Field: author
- "title_author"
- RemoveFields:
- title_author
- tags
- awards
- rating
- title
- Field: published
- Field: genre
- Field: nestedField # Field does not exist, should be ignored
- Sort:
- Ordering:
- Field: author_title
- ASCENDING
assert_results:
- author: Douglas Adams
author_title: Douglas Adams_The Hitchhiker's Guide to the Galaxy
- author: F. Scott Fitzgerald
author_title: F. Scott Fitzgerald_The Great Gatsby
- author: Frank Herbert
author_title: Frank Herbert_Dune
- author: Fyodor Dostoevsky
author_title: Fyodor Dostoevsky_Crime and Punishment
- author: Gabriel García Márquez
author_title: Gabriel García Márquez_One Hundred Years of Solitude
- author: George Orwell
author_title: George Orwell_1984
- author: Harper Lee
author_title: Harper Lee_To Kill a Mockingbird
- author: J.R.R. Tolkien
author_title: J.R.R. Tolkien_The Lord of the Rings
- author: Jane Austen
author_title: Jane Austen_Pride and Prejudice
- author: Margaret Atwood
author_title: Margaret Atwood_The Handmaid's Tale
assert_proto:
pipeline:
stages:
- args:
- referenceValue: /books
name: collection
- args:
- mapValue:
fields:
author_title:
functionValue:
args:
- fieldReferenceValue: author
- stringValue: _
- fieldReferenceValue: title
name: string_concat
title_author:
functionValue:
args:
- fieldReferenceValue: title
- stringValue: _
- fieldReferenceValue: author
name: string_concat
name: add_fields
- args:
- fieldReferenceValue: title_author
- fieldReferenceValue: tags
- fieldReferenceValue: awards
- fieldReferenceValue: rating
- fieldReferenceValue: title
- fieldReferenceValue: published
- fieldReferenceValue: genre
- fieldReferenceValue: nestedField
name: remove_fields
- args:
- mapValue:
fields:
direction:
stringValue: ascending
expression:
fieldReferenceValue: author_title
name: sort
- description: testPipelineWithOffsetAndLimit
pipeline:
- Collection: books
- Sort:
- Ordering:
- Field: author
- ASCENDING
- Offset: 5
- Limit: 3
- Select:
- title
- author
assert_results:
- title: "1984"
author: George Orwell
- title: To Kill a Mockingbird
author: Harper Lee
- title: The Lord of the Rings
author: J.R.R. Tolkien
assert_proto:
pipeline:
stages:
- args:
- referenceValue: /books
name: collection
- args:
- mapValue:
fields:
direction:
stringValue: ascending
expression:
fieldReferenceValue: author
name: sort
- args:
- integerValue: '5'
name: offset
- args:
- integerValue: '3'
name: limit
- args:
- mapValue:
fields:
author:
fieldReferenceValue: author
title:
fieldReferenceValue: title
name: select
- description: testSampleLimit
pipeline:
- Collection: books
- Sample: 3
assert_count: 3 # Results will vary due to randomness
assert_proto:
pipeline:
stages:
- args:
- referenceValue: /books
name: collection
- args:
- integerValue: '3'
- stringValue: documents
name: sample
- description: testSamplePercentage
pipeline:
- Collection: books
- Sample:
- SampleOptions:
- 0.6
- percent
assert_proto:
pipeline:
stages:
- args:
- referenceValue: /books
name: collection
- args:
- doubleValue: 0.6
- stringValue: percent
name: sample
- description: testUnion
pipeline:
- Collection: books
- Where:
- FunctionExpression.equal:
- Field: genre
- Constant: Romance
- Union:
- Pipeline:
- Collection: books
- Where:
- FunctionExpression.equal:
- Field: genre
- Constant: Dystopian
- Select:
- title
- Sort:
- Ordering:
- Field: title
- ASCENDING
assert_results:
- title: "1984"
- title: Pride and Prejudice
- title: "The Handmaid's Tale"
assert_proto:
pipeline:
stages:
- args:
- referenceValue: /books
name: collection
- args:
- functionValue:
args:
- fieldReferenceValue: genre
- stringValue: Romance
name: equal
name: where
- args:
- pipelineValue:
stages:
- args:
- referenceValue: /books
name: collection
- args:
- functionValue:
args:
- fieldReferenceValue: genre
- stringValue: Dystopian
name: equal
name: where
name: union
- args:
- mapValue:
fields:
title:
fieldReferenceValue: title
name: select
- args:
- mapValue:
fields:
direction:
stringValue: ascending
expression:
fieldReferenceValue: title
name: sort
- description: testUnionFullCollection
pipeline:
- Collection: books
- Union:
- Pipeline:
- Collection: books
assert_count: 20 # Results will be duplicated
- description: testCollectionGroup
pipeline:
- CollectionGroup: books
- Select:
- title
- Distinct:
- title
- Sort:
- Ordering:
- Field: title
- ASCENDING
assert_results:
- title: "1984"
- title: "Crime and Punishment"
- title: "Dune"
- title: "One Hundred Years of Solitude"
- title: "Pride and Prejudice"
- title: "The Great Gatsby"
- title: "The Handmaid's Tale"
- title: "The Hitchhiker's Guide to the Galaxy"
- title: "The Lord of the Rings"
- title: "To Kill a Mockingbird"
assert_proto:
pipeline:
stages:
- args:
- referenceValue: ''
- stringValue: books
name: collection_group
- args:
- mapValue:
fields:
title:
fieldReferenceValue: title
name: select
- args:
- mapValue:
fields:
title:
fieldReferenceValue: title
name: distinct
- args:
- mapValue:
fields:
direction:
stringValue: ascending
expression:
fieldReferenceValue: title
name: sort
- description: testDistinct
pipeline:
- Collection: books
- Distinct:
- genre
- Sort:
- Ordering:
- Field: genre
- ASCENDING
assert_results:
- genre: Dystopian
- genre: Fantasy
- genre: Magical Realism
- genre: Modernist
- genre: Psychological Thriller
- genre: Romance
- genre: Science Fiction
- genre: Southern Gothic
assert_proto:
pipeline:
stages:
- args:
- referenceValue: /books
name: collection
- args:
- mapValue:
fields:
genre:
fieldReferenceValue: genre
name: distinct
- args:
- mapValue:
fields:
direction:
stringValue: ascending
expression:
fieldReferenceValue: genre
name: sort
- description: testDocuments
pipeline:
- Documents:
- /books/book1
- /books/book10
- Select:
- title
- Sort:
- Ordering:
- Field: title
- ASCENDING
assert_results:
- title: "Dune"
- title: "The Hitchhiker's Guide to the Galaxy"
assert_proto:
pipeline:
stages:
- args:
- referenceValue: /books/book1
- referenceValue: /books/book10
name: documents
- args:
- mapValue:
fields:
title:
fieldReferenceValue: title
name: select
- args:
- mapValue:
fields:
direction:
stringValue: ascending
expression:
fieldReferenceValue: title
name: sort
- description: testDatabase
pipeline:
- Database
- Select:
- title
- Distinct:
- title
- Aggregate:
- AliasedExpression:
- Count: []
- count
- Select:
- AliasedExpression:
- Conditional:
- FunctionExpression.greater_than_or_equal:
- Field: count
- Constant: 10
- Constant: True
- Constant: False
- result
assert_results:
- result: True
assert_proto:
pipeline:
stages:
- name: database
- args:
- mapValue:
fields:
title:
fieldReferenceValue: title
name: select
- args:
- mapValue:
fields:
title:
fieldReferenceValue: title
name: distinct
- args:
- mapValue:
fields:
count:
functionValue:
name: count
- mapValue: {}
name: aggregate
- name: select
args:
- mapValue:
fields:
result:
functionValue:
args:
- functionValue:
args:
- fieldReferenceValue: count
- integerValue: '10'
name: greater_than_or_equal
- booleanValue: true
- booleanValue: false
name: conditional
- description: testRawStage
pipeline:
- RawStage:
- "collection"
- Value:
reference_value: "/books"
- RawStage:
- "where"
- FunctionExpression.equal:
- Field: title
- Constant: The Hitchhiker's Guide to the Galaxy
- RawStage:
- "select"
- Value:
map_value:
fields:
author:
field_reference_value: author
assert_results:
- author: Douglas Adams
assert_proto:
pipeline:
stages:
- args:
- referenceValue: /books
name: collection
- args:
- functionValue:
args:
- fieldReferenceValue: title
- stringValue: The Hitchhiker's Guide to the Galaxy
name: equal
name: where
- args:
- mapValue:
fields:
author:
fieldReferenceValue: author
name: select
- description: testUnnest
pipeline:
- Collection: books
- Where:
- FunctionExpression.equal:
- Field: title
- Constant: The Hitchhiker's Guide to the Galaxy
- Unnest:
- tags
- tags_alias
- Select: tags_alias
assert_results:
- tags_alias: comedy
- tags_alias: space
- tags_alias: adventure
assert_proto:
pipeline:
stages:
- args:
- referenceValue: /books
name: collection
- args:
- functionValue:
args:
- fieldReferenceValue: title
- stringValue: The Hitchhiker's Guide to the Galaxy
name: equal
name: where
- args:
- fieldReferenceValue: tags
- fieldReferenceValue: tags_alias
name: unnest
- args:
- mapValue:
fields:
tags_alias:
fieldReferenceValue: tags_alias
name: select
- description: testUnnestWithOptions
pipeline:
- Collection: books
- Where:
- FunctionExpression.equal:
- Field: title
- Constant: The Hitchhiker's Guide to the Galaxy
- Unnest:
field: tags
alias: tags_alias
options:
UnnestOptions:
- index
- Select:
- tags_alias
- index
assert_results:
- tags_alias: comedy
index: 0
- tags_alias: space
index: 1
- tags_alias: adventure
index: 2
assert_proto:
pipeline:
stages:
- args:
- referenceValue: /books
name: collection
- args:
- functionValue:
args:
- fieldReferenceValue: title
- stringValue: The Hitchhiker's Guide to the Galaxy
name: equal
name: where
- args:
- fieldReferenceValue: tags
- fieldReferenceValue: tags_alias
name: unnest
options:
index_field:
fieldReferenceValue: index
- args:
- mapValue:
fields:
tags_alias:
fieldReferenceValue: tags_alias
index:
fieldReferenceValue: index
name: select
- description: replaceWith
pipeline:
- Collection: books
- Where:
- FunctionExpression.equal:
- Field: title
- Constant: "The Hitchhiker's Guide to the Galaxy"
- ReplaceWith:
- Field: awards
assert_results:
- hugo: True
nebula: False
assert_proto:
pipeline:
stages:
- args:
- referenceValue: /books
name: collection
- args:
- functionValue:
args:
- fieldReferenceValue: title
- stringValue: "The Hitchhiker's Guide to the Galaxy"
name: equal
name: where
- args:
- fieldReferenceValue: awards
- stringValue: full_replace
name: replace_with
- description: testTypeAndIsType
pipeline:
- Collection: books
- Where:
- FunctionExpression.equal:
- Field: title
- Constant: "The Hitchhiker's Guide to the Galaxy"
- Limit: 1
- Select:
- AliasedExpression:
- FunctionExpression.type:
- Field: awards
- "val_type"
- AliasedExpression:
- FunctionExpression.is_type:
- Field: awards
- Constant: "map"
- "val_is_map"
assert_results:
- val_type: "map"
val_is_map: true
- description: literals
pipeline:
- Literals:
- title: "The Hitchhiker's Guide to the Galaxy"
author: "Douglas Adams"
- genre: "Science Fiction"
year: 1979
assert_results:
- title: "The Hitchhiker's Guide to the Galaxy"
author: "Douglas Adams"
- genre: "Science Fiction"
year: 1979
assert_proto:
pipeline:
stages:
- args:
- mapValue:
fields:
author:
stringValue: "Douglas Adams"
title:
stringValue: "The Hitchhiker's Guide to the Galaxy"
- mapValue:
fields:
genre:
stringValue: "Science Fiction"
year:
integerValue: '1979'
name: literals
- description: literals_with_expression_input
pipeline:
- Literals:
- res:
FunctionExpression.string_concat:
- Constant: "A"
- Constant: "B"
- Select:
- res
assert_results:
- res: "AB"
assert_proto:
pipeline:
stages:
- args:
- mapValue:
fields:
res:
functionValue:
args:
- stringValue: "A"
- stringValue: "B"
name: string_concat
name: literals
- args:
- mapValue:
fields:
res:
fieldReferenceValue: res
name: select
- description: testCoalesce
pipeline:
- Collection: books
- Limit: 1
- Select:
- AliasedExpression:
- FunctionExpression.coalesce:
- Field: non_existent_field
- Constant: "B"
- "res"
assert_results:
- res: "B"
- description: testCoalesceMultipleFailures
pipeline:
- Collection: books
- Limit: 1
- Select:
- AliasedExpression:
- FunctionExpression.coalesce:
- Field: non_existent_field1
- Field: non_existent_field2
- Field: non_existent_field3
- Constant: "Found"
- "res"
assert_results:
- res: "Found"
- description: testCoalesceShortCircuit
pipeline:
- Collection: books
- Limit: 1
- Select:
- AliasedExpression:
- FunctionExpression.coalesce:
- Field: non_existent_field
- "Hello"
- "Never Reaches"
- "res"
assert_results:
- res: "Hello"
- description: testCoalesceNumber
pipeline:
- Collection: books
- Limit: 1
- Select:
- AliasedExpression:
- FunctionExpression.coalesce:
- Field: non_existent_field
- 42
- "res"
assert_results:
- res: 42
- description: testCoalesceNoResult
pipeline:
- Collection: books
- Limit: 1
- Select:
- AliasedExpression:
- FunctionExpression.coalesce:
- Field: non_existent_field1
- Field: non_existent_field2
- "res"
assert_results:
- {}
- description: testCoalesceFieldResult
pipeline:
- Collection: books
- Where:
- FunctionExpression.equal:
- Field: title
- Constant: "1984"
- Select:
- AliasedExpression:
- FunctionExpression.coalesce:
- Field: non_existent_field
- Field: title
- "res"
assert_results:
- res: "1984"
- description: testCoalesceNull
pipeline:
- Documents:
- /errors/doc_with_null
- Select:
- AliasedExpression:
- FunctionExpression.coalesce:
- Field: value
- Constant: "Success"
- "res"
assert_results:
- res: "Success"
- description: testSwitchOn
pipeline:
- Literals:
- res:
FunctionExpression.switch_on:
- FunctionExpression.equal:
- Constant: 1
- Constant: 2
- Constant: "A"
- FunctionExpression.equal:
- Constant: 1
- Constant: 1
- Constant: "B"
- Constant: "C"
- Select:
- res
assert_results:
- res: "B"
- description: testSwitchOn_Default
pipeline:
- Literals:
- res:
FunctionExpression.switch_on:
- FunctionExpression.equal:
- Constant: 1
- Constant: 2
- Constant: "A"
- FunctionExpression.equal:
- Constant: 1
- Constant: 3
- Constant: "B"
- Constant: "C"
- Select:
- res
assert_results:
- res: "C"
- description: testSwitchOn_Error
pipeline:
- Literals:
- res:
FunctionExpression.switch_on:
- FunctionExpression.equal:
- Constant: 1
- Constant: 2
- Constant: "A"
- FunctionExpression.equal:
- Constant: 1
- Constant: 3
- Constant: "B"
- Select:
- res
assert_error: ".*all switch cases evaluate to false, and no default provided"
- description: testStorageSize
pipeline:
- Collection: books
- Limit: 1
- Select:
- AliasedExpression:
- FunctionExpression.storage_size:
- Field: __name__
- res
assert_results:
- res: 29
assert_proto:
pipeline:
stages:
- args:
- referenceValue: /books
name: collection
- args:
- integerValue: '1'
name: limit
- args:
- mapValue:
fields:
res:
functionValue:
args:
- fieldReferenceValue: __name__
name: storage_size
name: select
- description: union_subpipeline_error
pipeline:
- Collection: books
- Union:
- Pipeline:
- Subcollection: reviews
assert_error: ".*start of a nested pipeline.*"
- description: cannot_call_expression_methods_on_aliased_expression
pipeline:
- Collection: books
- Select:
- FunctionExpression.add:
- AliasedExpression:
- Field: pages
- pages_alias
- 5
assert_error: "Cannot call 'add' on AliasedExpression"
- description: cannot_chain_aliases
pipeline:
- Collection: books
- Select:
- AliasedExpression:
- AliasedExpression:
- Field: pages
- pages_alias
- final_alias
assert_error: "Cannot wrap an AliasedExpression"
- description: valid_aliased_expression_proto
pipeline:
- Collection: books
- Select:
- AliasedExpression:
- Field: pages
- pages_alias
assert_proto:
pipeline:
stages:
- args:
- referenceValue: /books
name: collection
- args:
- mapValue:
fields:
pages_alias:
fieldReferenceValue: pages
name: select