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
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
const ICON32_URL = "http://places.test/favicon-normal32.png";
add_task(async function test_normal() {
let pageURI = NetUtil.newURI("http://example.com/normal");
await PlacesTestUtils.addVisits(pageURI);
await new Promise(resolve => {
PlacesUtils.favicons.setAndFetchFaviconForPage(
pageURI,
SMALLPNG_DATA_URI,
true,
PlacesUtils.favicons.FAVICON_LOAD_NON_PRIVATE,
function() {
PlacesUtils.favicons.getFaviconURLForPage(pageURI, function(
aURI,
aDataLen,
aData,
aMimeType
) {
Assert.ok(aURI.equals(SMALLPNG_DATA_URI));
// Check also the expected data types.
Assert.ok(aDataLen === 0);
Assert.ok(aData.length === 0);
Assert.ok(aMimeType === "");
resolve();
});
},
Services.scriptSecurityManager.getSystemPrincipal()
);
});
});
add_task(async function test_missing() {
let pageURI = NetUtil.newURI("http://example.com/missing");
await new Promise(resolve => {
PlacesUtils.favicons.getFaviconURLForPage(pageURI, function(
aURI,
aDataLen,
aData,
aMimeType
) {
// Check also the expected data types.
Assert.ok(aURI === null);
Assert.ok(aDataLen === 0);
Assert.ok(aData.length === 0);
Assert.ok(aMimeType === "");
resolve();
});
});
});
add_task(async function test_fallback() {
const ROOT_URL = "https://www.example.com/";
const ROOT_ICON_URL = ROOT_URL + "favicon.ico";
const SUBPAGE_URL = ROOT_URL + "/missing";
info("Set icon for the root");
await PlacesTestUtils.addVisits(ROOT_URL);
let data = readFileData(do_get_file("favicon-normal16.png"));
PlacesUtils.favicons.replaceFaviconData(
NetUtil.newURI(ROOT_ICON_URL),
data,
"image/png"
);
await setFaviconForPage(ROOT_URL, ROOT_ICON_URL);
info("check fallback icons");
Assert.equal(
await getFaviconUrlForPage(ROOT_URL),
ROOT_ICON_URL,
"The root should have its favicon"
);
Assert.equal(
await getFaviconUrlForPage(SUBPAGE_URL),
ROOT_ICON_URL,
"The page should fallback to the root icon"
);
info("Now add a proper icon for the page");
await PlacesTestUtils.addVisits(SUBPAGE_URL);
let data32 = readFileData(do_get_file("favicon-normal32.png"));
PlacesUtils.favicons.replaceFaviconData(
NetUtil.newURI(ICON32_URL),
data32,
"image/png"
);
await setFaviconForPage(SUBPAGE_URL, ICON32_URL);
info("check no fallback icons");
Assert.equal(
await getFaviconUrlForPage(ROOT_URL),
ROOT_ICON_URL,
"The root should still have its favicon"
);
Assert.equal(
await getFaviconUrlForPage(SUBPAGE_URL),
ICON32_URL,
"The page should also have its icon"
);
});
|