gecko-dev/dom/workers/test/serviceworkers/test_scopes.html

122 строки
3.8 KiB
HTML

<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<!DOCTYPE HTML>
<html>
<head>
<title>Bug 984048 - Test scope glob matching.</title>
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<p id="display"></p>
<div id="content" style="display: none"></div>
<pre id="test"></pre>
<script class="testbody" type="text/javascript">
var scriptsAndScopes = [
[ "worker.js", "./sub/dir/"],
[ "worker.js", "./sub/dir" ],
[ "worker.js", "./sub/dir.html" ],
[ "worker.js", "./sub/dir/a" ],
[ "worker.js", "./sub" ],
[ "worker.js", "./star*" ], // '*' has no special meaning
];
function registerWorkers() {
var registerArray = [];
scriptsAndScopes.forEach(function(item) {
registerArray.push(navigator.serviceWorker.register(item[0], { scope: item[1] }));
});
// Check register()'s step 4 which uses script's url with "./" as the scope if no scope is passed.
// The other tests already check step 5.
registerArray.push(navigator.serviceWorker.register("scope/scope_worker.js"));
// Check that SW cannot be registered for a scope "above" the script's location.
registerArray.push(new Promise(function(resolve, reject) {
navigator.serviceWorker.register("scope/scope_worker.js", { scope: "./" })
.then(function() {
ok(false, "registration scope has to be inside service worker script scope.");
reject();
}, function() {
ok(true, "registration scope has to be inside service worker script scope.");
resolve();
});
}));
return Promise.all(registerArray);
}
function unregisterWorkers() {
var unregisterArray = [];
scriptsAndScopes.forEach(function(item) {
var p = navigator.serviceWorker.getRegistration(item[1]);
unregisterArray.push(p.then(function(reg) {
return reg.unregister();
}));
});
unregisterArray.push(navigator.serviceWorker.getRegistration("scope/").then(function (reg) {
return reg.unregister();
}));
return Promise.all(unregisterArray);
}
function testScopes() {
return new Promise(function(resolve, reject) {
var getScope = navigator.serviceWorker.getScopeForUrl.bind(navigator.serviceWorker);
var base = new URL(".", document.baseURI);
function p(s) {
return base + s;
}
function fail(fn) {
try {
getScope(p("index.html"));
ok(false, "No registration");
} catch(e) {
ok(true, "No registration");
}
}
ok(getScope(p("sub.html")) === p("sub"), "Scope should match");
ok(getScope(p("sub/dir.html")) === p("sub/dir.html"), "Scope should match");
ok(getScope(p("sub/dir")) === p("sub/dir"), "Scope should match");
ok(getScope(p("sub/dir/foo")) === p("sub/dir/"), "Scope should match");
ok(getScope(p("sub/dir/afoo")) === p("sub/dir/a"), "Scope should match");
ok(getScope(p("star*wars")) === p("star*"), "Scope should match");
ok(getScope(p("scope/some_file.html")) === p("scope/"), "Scope should match");
fail("index.html");
fail("sua.html");
fail("star/a.html");
resolve();
});
}
function runTest() {
registerWorkers()
.then(testScopes)
.then(unregisterWorkers)
.then(function() {
SimpleTest.finish();
}).catch(function(e) {
ok(false, "Some test failed with error " + e);
SimpleTest.finish();
});
}
SimpleTest.waitForExplicitFinish();
SpecialPowers.pushPrefEnv({"set": [
["dom.serviceWorkers.exemptFromPerDomainMax", true],
["dom.serviceWorkers.enabled", true],
["dom.serviceWorkers.testing.enabled", true]
]}, runTest);
</script>
</pre>
</body>
</html>