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
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
const { RemoteSettings } = ChromeUtils.importESModule(
"resource://services-settings/remote-settings.sys.mjs"
);
let { sinon } = ChromeUtils.importESModule(
"resource://testing-common/Sinon.sys.mjs"
);
// Name of the RemoteSettings collection containing the rules.
const COLLECTION_NAME = "cookie-banner-rules-list";
// Name of pref used to import test rules.
const PREF_TEST_RULES = "cookiebanners.listService.testRules";
let rulesInserted = [];
let rulesRemoved = [];
let insertCallback = null;
function genUUID() {
return Services.uuid.generateUUID().number.slice(1, -1);
}
const RULE_A_ORIGINAL = {
id: genUUID(),
click: {
optOut: "#fooOut",
presence: "#foobar",
},
domains: ["example.com"],
cookies: {
optOut: [
{
name: "doOptOut",
value: "true",
isSecure: true,
isSession: false,
},
],
},
};
const RULE_B = {
id: genUUID(),
click: {
optOut: "#fooOutB",
presence: "#foobarB",
},
domains: ["example.org"],
cookies: {
optOut: [
{
name: "doOptOutB",
value: "true",
isSecure: true,
},
],
},
};
const RULE_C = {
id: genUUID(),
click: {
optOut: "#fooOutC",
presence: "#foobarC",
},
domains: ["example.net"],
cookies: {
optIn: [
{
name: "gdpr",
value: "1",
path: "/myPath",
host: "foo.example.net",
},
],
},
};
const RULE_A_UPDATED = {
id: RULE_A_ORIGINAL.id,
click: {
optOut: "#fooOut",
optIn: "#barIn",
presence: "#foobar",
},
domains: ["example.com"],
cookies: {
optOut: [
{
name: "doOptOutUpdated",
value: "true",
isSecure: true,
},
{
name: "hideBanner",
value: "1",
},
],
},
};
const INVALID_RULE_CLICK = {
id: genUUID(),
domains: ["foobar.com"],
click: {
presence: 1,
optIn: "#foo",
},
};
const INVALID_RULE_EMPTY = {};
const RULE_D_GLOBAL = {
id: genUUID(),
click: {
optOut: "#globalOptOutD",
presence: "#globalBannerD",
},
domains: [],
cookies: {},
};
const RULE_E_GLOBAL = {
id: genUUID(),
click: {
optOut: "#globalOptOutE",
presence: "#globalBannerE",
},
domains: [],
cookies: {},
};
const RULE_F_EMPTY_CLICK = {
id: genUUID(),
click: {},
domains: ["example.com"],
cookies: {
optOut: [
{
name: "doOptOut",
value: "true",
isSecure: true,
},
{
name: "hideBanner",
value: "1",
},
],
},
};
// Testing with RemoteSettings requires a profile.
do_get_profile();
add_setup(async () => {
// Enable debug logging.
Services.prefs.setStringPref("cookiebanners.listService.logLevel", "Debug");
// Stub some nsICookieBannerService methods for easy testing.
let removeRule = sinon.stub().callsFake(rule => {
rulesRemoved.push(rule);
});
let insertRule = sinon.stub().callsFake(rule => {
rulesInserted.push(rule);
insertCallback?.();
});
let oldCookieBanners = Services.cookieBanners;
Services.cookieBanners = {
isEnabled: true,
insertRule,
removeRule,
resetRules() {},
resetDomainTelemetryRecord() {},
};
// Remove stubs on test end.
registerCleanupFunction(() => {
Services.cookieBanners = oldCookieBanners;
Services.prefs.clearUserPref("cookiebanners.listService.logLevel");
});
});
/**
* Promise wrapper to listen for Services.cookieBanners.insertRule calls from
* the CookieBannerListService.
* @param {function} checkFn - Function which returns true or false to indicate
* if this is the insert the caller is looking for.
* @returns {Promise} - Promise which resolves when checkFn matches after
* insertRule call.
*/
function waitForInsert(checkFn) {
return new Promise(resolve => {
insertCallback = () => {
if (checkFn()) {
insertCallback = null;
resolve();
}
};
});
}
/**
* Tests that the cookie banner list service imports all rules on init.
*/
add_task(async function test_initial_import() {
info("Initializing RemoteSettings collection " + COLLECTION_NAME);
let db = RemoteSettings(COLLECTION_NAME).db;
db.clear();
await db.create(RULE_A_ORIGINAL);
await db.create(RULE_C);
await db.importChanges({}, Date.now());
Assert.equal(rulesInserted.length, 0, "No inserted rules initially.");
Assert.equal(rulesRemoved.length, 0, "No removed rules initially.");
let insertPromise = waitForInsert(() => rulesInserted.length >= 2);
info(
"Initializing the cookie banner list service which triggers a collection get call"
);
let cookieBannerListService = Cc[
"@mozilla.org/cookie-banner-list-service;1"
].getService(Ci.nsICookieBannerListService);
await cookieBannerListService.initForTest();
await insertPromise;
Assert.equal(rulesInserted.length, 2, "Two inserted rules after init.");
Assert.equal(rulesRemoved.length, 0, "No removed rules after init.");
let ruleA = rulesInserted.find(rule => rule.id == RULE_A_UPDATED.id);
let cookieRuleA = ruleA.cookiesOptOut[0].cookie;
let ruleC = rulesInserted.find(rule => rule.id == RULE_C.id);
let cookieRuleC = ruleC.cookiesOptIn[0].cookie;
Assert.ok(ruleA, "Has rule A.");
Assert.deepEqual(
ruleA.domains,
RULE_A_UPDATED.domains,
"Domains for ruleA should match."
);
// Test the defaults which CookieBannerListService sets when the rule does
// not.
Assert.equal(
cookieRuleA.isSession,
false,
"Cookie for rule A should not be a session cookie."
);
Assert.equal(
cookieRuleA.host,
null,
"Cookie host for rule A should be default."
);
Assert.equal(
cookieRuleA.path,
"/",
"Cookie path for rule A should be default."
);
Assert.ok(ruleC, "Has rule C.");
Assert.deepEqual(
ruleC.domains,
RULE_C.domains,
"Domains for ruleA should match."
);
Assert.equal(
ruleC.cookiesOptIn[0].cookie.isSession,
true,
"Cookie for rule C should should be a session cookie."
);
Assert.equal(
cookieRuleC.host,
"foo.example.net",
"Cookie host for rule C should be custom."
);
Assert.equal(
cookieRuleC.path,
"/myPath",
"Cookie path for rule C should be custom."
);
// Cleanup
cookieBannerListService.shutdown();
rulesInserted = [];
rulesRemoved = [];
db.clear();
await db.importChanges({}, Date.now());
});
/**
* Tests that the cookie banner list service updates rules on sync.
*/
add_task(async function test_remotesettings_sync() {
// Initialize the cookie banner list service so it subscribes to
// RemoteSettings updates.
let cookieBannerListService = Cc[
"@mozilla.org/cookie-banner-list-service;1"
].getService(Ci.nsICookieBannerListService);
await cookieBannerListService.initForTest();
const payload = {
current: [RULE_A_ORIGINAL, RULE_C, RULE_D_GLOBAL],
created: [RULE_B, RULE_E_GLOBAL],
updated: [{ old: RULE_A_ORIGINAL, new: RULE_A_UPDATED }],
deleted: [RULE_C, RULE_D_GLOBAL],
};
Assert.equal(rulesInserted.length, 0, "No inserted rules initially.");
Assert.equal(rulesRemoved.length, 0, "No removed rules initially.");
info("Dispatching artificial RemoteSettings sync event");
await RemoteSettings(COLLECTION_NAME).emit("sync", { data: payload });
Assert.equal(rulesInserted.length, 3, "Three inserted rules after sync.");
Assert.equal(rulesRemoved.length, 2, "Two removed rules after sync.");
let ruleA = rulesInserted.find(rule => rule.id == RULE_A_UPDATED.id);
let ruleB = rulesInserted.find(rule => rule.id == RULE_B.id);
let ruleE = rulesInserted.find(rule => rule.id == RULE_E_GLOBAL.id);
let ruleC = rulesRemoved[0];
info("Testing that service inserted updated version of RULE_A.");
Assert.deepEqual(
ruleA.domains,
RULE_A_UPDATED.domains,
"Domains should match RULE_A."
);
Assert.equal(
ruleA.cookiesOptOut.length,
RULE_A_UPDATED.cookies.optOut.length,
"cookiesOptOut length should match RULE_A."
);
info("Testing opt-out cookies of RULE_A");
for (let i = 0; i < RULE_A_UPDATED.cookies.optOut.length; i += 1) {
Assert.equal(
ruleA.cookiesOptOut[i].cookie.name,
RULE_A_UPDATED.cookies.optOut[i].name,
"cookiesOptOut cookie name should match RULE_A."
);
Assert.equal(
ruleA.cookiesOptOut[i].cookie.value,
RULE_A_UPDATED.cookies.optOut[i].value,
"cookiesOptOut cookie value should match RULE_A."
);
}
Assert.equal(ruleB.id, RULE_B.id, "Should have inserted RULE_B");
Assert.equal(ruleC.id, RULE_C.id, "Should have removed RULE_C");
Assert.equal(
ruleE.id,
RULE_E_GLOBAL.id,
"Should have inserted RULE_E_GLOBAL"
);
// Cleanup
cookieBannerListService.shutdown();
rulesInserted = [];
rulesRemoved = [];
let { db } = RemoteSettings(COLLECTION_NAME);
db.clear();
await db.importChanges({}, Date.now());
});
/**
* Tests the cookie banner rule test pref.
*/
add_task(async function test_rule_test_pref() {
Services.prefs.setStringPref(
PREF_TEST_RULES,
JSON.stringify([RULE_A_ORIGINAL, RULE_B])
);
Assert.equal(rulesInserted.length, 0, "No inserted rules initially.");
Assert.equal(rulesRemoved.length, 0, "No removed rules initially.");
let insertPromise = waitForInsert(() => rulesInserted.length >= 2);
// Initialize the cookie banner list service so it imports test rules and listens for pref changes.
let cookieBannerListService = Cc[
"@mozilla.org/cookie-banner-list-service;1"
].getService(Ci.nsICookieBannerListService);
await cookieBannerListService.initForTest();
info("Wait for rules to be inserted");
await insertPromise;
Assert.equal(rulesInserted.length, 2, "Should have inserted two rules.");
Assert.equal(rulesRemoved.length, 0, "Should not have removed any rules.");
Assert.ok(
rulesInserted.some(rule => rule.id == RULE_A_ORIGINAL.id),
"Should have inserted RULE_A"
);
Assert.ok(
rulesInserted.some(rule => rule.id == RULE_B.id),
"Should have inserted RULE_B"
);
rulesInserted = [];
rulesRemoved = [];
let insertPromise2 = waitForInsert(() => rulesInserted.length >= 3);
info(
"Updating test rules via pref. The list service should detect the pref change."
);
// This includes some invalid rules, they should be skipped.
Services.prefs.setStringPref(
PREF_TEST_RULES,
JSON.stringify([
RULE_A_ORIGINAL,
RULE_B,
INVALID_RULE_EMPTY,
RULE_C,
INVALID_RULE_CLICK,
])
);
info("Wait for rules to be inserted");
await insertPromise2;
Assert.equal(rulesInserted.length, 3, "Should have inserted three rules.");
Assert.equal(rulesRemoved.length, 0, "Should not have removed any rules.");
Assert.ok(
rulesInserted.some(rule => rule.id == RULE_A_ORIGINAL.id),
"Should have inserted RULE_A"
);
Assert.ok(
rulesInserted.some(rule => rule.id == RULE_B.id),
"Should have inserted RULE_B"
);
Assert.ok(
rulesInserted.some(rule => rule.id == RULE_C.id),
"Should have inserted RULE_C"
);
// Cleanup
cookieBannerListService.shutdown();
rulesInserted = [];
rulesRemoved = [];
Services.prefs.clearUserPref(PREF_TEST_RULES);
});
/**
* Tests that runContext string values get properly translated into nsIClickRule::RunContext.
*/
add_task(async function test_runContext_conversion() {
info("Initializing RemoteSettings collection " + COLLECTION_NAME);
let ruleA = {
id: genUUID(),
click: {
presence: "#foobar",
runContext: "child",
},
domains: ["a.com"],
};
let ruleB = {
id: genUUID(),
click: {
presence: "#foobar",
},
domains: ["b.com"],
};
let ruleC = {
id: genUUID(),
click: {
presence: "#foobar",
runContext: "all",
},
domains: ["c.com"],
};
let ruleD = {
id: genUUID(),
click: {
presence: "#foobar",
runContext: "top",
},
domains: ["d.com"],
};
let ruleE = {
id: genUUID(),
click: {
presence: "#foobar",
runContext: "thisIsNotValid",
},
domains: ["e.com"],
};
let db = RemoteSettings(COLLECTION_NAME).db;
db.clear();
await db.create(ruleA);
await db.create(ruleB);
await db.create(ruleC);
await db.create(ruleD);
await db.create(ruleE);
await db.importChanges({}, Date.now());
let insertPromise = waitForInsert(() => rulesInserted.length >= 4);
info(
"Initializing the cookie banner list service which triggers a collection get call"
);
let cookieBannerListService = Cc[
"@mozilla.org/cookie-banner-list-service;1"
].getService(Ci.nsICookieBannerListService);
await cookieBannerListService.initForTest();
await insertPromise;
let resultA = rulesInserted.find(rule =>
rule.domains.includes("a.com")
).clickRule;
let resultB = rulesInserted.find(rule =>
rule.domains.includes("b.com")
).clickRule;
let resultC = rulesInserted.find(rule =>
rule.domains.includes("c.com")
).clickRule;
let resultD = rulesInserted.find(rule =>
rule.domains.includes("d.com")
).clickRule;
let resultE = rulesInserted.find(rule =>
rule.domains.includes("e.com")
).clickRule;
Assert.equal(
resultA.runContext,
Ci.nsIClickRule.RUN_CHILD,
"Rule A should have been imported with the correct runContext"
);
Assert.equal(
resultB.runContext,
Ci.nsIClickRule.RUN_TOP,
"Rule B should have fallen back to default runContext"
);
Assert.equal(
resultC.runContext,
Ci.nsIClickRule.RUN_ALL,
"Rule C should have been imported with the correct runContext"
);
Assert.equal(
resultD.runContext,
Ci.nsIClickRule.RUN_TOP,
"Rule D should have been imported with the correct runContext"
);
Assert.equal(
resultE.runContext,
Ci.nsIClickRule.RUN_TOP,
"Rule E should have fallen back to default runContext"
);
// Cleanup
cookieBannerListService.shutdown();
rulesInserted = [];
rulesRemoved = [];
db.clear();
await db.importChanges({}, Date.now());
});
/**
* Tests empty click rules don't get imported.
*/
add_task(async function test_empty_click_rule() {
info("Initializing RemoteSettings collection " + COLLECTION_NAME);
let db = RemoteSettings(COLLECTION_NAME).db;
db.clear();
await db.create(RULE_F_EMPTY_CLICK);
await db.importChanges({}, Date.now());
let insertPromise = waitForInsert(() => rulesInserted.length >= 1);
info(
"Initializing the cookie banner list service which triggers a collection get call"
);
let cookieBannerListService = Cc[
"@mozilla.org/cookie-banner-list-service;1"
].getService(Ci.nsICookieBannerListService);
await cookieBannerListService.initForTest();
await insertPromise;
let ruleF = rulesInserted.find(rule => rule.id == RULE_F_EMPTY_CLICK.id);
Assert.ok(ruleF, "Has rule F.");
Assert.ok(ruleF.cookiesOptOut?.length, "Should have imported a cookie rule.");
Assert.equal(ruleF.clickRule, null, "Should not have imported a click rule.");
// Cleanup
cookieBannerListService.shutdown();
rulesInserted = [];
rulesRemoved = [];
db.clear();
await db.importChanges({}, Date.now());
});
|