-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
Copy pathfirestore.test.ts
1434 lines (1212 loc) · 45.5 KB
/
firestore.test.ts
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 { afterAll, beforeAll, beforeEach, describe, expect, it, jest } from '@jest/globals';
// @ts-ignore test
import { createDeprecationProxy } from '../../app/lib/common';
// @ts-ignore test
import FirebaseModule from '../../app/lib/internal/FirebaseModule';
// @ts-ignore test
import FirestoreQuery from '../lib/FirestoreQuery';
// @ts-ignore test
import FirestoreDocumentSnapshot from '../lib/FirestoreDocumentSnapshot';
// @ts-ignore test
import * as nativeModule from '@react-native-firebase/app/lib/internal/nativeModuleAndroidIos';
import {
createCheckV9Deprecation,
CheckV9DeprecationFunction,
} from '../../app/lib/common/unitTestUtils';
import { getApp } from '../../app/lib/modular';
import firestore, {
firebase,
connectFirestoreEmulator,
Filter,
getFirestore,
getAggregateFromServer,
count,
average,
sum,
addDoc,
doc,
collection,
collectionGroup,
setDoc,
updateDoc,
enableNetwork,
disableNetwork,
clearPersistence,
clearIndexedDbPersistence,
terminate,
waitForPendingWrites,
initializeFirestore,
setLogLevel,
runTransaction,
getCountFromServer,
loadBundle,
namedQuery,
writeBatch,
Bytes,
FieldPath,
FieldValue,
deleteField,
serverTimestamp,
arrayUnion,
arrayRemove,
increment,
GeoPoint,
query,
where,
or,
and,
orderBy,
startAt,
startAfter,
endAt,
endBefore,
limit,
limitToLast,
getDoc,
getDocFromCache,
getDocFromServer,
getDocs,
getDocsFromCache,
getDocsFromServer,
deleteDoc,
onSnapshot,
Timestamp,
getPersistentCacheIndexManager,
deleteAllPersistentCacheIndexes,
disablePersistentCacheIndexAutoCreation,
enablePersistentCacheIndexAutoCreation,
onSnapshotsInSync,
documentId,
} from '../lib';
const COLLECTION = 'firestore';
describe('Firestore', function () {
describe('namespace', function () {
beforeAll(async function () {
// @ts-ignore
globalThis.RNFB_SILENCE_MODULAR_DEPRECATION_WARNINGS = true;
});
afterAll(async function () {
// @ts-ignore
globalThis.RNFB_SILENCE_MODULAR_DEPRECATION_WARNINGS = false;
});
it('accessible from firebase.app()', function () {
const app = firebase.app();
expect(app.firestore).toBeDefined();
expect(app.firestore().settings).toBeDefined();
});
describe('batch()', function () {
it('returns a new WriteBatch instance', function () {
const instance = firebase.firestore().batch();
return expect(instance.constructor.name).toEqual('FirestoreWriteBatch');
});
});
describe('settings', function () {
it('throws if settings is not an object', async function () {
try {
// @ts-ignore the type is incorrect *on purpose* to test type checking in javascript
await firebase.firestore().settings('foo');
return Promise.reject(new Error('Did not throw an Error.'));
} catch (e: any) {
return expect(e.message).toContain("'settings' must be an object");
}
});
it('throws if passing an incorrect setting key', async function () {
try {
// @ts-ignore the type is incorrect *on purpose* to test type checking in javascript
await firebase.firestore().settings({ foo: 'bar' });
return Promise.reject(new Error('Did not throw an Error.'));
} catch (e: any) {
return expect(e.message).toContain("'settings.foo' is not a valid settings field");
}
});
it('throws if cacheSizeBytes is not a number', async function () {
try {
// @ts-ignore the type is incorrect *on purpose* to test type checking in javascript
await firebase.firestore().settings({ cacheSizeBytes: 'foo' });
return Promise.reject(new Error('Did not throw an Error.'));
} catch (e: any) {
return expect(e.message).toContain("'settings.cacheSizeBytes' must be a number value");
}
});
it('throws if cacheSizeBytes is less than 1MB', async function () {
try {
await firebase.firestore().settings({ cacheSizeBytes: 123 });
return Promise.reject(new Error('Did not throw an Error.'));
} catch (e: any) {
return expect(e.message).toContain("'settings.cacheSizeBytes' the minimum cache size");
}
});
it('accepts an unlimited cache size', async function () {
await firebase
.firestore()
.settings({ cacheSizeBytes: firebase.firestore.CACHE_SIZE_UNLIMITED });
});
it('throws if host is not a string', async function () {
// eslint-disable-next-line no-console
const warnOrig = console.warn;
// eslint-disable-next-line no-console
console.warn = (_: string) => {};
try {
// @ts-ignore the type is incorrect *on purpose* to test type checking in javascript
await firebase.firestore().settings({ host: 123 });
return Promise.reject(new Error('Did not throw an Error.'));
} catch (e: any) {
return expect(e.message).toContain("'settings.host' must be a string value");
} finally {
// eslint-disable-next-line no-console
console.warn = warnOrig;
}
});
it('throws if host is an empty string', async function () {
// eslint-disable-next-line no-console
const warnOrig = console.warn;
// eslint-disable-next-line no-console
console.warn = (_: string) => {};
try {
await firebase.firestore().settings({ host: '' });
return Promise.reject(new Error('Did not throw an Error.'));
} catch (e: any) {
return expect(e.message).toContain("'settings.host' must not be an empty string");
} finally {
// eslint-disable-next-line no-console
console.warn = warnOrig;
}
});
it('throws if persistence is not a boolean', async function () {
try {
// @ts-ignore the type is incorrect *on purpose* to test type checking in javascript
await firebase.firestore().settings({ persistence: 'true' });
return Promise.reject(new Error('Did not throw an Error.'));
} catch (e: any) {
return expect(e.message).toContain("'settings.persistence' must be a boolean value");
}
});
it('throws if ssl is not a boolean', async function () {
try {
// @ts-ignore the type is incorrect *on purpose* to test type checking in javascript
await firebase.firestore().settings({ ssl: 'true' });
return Promise.reject(new Error('Did not throw an Error.'));
} catch (e: any) {
return expect(e.message).toContain("'settings.ssl' must be a boolean value");
}
});
it('throws if ignoreUndefinedProperties is not a boolean', async function () {
try {
// @ts-ignore the type is incorrect *on purpose* to test type checking in javascript
await firestore().settings({ ignoreUndefinedProperties: 'bogus' });
return Promise.reject(new Error('Should throw'));
} catch (e: any) {
return expect(e.message).toContain("ignoreUndefinedProperties' must be a boolean value.");
}
});
it("throws if serverTimestampBehavior is not one of 'estimate', 'previous', 'none'", async function () {
try {
// @ts-ignore the type is incorrect *on purpose* to test type checking in javascript
await firestore().settings({ serverTimestampBehavior: 'bogus' });
return Promise.reject(new Error('Should throw'));
} catch (e: any) {
return expect(e.message).toContain(
"serverTimestampBehavior' must be one of 'estimate', 'previous', 'none'",
);
}
});
});
describe('runTransaction()', function () {
it('throws if updateFunction is not a function', async function () {
try {
// @ts-ignore the type is incorrect *on purpose* to test type checking in javascript
await firebase.firestore().runTransaction('foo');
return Promise.reject(new Error('Did not throw an Error.'));
} catch (e: any) {
return expect(e.message).toContain("'updateFunction' must be a function");
}
});
});
describe('collectionGroup()', function () {
it('returns a new query instance', function () {
const query = firebase.firestore().collectionGroup(COLLECTION);
expect(query.constructor.name).toEqual('FirestoreQuery');
});
it('throws if id is not a string', async function () {
try {
// @ts-ignore the type is incorrect *on purpose* to test type checking in javascript
firebase.firestore().collectionGroup(123);
return Promise.reject(new Error('Did not throw an Error.'));
} catch (e: any) {
return expect(e.message).toContain("'collectionId' must be a string value");
}
});
it('throws if id is empty', async function () {
try {
firebase.firestore().collectionGroup('');
return Promise.reject(new Error('Did not throw an Error.'));
} catch (e: any) {
return expect(e.message).toContain("'collectionId' must be a non-empty string");
}
});
it('throws if id contains forward-slash', async function () {
try {
firebase.firestore().collectionGroup(`someCollection/bar`);
return Promise.reject(new Error('Did not throw an Error.'));
} catch (e: any) {
return expect(e.message).toContain("'collectionId' must not contain '/'");
}
});
});
describe('collection()', function () {
it('throws if path is not a string', async function () {
try {
// @ts-ignore the type is incorrect *on purpose* to test type checking in javascript
firebase.firestore().collection(123);
return Promise.reject(new Error('Did not throw an Error.'));
} catch (e: any) {
return expect(e.message).toContain("'collectionPath' must be a string value");
}
});
it('throws if path is empty string', async function () {
try {
firebase.firestore().collection('');
return Promise.reject(new Error('Did not throw an Error.'));
} catch (e: any) {
return expect(e.message).toContain("'collectionPath' must be a non-empty string");
}
});
it('throws if path does not point to a collection', async function () {
try {
firebase.firestore().collection(`firestore/bar`);
return Promise.reject(new Error('Did not throw an Error.'));
} catch (e: any) {
return expect(e.message).toContain("'collectionPath' must point to a collection");
}
});
it('returns a new CollectionReference', async function () {
const collectionReference = firebase.firestore().collection('firestore');
expect(collectionReference.constructor.name).toEqual('FirestoreCollectionReference');
expect(collectionReference.path).toEqual('firestore');
});
});
describe('doc()', function () {
it('throws if path is not a string', async function () {
try {
// @ts-ignore the type is incorrect *on purpose* to test type checking in javascript
firebase.firestore().doc(123);
return Promise.reject(new Error('Did not throw an Error.'));
} catch (e: any) {
return expect(e.message).toContain("'documentPath' must be a string value");
}
});
it('throws if path is empty string', async function () {
try {
firebase.firestore().doc('');
return Promise.reject(new Error('Did not throw an Error.'));
} catch (e: any) {
return expect(e.message).toContain("'documentPath' must be a non-empty string");
}
});
it('throws if path does not point to a document', async function () {
try {
firebase.firestore().doc(`${COLLECTION}/bar/baz`);
return Promise.reject(new Error('Did not throw an Error.'));
} catch (e: any) {
return expect(e.message).toContain("'documentPath' must point to a document");
}
});
it('returns a new DocumentReference', async function () {
const docRef = firebase.firestore().doc(`${COLLECTION}/bar`);
expect(docRef.constructor.name).toEqual('FirestoreDocumentReference');
expect(docRef.path).toEqual(`${COLLECTION}/bar`);
});
it('throws when undefined value provided and ignored undefined is false', async function () {
await firebase.firestore().settings({ ignoreUndefinedProperties: false });
const docRef = firebase.firestore().doc(`${COLLECTION}/bar`);
try {
await docRef.set({
field1: 1,
field2: undefined,
});
return Promise.reject(new Error('Expected set() to throw'));
} catch (e: any) {
return expect(e.message).toEqual('Unsupported field value: undefined');
}
});
it('throws when nested undefined object value provided and ignored undefined is false', async function () {
await firebase.firestore().settings({ ignoreUndefinedProperties: false });
const docRef = firebase.firestore().doc(`${COLLECTION}/bar`);
try {
await docRef.set({
field1: 1,
field2: {
shouldNotWork: undefined,
},
});
return Promise.reject(new Error('Expected set() to throw'));
} catch (e: any) {
return expect(e.message).toEqual('Unsupported field value: undefined');
}
});
it('throws when nested undefined array value provided and ignored undefined is false', async function () {
await firebase.firestore().settings({ ignoreUndefinedProperties: false });
const docRef = firebase.firestore().doc(`${COLLECTION}/bar`);
try {
await docRef.set({
myArray: [{ name: 'Tim', location: { state: undefined, country: 'United Kingdom' } }],
});
return Promise.reject(new Error('Expected set() to throw'));
} catch (e: any) {
return expect(e.message).toEqual('Unsupported field value: undefined');
}
});
it('does not throw when nested undefined array value provided and ignore undefined is true', async function () {
await firebase.firestore().settings({ ignoreUndefinedProperties: true });
const docRef = firebase.firestore().doc(`${COLLECTION}/bar`);
await docRef.set({
myArray: [{ name: 'Tim', location: { state: undefined, country: 'United Kingdom' } }],
});
});
it('does not throw when nested undefined object value provided and ignore undefined is true', async function () {
await firebase.firestore().settings({ ignoreUndefinedProperties: true });
const docRef = firebase.firestore().doc(`${COLLECTION}/bar`);
await docRef.set({
field1: 1,
field2: {
shouldNotWork: undefined,
},
});
});
it('does not throw when Date is provided instead of Timestamp', async function () {
// type BarType = {
// myDate: FirebaseFirestoreTypes.Timestamp;
// };
const docRef = firebase.firestore().doc(`${COLLECTION}/bar`);
await docRef.set({
myDate: new Date(),
});
});
it('does not throw when serverTimestamp is provided instead of Timestamp', async function () {
// type BarType = {
// myDate: FirebaseFirestoreTypes.Timestamp;
// };
const docRef = firebase.firestore().doc(`${COLLECTION}/bar`);
await docRef.set({
myDate: firestore.FieldValue.serverTimestamp(),
});
});
});
describe('loadBundle()', function () {
it('throws if bundle is not a string', async function () {
try {
// @ts-ignore the type is incorrect *on purpose* to test type checking in javascript
firebase.firestore().loadBundle(123);
return Promise.reject(new Error('Did not throw an Error.'));
} catch (e: any) {
return expect(e.message).toContain("'bundle' must be a string value");
}
});
it('throws if bundle is empty string', async function () {
try {
firebase.firestore().loadBundle('');
return Promise.reject(new Error('Did not throw an Error.'));
} catch (e: any) {
return expect(e.message).toContain("'bundle' must be a non-empty string");
}
});
});
describe('namedQuery()', function () {
it('throws if queryName is not a string', async function () {
try {
// @ts-ignore the type is incorrect *on purpose* to test type checking in javascript
firebase.firestore().namedQuery(123);
return Promise.reject(new Error('Did not throw an Error.'));
} catch (e: any) {
return expect(e.message).toContain("'queryName' must be a string value");
}
});
it('throws if queryName is empty string', async function () {
try {
firebase.firestore().namedQuery('');
return Promise.reject(new Error('Did not throw an Error.'));
} catch (e: any) {
return expect(e.message).toContain("'queryName' must be a non-empty string");
}
});
describe('FirestorePersistentCacheIndexManager', function () {
it('is exposed to end user', function () {
const firestore1 = firebase.firestore();
firestore1.settings({ persistence: true });
const indexManager = firestore1.persistentCacheIndexManager();
expect(indexManager).toBeDefined();
expect(indexManager!.constructor.name).toEqual('FirestorePersistentCacheIndexManager');
expect(indexManager!.enableIndexAutoCreation).toBeInstanceOf(Function);
expect(indexManager!.disableIndexAutoCreation).toBeInstanceOf(Function);
expect(indexManager!.deleteAllIndexes).toBeInstanceOf(Function);
const firestore2 = firebase.firestore();
firestore2.settings({ persistence: false });
const nullIndexManager = firestore2.persistentCacheIndexManager();
expect(nullIndexManager).toBeNull();
});
});
});
});
describe('modular', function () {
it('`getFirestore` function is properly exposed to end user', function () {
expect(getFirestore).toBeDefined();
});
it('`Filter` is properly exposed to end user', async function () {
const filter1 = Filter('name', '==', 'Tim');
const filter2 = Filter('age', '>', 21);
// @ts-ignore
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const query = Filter.and(filter1, filter2);
// @ts-ignore
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const query2 = Filter.or(filter1, filter2);
});
it('`doc` function is properly exposed to end user', function () {
expect(doc).toBeDefined();
});
it('`collection` function is properly exposed to end user', function () {
expect(collection).toBeDefined();
});
it('`collectionGroup` function is properly exposed to end user', function () {
expect(collectionGroup).toBeDefined();
});
it('`setDoc` function is properly exposed to end user', function () {
expect(setDoc).toBeDefined();
});
it('`updateDoc` function is properly exposed to end user', function () {
expect(updateDoc).toBeDefined();
});
it('`addDoc` function is properly exposed to end user', function () {
expect(addDoc).toBeDefined();
});
it('`enableNetwork` function is properly exposed to end user', function () {
expect(enableNetwork).toBeDefined();
});
it('`disableNetwork` function is properly exposed to end user', function () {
expect(disableNetwork).toBeDefined();
});
it('`clearPersistence` function is properly exposed to end user', function () {
expect(clearPersistence).toBeDefined();
});
it('`terminate` function is properly exposed to end user', function () {
expect(terminate).toBeDefined();
});
it('`waitForPendingWrites` function is properly exposed to end user', function () {
expect(waitForPendingWrites).toBeDefined();
});
it('`initializeFirestore` function is properly exposed to end user', function () {
expect(initializeFirestore).toBeDefined();
});
it('`setLogLevel` function is properly exposed to end user', function () {
expect(setLogLevel).toBeDefined();
});
it('`runTransaction` function is properly exposed to end user', function () {
expect(runTransaction).toBeDefined();
});
it('`getCountFromServer` function is properly exposed to end user', function () {
expect(getCountFromServer).toBeDefined();
});
it('`loadBundle` function is properly exposed to end user', function () {
expect(loadBundle).toBeDefined();
});
it('`namedQuery` function is properly exposed to end user', function () {
expect(namedQuery).toBeDefined();
});
it('`writeBatch` function is properly exposed to end user', function () {
expect(writeBatch).toBeDefined();
});
it('`Bytes` class is properly exposed to end user', function () {
expect(Bytes).toBeDefined();
});
it('`FieldPath` class is properly exposed to end user', function () {
expect(FieldPath).toBeDefined();
});
it('`FieldValue` is properly exposed to end user', function () {
expect(FieldValue).toBeDefined();
});
it('`deleteField` function is properly exposed to end user', function () {
expect(deleteField).toBeDefined();
});
it('`serverTimestamp` function is properly exposed to end user', function () {
expect(serverTimestamp).toBeDefined();
});
it('`arrayUnion` function is properly exposed to end user', function () {
expect(arrayUnion).toBeDefined();
});
it('`arrayRemove` function is properly exposed to end user', function () {
expect(arrayRemove).toBeDefined();
});
it('`increment` function is properly exposed to end user', function () {
expect(increment).toBeDefined();
});
it('`GeoPoint` is properly exposed to end user', function () {
expect(GeoPoint).toBeDefined();
});
it('`query` function is properly exposed to end user', function () {
expect(query).toBeDefined();
});
it('`where` function is properly exposed to end user', function () {
expect(where).toBeDefined();
});
it('`or` function is properly exposed to end user', function () {
expect(or).toBeDefined();
});
it('`and` function is properly exposed to end user', function () {
expect(and).toBeDefined();
});
it('`orderBy` function is properly exposed to end user', function () {
expect(orderBy).toBeDefined();
});
it('`startAt` function is properly exposed to end user', function () {
expect(startAt).toBeDefined();
});
it('`startAfter` function is properly exposed to end user', function () {
expect(startAfter).toBeDefined();
});
it('`endAt` function is properly exposed to end user', function () {
expect(endAt).toBeDefined();
});
it('`endBefore` function is properly exposed to end user', function () {
expect(endBefore).toBeDefined();
});
it('`limit` function is properly exposed to end user', function () {
expect(limit).toBeDefined();
});
it('`limitToLast` function is properly exposed to end user', function () {
expect(limitToLast).toBeDefined();
});
it('`getDoc` function is properly exposed to end user', function () {
expect(getDoc).toBeDefined();
});
it('`getDocFromCache` function is properly exposed to end user', function () {
expect(getDocFromCache).toBeDefined();
});
it('`getDocFromServer` function is properly exposed to end user', function () {
expect(getDocFromServer).toBeDefined();
});
it('`getDocs` function is properly exposed to end user', function () {
expect(getDocs).toBeDefined();
});
it('`getDocsFromCache` function is properly exposed to end user', function () {
expect(getDocsFromCache).toBeDefined();
});
it('`getDocsFromServer` function is properly exposed to end user', function () {
expect(getDocsFromServer).toBeDefined();
});
it('`deleteDoc` function is properly exposed to end user', function () {
expect(deleteDoc).toBeDefined();
});
it('`onSnapshot` function is properly exposed to end user', function () {
expect(onSnapshot).toBeDefined();
});
it('`Timestamp` is properly exposed to end user', function () {
expect(Timestamp).toBeDefined();
});
it('`getPersistentCacheIndexManager` is properly exposed to end user', function () {
expect(getPersistentCacheIndexManager).toBeDefined();
// FIXME there is currently no way to programmatically alter
// persistence settings via modular API (FirestoreSettings.localCache ...)
const nullIndexManagerModular = getPersistentCacheIndexManager(getFirestore());
expect(nullIndexManagerModular).toBeNull();
});
it('`deleteAllPersistentCacheIndexes` is properly exposed to end user', function () {
expect(deleteAllPersistentCacheIndexes).toBeDefined();
});
it('`disablePersistentCacheIndexAutoCreation` is properly exposed to end user', function () {
expect(disablePersistentCacheIndexAutoCreation).toBeDefined();
});
it('`enablePersistentCacheIndexAutoCreation` is properly exposed to end user', function () {
expect(enablePersistentCacheIndexAutoCreation).toBeDefined();
});
it('`getAggregateFromServer` is properly exposed to end user', function () {
expect(getAggregateFromServer).toBeDefined();
});
it('`count` is properly exposed to end user', function () {
expect(count).toBeDefined();
});
it('`average` is properly exposed to end user', function () {
expect(average).toBeDefined();
});
it('`sum` is properly exposed to end user', function () {
expect(sum).toBeDefined();
});
it('`onSnapshotsInSync` is properly exposed to end user', function () {
expect(onSnapshotsInSync).toBeDefined();
});
it('`documentId` is properly exposed to end user', function () {
expect(documentId).toBeDefined();
});
});
describe('test `console.warn` is called for RNFB v8 API & not called for v9 API', function () {
let collectionRefV9Deprecation: CheckV9DeprecationFunction;
let docRefV9Deprecation: CheckV9DeprecationFunction;
let fieldValueV9Deprecation: CheckV9DeprecationFunction;
let filterV9Deprecation: CheckV9DeprecationFunction;
let persistentCacheIndexManagerV9Deprecation: CheckV9DeprecationFunction;
let firestoreRefV9Deprecation: CheckV9DeprecationFunction;
let staticsV9Deprecation: CheckV9DeprecationFunction;
let timestampV9Deprecation: CheckV9DeprecationFunction;
beforeEach(function () {
firestoreRefV9Deprecation = createCheckV9Deprecation(['firestore']);
collectionRefV9Deprecation = createCheckV9Deprecation([
'firestore',
'FirestoreCollectionReference',
]);
docRefV9Deprecation = createCheckV9Deprecation(['firestore', 'FirestoreDocumentReference']);
fieldValueV9Deprecation = createCheckV9Deprecation(['firestore', 'FirestoreFieldValue']);
filterV9Deprecation = createCheckV9Deprecation(['firestore', 'Filter']);
persistentCacheIndexManagerV9Deprecation = createCheckV9Deprecation([
'firestore',
'FirestorePersistentCacheIndexManager',
]);
staticsV9Deprecation = createCheckV9Deprecation(['firestore', 'statics']);
timestampV9Deprecation = createCheckV9Deprecation(['firestore', 'FirestoreTimestamp']);
// @ts-ignore test
jest.spyOn(FirebaseModule.prototype, 'native', 'get').mockImplementation(() => {
return new Proxy(
{},
{
get: () =>
jest.fn().mockResolvedValue({
source: 'cache',
changes: [],
documents: [],
metadata: {},
path: 'foo',
} as never),
},
);
});
jest
.spyOn(FirestoreQuery.prototype, '_handleQueryCursor')
// @ts-ignore test
.mockImplementation(() => {
return [];
});
});
describe('Firestore', function () {
it('firestore.batch()', function () {
const firestore = getFirestore();
firestoreRefV9Deprecation(
() => writeBatch(firestore),
() => firestore.batch(),
'batch',
);
});
it('firestore.loadBundle()', function () {
const firestore = getFirestore();
firestoreRefV9Deprecation(
() => loadBundle(firestore, 'some bundle'),
() => firestore.loadBundle('some bundle'),
'loadBundle',
);
});
it('firestore.namedQuery()', function () {
const firestore = getFirestore();
firestoreRefV9Deprecation(
() => namedQuery(firestore, 'some name'),
() => firestore.namedQuery('some name'),
'namedQuery',
);
});
it('firestore.clearPersistence()', function () {
const firestore = getFirestore();
firestoreRefV9Deprecation(
() => clearIndexedDbPersistence(firestore),
() => firestore.clearPersistence(),
'clearPersistence',
);
// Deprecating the modular method clearPersistence() as it doesn't exist on firebase-js-sdk
firestoreRefV9Deprecation(
() => clearIndexedDbPersistence(firestore),
() => clearPersistence(firestore),
'clearPersistence',
);
});
it('firestore.waitForPendingWrites()', function () {
const firestore = getFirestore();
firestoreRefV9Deprecation(
() => waitForPendingWrites(firestore),
() => firestore.waitForPendingWrites(),
'waitForPendingWrites',
);
});
it('firestore.terminate()', function () {
const firestore = getFirestore();
firestoreRefV9Deprecation(
() => terminate(firestore),
() => firestore.terminate(),
'terminate',
);
});
it('firestore.useEmulator()', function () {
const firestore = getFirestore();
firestoreRefV9Deprecation(
() => connectFirestoreEmulator(firestore, 'localhost', 8080),
() => firestore.useEmulator('localhost', 8080),
'useEmulator',
);
});
it('firestore.collection()', function () {
const firestore = getFirestore();
firestoreRefV9Deprecation(
() => collection(firestore, 'collection'),
() => firestore.collection('collection'),
'collection',
);
});
it('firestore.collectionGroup()', function () {
const firestore = getFirestore();
firestoreRefV9Deprecation(
() => collectionGroup(firestore, 'collection'),
() => firestore.collectionGroup('collection'),
'collectionGroup',
);
});
it('firestore.disableNetwork()', function () {
const firestore = getFirestore();
firestoreRefV9Deprecation(
() => disableNetwork(firestore),
() => firestore.disableNetwork(),
'disableNetwork',
);
});
it('firestore.doc()', function () {
const firestore = getFirestore();
firestoreRefV9Deprecation(
() => doc(firestore, 'collection/path'),
() => firestore.doc('collection/path'),
'doc',
);
});
it('firestore.enableNetwork()', function () {
const firestore = getFirestore();
firestoreRefV9Deprecation(
() => enableNetwork(firestore),
() => firestore.enableNetwork(),
'enableNetwork',
);
});
it('firestore.runTransaction()', function () {
const firestore = getFirestore();
firestoreRefV9Deprecation(
() => runTransaction(firestore, async () => {}),
() => firestore.runTransaction(async () => {}),
'runTransaction',
);
});
it('firestore.settings()', function () {
const firestore = getFirestore();
firestoreRefV9Deprecation(
// no equivalent settings method for firebase-js-sdk
() => initializeFirestore(getApp(), {}),
() => firestore.settings({}),
'settings',
);
});
});
describe('CollectionReference', function () {
it('CollectionReference.count()', function () {
const firestore = getFirestore();
const query = collection(firestore, 'test');
collectionRefV9Deprecation(
() => getCountFromServer(query),
() => query.count(),
'count',
);
});
it('CollectionReference.countFromServer()', function () {
const firestore = getFirestore();
const query = collection(firestore, 'test');
collectionRefV9Deprecation(
() => getCountFromServer(query),
() => query.countFromServer(),
'countFromServer',
);
});
it('CollectionReference.endAt()', function () {
const firestore = getFirestore();
const query = collection(firestore, 'test');
collectionRefV9Deprecation(
() => endAt('foo'),
() => query.endAt('foo'),
'endAt',
);
});
it('CollectionReference.endBefore()', function () {
const firestore = getFirestore();
const query = collection(firestore, 'test');
collectionRefV9Deprecation(
() => endBefore('foo'),
() => query.endBefore('foo'),
'endBefore',
);
});
it('CollectionReference.get()', function () {
const firestore = getFirestore();
const query = collection(firestore, 'test');
collectionRefV9Deprecation(
() => getDocs(query),
() => query.get(),
'get',
);
});