Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
/* Any copyright is dedicated to the Public Domain.
const ROOT_URI =
const REDIRECT_URI = Services.io.newURI(ROOT_URI + "redirect.sjs");
const TARGET_URI = Services.io.newURI(ROOT_URI + "redirect-target.html");
// Ensure that decay frecency doesn't kick in during tests (as a result
// of idle-daily).
Services.prefs.setCharPref("places.frecency.decayRate", "1.0");
registerCleanupFunction(async function () {
Services.prefs.clearUserPref("places.frecency.decayRate");
await PlacesUtils.history.clear();
});
add_task(async function redirect_check_new_typed_visit() {
// Used to verify the redirect bonus overrides the typed bonus.
PlacesUtils.history.markPageAsTyped(REDIRECT_URI);
let redirectNotified = false;
let visitedPromise = PlacesTestUtils.waitForNotification(
"page-visited",
visits => {
is(visits.length, 1, "Was notified for the right number of visits.");
let { url } = visits[0];
info("Received 'page-visited': " + url);
if (url == REDIRECT_URI.spec) {
redirectNotified = true;
}
return url == TARGET_URI.spec;
}
);
let tab = await BrowserTestUtils.openNewForegroundTab(
gBrowser,
REDIRECT_URI.spec
);
info("Waiting for onVisits");
await visitedPromise;
ok(redirectNotified, "The redirect should have been notified");
await checkRedirect(REDIRECT_URI.spec, TARGET_URI.spec, [], true);
BrowserTestUtils.removeTab(tab);
});
add_task(async function redirect_check_second_typed_visit() {
// A second visit with a typed url.
PlacesUtils.history.markPageAsTyped(REDIRECT_URI);
let redirectNotified = false;
let visitedPromise = PlacesTestUtils.waitForNotification(
"page-visited",
visits => {
is(visits.length, 1, "Was notified for the right number of visits.");
let { url } = visits[0];
info("Received 'page-visited': " + url);
if (url == REDIRECT_URI.spec) {
redirectNotified = true;
}
return url == TARGET_URI.spec;
}
);
let tab = await BrowserTestUtils.openNewForegroundTab(
gBrowser,
REDIRECT_URI.spec
);
info("Waiting for onVisits");
await visitedPromise;
ok(redirectNotified, "The redirect should have been notified");
await checkRedirect(REDIRECT_URI.spec, TARGET_URI.spec, [], true);
BrowserTestUtils.removeTab(tab);
});
add_task(async function redirect_check_subsequent_link_visit() {
// Another visit, but this time as a visited url.
let redirectNotified = false;
let visitedPromise = PlacesTestUtils.waitForNotification(
"page-visited",
visits => {
is(visits.length, 1, "Was notified for the right number of visits.");
let { url } = visits[0];
info("Received 'page-visited': " + url);
if (url == REDIRECT_URI.spec) {
redirectNotified = true;
}
return url == TARGET_URI.spec;
}
);
let tab = await BrowserTestUtils.openNewForegroundTab(
gBrowser,
REDIRECT_URI.spec
);
info("Waiting for onVisits");
await visitedPromise;
ok(redirectNotified, "The redirect should have been notified");
await checkRedirect(REDIRECT_URI.spec, TARGET_URI.spec, [], true);
BrowserTestUtils.removeTab(tab);
});