Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: dom/cache/test/xpcshell/xpcshell.toml
/**
* Any copyright is dedicated to the Public Domain.
*/
const { PrincipalUtils } = ChromeUtils.importESModule(
);
const { QuotaUtils } = ChromeUtils.importESModule(
);
const { TestUtils } = ChromeUtils.importESModule(
);
add_task(
{ pref_set: [["dom.cache.databaseInitialization.pauseOnIOThreadMs", 2000]] },
async function testSteps() {
const name = "test_slowStorageInitialization.js";
info("Testing origin clearing requested after starting database work");
info("Starting database opening");
const openPromise = new Promise(function (resolve, reject) {
const sandbox = new Cu.Sandbox(principal, {
wantGlobalProperties: ["caches"],
});
sandbox.resolve = resolve;
sandbox.reject = reject;
Cu.evalInSandbox(
`caches.open("${name}").then(resolve, reject);`,
sandbox
);
});
info("Waiting for database work to start");
await TestUtils.topicObserved("CacheAPI::DatabaseWorkStarted");
info("Starting origin clearing");
const clearPromise = (async function () {
const request = Services.qms.clearStoragesForPrincipal(principal);
const promise = QuotaUtils.requestFinished(request);
return promise;
})();
info("Waiting for database to finish opening");
try {
await openPromise;
ok(false, "Should have thrown");
} catch (e) {
ok(true, "Should have thrown");
Assert.strictEqual(
e.result,
Cr.NS_ERROR_ABORT,
"Threw right result code"
);
}
info("Waiting for origin to finish clearing");
await clearPromise;
}
);