Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

/* Any copyright is dedicated to the Public Domain.
// Test that favicons are stored.
registerCleanupFunction(async () => {
Services.cache2.clear();
await PlacesTestUtils.clearFavicons();
await PlacesUtils.history.clear();
});
async function test_icon(pageUrl, iconUrl) {
let iconPromise = waitForFaviconMessage(true, iconUrl);
let storedIconPromise = PlacesTestUtils.waitForNotification(
"favicon-changed",
events => events.some(e => e.url == pageUrl)
);
await BrowserTestUtils.withNewTab(pageUrl, async () => {
let { iconURL } = await iconPromise;
Assert.equal(iconURL, iconUrl, "Should have seen the expected icon.");
// Ensure the favicon has been stored.
await storedIconPromise;
await new Promise((resolve, reject) => {
PlacesUtils.favicons.getFaviconURLForPage(
Services.io.newURI(pageUrl),
foundIconURI => {
if (foundIconURI) {
Assert.equal(
foundIconURI.spec,
iconUrl,
"Should have stored the expected icon."
);
resolve();
}
reject();
}
);
});
});
}
add_task(async function test_icon_stored() {
for (let [pageUrl, iconUrl] of [
[
"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAATklEQVRYhe3SIQ4AIBADwf7/04elBAtrVlSduGnSTDJ7cuT1PQJwwO+Hl7sAGAA07gjAAfgIBeAAoHFHAA7ARygABwCNOwJwAD5CATRgAYXh+kypw86nAAAAAElFTkSuQmCC",
],
[
],
]) {
await test_icon(pageUrl, iconUrl);
}
});