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
|
"use strict";
const { ExperimentFakes, ExperimentTestUtils } = ChromeUtils.import(
"resource://testing-common/NimbusTestUtils.jsm"
);
add_task(async function test_recipe_fake_validates() {
const recipe = ExperimentFakes.recipe("foo");
Assert.ok(
await ExperimentTestUtils.validateExperiment(recipe),
"should produce a valid experiment recipe"
);
});
add_task(async function test_enrollmentHelper() {
let recipe = ExperimentFakes.recipe("bar", {
branches: [
{
slug: "control",
ratio: 1,
features: [{ featureId: "aboutwelcome", value: {} }],
},
],
});
let manager = ExperimentFakes.manager();
Assert.deepEqual(
recipe.featureIds,
["aboutwelcome"],
"Helper sets correct featureIds"
);
await manager.onStartup();
let {
enrollmentPromise,
doExperimentCleanup,
} = ExperimentFakes.enrollmentHelper(recipe, { manager });
await enrollmentPromise;
Assert.ok(manager.store.getAllActive().length === 1, "Enrolled");
Assert.equal(
manager.store.getAllActive()[0].slug,
recipe.slug,
"Has expected slug"
);
Assert.ok(
Services.prefs.prefHasUserValue("nimbus.syncdatastore.aboutwelcome"),
"Sync pref cache set"
);
await doExperimentCleanup();
Assert.ok(manager.store.getAll().length === 0, "Cleanup done");
Assert.ok(
!Services.prefs.prefHasUserValue("nimbus.syncdatastore.aboutwelcome"),
"Sync pref cache is cleared"
);
});
add_task(async function test_enrollWithFeatureConfig() {
let manager = ExperimentFakes.manager();
await manager.onStartup();
let doExperimentCleanup = await ExperimentFakes.enrollWithFeatureConfig(
{
featureId: "enrollWithFeatureConfig",
value: { enabled: true },
},
{ manager }
);
Assert.ok(
manager.store.hasExperimentForFeature("enrollWithFeatureConfig"),
"Enrolled successfully"
);
await doExperimentCleanup();
Assert.ok(
!manager.store.hasExperimentForFeature("enrollWithFeatureConfig"),
"Unenrolled successfully"
);
});
|