Bug 1208559 - Tests. r=bholley

This commit is contained in:
Christoph Kerschbaumer 2015-10-18 19:37:40 -07:00
parent 61d275e7db
commit 733163ef2b
4 changed files with 86 additions and 0 deletions

View File

@ -0,0 +1,19 @@
<!DOCTYPE HTML>
<html>
<head>
<title>Bug 1208559 - ServiceWorker registration not governed by CSP</title>
</head>
<body>
<script>
function finish(status) {
window.parent.postMessage({result: status}, "*");
}
navigator.serviceWorker.ready.then(finish.bind(null, 'allowed'),
finish.bind(null, 'blocked'));
navigator.serviceWorker
.register("file_service_worker.js", {scope: "."})
.then(null, finish.bind(null, 'blocked'));
</script>
</body>
</html>

View File

@ -0,0 +1 @@
dump("service workers: hello world");

View File

@ -130,6 +130,8 @@ support-files =
file_report_for_import.css
file_report_for_import.html
file_report_for_import_server.sjs
file_service_worker.html
file_service_worker.js
[test_base-uri.html]
[test_blob_data_schemes.html]
@ -197,3 +199,5 @@ skip-if = buildapp == 'b2g' || buildapp == 'mulet' || toolkit == 'gonk' || toolk
[test_report_for_import.html]
[test_blocked_uri_in_reports.html]
skip-if = e10s || buildapp == 'b2g' # http-on-opening-request observer not supported in child process (bug 1009632)
[test_service_worker.html]
skip-if = buildapp == 'b2g' #no ssl support

View File

@ -0,0 +1,62 @@
<!DOCTYPE HTML>
<html>
<head>
<title>Bug 1208559 - ServiceWorker registration not governed by CSP</title>
<!-- Including SimpleTest.js so we can use waitForExplicitFinish !-->
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<iframe style="width:100%;" id="testframe"></iframe>
<script class="testbody" type="text/javascript">
/* Description of the test:
* Spawning a worker from https://example.com but script-src is 'test1.example.com'
* CSP is not consulted
*/
SimpleTest.waitForExplicitFinish();
var tests = [
{
policy: "default-src 'self'; script-src test1.example.com 'unsafe-inline'",
expected: "blocked"
},
];
var counter = 0;
var curTest;
window.addEventListener("message", receiveMessage, false);
function receiveMessage(event) {
is(event.data.result, curTest.expected, "Should be (" + curTest.expected + ") in Test " + counter + "!");
loadNextTest();
}
onload = function() {
SpecialPowers.pushPrefEnv({"set": [
["dom.serviceWorkers.exemptFromPerDomainMax", true],
["dom.serviceWorkers.interception.enabled", true],
["dom.serviceWorkers.enabled", true],
["dom.serviceWorkers.testing.enabled", true],
["dom.caches.enabled", true]
]}, loadNextTest);
}
function loadNextTest() {
if (counter == tests.length) {
SimpleTest.finish();
return;
}
curTest = tests[counter++];
var src = "https://example.com/tests/dom/security/test/csp/file_testserver.sjs";
// append the file that should be served
src += "?file=" + escape("tests/dom/security/test/csp/file_service_worker.html");
// append the CSP that should be used to serve the file
src += "&csp=" + escape(curTest.policy);
document.getElementById("testframe").src = src;
}
</script>
</body>
</html>