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
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
let engine;
let appDefaultEngine;
add_setup(async function () {
await AddonTestUtils.promiseStartupManager();
useHttpServer();
Services.prefs.setBoolPref(
SearchUtils.BROWSER_SEARCH_PREF + "separatePrivateDefault.ui.enabled",
true
);
Services.prefs.setBoolPref(
SearchUtils.BROWSER_SEARCH_PREF + "separatePrivateDefault",
true
);
appDefaultEngine = await Services.search.getDefault();
});
add_task(async function test_addingEngine_opensearch() {
const addEngineObserver = new SearchObserver(
[
// engine-added
// Engine was added to the store by the search service.
SearchUtils.MODIFIED_TYPE.ADDED,
],
SearchUtils.MODIFIED_TYPE.ADDED
);
await SearchTestUtils.promiseNewSearchEngine({
url: gDataUrl + "engine.xml",
});
engine = await addEngineObserver.promise;
let retrievedEngine = Services.search.getEngineByName("Test search engine");
Assert.equal(engine, retrievedEngine);
});
add_task(async function test_addingEngine_webExtension() {
const addEngineObserver = new SearchObserver(
[
// engine-added
// Engine was added to the store by the search service.
SearchUtils.MODIFIED_TYPE.ADDED,
],
SearchUtils.MODIFIED_TYPE.ADDED
);
await SearchTestUtils.installSearchExtension({
name: "Example Engine",
});
let webExtensionEngine = await addEngineObserver.promise;
let retrievedEngine = Services.search.getEngineByName("Example Engine");
Assert.equal(webExtensionEngine, retrievedEngine);
});
async function defaultNotificationTest(
setPrivateDefault,
expectNotificationForPrivate
) {
const defaultObserver = new SearchObserver([
expectNotificationForPrivate
? SearchUtils.MODIFIED_TYPE.DEFAULT_PRIVATE
: SearchUtils.MODIFIED_TYPE.DEFAULT,
]);
Services.search[
setPrivateDefault ? "defaultPrivateEngine" : "defaultEngine"
] = engine;
await defaultObserver.promise;
}
add_task(async function test_defaultEngine_notifications() {
await defaultNotificationTest(false, false);
});
add_task(async function test_defaultPrivateEngine_notifications() {
await defaultNotificationTest(true, true);
});
add_task(
async function test_defaultPrivateEngine_notifications_when_not_enabled() {
await Services.search.setDefault(
appDefaultEngine,
Ci.nsISearchService.CHANGE_REASON_UNKNOWN
);
Services.prefs.setBoolPref(
SearchUtils.BROWSER_SEARCH_PREF + "separatePrivateDefault",
false
);
await defaultNotificationTest(true, true);
}
);
add_task(async function test_removeEngine() {
await Services.search.setDefault(
engine,
Ci.nsISearchService.CHANGE_REASON_UNKNOWN
);
await Services.search.setDefaultPrivate(
engine,
Ci.nsISearchService.CHANGE_REASON_UNKNOWN
);
const removedObserver = new SearchObserver([
SearchUtils.MODIFIED_TYPE.DEFAULT,
SearchUtils.MODIFIED_TYPE.DEFAULT_PRIVATE,
SearchUtils.MODIFIED_TYPE.REMOVED,
]);
await Services.search.removeEngine(engine);
await removedObserver;
});
|