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
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
const CONFIG_DEFAULT = [
{
webExtension: { id: "plainengine@search.mozilla.org" },
appliesTo: [{ included: { everywhere: true } }],
},
{
webExtension: { id: "special-engine@search.mozilla.org" },
appliesTo: [{ included: { everywhere: true } }],
},
];
const CONFIG_UPDATED = [
{
webExtension: { id: "plainengine@search.mozilla.org" },
appliesTo: [{ included: { everywhere: true } }],
},
];
async function startup() {
let settingsFileWritten = promiseAfterSettings();
let ss = new SearchService();
await AddonTestUtils.promiseRestartManager();
await ss.init(false);
await settingsFileWritten;
return ss;
}
async function updateConfig(config) {
const settings = await RemoteSettings(SearchUtils.SETTINGS_KEY);
settings.get.restore();
sinon.stub(settings, "get").returns(config);
}
async function visibleEngines(ss) {
return (await ss.getVisibleEngines()).map(e => e._name);
}
add_task(async function setup() {
await SearchTestUtils.useTestEngines("test-extensions", null, CONFIG_DEFAULT);
registerCleanupFunction(AddonTestUtils.promiseShutdownManager);
await AddonTestUtils.promiseStartupManager();
// This is only needed as otherwise events will not be properly notified
// due to https://searchfox.org/mozilla-central/source/toolkit/components/search/SearchUtils.jsm#186
let settingsFileWritten = promiseAfterSettings();
await Services.search.init(false);
Services.search.wrappedJSObject._removeObservers();
await settingsFileWritten;
});
add_task(async function () {
let ss = await startup();
Assert.ok(
(await visibleEngines(ss)).includes("Special"),
"Should have both engines on first startup"
);
let settingsFileWritten = promiseAfterSettings();
let engine = await ss.getEngineByName("Special");
await ss.removeEngine(engine);
await settingsFileWritten;
Assert.ok(
!(await visibleEngines(ss)).includes("Special"),
"Special has been remove, only Plain should remain"
);
ss._removeObservers();
updateConfig(CONFIG_UPDATED);
ss = await startup();
Assert.ok(
!(await visibleEngines(ss)).includes("Special"),
"Updated to new configuration that doesnt have Special"
);
ss._removeObservers();
updateConfig(CONFIG_DEFAULT);
ss = await startup();
Assert.ok(
!(await visibleEngines(ss)).includes("Special"),
"Configuration now includes Special but we should remember its removal"
);
});
|