forked from invertase/react-native-firebase
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanalytics.e2e.js
More file actions
1261 lines (1117 loc) · 40.4 KB
/
Copy pathanalytics.e2e.js
File metadata and controls
1261 lines (1117 loc) · 40.4 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
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
/*
* Copyright (c) 2016-present Invertase Limited & Contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this library except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
describe('analytics()', function () {
beforeEach(async function () {
const { getAnalytics, logEvent } = analyticsModular;
await logEvent(getAnalytics(), 'screen_view');
});
describe('firebase v8 compatibility', function () {
beforeEach(async function beforeEachTest() {
// @ts-ignore
globalThis.RNFB_SILENCE_MODULAR_DEPRECATION_WARNINGS = true;
});
afterEach(async function afterEachTest() {
// @ts-ignore
globalThis.RNFB_SILENCE_MODULAR_DEPRECATION_WARNINGS = false;
});
describe('logEvent()', function () {
it('log an event without parameters', async function () {
await firebase.analytics().logEvent('invertase_event');
});
it('log an event with parameters', async function () {
await firebase.analytics().logEvent('invertase_event', {
boolean: true,
number: 1,
string: 'string',
});
});
});
describe('setSessionTimeoutDuration()', function () {
it('default duration', async function () {
await firebase.analytics().setSessionTimeoutDuration();
});
xit('custom duration', async function () {
// TODO: worked on Detox v17, causes crash after transition to v18. Why?
await firebase.analytics().setSessionTimeoutDuration(13371337);
});
});
describe('getAppInstanceId()', function () {
it('calls native fn without error', async function () {
await firebase.analytics().getAppInstanceId();
});
});
describe('getSessionId()', function () {
it('calls native fn without error', async function () {
await firebase.analytics().getSessionId();
});
it('returns a non empty session ID', async function () {
if (Platform.other) {
this.skip();
}
let sessionId = await firebase.analytics().getSessionId();
// On iOS it can take ~ 3 minutes for the session ID to be generated
// Otherwise, `Analytics uninitialized` error will be thrown
// On CI we're only going to give it a few tries
const retries = global.isCI ? 3 : 240;
while (!sessionId && retries > 0) {
await Utils.sleep(1000);
sessionId = await firebase.analytics().getSessionId();
}
// on CI this will be ignored so it doesn't flake
if (!sessionId && global.isCI) {
this.skip();
return;
}
if (!sessionId) {
return Promise.reject(
new Error('Firebase SDK did not return a session ID after 4 minutes'),
);
}
sessionId.should.not.equal(0);
});
it('returns a null value if session expires', async function () {
if (Platform.ios) {
// TODO - 20251030 iOS no longer correctly expires sessions
this.skip();
}
// Set session duration to 1 millisecond
firebase.analytics().setSessionTimeoutDuration(1);
// Wait 100 millisecond to ensure session expires
await Utils.sleep(100);
const sessionId = await firebase.analytics().getSessionId();
should.equal(sessionId, null);
});
});
describe('setUserId()', function () {
it('allows a null values to be set', async function () {
await firebase.analytics().setUserId(null);
});
it('accepts string values', async function () {
await firebase.analytics().setUserId('rn-firebase');
});
});
describe('setUserProperty()', function () {
it('allows a null values to be set', async function () {
await firebase.analytics().setUserProperty('invertase', null);
});
it('accepts string values', async function () {
await firebase.analytics().setUserProperty('invertase2', 'rn-firebase');
});
});
describe('setUserProperties()', function () {
it('allows null values to be set', async function () {
await firebase.analytics().setUserProperties({ invertase2: null });
});
it('accepts string values', async function () {
await firebase.analytics().setUserProperties({ invertase3: 'rn-firebase' });
});
});
describe('logScreenView()', function () {
it('calls logScreenView', async function () {
await firebase
.analytics()
.logScreenView({ screen_name: 'invertase screen', screen_class: 'invertase class' });
});
});
describe('logAddPaymentInfo()', function () {
it('calls logAddPaymentInfo', async function () {
await firebase.analytics().logAddPaymentInfo({
value: 123,
currency: 'USD',
items: [],
});
});
});
describe('logAddToCart()', function () {
it('calls logAddToCart', async function () {
await firebase.analytics().logAddToCart({
value: 123,
currency: 'GBP',
});
});
});
describe('logAddShippingInfo()', function () {
it('calls logAddShippingInfo', async function () {
await firebase.analytics().logAddShippingInfo({
value: 123,
currency: 'GBP',
});
});
});
describe('logAddToWishlist()', function () {
it('calls logAddToWishlist', async function () {
await firebase.analytics().logAddToWishlist({
items: [
{
item_id: 'foo',
item_name: 'foo',
item_category: 'foo',
item_location_id: 'foo',
quantity: 5,
},
],
value: 123,
currency: 'GBP',
});
});
});
describe('logAppOpen()', function () {
it('calls logAppOpen', async function () {
await firebase.analytics().logAppOpen();
});
});
describe('logBeginCheckout()', function () {
it('calls logBeginCheckout', async function () {
await firebase.analytics().logBeginCheckout();
});
});
describe('logCampaignDetails()', function () {
it('calls logCampaignDetails', async function () {
await firebase.analytics().logCampaignDetails({
source: 'foo',
medium: 'bar',
campaign: 'baz',
});
});
});
describe('logEarnVirtualCurrency()', function () {
it('calls logEarnVirtualCurrency', async function () {
await firebase.analytics().logEarnVirtualCurrency({
virtual_currency_name: 'foo',
value: 123,
});
});
});
describe('logPurchase()', function () {
it('calls logPurchase', async function () {
await firebase.analytics().logPurchase({
currency: 'USD',
value: 123,
affiliation: 'affiliation',
});
});
});
describe('logViewPromotion()', function () {
it('calls logViewPromotion', async function () {
await firebase.analytics().logViewPromotion({
creative_name: 'creative_name',
creative_slot: 'creative_slot',
});
});
});
describe('logGenerateLead()', function () {
it('calls logGenerateLead', async function () {
await firebase.analytics().logGenerateLead({
currency: 'USD',
value: 123,
});
});
});
describe('logJoinGroup()', function () {
it('calls logJoinGroup', async function () {
await firebase.analytics().logJoinGroup({
group_id: '123',
});
});
});
describe('logLevelEnd()', function () {
it('calls logLevelEnd', async function () {
await firebase.analytics().logLevelEnd({
level: 123,
success: true,
});
});
});
describe('logLevelStart()', function () {
it('calls logLevelEnd', async function () {
await firebase.analytics().logLevelStart({
level: 123,
});
});
});
describe('logLevelUp()', function () {
it('calls logLevelUp', async function () {
await firebase.analytics().logLevelUp({
level: 123,
character: 'foo',
});
});
});
describe('logLogin()', function () {
it('calls logLogin', async function () {
await firebase.analytics().logLogin({
method: 'facebook.com',
});
});
});
describe('logPostScore()', function () {
it('calls logPostScore', async function () {
await firebase.analytics().logPostScore({
score: 123,
});
});
});
describe('logRemoveFromCart()', function () {
it('calls logRemoveFromCart', async function () {
await firebase.analytics().logRemoveFromCart({
value: 123,
currency: 'USD',
});
});
});
describe('logSearch()', function () {
it('calls logSearch', async function () {
await firebase.analytics().logSearch({
search_term: 'foo',
});
});
});
describe('logSetCheckoutOption()', function () {
it('calls logSelectContent', async function () {
await firebase.analytics().logSetCheckoutOption({
checkout_step: 123,
checkout_option: 'foo',
});
});
});
describe('logSelectItem()', function () {
it('calls logSelectItem', async function () {
await firebase.analytics().logSelectItem({
item_list_id: 'foo',
item_list_name: 'foo',
content_type: 'foo',
});
});
});
describe('logShare()', function () {
it('calls logShare', async function () {
await firebase.analytics().logShare({
content_type: 'foo',
item_id: 'foo',
method: 'foo',
});
});
});
describe('logSignUp()', function () {
it('calls logSignUp', async function () {
await firebase.analytics().logSignUp({
method: 'facebook.com',
});
});
});
describe('logSpendVirtualCurrency()', function () {
it('calls logSpendVirtualCurrency', async function () {
await firebase.analytics().logSpendVirtualCurrency({
item_name: 'foo',
virtual_currency_name: 'foo',
value: 123,
});
});
});
describe('logTutorialBegin()', function () {
it('calls logTutorialBegin', async function () {
await firebase.analytics().logTutorialBegin();
});
});
describe('logTutorialComplete()', function () {
it('calls logTutorialComplete', async function () {
await firebase.analytics().logTutorialComplete();
});
});
describe('logUnlockAchievement()', function () {
it('calls logUnlockAchievement', async function () {
await firebase.analytics().logUnlockAchievement({
achievement_id: 'foo',
});
});
});
describe('logViewCart()', function () {
it('calls logViewCart', async function () {
await firebase.analytics().logViewCart();
});
});
describe('logViewItem()', function () {
it('calls logViewItem', async function () {
await firebase.analytics().logViewItem({
items: [
{
item_id: 'foo',
item_name: 'foo',
item_category: 'foo',
item_location_id: 'foo',
},
],
value: 123,
currency: 'GBP',
});
});
});
describe('logViewItemList()', function () {
it('calls logViewItemList', async function () {
await firebase.analytics().logViewItemList({
item_list_name: 'foo',
items: [
{
item_id: 'foo',
item_name: 'foo',
item_category: 'foo',
item_location_id: 'foo',
price: 123,
},
],
});
});
});
describe('logRefund()', function () {
it('calls logRefund', async function () {
await firebase.analytics().logRefund({
affiliation: 'affiliation',
coupon: 'coupon',
});
});
});
describe('logSelectContent()', function () {
it('calls logSelectContent', async function () {
await firebase.analytics().logSelectContent({
content_type: 'clothing',
item_id: 'abcd',
});
});
});
describe('logSelectPromotion()', function () {
it('calls logSelectPromotion', async function () {
await firebase.analytics().logSelectPromotion({
creative_name: 'string',
creative_slot: 'string',
location_id: 'string',
promotion_id: 'string',
promotion_name: 'string',
});
});
});
describe('logViewSearchResults()', function () {
it('calls logViewSearchResults', async function () {
await firebase.analytics().logViewSearchResults({
search_term: 'promotion',
});
});
});
describe('setDefaultEventParameters()', function () {
it('set null default parameter', async function () {
await firebase.analytics().setDefaultEventParameters(null);
});
it('set undefined default parameter', async function () {
await firebase.analytics().setDefaultEventParameters(undefined);
});
it('set default parameters', async function () {
await firebase.analytics().setDefaultEventParameters({ number: 1, stringn: '123' });
});
});
describe('setConsent()', function () {
it('set ad_storage=true on consentSettings', async function () {
const consentSettings = {
ad_storage: true,
};
await firebase.analytics().setConsent(consentSettings);
});
it('set ad_storage=false and analytics_storage=true on consentSettings', async function () {
const consentSettings = {
ad_storage: false,
analytics_storage: true,
};
await firebase.analytics().setConsent(consentSettings);
});
});
// Test this one near end so all the previous hits are visible in DebugView is that is enabled
describe('resetAnalyticsData()', function () {
it('calls native fn without error', async function () {
await firebase.analytics().resetAnalyticsData();
});
});
// Test this last so it does not stop delivery to DebugView
describe('initiateOnDeviceConversionMeasurementWithEmailAddress()', function () {
it('calls native API successfully', async function () {
await firebase
.analytics()
.initiateOnDeviceConversionMeasurementWithEmailAddress('conversionTest@example.com');
});
it('calls native API successfully with hashed email', async function () {
// Normalized email address: 'conversiontest@example.com'
// echo -n 'conversiontest@example.com' | shasum -a 256
await firebase
.analytics()
.initiateOnDeviceConversionMeasurementWithHashedEmailAddress(
'73914334417d04bc2922331e5fb3b3572ab88debfa0c63beb0c56f7b31d4aaed',
);
});
});
// Test this last so it does not stop delivery to DebugView
describe('on-device conversion measurement with phone', function () {
it('calls native API successfully', async function () {
await firebase
.analytics()
.initiateOnDeviceConversionMeasurementWithPhoneNumber('+14155551212');
});
it('calls native API successfully with hashed phone', async function () {
await firebase
.analytics()
.initiateOnDeviceConversionMeasurementWithHashedPhoneNumber(
'5dce05f429bc23dbd9e2caa03f336b56d4ee2aa374d8708f4f12eb4e10204c2b',
);
});
it('handles mal-formatted phone number', async function () {
try {
await firebase
.analytics()
.initiateOnDeviceConversionMeasurementWithPhoneNumber('+notaphonenumber');
fail('Should have returned an error for malformatted phone number');
} catch (e) {
// coerce the error message to a string and verify
if (!(e + '').includes('expected a string value in E.164 format')) {
fail('Should have returned an error for malformatted phone number');
}
}
});
});
// Test this last so it does not stop delivery to DebugView
describe('setAnalyticsCollectionEnabled()', function () {
it('false', async function () {
await firebase.analytics().setAnalyticsCollectionEnabled(false);
});
// Enable as the last action, so the rest of the hits are visible in DebugView if enabled
it('true', async function () {
await firebase.analytics().setAnalyticsCollectionEnabled(true);
});
});
});
describe('modular', function () {
describe('getAnalytics', function () {
it('pass app as argument', function () {
const { getApp } = modular;
const { getAnalytics } = analyticsModular;
const analytics = getAnalytics(getApp());
analytics.constructor.name.should.be.equal('FirebaseAnalyticsModule');
});
it('no app as argument', function () {
const { getAnalytics } = analyticsModular;
const analytics = getAnalytics();
analytics.constructor.name.should.be.equal('FirebaseAnalyticsModule');
});
});
describe('logEvent()', function () {
it('log an event without parameters', async function () {
const { getAnalytics, logEvent } = analyticsModular;
await logEvent(getAnalytics(), 'invertase_event');
});
it('log an event with parameters', async function () {
const { getAnalytics, logEvent } = analyticsModular;
await logEvent(getAnalytics(), 'invertase_event', {
boolean: true,
number: 1,
string: 'string',
});
});
});
describe('tests that are for deprecated API for modular and namespace', function () {
beforeEach(async function beforeEachTest() {
// @ts-ignore
globalThis.RNFB_SILENCE_MODULAR_DEPRECATION_WARNINGS = true;
});
afterEach(async function afterEachTest() {
// @ts-ignore
globalThis.RNFB_SILENCE_MODULAR_DEPRECATION_WARNINGS = false;
});
describe('logScreenView()', function () {
it('calls logScreenView', async function () {
const { getAnalytics, logScreenView } = analyticsModular;
await logScreenView(getAnalytics(), {
screen_name: 'invertase screen',
screen_class: 'invertase class',
});
});
});
describe('logAddPaymentInfo()', function () {
it('calls logAddPaymentInfo', async function () {
const { getAnalytics, logAddPaymentInfo } = analyticsModular;
await logAddPaymentInfo(getAnalytics(), {
value: 123,
currency: 'USD',
items: [],
});
});
});
describe('logAddToCart()', function () {
it('calls logAddToCart', async function () {
const { getAnalytics, logAddToCart } = analyticsModular;
await logAddToCart(getAnalytics(), {
value: 123,
currency: 'GBP',
});
});
});
describe('logAddShippingInfo()', function () {
it('calls logAddShippingInfo', async function () {
const { getAnalytics, logAddShippingInfo } = analyticsModular;
await logAddShippingInfo(getAnalytics(), {
value: 123,
currency: 'GBP',
});
});
});
describe('logAddToWishlist()', function () {
it('calls logAddToWishlist', async function () {
const { getAnalytics, logAddToWishlist } = analyticsModular;
await logAddToWishlist(getAnalytics(), {
items: [
{
item_id: 'foo',
item_name: 'foo',
item_category: 'foo',
item_location_id: 'foo',
quantity: 5,
},
],
value: 123,
currency: 'GBP',
});
});
});
describe('logAppOpen()', function () {
it('calls logAppOpen', async function () {
const { getAnalytics, logAppOpen } = analyticsModular;
await logAppOpen(getAnalytics());
});
});
describe('logBeginCheckout()', function () {
it('calls logBeginCheckout', async function () {
const { getAnalytics, logBeginCheckout } = analyticsModular;
await logBeginCheckout(getAnalytics());
});
});
describe('logCampaignDetails()', function () {
it('calls logCampaignDetails', async function () {
const { getAnalytics, logCampaignDetails } = analyticsModular;
await logCampaignDetails(getAnalytics(), {
source: 'foo',
medium: 'bar',
campaign: 'baz',
});
});
});
describe('logEarnVirtualCurrency()', function () {
it('calls logEarnVirtualCurrency', async function () {
const { getAnalytics, logEarnVirtualCurrency } = analyticsModular;
await logEarnVirtualCurrency(getAnalytics(), {
virtual_currency_name: 'foo',
value: 123,
});
});
});
describe('logPurchase()', function () {
it('calls logPurchase', async function () {
const { getAnalytics, logPurchase } = analyticsModular;
await logPurchase(getAnalytics(), {
currency: 'USD',
value: 123,
affiliation: 'affiliation',
});
});
});
describe('logViewPromotion()', function () {
it('calls logViewPromotion', async function () {
const { getAnalytics, logViewPromotion } = analyticsModular;
await logViewPromotion(getAnalytics(), {
creative_name: 'creative_name',
creative_slot: 'creative_slot',
});
});
});
describe('logGenerateLead()', function () {
it('calls logGenerateLead', async function () {
const { getAnalytics, logGenerateLead } = analyticsModular;
await logGenerateLead(getAnalytics(), {
currency: 'USD',
value: 123,
});
});
});
describe('logJoinGroup()', function () {
it('calls logJoinGroup', async function () {
const { getAnalytics, logJoinGroup } = analyticsModular;
await logJoinGroup(getAnalytics(), {
group_id: '123',
});
});
});
describe('logLevelEnd()', function () {
it('calls logLevelEnd', async function () {
const { getAnalytics, logLevelEnd } = analyticsModular;
await logLevelEnd(getAnalytics(), {
level: 123,
success: true,
});
});
});
describe('logLevelStart()', function () {
it('calls logLevelEnd', async function () {
const { getAnalytics, logLevelStart } = analyticsModular;
await logLevelStart(getAnalytics(), {
level: 123,
});
});
});
describe('logLevelUp()', function () {
it('calls logLevelUp', async function () {
const { getAnalytics, logLevelUp } = analyticsModular;
await logLevelUp(getAnalytics(), {
level: 123,
character: 'foo',
});
});
});
describe('logLogin()', function () {
it('calls logLogin', async function () {
const { getAnalytics, logLogin } = analyticsModular;
await logLogin(getAnalytics(), {
method: 'facebook.com',
});
});
});
describe('logPostScore()', function () {
it('calls logPostScore', async function () {
const { getAnalytics, logPostScore } = analyticsModular;
await logPostScore(getAnalytics(), {
score: 123,
});
});
});
describe('logRemoveFromCart()', function () {
it('calls logRemoveFromCart', async function () {
const { getAnalytics, logRemoveFromCart } = analyticsModular;
await logRemoveFromCart(getAnalytics(), {
value: 123,
currency: 'USD',
});
});
});
describe('logSearch()', function () {
it('calls logSearch', async function () {
const { getAnalytics, logSearch } = analyticsModular;
await logSearch(getAnalytics(), {
search_term: 'foo',
});
});
});
describe('logSetCheckoutOption()', function () {
it('calls logSelectContent', async function () {
const { getAnalytics, logSetCheckoutOption } = analyticsModular;
await logSetCheckoutOption(getAnalytics(), {
checkout_step: 123,
checkout_option: 'foo',
});
});
});
describe('logSelectItem()', function () {
it('calls logSelectItem', async function () {
const { getAnalytics, logSelectItem } = analyticsModular;
await logSelectItem(getAnalytics(), {
item_list_id: 'foo',
item_list_name: 'foo',
content_type: 'foo',
});
});
});
describe('logShare()', function () {
it('calls logShare', async function () {
const { getAnalytics, logShare } = analyticsModular;
await logShare(getAnalytics(), {
content_type: 'foo',
item_id: 'foo',
method: 'foo',
});
});
});
describe('logSignUp()', function () {
it('calls logSignUp', async function () {
const { getAnalytics, logSignUp } = analyticsModular;
await logSignUp(getAnalytics(), {
method: 'facebook.com',
});
});
});
describe('logSpendVirtualCurrency()', function () {
it('calls logSpendVirtualCurrency', async function () {
const { getAnalytics, logSpendVirtualCurrency } = analyticsModular;
await logSpendVirtualCurrency(getAnalytics(), {
item_name: 'foo',
virtual_currency_name: 'foo',
value: 123,
});
});
});
describe('logTutorialBegin()', function () {
it('calls logTutorialBegin', async function () {
const { getAnalytics, logTutorialBegin } = analyticsModular;
await logTutorialBegin(getAnalytics());
});
});
describe('logTutorialComplete()', function () {
it('calls logTutorialComplete', async function () {
const { getAnalytics, logTutorialComplete } = analyticsModular;
await logTutorialComplete(getAnalytics());
});
});
describe('logUnlockAchievement()', function () {
it('calls logUnlockAchievement', async function () {
const { getAnalytics, logUnlockAchievement } = analyticsModular;
await logUnlockAchievement(getAnalytics(), {
achievement_id: 'foo',
});
});
});
describe('logViewCart()', function () {
it('calls logViewCart', async function () {
const { getAnalytics, logViewCart } = analyticsModular;
await logViewCart(getAnalytics());
});
});
describe('logViewItem()', function () {
it('calls logViewItem', async function () {
const { getAnalytics, logViewItem } = analyticsModular;
await logViewItem(getAnalytics(), {
items: [
{
item_id: 'foo',
item_name: 'foo',
item_category: 'foo',
item_location_id: 'foo',
},
],
value: 123,
currency: 'GBP',
});
});
});
describe('logViewItemList()', function () {
it('calls logViewItemList', async function () {
const { getAnalytics, logViewItemList } = analyticsModular;
await logViewItemList(getAnalytics(), {
item_list_name: 'foo',
items: [
{
item_id: 'foo',
item_name: 'foo',
item_category: 'foo',
item_location_id: 'foo',
price: 123,
},
],
});
});
});
describe('logRefund()', function () {
it('calls logRefund', async function () {
const { getAnalytics, logRefund } = analyticsModular;
await logRefund(getAnalytics(), {
affiliation: 'affiliation',
coupon: 'coupon',
});
});
});
describe('logSelectContent()', function () {
it('calls logSelectContent', async function () {
const { getAnalytics, logSelectContent } = analyticsModular;
await logSelectContent(getAnalytics(), {
content_type: 'clothing',
item_id: 'abcd',
});
});
});
describe('logSelectPromotion()', function () {
it('calls logSelectPromotion', async function () {
const { getAnalytics, logSelectPromotion } = analyticsModular;
await logSelectPromotion(getAnalytics(), {
creative_name: 'string',
creative_slot: 'string',
location_id: 'string',
promotion_id: 'string',
promotion_name: 'string',
});
});
});
describe('logViewSearchResults()', function () {
it('calls logViewSearchResults', async function () {
const { getAnalytics, logViewSearchResults } = analyticsModular;
await logViewSearchResults(getAnalytics(), {
search_term: 'promotion',
});
});
});
});
describe('setSessionTimeoutDuration()', function () {
it('default duration', async function () {
const { getAnalytics, setSessionTimeoutDuration } = analyticsModular;
await setSessionTimeoutDuration(getAnalytics());
});
xit('custom duration', async function () {
const { getAnalytics, setSessionTimeoutDuration } = analyticsModular;
// TODO: worked on Detox v17, causes crash after transition to v18. Why?
await setSessionTimeoutDuration(getAnalytics(), 13371337);
});
});
describe('getAppInstanceId()', function () {
it('calls native fn without error', async function () {
const { getAnalytics, getAppInstanceId } = analyticsModular;
await getAppInstanceId(getAnalytics());
});
});
describe('getSessionId()', function () {
it('calls native fn without error', async function () {
const { getAnalytics, getSessionId } = analyticsModular;