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
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
const { Preferences } = ChromeUtils.importESModule(
"resource://gre/modules/Preferences.sys.mjs"
);
const { AddonStudies } = ChromeUtils.import(
"resource://normandy/lib/AddonStudies.jsm"
);
const { NormandyUtils } = ChromeUtils.import(
"resource://normandy/lib/NormandyUtils.jsm"
);
const { RecipeRunner } = ChromeUtils.import(
"resource://normandy/lib/RecipeRunner.jsm"
);
const { sinon } = ChromeUtils.import("resource://testing-common/Sinon.jsm");
const FIXTURE_ADDON_ID = "normandydriver-a@example.com";
const UUID_REGEX = /[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/i;
var EXPORTED_SYMBOLS = ["NormandyTestUtils"];
// Factory IDs
let _addonStudyFactoryId = 0;
let _preferenceStudyFactoryId = 0;
let _preferenceRolloutFactoryId = 0;
let testGlobals = {};
const preferenceBranches = {
user: Preferences,
default: new Preferences({ defaultBranch: true }),
};
const NormandyTestUtils = {
init({ add_task, Assert } = {}) {
testGlobals.add_task = add_task;
testGlobals.Assert = Assert;
},
factories: {
addonStudyFactory(attrs = {}) {
for (const key of ["name", "description"]) {
if (attrs && attrs[key]) {
throw new Error(
`${key} is no longer a valid key for addon studies, please update to v2 study schema`
);
}
}
// Generate a slug from userFacingName
let recipeId = _addonStudyFactoryId++;
let { userFacingName = `Test study ${recipeId}`, slug } = attrs;
delete attrs.slug;
if (userFacingName && !slug) {
slug = userFacingName.replace(" ", "-").toLowerCase();
}
return Object.assign(
{
recipeId,
slug,
userFacingName: "Test study",
userFacingDescription: "test description",
branch: AddonStudies.NO_BRANCHES_MARKER,
active: true,
addonId: FIXTURE_ADDON_ID,
addonUrl: "http://test/addon.xpi",
addonVersion: "1.0.0",
studyStartDate: new Date(),
studyEndDate: null,
extensionApiId: 1,
extensionHash:
"ade1c14196ec4fe0aa0a6ba40ac433d7c8d1ec985581a8a94d43dc58991b5171",
extensionHashAlgorithm: "sha256",
enrollmentId: NormandyUtils.generateUuid(),
temporaryErrorDeadline: null,
},
attrs
);
},
branchedAddonStudyFactory(attrs = {}) {
return NormandyTestUtils.factories.addonStudyFactory(
Object.assign(
{
branch: "a",
},
attrs
)
);
},
preferenceStudyFactory(attrs = {}) {
const defaultPref = {
"test.study": {},
};
const defaultPrefInfo = {
preferenceValue: false,
preferenceType: "boolean",
previousPreferenceValue: null,
preferenceBranchType: "default",
overridden: false,
};
const preferences = {};
for (const [prefName, prefInfo] of Object.entries(
attrs.preferences || defaultPref
)) {
preferences[prefName] = { ...defaultPrefInfo, ...prefInfo };
}
// Generate a slug from userFacingName
let {
userFacingName = `Test study ${_preferenceStudyFactoryId++}`,
slug,
} = attrs;
delete attrs.slug;
if (userFacingName && !slug) {
slug = userFacingName.replace(" ", "-").toLowerCase();
}
return Object.assign(
{
userFacingName,
userFacingDescription: `${userFacingName} description`,
slug,
branch: "control",
expired: false,
lastSeen: new Date().toJSON(),
experimentType: "exp",
enrollmentId: NormandyUtils.generateUuid(),
actionName: "PreferenceExperimentAction",
},
attrs,
{
preferences,
}
);
},
preferenceRolloutFactory(attrs = {}) {
const defaultPrefInfo = {
preferenceName: "test.rollout.{}",
value: true,
previousValue: false,
};
const preferences = (attrs.preferences ?? [{}]).map((override, idx) => ({
...defaultPrefInfo,
preferenceName: defaultPrefInfo.preferenceName.replace(
"{}",
(idx + 1).toString()
),
...override,
}));
return Object.assign(
{
slug: `test-rollout-${_preferenceRolloutFactoryId++}`,
state: "active",
enrollmentId: NormandyUtils.generateUuid(),
},
attrs,
{
preferences,
}
);
},
},
/**
* Combine a list of functions right to left. The rightmost function is passed
* to the preceding function as the argument; the result of this is passed to
* the next function until all are exhausted. For example, this:
*
* decorate(func1, func2, func3);
*
* is equivalent to this:
*
* func1(func2(func3));
*/
decorate(...args) {
const funcs = Array.from(args);
let decorated = funcs.pop();
const origName = decorated.name;
funcs.reverse();
for (const func of funcs) {
decorated = func(decorated);
}
Object.defineProperty(decorated, "name", { value: origName });
return decorated;
},
/**
* Wrapper around add_task for declaring tests that use several with-style
* wrappers. The last argument should be your test function; all other arguments
* should be functions that accept a single test function argument.
*
* The arguments are combined using decorate and passed to add_task as a single
* test function.
*
* @param {[Function]} args
* @example
* decorate_task(
* withMockPreferences(),
* withMockNormandyApi(),
* async function myTest(mockPreferences, mockApi) {
* // Do a test
* }
* );
*/
decorate_task(...args) {
return testGlobals.add_task(NormandyTestUtils.decorate(...args));
},
isUuid(s) {
return UUID_REGEX.test(s);
},
withMockRecipeCollection(recipes = []) {
return function wrapper(testFunc) {
return async function inner(args) {
let recipeIds = new Set();
for (const recipe of recipes) {
if (!recipe.id || recipeIds.has(recipe.id)) {
throw new Error(
"To use withMockRecipeCollection each recipe must have a unique ID"
);
}
recipeIds.add(recipe.id);
}
let db = await RecipeRunner._remoteSettingsClientForTesting.db;
await db.clear();
const fakeSig = { signature: "abc" };
for (const recipe of recipes) {
await db.create({
id: `recipe-${recipe.id}`,
recipe,
signature: fakeSig,
});
}
// last modified needs to be some positive integer
let lastModified = await db.getLastModified();
await db.importChanges({}, lastModified + 1);
const mockRecipeCollection = {
async addRecipes(newRecipes) {
for (const recipe of newRecipes) {
if (!recipe.id || recipeIds.has(recipe)) {
throw new Error(
"To use withMockRecipeCollection each recipe must have a unique ID"
);
}
}
db = await RecipeRunner._remoteSettingsClientForTesting.db;
for (const recipe of newRecipes) {
recipeIds.add(recipe.id);
await db.create({
id: `recipe-${recipe.id}`,
recipe,
signature: fakeSig,
});
}
lastModified = (await db.getLastModified()) || 0;
await db.importChanges({}, lastModified + 1);
},
};
try {
await testFunc({ ...args, mockRecipeCollection });
} finally {
db = await RecipeRunner._remoteSettingsClientForTesting.db;
await db.clear();
lastModified = await db.getLastModified();
await db.importChanges({}, lastModified + 1);
}
};
};
},
MockPreferences: class {
constructor() {
this.oldValues = { user: {}, default: {} };
}
set(name, value, branch = "user") {
this.preserve(name, branch);
preferenceBranches[branch].set(name, value);
}
preserve(name, branch) {
if (!(name in this.oldValues[branch])) {
this.oldValues[branch][name] = preferenceBranches[branch].get(
name,
undefined
);
}
}
cleanup() {
for (const [branchName, values] of Object.entries(this.oldValues)) {
const preferenceBranch = preferenceBranches[branchName];
for (const [name, value] of Object.entries(values)) {
if (value !== undefined) {
preferenceBranch.set(name, value);
} else {
preferenceBranch.reset(name);
}
}
}
}
},
withMockPreferences() {
return function(testFunction) {
return async function inner(args) {
const mockPreferences = new NormandyTestUtils.MockPreferences();
try {
await testFunction({ ...args, mockPreferences });
} finally {
mockPreferences.cleanup();
}
};
};
},
withStub(object, method, { returnValue, as = `${method}Stub` } = {}) {
return function wrapper(testFunction) {
return async function wrappedTestFunction(args) {
const stub = sinon.stub(object, method);
if (returnValue) {
stub.returns(returnValue);
}
try {
await testFunction({ ...args, [as]: stub });
} finally {
stub.restore();
}
};
};
},
withSpy(object, method, { as = `${method}Spy` } = {}) {
return function wrapper(testFunction) {
return async function wrappedTestFunction(args) {
const spy = sinon.spy(object, method);
try {
await testFunction({ ...args, [as]: spy });
} finally {
spy.restore();
}
};
};
},
/**
* Creates an nsIConsoleListener that records all console messages. The
* listener will be provided in the options argument to the test as
* `consoleSpy`, and will have methods to assert that expected messages were
* received. */
withConsoleSpy() {
return function(testFunction) {
return async function wrappedTestFunction(args) {
const consoleSpy = new TestConsoleListener();
console.log("Starting to track console messages");
Services.console.registerListener(consoleSpy);
try {
await testFunction({ ...args, consoleSpy });
} finally {
Services.console.unregisterListener(consoleSpy);
console.log("Stopped monitoring console messages");
}
};
};
},
};
class TestConsoleListener {
constructor() {
this.messages = [];
}
/**
* Check that every item listed has been received on the console. Items can
* be strings or regexes.
*
* Strings must be exact matches. Regexes must match according to
* `RegExp::test`, which is to say they are not automatically bound to the
* start or end of the message. If this is desired, include `^` and/or `$` in
* your expression.
*
* @param {String|RegExp} expectedMessages
* @param {String} [assertMessage] A message to include in the assertion message.
* @return {boolean}
*/
assertAtLeast(
expectedMessages,
assertMessage = "Console should contain the expected messages."
) {
let expectedSet = new Set(expectedMessages);
for (let { message } of this.messages) {
let found = false;
for (let expected of expectedSet) {
if (expected.test && expected.test(message)) {
found = true;
} else if (expected === message) {
found = true;
}
if (found) {
expectedSet.delete(expected);
break;
}
}
}
if (expectedSet.size) {
let remaining = Array.from(expectedSet);
let errorMessageParts = [];
if (assertMessage) {
errorMessageParts.push(assertMessage);
}
errorMessageParts.push(`"${remaining[0]}"`);
if (remaining.length > 1) {
errorMessageParts.push(`and ${remaining.length - 1} more log messages`);
}
errorMessageParts.push("expected in the console but not found.");
testGlobals.Assert.equal(
expectedSet.size,
0,
errorMessageParts.join(" ")
);
} else {
testGlobals.Assert.equal(expectedSet.size, 0, assertMessage);
}
}
// XPCOM
get QueryInterface() {
return ChromeUtils.generateQI(["nsIConsoleListener"]);
}
// nsIObserver
/**
* Takes all script error messages that do not have an exception attached,
* and emits a "Log.entryAdded" event.
*
* @param {nsIConsoleMessage} message
* Message originating from the nsIConsoleService.
*/
observe(message) {
this.messages.push(message);
}
}
|