-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgutterSelection.test.ts
More file actions
661 lines (631 loc) · 21.5 KB
/
gutterSelection.test.ts
File metadata and controls
661 lines (631 loc) · 21.5 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
import type {
GutterTargeting,
GutterTest,
GutterTestSelection,
GutterVariant,
} from '../../../shared/types';
import { selectBestTest } from './gutterSelection';
const non_supporter_non_gbp: GutterTest = {
channel: 'GutterLiveblog',
name: 'NonSupporter__NonUK',
priority: 0,
userCohort: 'AllNonSupporters',
status: 'Live',
contextTargeting: {
tagIds: [],
sectionIds: [],
excludedSectionIds: [],
excludedTagIds: [],
},
locations: [
'AUDCountries',
'Canada',
'EURCountries',
'NZDCountries',
'UnitedStates',
'International',
],
regionTargeting: {
targetedCountryGroups: [
'AUDCountries',
'Canada',
'EURCountries',
'NZDCountries',
'UnitedStates',
'International',
],
targetedCountryCodes: [],
},
variants: [
{
name: 'non-supporter_non-uk',
moduleName: 'Gutter',
content: {
image: {
mainUrl: 'https://uploads.guim.co.uk/2025/01/22/not_for_sale.svg',
altText: 'Not for Sale',
},
bodyCopy: [
'The Guardian’s expert news coverage is funded by people like you, not a billionaire owner. Will you help us keep our independent journalism free and open to all today?',
],
cta: {
baseUrl: 'https://support.theguardian.com/contribute',
text: 'Support us',
},
},
},
],
};
const remote_low_priority_nonUK: GutterTest = {
channel: 'GutterLiveblog',
name: 'NonSupporter__NonUK_lower_priority',
priority: 1, // shouldn't appear
userCohort: 'AllNonSupporters',
status: 'Live',
contextTargeting: {
tagIds: [],
sectionIds: [],
excludedSectionIds: [],
excludedTagIds: [],
},
locations: [
'AUDCountries',
'Canada',
'EURCountries',
'NZDCountries',
'UnitedStates',
'International',
],
regionTargeting: {
targetedCountryGroups: [
'AUDCountries',
'Canada',
'EURCountries',
'NZDCountries',
'UnitedStates',
'International',
],
targetedCountryCodes: [],
},
variants: [
{
name: 'non-supporter_non-uk_low-priority',
moduleName: 'Gutter',
content: {
image: {
mainUrl: 'https://uploads.guim.co.uk/2025/01/22/not_for_sale.svg',
altText: 'Not for Sale',
},
bodyCopy: [
'The Guardian’s expert news coverage is funded by people like you, not a billionaire owner. Will you help us keep our independent journalism free and open to all today?',
],
cta: {
baseUrl: 'https://support.theguardian.com/contribute',
text: 'Support us',
},
},
},
],
};
const non_supporter_gbp: GutterTest = {
channel: 'GutterLiveblog',
name: 'nonSupporter__UK',
priority: 2,
userCohort: 'AllNonSupporters',
status: 'Live',
contextTargeting: {
tagIds: [],
sectionIds: [],
excludedSectionIds: [],
excludedTagIds: [],
},
locations: ['GBPCountries'],
regionTargeting: {
targetedCountryGroups: ['GBPCountries'],
targetedCountryCodes: [],
},
variants: [
{
name: 'non-supporter-gbp',
moduleName: 'Gutter',
content: {
image: {
mainUrl: 'https://uploads.guim.co.uk/2025/01/22/not_for_sale.svg',
altText: 'Not for Sale',
},
bodyCopy: [
'The Guardian’s expert news coverage is funded by people like you, not a billionaire owner. Will you help us keep our independent journalism free and open to all today?',
],
cta: {
baseUrl: 'https://support.theguardian.com/contribute',
text: 'Support us',
},
},
},
],
};
const no_locations_set: GutterTest = {
channel: 'GutterLiveblog',
name: 'LocationsArrayEmpty',
priority: 3,
userCohort: 'AllNonSupporters',
signedInStatus: 'All',
status: 'Live',
contextTargeting: {
tagIds: [],
sectionIds: [],
excludedSectionIds: [],
excludedTagIds: [],
},
locations: [],
regionTargeting: {
targetedCountryGroups: [],
targetedCountryCodes: [],
},
variants: [
{
name: 'remote',
moduleName: 'Gutter',
content: {
image: {
mainUrl: 'https://uploads.guim.co.uk/2025/01/22/not_for_sale.svg',
altText: 'Not for Sale',
},
bodyCopy: [
'The Guardian’s expert news coverage is funded by people like you, not a billionaire owner. Will you help us keep our independent journalism free and open to all today?',
],
cta: {
baseUrl: 'https://support.theguardian.com/contribute',
text: 'Support us',
},
},
},
],
};
const tag_included: GutterTest = {
channel: 'GutterLiveblog',
name: 'included_tag',
priority: 4,
userCohort: 'Everyone',
status: 'Live',
signedInStatus: 'All',
contextTargeting: {
tagIds: ['politics/politics'],
sectionIds: [],
excludedTagIds: [],
excludedSectionIds: [],
},
locations: [
'AUDCountries',
'Canada',
'EURCountries',
'GBPCountries',
'NZDCountries',
'UnitedStates',
'International',
],
regionTargeting: {
targetedCountryGroups: [
'AUDCountries',
'Canada',
'EURCountries',
'GBPCountries',
'NZDCountries',
'UnitedStates',
'International',
],
targetedCountryCodes: [],
},
variants: [
{
name: 'included_tag',
moduleName: 'Gutter',
content: {
image: {
mainUrl: 'https://uploads.guim.co.uk/2025/01/22/not_for_sale.svg',
altText: 'Not for Sale',
},
bodyCopy: [
'The Guardian’s expert news coverage is funded by people like you, not a billionaire owner. Will you help us keep our independent journalism free and open to all today?',
],
cta: {
baseUrl: 'https://support.theguardian.com/contribute',
text: 'Support us',
},
},
},
],
};
const supporter_all: GutterTest = {
channel: 'GutterLiveblog',
name: 'gutter-supporter',
priority: 5,
userCohort: 'AllExistingSupporters',
status: 'Live',
contextTargeting: {
tagIds: [],
sectionIds: [],
excludedSectionIds: [],
excludedTagIds: [],
},
locations: [
'AUDCountries',
'Canada',
'EURCountries',
'GBPCountries',
'NZDCountries',
'UnitedStates',
'International',
],
regionTargeting: {
targetedCountryGroups: [
'AUDCountries',
'Canada',
'EURCountries',
'GBPCountries',
'NZDCountries',
'UnitedStates',
'International',
],
targetedCountryCodes: [],
},
variants: [
{
name: 'supporter',
moduleName: 'Gutter',
content: {
image: {
mainUrl: 'https://uploads.guim.co.uk/2025/01/22/not_for_sale.svg',
altText: 'Not for Sale',
},
bodyCopy: [
'The Guardian’s expert news coverage is funded by people like you, not a billionaire owner. Will you help us keep our independent journalism free and open to all today?',
],
cta: {
baseUrl: 'https://support.theguardian.com/contribute',
text: 'Support us',
},
},
},
],
};
const tag_excluded: GutterTest = {
channel: 'GutterLiveblog',
name: 'excluded_tag',
priority: 6,
userCohort: 'AllExistingSupporters',
status: 'Live',
signedInStatus: 'SignedIn',
contextTargeting: {
tagIds: [],
sectionIds: [],
excludedSectionIds: [],
excludedTagIds: ['sport'],
},
locations: [
'AUDCountries',
'Canada',
'EURCountries',
'GBPCountries',
'NZDCountries',
'UnitedStates',
'International',
],
regionTargeting: {
targetedCountryGroups: [
'AUDCountries',
'Canada',
'EURCountries',
'GBPCountries',
'NZDCountries',
'UnitedStates',
'International',
],
targetedCountryCodes: [],
},
variants: [
{
name: 'excluded_tag',
moduleName: 'Gutter',
content: {
image: {
mainUrl: 'https://uploads.guim.co.uk/2025/01/22/not_for_sale.svg',
altText: 'Not for Sale',
},
bodyCopy: [
'The Guardian’s expert news coverage is funded by people like you, not a billionaire owner. Will you help us keep our independent journalism free and open to all today?',
],
cta: {
baseUrl: 'https://support.theguardian.com/contribute',
text: 'Support us',
},
},
},
],
};
const evergreen: GutterTest = {
channel: 'GutterLiveblog',
name: 'evergreen',
priority: 7,
userCohort: 'Everyone',
status: 'Live',
signedInStatus: 'All',
contextTargeting: {
tagIds: [],
sectionIds: [],
excludedTagIds: [],
excludedSectionIds: [],
},
locations: [],
regionTargeting: {
targetedCountryGroups: [],
targetedCountryCodes: [],
},
variants: [
{
name: 'evergreen_variant',
moduleName: 'Gutter',
content: {
image: {
mainUrl: 'https://uploads.guim.co.uk/2025/01/22/not_for_sale.svg',
altText: 'Not for Sale',
},
bodyCopy: [
'The Guardian’s expert news coverage is funded by people like you, not a billionaire owner. Will you help us keep our independent journalism free and open to all today?',
],
cta: {
baseUrl: 'https://support.theguardian.com/contribute',
text: 'Support us',
},
},
},
],
};
// Handle null returns - tests will still fail if presented with this but should give better indication of why test failed
interface NullReturn {
name: string;
}
const testHasReturnedNull: NullReturn = {
name: 'test returned is null',
};
const variantHasReturnedNull: NullReturn = {
name: 'variant returned is null',
};
// NOTE: the order of the tests in these two arrays are important and mimic the order of tests in RRCP
const mockTests: GutterTest[] = [
non_supporter_non_gbp,
remote_low_priority_nonUK,
non_supporter_gbp,
no_locations_set,
tag_included,
supporter_all,
tag_excluded,
].sort((a, b) => (a.priority > b.priority ? 1 : -1));
const mockTestEmptyLocations: GutterTest[] = [no_locations_set, non_supporter_gbp, evergreen];
const userDeviceType = 'Desktop';
describe('selectBestTest', () => {
it('It should return a non-UK non-supporter gutter test', () => {
// Mock targeting data: not a supporter, not in UK
const mockTargetingObject_1: GutterTargeting = {
showSupportMessaging: true,
countryCode: 'ck', // Cook Islands (New Zealand dollar region)
mvtId: 900263,
isSignedIn: true,
tagIds: [],
};
const result_1: GutterTestSelection | null = selectBestTest(
mockTargetingObject_1,
userDeviceType,
mockTests,
);
const result_1_test: GutterTest | NullReturn = result_1
? result_1.test
: testHasReturnedNull;
const result_1_variant: GutterVariant | NullReturn = result_1
? result_1.variant
: variantHasReturnedNull;
expect(result_1).toBeDefined();
expect(result_1).toHaveProperty('test');
expect(result_1).toHaveProperty('variant');
expect(result_1_test).toHaveProperty('name');
expect(result_1_test.name).toBe('NonSupporter__NonUK');
expect(result_1_variant).toHaveProperty('name');
expect(result_1_variant.name).toBe('non-supporter_non-uk');
});
it('It should return a non-UK supporter gutter test', () => {
// Mock targeting data: is a supporter, not in UK
const mockTargetingObject_2: GutterTargeting = {
showSupportMessaging: false,
countryCode: 'ck',
mvtId: 900263,
isSignedIn: true,
tagIds: [],
};
const result_2: GutterTestSelection | null = selectBestTest(
mockTargetingObject_2,
userDeviceType,
mockTests,
);
const result_2_test: GutterTest | NullReturn = result_2
? result_2.test
: testHasReturnedNull;
const result_2_variant: GutterVariant | NullReturn = result_2
? result_2.variant
: variantHasReturnedNull;
expect(result_2).toBeDefined();
expect(result_2).toHaveProperty('test');
expect(result_2).toHaveProperty('variant');
expect(result_2_test).toHaveProperty('name');
expect(result_2_test.name).toBe('gutter-supporter');
expect(result_2_variant).toHaveProperty('name');
expect(result_2_variant.name).toBe('supporter');
});
it('It should return a UK-based non-supporter gutter test', () => {
// Mock targeting data: not a supporter, is in UK
const mockTargetingObject_3: GutterTargeting = {
showSupportMessaging: true,
countryCode: 'im', // Isle of Man (UK sterling region)
mvtId: 900263,
isSignedIn: true,
tagIds: [],
};
const result_3: GutterTestSelection | null = selectBestTest(
mockTargetingObject_3,
userDeviceType,
mockTests,
);
const result_3_test: GutterTest | NullReturn = result_3
? result_3.test
: testHasReturnedNull;
const result_3_variant: GutterVariant | NullReturn = result_3
? result_3.variant
: variantHasReturnedNull;
expect(result_3).toBeDefined();
expect(result_3).toHaveProperty('test');
expect(result_3).toHaveProperty('variant');
expect(result_3_test).toHaveProperty('name');
expect(result_3_test.name).toBe('nonSupporter__UK');
expect(result_3_variant).toHaveProperty('name');
expect(result_3_variant.name).toBe('non-supporter-gbp');
});
it('It should return a UK-based supporter gutter test', () => {
// Mock targeting data: is a supporter, is in UK
const mockTargetingObject_4: GutterTargeting = {
showSupportMessaging: false,
countryCode: 'us',
mvtId: 900263,
isSignedIn: true,
tagIds: [],
};
const result_4: GutterTestSelection | null = selectBestTest(
mockTargetingObject_4,
userDeviceType,
mockTests,
);
const result_4_test: GutterTest | NullReturn = result_4
? result_4.test
: testHasReturnedNull;
const result_4_variant: GutterVariant | NullReturn = result_4
? result_4.variant
: variantHasReturnedNull;
expect(result_4).toBeDefined();
expect(result_4).toHaveProperty('test');
expect(result_4).toHaveProperty('variant');
expect(result_4_test).toHaveProperty('name');
expect(result_4_test.name).toBe('gutter-supporter');
expect(result_4_variant).toHaveProperty('name');
expect(result_4_variant.name).toBe('supporter');
});
it('All non-supporters should return a global locations test if encountered before a test that includes their region', () => {
// Mock targeting data: not a supporter, is in UK, LocationsArrayEmpty test set up in mockTestEmptyLocations before locale targeted test.
const mockTargetingObject_5: GutterTargeting = {
showSupportMessaging: true,
countryCode: 'im', // Isle of Man (UK sterling region)
mvtId: 900263,
isSignedIn: true,
tagIds: [],
};
const result_5: GutterTestSelection | null = selectBestTest(
mockTargetingObject_5,
userDeviceType,
mockTestEmptyLocations,
);
const result_5_test: GutterTest | NullReturn = result_5
? result_5.test
: testHasReturnedNull;
const result_5_variant: GutterVariant | NullReturn = result_5
? result_5.variant
: variantHasReturnedNull;
expect(result_5).toBeDefined();
expect(result_5).toHaveProperty('test');
expect(result_5).toHaveProperty('variant');
expect(result_5_test).toHaveProperty('name');
expect(result_5_test.name).toBe('LocationsArrayEmpty');
expect(result_5_variant).toHaveProperty('name');
expect(result_5_variant.name).toBe('remote');
});
it('Page context with matching excluded tag should not return excluded_tag test', () => {
// Mock targeting data: not a supporter, is in UK, has an excluded tag
const mockTargetingObject_6: GutterTargeting = {
showSupportMessaging: true,
countryCode: 'im', // Isle of Man (UK sterling region)
mvtId: 900263,
isSignedIn: true,
tagIds: ['sport'],
};
const result_6: GutterTestSelection | null = selectBestTest(
mockTargetingObject_6,
userDeviceType,
mockTests,
);
const result_6_test: GutterTest | NullReturn = result_6
? result_6.test
: testHasReturnedNull;
const result_6_variant: GutterVariant | NullReturn = result_6
? result_6.variant
: variantHasReturnedNull;
expect(result_6).toBeDefined();
expect(result_6).toHaveProperty('test');
expect(result_6).toHaveProperty('variant');
expect(result_6_test).toHaveProperty('name');
expect(result_6_test.name).not.toBe('excluded_tag');
expect(result_6_variant).toHaveProperty('name');
expect(result_6_variant.name).not.toBe('excluded_tag');
});
it('Page context with matching tag should return included_tag test', () => {
// Mock targeting data: is a supporter, is in EU
const mockTargetingObject_7: GutterTargeting = {
showSupportMessaging: false, // i.e., is a Supporter
countryCode: 'fr', // france - EURCountries
mvtId: 900263,
isSignedIn: true,
tagIds: ['politics/politics'],
};
const result_7: GutterTestSelection | null = selectBestTest(
mockTargetingObject_7,
userDeviceType,
mockTests,
);
const result_7_test: GutterTest | NullReturn = result_7
? result_7.test
: testHasReturnedNull;
const result_7_variant: GutterVariant | NullReturn = result_7
? result_7.variant
: variantHasReturnedNull;
expect(result_7).toBeDefined();
expect(result_7).toHaveProperty('test');
expect(result_7).toHaveProperty('variant');
expect(result_7_test).toHaveProperty('name');
expect(result_7_test.name).toBe('included_tag');
expect(result_7_variant).toHaveProperty('name');
expect(result_7_variant.name).toBe('included_tag');
});
it('Backup evergreen test, variant if nothing else matches', () => {
// A test that picks up an evergreen result
const mockTargetingObject_8: GutterTargeting = {
showSupportMessaging: false, // i.e., is a Supporter
countryCode: 'fr', // france - EURCountries
mvtId: 900263,
isSignedIn: false,
tagIds: [],
};
const result_8: GutterTestSelection | null = selectBestTest(
mockTargetingObject_8,
userDeviceType,
mockTestEmptyLocations,
);
const result_8_test: GutterTest | NullReturn = result_8
? result_8.test
: testHasReturnedNull;
const result_8_variant: GutterVariant | NullReturn = result_8
? result_8.variant
: variantHasReturnedNull;
expect(result_8).toBeDefined();
expect(result_8).toHaveProperty('test');
expect(result_8).toHaveProperty('variant');
expect(result_8_test).toHaveProperty('name');
expect(result_8_test.name).toBe('evergreen');
expect(result_8_variant).toHaveProperty('name');
expect(result_8_variant.name).toBe('evergreen_variant');
});
});