зеркало из https://github.com/mozilla/gecko-dev.git
154 строки
4.9 KiB
HTML
154 строки
4.9 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 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) {
|
|
function chromeScriptSource() {
|
|
let swm = Cc["@mozilla.org/serviceworkers/manager;1"]
|
|
.getService(Ci.nsIServiceWorkerManager);
|
|
let secMan = Cc["@mozilla.org/scriptsecuritymanager;1"]
|
|
.getService(Ci.nsIScriptSecurityManager);
|
|
addMessageListener("getScope", (msg) => {
|
|
let principal = secMan.createCodebasePrincipalFromOrigin(msg.principal);
|
|
try {
|
|
return { scope: swm.getScopeForUrl(principal, msg.path) };
|
|
} catch (e) {
|
|
return { exception: e.message };
|
|
}
|
|
});
|
|
}
|
|
|
|
let getScope;
|
|
let parent_intercept_enabled =
|
|
SpecialPowers.getBoolPref("dom.serviceWorkers.parent_intercept");
|
|
|
|
if (parent_intercept_enabled) {
|
|
let chromeScript = SpecialPowers.loadChromeScript(chromeScriptSource);
|
|
let docPrincipal = SpecialPowers.wrap(document).nodePrincipal.URI.spec;
|
|
|
|
getScope = (path) => {
|
|
let rv = chromeScript.sendSyncMessage("getScope", { principal: docPrincipal, path })[0][0];
|
|
if (rv.exception)
|
|
throw rv.exception;
|
|
return rv.scope;
|
|
};
|
|
} else {
|
|
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");
|
|
}
|
|
}
|
|
|
|
is(getScope(p("sub.html")), p("sub"), "Scope should match");
|
|
is(getScope(p("sub/dir.html")), p("sub/dir.html"), "Scope should match");
|
|
is(getScope(p("sub/dir")), p("sub/dir"), "Scope should match");
|
|
is(getScope(p("sub/dir/foo")), p("sub/dir/"), "Scope should match");
|
|
is(getScope(p("sub/dir/afoo")), p("sub/dir/a"), "Scope should match");
|
|
is(getScope(p("star*wars")), p("star*"), "Scope should match");
|
|
is(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>
|
|
|