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
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
add_task(async function setup() {
let server = useHttpServer();
server.registerContentType("sjs", "sjs");
await AddonTestUtils.promiseStartupManager();
await Services.search.init();
});
const tests = [
{
name: "Big Icon",
image: "bigIcon.ico",
expected: "data:image/png;base64,",
},
{
name: "Remote Icon",
image: "remoteIcon.ico",
expected: "data:image/x-icon;base64,",
},
{
name: "SVG Icon",
image: "svgIcon.svg",
expected: "data:image/svg+xml;base64,",
},
];
for (const test of tests) {
add_task(async function () {
info(`Testing ${test.name}`);
let promiseEngineAdded = SearchTestUtils.promiseSearchNotification(
SearchUtils.MODIFIED_TYPE.ADDED,
SearchUtils.TOPIC_ENGINE_MODIFIED
);
let promiseEngineChanged = SearchTestUtils.promiseSearchNotification(
SearchUtils.MODIFIED_TYPE.CHANGED,
SearchUtils.TOPIC_ENGINE_MODIFIED
);
const engineData = {
baseURL: gDataUrl,
image: test.image,
name: test.name,
method: "GET",
};
// The easiest way to test adding the icon is via a generated xml, otherwise
// we have to somehow insert the address of the server into it.
SearchTestUtils.promiseNewSearchEngine({
url: `${gDataUrl}engineMaker.sjs?${JSON.stringify(engineData)}`,
});
let engine = await promiseEngineAdded;
await promiseEngineChanged;
Assert.ok(engine.iconURI, "the engine has an icon");
Assert.ok(
engine.iconURI.spec.startsWith(test.expected),
"the icon is saved as an x-icon data url"
);
});
}
|