-
-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
Copy pathQueryTools.spec.js
836 lines (716 loc) · 23.4 KB
/
QueryTools.spec.js
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
const Parse = require('parse/node');
const Id = require('../lib/LiveQuery/Id');
const QueryTools = require('../lib/LiveQuery/QueryTools');
const queryHash = QueryTools.queryHash;
const matchesQuery = QueryTools.matchesQuery;
const Item = Parse.Object.extend('Item');
describe('queryHash', function () {
it('should always hash a query to the same string', function () {
const q = new Parse.Query(Item);
q.equalTo('field', 'value');
q.exists('name');
q.ascending('createdAt');
q.limit(10);
const firstHash = queryHash(q);
const secondHash = queryHash(q);
expect(firstHash).toBe(secondHash);
});
it('should return equivalent hashes for equivalent queries', function () {
let q1 = new Parse.Query(Item);
q1.equalTo('field', 'value');
q1.exists('name');
q1.lessThan('age', 30);
q1.greaterThan('age', 3);
q1.ascending('createdAt');
q1.include(['name', 'age']);
q1.limit(10);
let q2 = new Parse.Query(Item);
q2.limit(10);
q2.greaterThan('age', 3);
q2.lessThan('age', 30);
q2.include(['name', 'age']);
q2.ascending('createdAt');
q2.exists('name');
q2.equalTo('field', 'value');
let firstHash = queryHash(q1);
let secondHash = queryHash(q2);
expect(firstHash).toBe(secondHash);
q1.containedIn('fruit', ['apple', 'banana', 'cherry']);
firstHash = queryHash(q1);
expect(firstHash).not.toBe(secondHash);
q2.containedIn('fruit', ['banana', 'cherry', 'apple']);
secondHash = queryHash(q2);
expect(secondHash).toBe(firstHash);
q1.containedIn('fruit', ['coconut']);
firstHash = queryHash(q1);
expect(firstHash).not.toBe(secondHash);
q1 = new Parse.Query(Item);
q1.equalTo('field', 'value');
q1.lessThan('age', 30);
q1.exists('name');
q2 = new Parse.Query(Item);
q2.equalTo('name', 'person');
q2.equalTo('field', 'other');
firstHash = queryHash(Parse.Query.or(q1, q2));
secondHash = queryHash(Parse.Query.or(q2, q1));
expect(firstHash).toBe(secondHash);
});
it('should not let fields of different types appear similar', function () {
let q1 = new Parse.Query(Item);
q1.lessThan('age', 30);
const q2 = new Parse.Query(Item);
q2.equalTo('age', '{$lt:30}');
expect(queryHash(q1)).not.toBe(queryHash(q2));
q1 = new Parse.Query(Item);
q1.equalTo('age', 15);
q2.equalTo('age', '15');
expect(queryHash(q1)).not.toBe(queryHash(q2));
});
});
describe('matchesQuery', function () {
it('matches blanket queries', function () {
const obj = {
id: new Id('Klass', 'O1'),
value: 12,
};
const q = new Parse.Query('Klass');
expect(matchesQuery(obj, q)).toBe(true);
obj.id = new Id('Other', 'O1');
expect(matchesQuery(obj, q)).toBe(false);
});
it('matches existence queries', function () {
const obj = {
id: new Id('Item', 'O1'),
count: 15,
};
const q = new Parse.Query('Item');
q.exists('count');
expect(matchesQuery(obj, q)).toBe(true);
q.exists('name');
expect(matchesQuery(obj, q)).toBe(false);
});
it('matches queries with doesNotExist constraint', function () {
const obj = {
id: new Id('Item', 'O1'),
count: 15,
};
let q = new Parse.Query('Item');
q.doesNotExist('name');
expect(matchesQuery(obj, q)).toBe(true);
q = new Parse.Query('Item');
q.doesNotExist('count');
expect(matchesQuery(obj, q)).toBe(false);
});
it('matches queries with eq constraint', function () {
const obj = {
objectId: 'Person2',
score: 12,
name: 'Tom',
};
const q1 = {
objectId: {
$eq: 'Person2',
},
};
const q2 = {
score: {
$eq: 12,
},
};
const q3 = {
name: {
$eq: 'Tom',
},
};
expect(matchesQuery(obj, q1)).toBe(true);
expect(matchesQuery(obj, q2)).toBe(true);
expect(matchesQuery(obj, q3)).toBe(true);
});
it('matches on equality queries', function () {
const day = new Date();
const location = new Parse.GeoPoint({
latitude: 37.484815,
longitude: -122.148377,
});
const obj = {
id: new Id('Person', 'O1'),
score: 12,
name: 'Bill',
birthday: day,
lastLocation: location,
};
let q = new Parse.Query('Person');
q.equalTo('score', 12);
expect(matchesQuery(obj, q)).toBe(true);
q = new Parse.Query('Person');
q.equalTo('name', 'Bill');
expect(matchesQuery(obj, q)).toBe(true);
q.equalTo('name', 'Jeff');
expect(matchesQuery(obj, q)).toBe(false);
q = new Parse.Query('Person');
q.containedIn('name', ['Adam', 'Ben', 'Charles']);
expect(matchesQuery(obj, q)).toBe(false);
q.containedIn('name', ['Adam', 'Bill', 'Charles']);
expect(matchesQuery(obj, q)).toBe(true);
q = new Parse.Query('Person');
q.notContainedIn('name', ['Adam', 'Bill', 'Charles']);
expect(matchesQuery(obj, q)).toBe(false);
q.notContainedIn('name', ['Adam', 'Ben', 'Charles']);
expect(matchesQuery(obj, q)).toBe(true);
q = new Parse.Query('Person');
q.equalTo('birthday', day);
expect(matchesQuery(obj, q)).toBe(true);
q.equalTo('birthday', new Date(1990, 1));
expect(matchesQuery(obj, q)).toBe(false);
q = new Parse.Query('Person');
q.equalTo(
'lastLocation',
new Parse.GeoPoint({
latitude: 37.484815,
longitude: -122.148377,
})
);
expect(matchesQuery(obj, q)).toBe(true);
q.equalTo(
'lastLocation',
new Parse.GeoPoint({
latitude: 37.4848,
longitude: -122.1483,
})
);
expect(matchesQuery(obj, q)).toBe(false);
q.equalTo(
'lastLocation',
new Parse.GeoPoint({
latitude: 37.484815,
longitude: -122.148377,
})
);
q.equalTo('score', 12);
q.equalTo('name', 'Bill');
q.equalTo('birthday', day);
expect(matchesQuery(obj, q)).toBe(true);
q.equalTo('name', 'bill');
expect(matchesQuery(obj, q)).toBe(false);
let img = {
id: new Id('Image', 'I1'),
tags: ['nofilter', 'latergram', 'tbt'],
};
q = new Parse.Query('Image');
q.equalTo('tags', 'selfie');
expect(matchesQuery(img, q)).toBe(false);
q.equalTo('tags', 'tbt');
expect(matchesQuery(img, q)).toBe(true);
const q2 = new Parse.Query('Image');
q2.containsAll('tags', ['latergram', 'nofilter']);
expect(matchesQuery(img, q2)).toBe(true);
q2.containsAll('tags', ['latergram', 'selfie']);
expect(matchesQuery(img, q2)).toBe(false);
const u = new Parse.User();
u.id = 'U2';
q = new Parse.Query('Image');
q.equalTo('owner', u);
img = {
className: 'Image',
objectId: 'I1',
owner: {
className: '_User',
objectId: 'U2',
},
};
expect(matchesQuery(img, q)).toBe(true);
img.owner.objectId = 'U3';
expect(matchesQuery(img, q)).toBe(false);
// pointers in arrays
q = new Parse.Query('Image');
q.equalTo('owners', u);
img = {
className: 'Image',
objectId: 'I1',
owners: [
{
className: '_User',
objectId: 'U2',
},
],
};
expect(matchesQuery(img, q)).toBe(true);
img.owners[0].objectId = 'U3';
expect(matchesQuery(img, q)).toBe(false);
});
it('matches on inequalities', function () {
const player = {
id: new Id('Person', 'O1'),
score: 12,
name: 'Bill',
birthday: new Date(1980, 2, 4),
};
let q = new Parse.Query('Person');
q.lessThan('score', 15);
expect(matchesQuery(player, q)).toBe(true);
q.lessThan('score', 10);
expect(matchesQuery(player, q)).toBe(false);
q = new Parse.Query('Person');
q.lessThanOrEqualTo('score', 15);
expect(matchesQuery(player, q)).toBe(true);
q.lessThanOrEqualTo('score', 12);
expect(matchesQuery(player, q)).toBe(true);
q.lessThanOrEqualTo('score', 10);
expect(matchesQuery(player, q)).toBe(false);
q = new Parse.Query('Person');
q.greaterThan('score', 15);
expect(matchesQuery(player, q)).toBe(false);
q.greaterThan('score', 10);
expect(matchesQuery(player, q)).toBe(true);
q = new Parse.Query('Person');
q.greaterThanOrEqualTo('score', 15);
expect(matchesQuery(player, q)).toBe(false);
q.greaterThanOrEqualTo('score', 12);
expect(matchesQuery(player, q)).toBe(true);
q.greaterThanOrEqualTo('score', 10);
expect(matchesQuery(player, q)).toBe(true);
q = new Parse.Query('Person');
q.notEqualTo('score', 12);
expect(matchesQuery(player, q)).toBe(false);
q.notEqualTo('score', 40);
expect(matchesQuery(player, q)).toBe(true);
});
it('matches an $or query', function () {
const player = {
id: new Id('Player', 'P1'),
name: 'Player 1',
score: 12,
};
const q = new Parse.Query('Player');
q.equalTo('name', 'Player 1');
const q2 = new Parse.Query('Player');
q2.equalTo('name', 'Player 2');
const orQuery = Parse.Query.or(q, q2);
expect(matchesQuery(player, q)).toBe(true);
expect(matchesQuery(player, q2)).toBe(false);
expect(matchesQuery(player, orQuery)).toBe(true);
});
it('does not match $all query when value is missing', () => {
const player = {
id: new Id('Player', 'P1'),
name: 'Player 1',
score: 12,
};
const q = { missing: { $all: [1, 2, 3] } };
expect(matchesQuery(player, q)).toBe(false);
});
it('matches an $and query', () => {
const player = {
id: new Id('Player', 'P1'),
name: 'Player 1',
score: 12,
};
const q = new Parse.Query('Player');
q.equalTo('name', 'Player 1');
const q2 = new Parse.Query('Player');
q2.equalTo('score', 12);
const q3 = new Parse.Query('Player');
q3.equalTo('score', 100);
const andQuery1 = Parse.Query.and(q, q2);
const andQuery2 = Parse.Query.and(q, q3);
expect(matchesQuery(player, q)).toBe(true);
expect(matchesQuery(player, q2)).toBe(true);
expect(matchesQuery(player, andQuery1)).toBe(true);
expect(matchesQuery(player, andQuery2)).toBe(false);
});
it('matches an $nor query', () => {
const player = {
id: new Id('Player', 'P1'),
name: 'Player 1',
score: 12,
};
const q = new Parse.Query('Player');
q.equalTo('name', 'Player 1');
const q2 = new Parse.Query('Player');
q2.equalTo('name', 'Player 2');
const q3 = new Parse.Query('Player');
q3.equalTo('name', 'Player 3');
const norQuery1 = Parse.Query.nor(q, q2);
const norQuery2 = Parse.Query.nor(q2, q3);
expect(matchesQuery(player, q)).toBe(true);
expect(matchesQuery(player, q2)).toBe(false);
expect(matchesQuery(player, q3)).toBe(false);
expect(matchesQuery(player, norQuery1)).toBe(false);
expect(matchesQuery(player, norQuery2)).toBe(true);
});
it('matches $regex queries', function () {
const player = {
id: new Id('Player', 'P1'),
name: 'Player 1',
score: 12,
};
let q = new Parse.Query('Player');
q.startsWith('name', 'Play');
expect(matchesQuery(player, q)).toBe(true);
q.startsWith('name', 'Ploy');
expect(matchesQuery(player, q)).toBe(false);
q = new Parse.Query('Player');
q.endsWith('name', ' 1');
expect(matchesQuery(player, q)).toBe(true);
q.endsWith('name', ' 2');
expect(matchesQuery(player, q)).toBe(false);
// Check that special characters are escaped
player.name = 'Android-7';
q = new Parse.Query('Player');
q.contains('name', 'd-7');
expect(matchesQuery(player, q)).toBe(true);
q = new Parse.Query('Player');
q.matches('name', /A.d/);
expect(matchesQuery(player, q)).toBe(true);
q.matches('name', /A[^n]d/);
expect(matchesQuery(player, q)).toBe(false);
// Check that the string \\E is returned to normal
player.name = 'Slash \\E';
q = new Parse.Query('Player');
q.endsWith('name', 'h \\E');
expect(matchesQuery(player, q)).toBe(true);
q.endsWith('name', 'h \\Ee');
expect(matchesQuery(player, q)).toBe(false);
player.name = 'Slash \\Q and more';
q = new Parse.Query('Player');
q.contains('name', 'h \\Q and');
expect(matchesQuery(player, q)).toBe(true);
q.contains('name', 'h \\Q or');
expect(matchesQuery(player, q)).toBe(false);
});
it('matches $nearSphere queries', function () {
let q = new Parse.Query('Checkin');
q.near('location', new Parse.GeoPoint(20, 20));
// With no max distance, any GeoPoint is 'near'
const pt = {
id: new Id('Checkin', 'C1'),
location: new Parse.GeoPoint(40, 40),
};
const ptUndefined = {
id: new Id('Checkin', 'C1'),
};
const ptNull = {
id: new Id('Checkin', 'C1'),
location: null,
};
expect(matchesQuery(pt, q)).toBe(true);
expect(matchesQuery(ptUndefined, q)).toBe(false);
expect(matchesQuery(ptNull, q)).toBe(false);
q = new Parse.Query('Checkin');
pt.location = new Parse.GeoPoint(40, 40);
q.withinRadians('location', new Parse.GeoPoint(30, 30), 0.3);
expect(matchesQuery(pt, q)).toBe(true);
q.withinRadians('location', new Parse.GeoPoint(30, 30), 0.2);
expect(matchesQuery(pt, q)).toBe(false);
});
it('matches $within queries', function () {
const caltrainStation = {
id: new Id('Checkin', 'C1'),
location: new Parse.GeoPoint(37.776346, -122.394218),
name: 'Caltrain',
};
const santaClara = {
id: new Id('Checkin', 'C2'),
location: new Parse.GeoPoint(37.325635, -121.945753),
name: 'Santa Clara',
};
const noLocation = {
id: new Id('Checkin', 'C2'),
name: 'Santa Clara',
};
const nullLocation = {
id: new Id('Checkin', 'C2'),
location: null,
name: 'Santa Clara',
};
let q = new Parse.Query('Checkin').withinGeoBox(
'location',
new Parse.GeoPoint(37.708813, -122.526398),
new Parse.GeoPoint(37.822802, -122.373962)
);
expect(matchesQuery(caltrainStation, q)).toBe(true);
expect(matchesQuery(santaClara, q)).toBe(false);
expect(matchesQuery(noLocation, q)).toBe(false);
expect(matchesQuery(nullLocation, q)).toBe(false);
// Invalid rectangles
q = new Parse.Query('Checkin').withinGeoBox(
'location',
new Parse.GeoPoint(37.822802, -122.373962),
new Parse.GeoPoint(37.708813, -122.526398)
);
expect(matchesQuery(caltrainStation, q)).toBe(false);
expect(matchesQuery(santaClara, q)).toBe(false);
q = new Parse.Query('Checkin').withinGeoBox(
'location',
new Parse.GeoPoint(37.708813, -122.373962),
new Parse.GeoPoint(37.822802, -122.526398)
);
expect(matchesQuery(caltrainStation, q)).toBe(false);
expect(matchesQuery(santaClara, q)).toBe(false);
});
it('matches on subobjects with dot notation', function () {
const message = {
id: new Id('Message', 'O1'),
text: 'content',
status: { x: 'read', y: 'delivered' },
};
let q = new Parse.Query('Message');
q.equalTo('status.x', 'read');
expect(matchesQuery(message, q)).toBe(true);
q = new Parse.Query('Message');
q.equalTo('status.z', 'read');
expect(matchesQuery(message, q)).toBe(false);
q = new Parse.Query('Message');
q.equalTo('status.x', 'delivered');
expect(matchesQuery(message, q)).toBe(false);
q = new Parse.Query('Message');
q.notEqualTo('status.x', 'read');
expect(matchesQuery(message, q)).toBe(false);
q = new Parse.Query('Message');
q.notEqualTo('status.z', 'read');
expect(matchesQuery(message, q)).toBe(true);
q = new Parse.Query('Message');
q.notEqualTo('status.x', 'delivered');
expect(matchesQuery(message, q)).toBe(true);
q = new Parse.Query('Message');
q.exists('status.x');
expect(matchesQuery(message, q)).toBe(true);
q = new Parse.Query('Message');
q.exists('status.z');
expect(matchesQuery(message, q)).toBe(false);
q = new Parse.Query('Message');
q.exists('nonexistent.x');
expect(matchesQuery(message, q)).toBe(false);
q = new Parse.Query('Message');
q.doesNotExist('status.x');
expect(matchesQuery(message, q)).toBe(false);
q = new Parse.Query('Message');
q.doesNotExist('status.z');
expect(matchesQuery(message, q)).toBe(true);
q = new Parse.Query('Message');
q.doesNotExist('nonexistent.z');
expect(matchesQuery(message, q)).toBe(true);
q = new Parse.Query('Message');
q.equalTo('status.x', 'read');
q.doesNotExist('status.y');
expect(matchesQuery(message, q)).toBe(false);
});
function pointer(className, objectId) {
return { __type: 'Pointer', className, objectId };
}
it('should support containedIn with pointers', () => {
const message = {
id: new Id('Message', 'O1'),
profile: pointer('Profile', 'abc'),
};
let q = new Parse.Query('Message');
q.containedIn('profile', [
Parse.Object.fromJSON({ className: 'Profile', objectId: 'abc' }),
Parse.Object.fromJSON({ className: 'Profile', objectId: 'def' }),
]);
expect(matchesQuery(message, q)).toBe(true);
q = new Parse.Query('Message');
q.containedIn('profile', [
Parse.Object.fromJSON({ className: 'Profile', objectId: 'ghi' }),
Parse.Object.fromJSON({ className: 'Profile', objectId: 'def' }),
]);
expect(matchesQuery(message, q)).toBe(false);
});
it('should support containedIn with array of pointers', () => {
const message = {
id: new Id('Message', 'O2'),
profiles: [pointer('Profile', 'yeahaw'), pointer('Profile', 'yes')],
};
let q = new Parse.Query('Message');
q.containedIn('profiles', [
Parse.Object.fromJSON({ className: 'Profile', objectId: 'no' }),
Parse.Object.fromJSON({ className: 'Profile', objectId: 'yes' }),
]);
expect(matchesQuery(message, q)).toBe(true);
q = new Parse.Query('Message');
q.containedIn('profiles', [
Parse.Object.fromJSON({ className: 'Profile', objectId: 'no' }),
Parse.Object.fromJSON({ className: 'Profile', objectId: 'nope' }),
]);
expect(matchesQuery(message, q)).toBe(false);
});
it('should support notContainedIn with pointers', () => {
let message = {
id: new Id('Message', 'O1'),
profile: pointer('Profile', 'abc'),
};
let q = new Parse.Query('Message');
q.notContainedIn('profile', [
Parse.Object.fromJSON({ className: 'Profile', objectId: 'def' }),
Parse.Object.fromJSON({ className: 'Profile', objectId: 'ghi' }),
]);
expect(matchesQuery(message, q)).toBe(true);
message = {
id: new Id('Message', 'O1'),
profile: pointer('Profile', 'def'),
};
q = new Parse.Query('Message');
q.notContainedIn('profile', [
Parse.Object.fromJSON({ className: 'Profile', objectId: 'ghi' }),
Parse.Object.fromJSON({ className: 'Profile', objectId: 'def' }),
]);
expect(matchesQuery(message, q)).toBe(false);
});
it('should support containedIn queries with [objectId]', () => {
let message = {
id: new Id('Message', 'O1'),
profile: pointer('Profile', 'abc'),
};
let q = new Parse.Query('Message');
q.containedIn('profile', ['abc', 'def']);
expect(matchesQuery(message, q)).toBe(true);
message = {
id: new Id('Message', 'O1'),
profile: pointer('Profile', 'ghi'),
};
q = new Parse.Query('Message');
q.containedIn('profile', ['abc', 'def']);
expect(matchesQuery(message, q)).toBe(false);
});
it('should support notContainedIn queries with [objectId]', () => {
let message = {
id: new Id('Message', 'O1'),
profile: pointer('Profile', 'ghi'),
};
let q = new Parse.Query('Message');
q.notContainedIn('profile', ['abc', 'def']);
expect(matchesQuery(message, q)).toBe(true);
message = {
id: new Id('Message', 'O1'),
profile: pointer('Profile', 'ghi'),
};
q = new Parse.Query('Message');
q.notContainedIn('profile', ['abc', 'def', 'ghi']);
expect(matchesQuery(message, q)).toBe(false);
});
it('matches on Date', () => {
// given
const now = new Date();
const obj = {
id: new Id('Person', '01'),
dateObject: now,
dateJSON: {
__type: 'Date',
iso: now.toISOString(),
},
};
// when, then: Equal
let q = new Parse.Query('Person');
q.equalTo('dateObject', now);
q.equalTo('dateJSON', now);
expect(matchesQuery(Object.assign({}, obj), q)).toBe(true);
// when, then: lessThan
const future = Date(now.getTime() + 1000);
q = new Parse.Query('Person');
q.lessThan('dateObject', future);
q.lessThan('dateJSON', future);
expect(matchesQuery(Object.assign({}, obj), q)).toBe(true);
// when, then: lessThanOrEqualTo
q = new Parse.Query('Person');
q.lessThanOrEqualTo('dateObject', now);
q.lessThanOrEqualTo('dateJSON', now);
expect(matchesQuery(Object.assign({}, obj), q)).toBe(true);
// when, then: greaterThan
const past = Date(now.getTime() - 1000);
q = new Parse.Query('Person');
q.greaterThan('dateObject', past);
q.greaterThan('dateJSON', past);
expect(matchesQuery(Object.assign({}, obj), q)).toBe(true);
// when, then: greaterThanOrEqualTo
q = new Parse.Query('Person');
q.greaterThanOrEqualTo('dateObject', now);
q.greaterThanOrEqualTo('dateJSON', now);
expect(matchesQuery(Object.assign({}, obj), q)).toBe(true);
});
it('should support containedBy query', () => {
const obj1 = {
id: new Id('Numbers', 'N1'),
numbers: [0, 1, 2],
};
const obj2 = {
id: new Id('Numbers', 'N2'),
numbers: [2, 0],
};
const obj3 = {
id: new Id('Numbers', 'N3'),
numbers: [1, 2, 3, 4],
};
const q = new Parse.Query('Numbers');
q.containedBy('numbers', [1, 2, 3, 4, 5]);
expect(matchesQuery(obj1, q)).toBe(false);
expect(matchesQuery(obj2, q)).toBe(false);
expect(matchesQuery(obj3, q)).toBe(true);
});
it('should support withinPolygon query', () => {
const sacramento = {
id: new Id('Location', 'L1'),
location: new Parse.GeoPoint(38.52, -121.5),
name: 'Sacramento',
};
const honolulu = {
id: new Id('Location', 'L2'),
location: new Parse.GeoPoint(21.35, -157.93),
name: 'Honolulu',
};
const sf = {
id: new Id('Location', 'L3'),
location: new Parse.GeoPoint(37.75, -122.68),
name: 'San Francisco',
};
const points = [
new Parse.GeoPoint(37.85, -122.33),
new Parse.GeoPoint(37.85, -122.9),
new Parse.GeoPoint(37.68, -122.9),
new Parse.GeoPoint(37.68, -122.33),
];
const q = new Parse.Query('Location');
q.withinPolygon('location', points);
expect(matchesQuery(sacramento, q)).toBe(false);
expect(matchesQuery(honolulu, q)).toBe(false);
expect(matchesQuery(sf, q)).toBe(true);
});
it('should support polygonContains query', () => {
const p1 = [
[0, 0],
[0, 1],
[1, 1],
[1, 0],
];
const p2 = [
[0, 0],
[0, 2],
[2, 2],
[2, 0],
];
const p3 = [
[10, 10],
[10, 15],
[15, 15],
[15, 10],
[10, 10],
];
const obj1 = {
id: new Id('Bounds', 'B1'),
polygon: new Parse.Polygon(p1),
};
const obj2 = {
id: new Id('Bounds', 'B2'),
polygon: new Parse.Polygon(p2),
};
const obj3 = {
id: new Id('Bounds', 'B3'),
polygon: new Parse.Polygon(p3),
};
const point = new Parse.GeoPoint(0.5, 0.5);
const q = new Parse.Query('Bounds');
q.polygonContains('polygon', point);
expect(matchesQuery(obj1, q)).toBe(true);
expect(matchesQuery(obj2, q)).toBe(true);
expect(matchesQuery(obj3, q)).toBe(false);
});
});