Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

<!DOCTYPE HTML>
<html>
<head>
<title>Bug 1045891</title>
<!-- Including SimpleTest.js so we can use waitForExplicitFinish !-->
<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="visibility: hidden">
</div>
<script class="testbody" type="text/javascript">
/*
* Description of the test:
* We load a page with a given CSP and verify that child frames and workers are correctly
* evaluated through the "child-src" directive.
*/
SimpleTest.waitForExplicitFinish();
var WORKER_REDIRECT_TEST_FILE = "file_child-src_worker-redirect.html";
var SHARED_WORKER_REDIRECT_TEST_FILE = "file_child-src_shared_worker-redirect.html";
var tests = {
'same-src-worker_redir-same': {
id: "same-src-worker_redir-same",
file: WORKER_REDIRECT_TEST_FILE,
result : "allowed",
redir: "same",
policy : "default-src 'none'; script-src 'self' 'unsafe-inline'; child-src http://mochi.test:8888"
},
'same-src-worker_redir-other': {
id: "same-src-worker_redir-other",
file: WORKER_REDIRECT_TEST_FILE,
result : "blocked",
redir: "other",
policy : "default-src 'none'; script-src 'self' 'unsafe-inline'; child-src http://mochi.test:8888"
},
'star-src-worker_redir-same': {
id: "star-src-worker_redir-same",
file: WORKER_REDIRECT_TEST_FILE,
redir: "same",
result : "allowed",
policy : "default-src 'none'; script-src 'self' 'unsafe-inline'; child-src *"
},
'other-src-worker_redir-same': {
id: "other-src-worker_redir-same",
file: WORKER_REDIRECT_TEST_FILE,
redir: "same",
result : "blocked",
policy : "default-src 'none'; script-src 'self' 'unsafe-inline'; child-src https://www.example.org"
},
/* shared workers */
'same-src-shared_worker_redir-same': {
id: "same-src-shared_worker_redir-same",
file: SHARED_WORKER_REDIRECT_TEST_FILE,
result : "allowed",
redir: "same",
policy : "default-src 'none'; script-src 'self' 'unsafe-inline'; child-src http://mochi.test:8888"
},
'same-src-shared_worker_redir-other': {
id: "same-src-shared_worker_redir-other",
file: SHARED_WORKER_REDIRECT_TEST_FILE,
result : "blocked",
redir: "other",
policy : "default-src 'none'; script-src 'self' 'unsafe-inline'; child-src http://mochi.test:8888"
},
'star-src-shared_worker_redir-same': {
id: "star-src-shared_worker_redir-same",
file: SHARED_WORKER_REDIRECT_TEST_FILE,
redir: "same",
result : "allowed",
policy : "default-src 'none'; script-src 'self' 'unsafe-inline'; child-src *"
},
'other-src-shared_worker_redir-same': {
id: "other-src-shared_worker_redir-same",
file: SHARED_WORKER_REDIRECT_TEST_FILE,
redir: "same",
result : "blocked",
policy : "default-src 'none'; script-src 'self' 'unsafe-inline'; child-src https://www.example.org"
},
};
finished = {};
function recvMessage(ev) {
is(ev.data.message, tests[ev.data.id].result, "CSP child-src worker test " + ev.data.id);
finished[ev.data.id] = ev.data.message;
if (Object.keys(finished).length == Object.keys(tests).length) {
window.removeEventListener('message', recvMessage);
SimpleTest.finish();
}
}
window.addEventListener('message', recvMessage);
function loadNextTest() {
for (item in tests) {
test = tests[item];
var src = "file_testserver.sjs";
// append the file that should be served
src += "?file=" + escape("tests/dom/security/test/csp/" + test.file);
// append the CSP that should be used to serve the file
src += "&csp=" + escape(test.policy);
// add whether redirect is to same or different
src += "&redir=" + escape(test.policy);
// add our identifier
src += "#" + escape(test.id);
content = document.getElementById('content');
testframe = document.createElement("iframe");
testframe.setAttribute('id', test.id);
content.appendChild(testframe);
testframe.src = src;
}
}
// start running the tests
loadNextTest();
</script>
</body>
</html>