Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(101)

Unified Diff: LayoutTests/http/tests/serviceworker/resources/service-worker-csp-worker.php

Issue 714833002: [ServiceWorker] CSP support for ServiceWorker environment. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: add FIXME Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/http/tests/serviceworker/service-worker-csp.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/http/tests/serviceworker/resources/service-worker-csp-worker.php
diff --git a/LayoutTests/http/tests/serviceworker/resources/service-worker-csp-worker.php b/LayoutTests/http/tests/serviceworker/resources/service-worker-csp-worker.php
new file mode 100644
index 0000000000000000000000000000000000000000..ed15c2900c825c7457b6b7a2dcf3e95bc63d98a0
--- /dev/null
+++ b/LayoutTests/http/tests/serviceworker/resources/service-worker-csp-worker.php
@@ -0,0 +1,98 @@
+<?php
+header('Content-Type: application/javascript');
+$directive = $_GET['directive'];
+
+if ($directive == 'default') {
+ header('Content-Security-Policy: default-src \'self\'');
+
+?>
+importScripts('worker-testharness.js');
+importScripts('test-helpers.js');
+
+test(function() {
+ var import_script_failed = false;
+ try {
+ importScripts('http://localhost:8000/serviceworker/resources/empty.js');
+ } catch(e) {
+ import_script_failed = true;
+ }
+ assert_true(import_script_failed,
+ 'Importing the other origins script should fail.');
+ }, 'importScripts test for default-src');
+
+async_test(function(t) {
+ fetch('http://localhost:8000/serviceworker/resources/fetch-access-control.php?ACAOrigin=*',
+ {mode: 'cors'})
+ .then(function(response){
+ assert_unreached('fetch should fail.');
+ }, function(){
+ t.done();
+ })
+ .catch(unreached_rejection(t));
+ }, 'Fetch test for default-src');
+
+<?php
+
+} else if ($directive == 'script') {
+ header('Content-Security-Policy: script-src \'self\'');
+
+?>
+importScripts('worker-testharness.js');
+importScripts('test-helpers.js');
+
+test(function() {
+ var import_script_failed = false;
+ try {
+ importScripts('http://localhost:8000/serviceworker/resources/empty.js');
+ } catch(e) {
+ import_script_failed = true;
+ }
+ assert_true(import_script_failed,
+ 'Importing the other origins script should fail.');
+ }, 'importScripts test for script-src');
+
+async_test(function(t) {
+ fetch('http://localhost:8000/serviceworker/resources/fetch-access-control.php?ACAOrigin=*',
+ {mode: 'cors'})
+ .then(function(response){
+ t.done();
+ }, function(){
+ assert_unreached('fetch should not fail.');
+ })
+ .catch(unreached_rejection(t));
+ }, 'Fetch test for script-src');
+
+<?php
+
+} else if ($directive == 'connect') {
+ header('Content-Security-Policy: connect-src \'self\'');
+
+?>
+importScripts('worker-testharness.js');
+importScripts('test-helpers.js');
+
+test(function() {
+ var import_script_failed = false;
+ try {
+ importScripts('http://localhost:8000/serviceworker/resources/empty.js');
+ } catch(e) {
+ import_script_failed = true;
+ }
+ assert_false(import_script_failed,
+ 'Importing the other origins script should not fail.');
+ }, 'importScripts test for connect-src');
+
+async_test(function(t) {
+ fetch('http://localhost:8000/serviceworker/resources/fetch-access-control.php?ACAOrigin=*',
+ {mode: 'cors'})
+ .then(function(response){
+ assert_unreached('fetch should fail.');
+ }, function(){
+ t.done();
+ })
+ .catch(unreached_rejection(t));
+ }, 'Fetch test for connect-src');
+
+<?php
+}
+?>
« no previous file with comments | « no previous file | LayoutTests/http/tests/serviceworker/service-worker-csp.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698