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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/update-worker.php

Issue 2904063003: Upstream service worker "update" tests to WPT (Closed)
Patch Set: Move Chromium-specific test Created 3 years, 7 months 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
Index: third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/update-worker.php
diff --git a/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/update-worker.php b/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/update-worker.php
deleted file mode 100644
index 81bdd1bfad1df506f65963db78f589aa40b2c9dc..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/update-worker.php
+++ /dev/null
@@ -1,42 +0,0 @@
-<?php
-if(!isset($_COOKIE['mode']))
- $mode = 'init'; // Set mode to 'init' for initial fetch.
-else
- $mode = $_COOKIE['mode']; // $_COOKIE['mode'] is either 'normal' or 'error'.
-
-// no-cache itself to ensure the user agent finds a new version for each update.
-header("Cache-Control: no-cache, must-revalidate");
-header("Pragma: no-cache");
-
-$extra_body = '';
-
-if ($mode == 'init') {
- // Set a normal mimetype.
- // Set cookie value to 'normal' so the next fetch will work in 'normal' mode.
- header('Content-Type:application/javascript');
- setcookie('mode', 'normal');
-} else if ($mode == 'normal') {
- // Set a normal mimetype.
- // Set cookie value to 'error' so the next fetch will work in 'error' mode.
- header('Content-Type:application/javascript');
- setcookie('mode', 'error');
-} else if ($mode == 'error') {
- // Set a disallowed mimetype.
- // Set cookie value to 'syntax-error' so the next fetch will work in 'syntax-error' mode.
- header('Content-Type:text/html');
- setcookie('mode', 'syntax-error');
-} else if ($mode == 'syntax-error') {
- // Set cookie value to 'throw-install' so the next fetch will work in 'throw-install' mode.
- header('Content-Type:application/javascript');
- setcookie('mode', 'throw-install');
- $extra_body = 'badsyntax(isbad;';
-} else if ($mode == 'throw-install') {
- // Unset and delete cookie to clean up the test setting.
- header('Content-Type:application/javascript');
- unset($_COOKIE['mode']);
- setcookie('mode', '', time() - 3600);
- $extra_body = "addEventListener('install', function(e) { throw new Error('boom'); });";
-}
-// Return a different script for each access.
-echo '/* ', microtime(), ' */ ', $extra_body;
-?>

Powered by Google App Engine
This is Rietveld 408576698