forked from mirrors/gecko-dev
MozReview-Commit-ID: F6xUXCgdRE4 --HG-- extra : rebase_source : 65de1b0aba412d9044b5196115f74276caa058f2
84 lines
2.9 KiB
JavaScript
84 lines
2.9 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
/* eslint-disable mozilla/no-arbitrary-setTimeout */
|
|
|
|
"use strict";
|
|
|
|
// Service workers can't be loaded from chrome://,
|
|
// but http:// is ok with dom.serviceWorkers.testing.enabled turned on.
|
|
const SERVICE_WORKER = URL_ROOT + "service-workers/empty-sw.js";
|
|
const TAB_URL = URL_ROOT + "service-workers/empty-sw.html";
|
|
|
|
const SW_TIMEOUT = 1000;
|
|
|
|
add_task(async function() {
|
|
await enableServiceWorkerDebugging();
|
|
await pushPref("dom.serviceWorkers.idle_timeout", SW_TIMEOUT);
|
|
await pushPref("dom.serviceWorkers.idle_extended_timeout", SW_TIMEOUT);
|
|
|
|
const { tab, document } = await openAboutDebugging("workers");
|
|
|
|
const serviceWorkersElement = getServiceWorkerList(document);
|
|
|
|
const swTab = await addTab(TAB_URL);
|
|
|
|
info("Wait until the service worker appears in about:debugging");
|
|
await waitUntilServiceWorkerContainer(SERVICE_WORKER, document);
|
|
|
|
// Ensure that the registration resolved before trying to connect to the sw
|
|
await waitForServiceWorkerRegistered(swTab);
|
|
ok(true, "Service worker registration resolved");
|
|
|
|
// Retrieve the DEBUG button for the worker
|
|
const names = [...document.querySelectorAll("#service-workers .target-name")];
|
|
const name = names.filter(element => element.textContent === SERVICE_WORKER)[0];
|
|
ok(name, "Found the service worker in the list");
|
|
const targetElement = name.parentNode.parentNode;
|
|
const debugBtn = targetElement.querySelector(".debug-button");
|
|
ok(debugBtn, "Found its debug button");
|
|
|
|
// Click on it and wait for the toolbox to be ready
|
|
const onToolboxReady = new Promise(done => {
|
|
gDevTools.once("toolbox-ready", function(toolbox) {
|
|
done(toolbox);
|
|
});
|
|
});
|
|
debugBtn.click();
|
|
|
|
let toolbox = await onToolboxReady;
|
|
|
|
// Wait for more than the regular timeout,
|
|
// so that if the worker freezing doesn't work,
|
|
// it will be destroyed and removed from the list
|
|
await new Promise(done => {
|
|
setTimeout(done, SW_TIMEOUT * 2);
|
|
});
|
|
|
|
assertHasTarget(true, document, "service-workers", SERVICE_WORKER);
|
|
ok(targetElement.querySelector(".debug-button"),
|
|
"The debug button is still there");
|
|
|
|
await toolbox.destroy();
|
|
toolbox = null;
|
|
|
|
// Now ensure that the worker is correctly destroyed
|
|
// after we destroy the toolbox.
|
|
// The DEBUG button should disappear once the worker is destroyed.
|
|
info("Wait until the debug button disappears");
|
|
await waitUntil(() => {
|
|
return !targetElement.querySelector(".debug-button");
|
|
});
|
|
|
|
// Finally, unregister the service worker itself.
|
|
try {
|
|
await unregisterServiceWorker(swTab, serviceWorkersElement);
|
|
ok(true, "Service worker registration unregistered");
|
|
} catch (e) {
|
|
ok(false, "SW not unregistered; " + e);
|
|
}
|
|
|
|
assertHasTarget(false, document, "service-workers", SERVICE_WORKER);
|
|
|
|
await removeTab(swTab);
|
|
await closeAboutDebugging(tab);
|
|
});
|