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
|
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<!DOCTYPE HTML>
<html>
<head>
<title>Test the Service-Worker-Allowed header</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<div id="content"></div>
<script class="testbody" type="text/javascript">
var gTests = [
"worker_scope_different.js",
"worker_scope_different2.js",
"worker_scope_too_deep.js",
];
function testPermissiveHeader() {
// Make sure that this registration succeeds, as the prefix check should pass.
return navigator.serviceWorker.register("swa/worker_scope_too_narrow.js", {scope: "swa/"})
.then(swr => {
ok(true, "Registration should finish successfully");
return swr.unregister();
}, err => {
ok(false, "Unexpected error when registering the service worker: " + err);
});
}
function testPreciseHeader() {
// Make sure that this registration succeeds, as the prefix check should pass
// given that we parse the use the full pathname from this URL..
return navigator.serviceWorker.register("swa/worker_scope_precise.js", {scope: "swa/"})
.then(swr => {
ok(true, "Registration should finish successfully");
return swr.unregister();
}, err => {
ok(false, "Unexpected error when registering the service worker: " + err);
});
}
function runTest() {
Promise.all(gTests.map(testName => {
return new Promise((resolve, reject) => {
// Make sure that registration fails.
navigator.serviceWorker.register("swa/" + testName, {scope: "swa/"})
.then(reject, resolve);
});
})).then(values => {
values.forEach(error => {
is(error.name, "SecurityError", "Registration should fail");
});
Promise.all([
testPermissiveHeader(),
testPreciseHeader(),
]).then(SimpleTest.finish, SimpleTest.finish);
}, (x) => {
ok(false, "Registration should not succeed, but it did");
SimpleTest.finish();
});
}
SimpleTest.waitForExplicitFinish();
SpecialPowers.pushPrefEnv({"set": [
["dom.serviceWorkers.enabled", true],
["dom.serviceWorkers.testing.enabled", true],
["dom.serviceWorkers.exemptFromPerDomainMax", true],
]}, runTest);
</script>
</pre>
</body>
</html>
|