-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathepicSelection.test.ts
More file actions
904 lines (755 loc) · 26.8 KB
/
epicSelection.test.ts
File metadata and controls
904 lines (755 loc) · 26.8 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
import type {
ArticlesViewedSettings,
DeviceType,
EpicTargeting,
EpicTest,
EpicVariant,
UserDeviceType} from '../../../shared/types';
import {
SecondaryCtaType
} from '../../../shared/types';
import type { BanditData } from '../../bandit/banditData';
import type { SuperModeArticle } from '../../lib/superMode';
import {
correctSignedInStatusFilter,
deviceTypeMatchesFilter,
findTestAndVariant,
getUserCohorts,
hasCountryCode,
inCorrectCohort,
isCountryTargetedForEpic,
isNotExpired,
withinArticleViewedSettings,
withinMaxViews,
} from './epicSelection';
const variantDefault: EpicVariant = {
name: 'control-example-1',
heading: "We've got an announcement…",
paragraphs: [
'… on our progress as an organisation. In service of the escalating climate emergency, we have made an important decision – <a href="https://www.theguardian.com/media/2020/jan/29/guardian-to-ban-advertising-from-fossil-fuel-firms-climate-crisis#show-draft-epics">to renounce fossil fuel advertising</a>, becoming the first major global news organisation to institute an outright ban on taking money from companies that extract fossil fuels.',
'',
],
highlightedText:
'Support the Guardian from as little as %%CURRENCY_SYMBOL%%1 – and it only takes a minute. Thank you.',
cta: {
text: 'Support The Guardian',
baseUrl: 'https://support.theguardian.com/contribute',
},
secondaryCta: {
type: SecondaryCtaType.Custom,
cta: {
text: 'Read our pledge',
baseUrl:
'https://www.theguardian.com/environment/ng-interactive/2019/oct/16/the-guardians-climate-pledge-2019?INTCMP=pledge_Jan_2020',
},
},
};
const testDefault: EpicTest = {
channel: 'Epic',
name: 'example-1',
priority: 1,
status: 'Live',
locations: [],
tagIds: [],
sections: ['environment'],
excludedTagIds: [],
excludedSections: [],
alwaysAsk: true,
maxViews: {
maxViewsCount: 4,
maxViewsDays: 30,
minDaysBetweenViews: 0,
},
userCohort: 'AllNonSupporters',
hasCountryName: false,
variants: [variantDefault],
highPriority: false,
useLocalViewLog: false,
articlesViewedSettings: {
minViews: 5,
periodInWeeks: 52,
},
hasArticleCountInCopy: true,
};
const targetingDefault: EpicTargeting = {
contentType: 'Article',
sectionId: 'environment',
shouldHideReaderRevenue: false,
isMinuteArticle: false,
isPaidContent: false,
tags: [{ id: 'environment/series/the-polluters', type: 'tone' }],
showSupportMessaging: true,
mvtId: 2,
hasOptedOutOfArticleCount: false,
};
const superModeArticles: SuperModeArticle[] = [];
const banditData: BanditData[] = [];
const userDeviceType = 'Desktop';
describe('findTestAndVariant', () => {
it('should find the correct variant for test and targeting data', () => {
const testWithoutArticlesViewedSettings = {
...testDefault,
articlesViewedSettings: undefined,
};
const tests = [testWithoutArticlesViewedSettings];
const targeting: EpicTargeting = {
...targetingDefault,
weeklyArticleHistory: [{ week: 18330, count: 45 }],
};
const got = findTestAndVariant(
tests,
targeting,
userDeviceType,
superModeArticles,
banditData,
);
expect(got.result?.test.name).toBe('example-1');
expect(got.result?.variant.name).toBe('control-example-1');
});
it('should return undefined if test has hasArticleCountInCopy and user has opted out of article count', () => {
const tests = [testDefault];
const targeting: EpicTargeting = {
...targetingDefault,
weeklyArticleHistory: [{ week: 18330, count: 45 }],
hasOptedOutOfArticleCount: true,
};
const got = findTestAndVariant(
tests,
targeting,
userDeviceType,
superModeArticles,
banditData,
);
expect(got.result).toBe(undefined);
});
it('should return undefined when no matching test variant', () => {
const test = { ...testDefault, excludedSections: ['news'] };
const tests = [test];
const targeting = { ...targetingDefault, sectionId: 'news' };
const got = findTestAndVariant(
tests,
targeting,
userDeviceType,
superModeArticles,
banditData,
);
expect(got.result).toBe(undefined);
});
it('should not return showReminderFields if user is a supporter', () => {
const testWithoutArticlesViewedSettings: EpicTest = {
...testDefault,
articlesViewedSettings: undefined,
userCohort: 'AllExistingSupporters',
};
const tests = [testWithoutArticlesViewedSettings];
const targeting: EpicTargeting = {
...targetingDefault,
showSupportMessaging: false,
};
const got = findTestAndVariant(
tests,
targeting,
userDeviceType,
superModeArticles,
banditData,
);
expect(got.result?.variant.showReminderFields).toBe(undefined);
});
});
describe('getUserCohort', () => {
it('should return "AllNonSupporters" when users is not contributor', () => {
const targeting = {
...targetingDefault,
showSupportMessaging: true,
};
const got = getUserCohorts(targeting);
expect(got).toEqual(['AllNonSupporters', 'Everyone']);
});
it('should return "AllExistingSupporters" when user has some form of paid product', () => {
const targeting: EpicTargeting = {
...targetingDefault,
showSupportMessaging: false,
};
const got = getUserCohorts(targeting);
expect(got).toEqual(['AllExistingSupporters', 'Everyone']);
});
});
describe('hasCountryCode filter', () => {
it('should fail when country name is invalid/unknown', () => {
const test: EpicTest = { ...testDefault, hasCountryName: true };
const targeting: EpicTargeting = {
...targetingDefault,
countryCode: 'UK',
};
const got = hasCountryCode.test(test, targeting);
expect(got).toBe(false);
});
it('should pass when country name is valid', () => {
const test: EpicTest = { ...testDefault, hasCountryName: true };
const targeting: EpicTargeting = {
...targetingDefault,
countryCode: 'GB',
};
const got = hasCountryCode.test(test, targeting);
expect(got).toBe(true);
});
it('should pass when country name irrelevant if test doesnt need it', () => {
const test: EpicTest = { ...testDefault, hasCountryName: false };
const targeting: EpicTargeting = {
...targetingDefault,
countryCode: undefined,
};
const got = hasCountryCode.test(test, targeting);
expect(got).toBe(true);
});
});
describe('inCorrectCohort filter', () => {
it('should pass when overlapping cohorts', () => {
const test: EpicTest = {
...testDefault,
userCohort: 'AllNonSupporters',
};
const filter = inCorrectCohort(
['PostAskPauseSingleContributors', 'AllNonSupporters', 'Everyone'],
false,
);
const got = filter.test(test, targetingDefault);
expect(got).toBe(true);
});
it('should fail when no overlapping cohorts', () => {
const test: EpicTest = {
...testDefault,
userCohort: 'AllExistingSupporters',
};
const filter = inCorrectCohort(['AllNonSupporters', 'Everyone'], false);
const got = filter.test(test, targetingDefault);
expect(got).toBe(false);
});
it('should fail for super mode when test targets supporters', () => {
const test: EpicTest = {
...testDefault,
userCohort: 'AllExistingSupporters',
};
const filter = inCorrectCohort(['AllExistingSupporters', 'Everyone'], true);
const got = filter.test(test, targetingDefault);
expect(got).toBe(false);
});
});
describe('matchesCountryGroups filter', () => {
it('should pass if no location set in the test', () => {
const test = {
...testDefault,
locations: [],
regionTargeting: {
targetedCountryGroups: [],
targetedCountryCodes: [],
},
};
const got = isCountryTargetedForEpic.test(test, targetingDefault);
expect(got).toBe(true);
});
it('should fail if location is set but user location unknown', () => {
const test: EpicTest = {
...testDefault,
locations: ['GBPCountries'],
regionTargeting: {
targetedCountryGroups: ['GBPCountries'],
targetedCountryCodes: [],
},
};
const targeting = {
...targetingDefault,
countryCode: undefined,
};
const got = isCountryTargetedForEpic.test(test, targeting);
expect(got).toBe(false);
});
it('should pass if user in country group', () => {
const test: EpicTest = {
...testDefault,
locations: ['EURCountries'],
regionTargeting: {
targetedCountryGroups: ['EURCountries'],
targetedCountryCodes: [],
},
};
const targeting: EpicTargeting = {
...targetingDefault,
countryCode: 'PT',
};
const got = isCountryTargetedForEpic.test(test, targeting);
expect(got).toBe(true);
});
it('should fail if user not in country group', () => {
const test: EpicTest = {
...testDefault,
locations: ['EURCountries'],
regionTargeting: {
targetedCountryGroups: ['EURCountries'],
targetedCountryCodes: [],
},
};
const targeting: EpicTargeting = {
...targetingDefault,
countryCode: 'GB',
};
const got = isCountryTargetedForEpic.test(test, targeting);
expect(got).toBe(false);
});
it('should pass if user is in country group or targeted country', () => {
const test: EpicTest = {
...testDefault,
locations: ['EURCountries'],
regionTargeting: {
targetedCountryGroups: ['EURCountries'],
targetedCountryCodes: ['CA'],
},
};
const targeting: EpicTargeting = {
...targetingDefault,
countryCode: 'DE',
};
const got = isCountryTargetedForEpic.test(test, targeting);
expect(got).toBe(true);
});
it('should pass if user is in targeted country', () => {
const test: EpicTest = {
...testDefault,
locations: [],
regionTargeting: {
targetedCountryGroups: [],
targetedCountryCodes: ['DE'],
},
};
const targeting: EpicTargeting = {
...targetingDefault,
countryCode: 'DE',
};
const got = isCountryTargetedForEpic.test(test, targeting);
expect(got).toBe(true);
});
it('should pass if user is in both country group or targeted country', () => {
const test: EpicTest = {
...testDefault,
locations: ['EURCountries'],
regionTargeting: {
targetedCountryGroups: ['EURCountries'],
targetedCountryCodes: ['DE'],
},
};
const targeting: EpicTargeting = {
...targetingDefault,
countryCode: 'DE',
};
const got = isCountryTargetedForEpic.test(test, targeting);
expect(got).toBe(true);
});
it('should fail if user is not in country group or targeted country', () => {
const test: EpicTest = {
...testDefault,
locations: ['EURCountries'],
regionTargeting: {
targetedCountryGroups: ['EURCountries'],
targetedCountryCodes: ['NZ'],
},
};
const targeting: EpicTargeting = {
...targetingDefault,
countryCode: 'GB',
};
const got = isCountryTargetedForEpic.test(test, targeting);
expect(got).toBe(false);
});
});
describe('withinArticleViewedSettings filter', () => {
const now = new Date('2020-03-31T12:30:00');
it('should fail when below min articles viewed', () => {
const history = [{ week: 18330, count: 2 }];
const targeting: EpicTargeting = {
...targetingDefault,
weeklyArticleHistory: history,
};
const filter = withinArticleViewedSettings(history, now);
const got = filter.test(testDefault, targeting);
expect(got).toBe(false);
});
it('should pass when above (or at) min articles vieweds', () => {
const history = [{ week: 18330, count: 5 }];
const targeting: EpicTargeting = {
...targetingDefault,
weeklyArticleHistory: history,
};
const filter = withinArticleViewedSettings(history, now);
const got = filter.test(testDefault, targeting);
expect(got).toBe(true);
});
it('should pass when below (or at) max articles viewed', () => {
const test: EpicTest = {
...testDefault,
articlesViewedSettings: {
minViews: 5,
maxViews: 20,
periodInWeeks: 52,
},
};
const history = [{ week: 18330, count: 20 }];
const targeting: EpicTargeting = {
...targetingDefault,
weeklyArticleHistory: history,
};
const filter = withinArticleViewedSettings(history, now);
const got = filter.test(test, targeting);
expect(got).toBe(true);
});
it('should fail when above max articles viewed', () => {
const test: EpicTest = {
...testDefault,
articlesViewedSettings: {
minViews: 5,
maxViews: 20,
periodInWeeks: 52,
tagIds: [],
},
};
const history = [{ week: 18330, count: 21 }];
const targeting4: EpicTargeting = {
...targetingDefault,
weeklyArticleHistory: history,
};
const filter = withinArticleViewedSettings(history, now);
const got = filter.test(test, targeting4);
expect(got).toBe(false);
});
it('should pass when no article viewed settings', () => {
const test: EpicTest = {
...testDefault,
articlesViewedSettings: undefined,
};
const history = [{ week: 18330, count: 2500 }];
const targeting: EpicTargeting = {
...targetingDefault,
weeklyArticleHistory: history,
};
const filter = withinArticleViewedSettings(history, now);
const got = filter.test(test, targeting);
expect(got).toBe(true);
});
});
describe('withinArticleViewedSettings filter by tag', () => {
const now = new Date('2020-03-31T12:30:00');
const articlesViewedSettings: ArticlesViewedSettings = {
minViews: 5,
periodInWeeks: 52,
tagIds: ['environment/climate-change'],
};
it('should pass when no articlesViewedByTagSettings', () => {
const history = [{ week: 18330, count: 2500 }];
const targeting: EpicTargeting = {
...targetingDefault,
weeklyArticleHistory: history,
};
const filter = withinArticleViewedSettings(history, now);
const got = filter.test({ ...testDefault }, targeting);
expect(got).toBe(true);
});
it('should fail when below min articles viewed for any tag', () => {
const history = [
{
week: 18330,
count: 5,
tags: {
'environment/climate-change': 1,
'science/science': 2,
},
},
];
const targeting: EpicTargeting = {
...targetingDefault,
weeklyArticleHistory: history,
};
const filter = withinArticleViewedSettings(history, now);
const got = filter.test({ ...testDefault, articlesViewedSettings }, targeting);
expect(got).toBe(false);
});
it('should succeed when above min articles viewed for any tag', () => {
const history = [
{
week: 18330,
count: 5,
tags: {
'environment/climate-change': 5,
'science/science': 2,
},
},
];
const targeting: EpicTargeting = {
...targetingDefault,
weeklyArticleHistory: history,
};
const filter = withinArticleViewedSettings(history, now);
const got = filter.test({ ...testDefault, articlesViewedSettings }, targeting);
expect(got).toBe(true);
});
});
describe('withinMaxViews filter', () => {
const viewLog = [
{
date: new Date('2019-06-11T10:24:00').valueOf(),
testId: 'example-1',
},
{ date: new Date('2019-07-19T10:24:00').valueOf(), testId: 'B' },
{
date: new Date('2019-07-19T10:24:00').valueOf(),
testId: 'example-1',
},
{
date: new Date('2019-07-21T10:24:00').valueOf(),
testId: 'example-1',
},
{
date: new Date('2019-08-11T10:24:00').valueOf(),
testId: 'example-1',
},
];
const now = new Date('2019-08-17T10:24:00');
const filter = withinMaxViews(viewLog, now);
it('should pass when number of views within the limit', () => {
const test = {
...testDefault,
maxViews: {
maxViewsCount: 5,
maxViewsDays: 30,
minDaysBetweenViews: 0,
},
alwaysAsk: false,
};
const got = filter.test(test, targetingDefault);
expect(got).toBe(true);
});
it('should fail when number of views above the limit', () => {
const test = {
...testDefault,
maxViews: {
maxViewsCount: 3,
maxViewsDays: 90,
minDaysBetweenViews: 0,
},
alwaysAsk: false,
};
const got = filter.test(test, targetingDefault);
expect(got).toBe(false);
});
it('should fail when test does not specify rules so default settings are used', () => {
const test = {
...testDefault,
maxViews: undefined,
alwaysAsk: false,
};
const got = filter.test(test, targetingDefault);
expect(got).toBe(false);
});
it('should pass when alwaysAsk is true regardless any view dates', () => {
const test = {
...testDefault,
maxViews: {
maxViewsCount: 3,
maxViewsDays: 90,
minDaysBetweenViews: 0,
},
alwaysAsk: true,
};
const got = filter.test(test, targetingDefault);
expect(got).toBe(true);
});
});
describe('isNotExpired filter', () => {
const now = new Date('2020-01-18T12:30:00');
it('should pass if expiry date today', () => {
const test = {
...testDefault,
expiry: '2020-01-18',
};
const filter = isNotExpired(now);
const got = filter.test(test, targetingDefault);
expect(got).toBe(true);
});
it('should pass if expiry date tomorrow', () => {
const test = {
...testDefault,
expiry: '2020-01-19',
};
const filter = isNotExpired(now);
const got = filter.test(test, targetingDefault);
expect(got).toBe(true);
});
it('should fail if expiry date yesterday', () => {
const test = {
...testDefault,
expiry: '2020-01-17',
};
const filter = isNotExpired(now);
const got = filter.test(test, targetingDefault);
expect(got).toBe(false);
});
});
describe('deviceTypeMatchesFilter', () => {
it('should return true if test.deviceType == undefined', () => {
const result = deviceTypeMatchesFilter('Desktop').test(testDefault, targetingDefault);
expect(result).toBe(true);
});
it('should return true if test.deviceType == All', () => {
const test: EpicTest = {
...testDefault,
deviceType: 'All',
};
const result = deviceTypeMatchesFilter('Desktop').test(test, targetingDefault);
expect(result).toBe(true);
});
it('should return true if test.deviceType == Desktop and user device is desktop', () => {
const test: EpicTest = {
...testDefault,
deviceType: 'Desktop',
};
const result = deviceTypeMatchesFilter('Desktop').test(test, targetingDefault);
expect(result).toBe(true);
});
it.each([['iOS'], ['Android']])(
'should return true if test.deviceType == Mobile and user device is %p',
(userDeviceType: string) => {
const test: EpicTest = {
...testDefault,
deviceType: 'Mobile',
};
const result = deviceTypeMatchesFilter(userDeviceType as UserDeviceType).test(
test,
targetingDefault,
);
expect(result).toBe(true);
},
);
it('should return false if test.deviceType == Mobile and user device is desktop', () => {
const test: EpicTest = {
...testDefault,
deviceType: 'Mobile',
};
const result = deviceTypeMatchesFilter('Desktop').test(test, targetingDefault);
expect(result).toBe(false);
});
it.each([
['Android', 'iOS'],
['iOS', 'Android'],
])(
'should return false if test.deviceType == %p and user device is %p',
(deviceType: string, userDeviceType: string) => {
const test: EpicTest = {
...testDefault,
deviceType: deviceType as DeviceType,
};
const result = deviceTypeMatchesFilter(userDeviceType as UserDeviceType).test(
test,
targetingDefault,
);
expect(result).toBe(false);
},
);
it.each([
['iOS', 'iOS'],
['Android', 'Android'],
])(
'should return true if test.deviceType == %p and user device is %p',
(deviceType: string, userDeviceType: string) => {
const test: EpicTest = {
...testDefault,
deviceType: deviceType as DeviceType,
};
const result = deviceTypeMatchesFilter(userDeviceType as UserDeviceType).test(
test,
targetingDefault,
);
expect(result).toBe(true);
},
);
});
describe('correctSignedInStatusFilter filter', () => {
it('should pass if the test is requiring a user to be signed in and they are signed in', () => {
const test: EpicTest = {
...testDefault,
signedInStatus: 'SignedIn',
};
const targeting = { ...targetingDefault, isSignedIn: true };
const got = correctSignedInStatusFilter.test(test, targeting);
expect(got).toBe(true);
});
it('should fail if the test is requiring a user to be signed in and they are signed out', () => {
const test: EpicTest = {
...testDefault,
signedInStatus: 'SignedIn',
};
const targeting = { ...targetingDefault, isSignedIn: false };
const got = correctSignedInStatusFilter.test(test, targeting);
expect(got).toBe(false);
});
it('should pass if the test is requiring a user to be signed out and they are signed out', () => {
const test: EpicTest = {
...testDefault,
signedInStatus: 'SignedOut',
};
const targeting = { ...targetingDefault, isSignedIn: false };
const got = correctSignedInStatusFilter.test(test, targeting);
expect(got).toBe(true);
});
it('should fail if the test is requiring a user to be signed out and they are signed in', () => {
const test: EpicTest = {
...testDefault,
signedInStatus: 'SignedOut',
};
const targeting = { ...targetingDefault, isSignedIn: true };
const got = correctSignedInStatusFilter.test(test, targeting);
expect(got).toBe(false);
});
it('should pass if the test is requiring a user to be either signed in or signed out and they are signed in', () => {
const test: EpicTest = {
...testDefault,
signedInStatus: 'All',
};
const targeting = { ...targetingDefault, isSignedIn: true };
const got = correctSignedInStatusFilter.test(test, targeting);
expect(got).toBe(true);
});
it('should pass if the test is requiring a user to be either signed in or signed out and they are signed out', () => {
const test: EpicTest = {
...testDefault,
signedInStatus: 'All',
};
const targeting = { ...targetingDefault, isSignedIn: false };
const got = correctSignedInStatusFilter.test(test, targeting);
expect(got).toBe(true);
});
it('should fail if the test is requiring a user to be signed in and isSignedIn returns undefined', () => {
const test: EpicTest = {
...testDefault,
signedInStatus: 'SignedIn',
};
const targeting = { ...targetingDefault, isSignedIn: undefined };
const got = correctSignedInStatusFilter.test(test, targeting);
expect(got).toBe(false);
});
it('should pass if the test is requiring a user to be signed out and isSignedIn returns undefined', () => {
const test: EpicTest = {
...testDefault,
signedInStatus: 'SignedOut',
};
const targeting = { ...targetingDefault, isSignedIn: undefined };
const got = correctSignedInStatusFilter.test(test, targeting);
expect(got).toBe(true);
});
it('should pass if the test is requiring a user to be either signed in or signed out and isSignedIn returns undefined', () => {
const test: EpicTest = {
...testDefault,
signedInStatus: 'All',
};
const targeting = { ...targetingDefault, isSignedIn: undefined };
const got = correctSignedInStatusFilter.test(test, targeting);
expect(got).toBe(true);
});
});