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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/serviceworker/unregister-then-register-new-script.html

Issue 2904123002: Upstream service worker "unregister" tests to WPT (Closed)
Patch Set: 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
« no previous file with comments | « third_party/WebKit/LayoutTests/http/tests/serviceworker/unregister-then-register.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/http/tests/serviceworker/unregister-then-register-new-script.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/serviceworker/unregister-then-register-new-script.html b/third_party/WebKit/LayoutTests/http/tests/serviceworker/unregister-then-register-new-script.html
deleted file mode 100644
index cc5ee7936347855d6f75764c887e9351ad8e0e5e..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/http/tests/serviceworker/unregister-then-register-new-script.html
+++ /dev/null
@@ -1,159 +0,0 @@
-<!DOCTYPE html>
-<script src="../resources/testharness.js"></script>
-<script src="../resources/testharnessreport.js"></script>
-<script src="resources/test-helpers.js"></script>
-<script>
-var worker_url = 'resources/empty-worker.js';
-
-async_test(function(t) {
- var scope = 'resources/scope/unregister-then-register-new-script-that-exists';
- var new_worker_url = worker_url + '?new';
- var iframe;
- var registration;
- var new_registration;
-
- service_worker_unregister_and_register(t, worker_url, scope)
- .then(function(r) {
- registration = r;
- return wait_for_state(t, r.installing, 'activated');
- })
- .then(function() {
- return with_iframe(scope);
- })
- .then(function(frame) {
- iframe = frame;
- return registration.unregister();
- })
- .then(function() {
- return navigator.serviceWorker.register(new_worker_url,
- { scope: scope });
- })
- .then(function(r) {
- new_registration = r;
- assert_equals(registration.installing.scriptURL,
- normalizeURL(new_worker_url),
- 'before activated registration.installing');
- assert_equals(registration.waiting, null,
- 'before activated registration.waiting');
- assert_equals(registration.active.scriptURL, normalizeURL(worker_url),
- 'before activated registration.active');
- assert_equals(new_registration.installing.scriptURL,
- normalizeURL(new_worker_url),
- 'before activated new_registration.installing');
- assert_equals(new_registration.waiting, null,
- 'before activated new_registration.waiting');
- assert_equals(new_registration.active.scriptURL,
- normalizeURL(worker_url),
- 'before activated new_registration.active');
- iframe.remove();
- return wait_for_state(t, registration.installing, 'activated');
- })
- .then(function() {
- assert_equals(new_registration.installing, null,
- 'after activated new_registration.installing');
- assert_equals(new_registration.waiting, null,
- 'after activated new_registration.waiting');
- assert_equals(new_registration.active.scriptURL,
- normalizeURL(new_worker_url),
- 'after activated new_registration.active');
- return with_iframe(scope);
- })
- .then(function(frame) {
- assert_equals(
- frame.contentWindow.navigator.serviceWorker.controller.scriptURL,
- normalizeURL(new_worker_url),
- 'the new worker should control a new document');
- frame.remove();
- return registration.unregister();
- })
- .then(function() {
- t.done();
- })
- .catch(unreached_rejection(t));
-}, 'Registering a new script URL while an unregistered registration is in use');
-
-async_test(function(t) {
- var scope = 'resources/scope/unregister-then-register-new-script-that-404s';
- var iframe;
- var registration;
-
- service_worker_unregister_and_register(t, worker_url, scope)
- .then(function(r) {
- registration = r;
- return wait_for_state(t, r.installing, 'activated');
- })
- .then(function() {
- return with_iframe(scope);
- })
- .then(function(frame) {
- iframe = frame;
- return registration.unregister();
- })
- .then(function() {
- var promise = navigator.serviceWorker.register('this-will-404',
- { scope: scope });
- iframe.remove();
- return promise;
- })
- .then(
- function() {
- assert_unreached('register should reject the promise');
- },
- function() {
- return with_iframe(scope);
- })
- .then(function(frame) {
- assert_equals(frame.contentWindow.navigator.serviceWorker.controller,
- null,
- 'document should not load with a controller');
- frame.remove();
- t.done();
- })
- .catch(unreached_rejection(t));
-}, 'Registering a new script URL that 404s does not resurrect an ' +
- 'unregistered registration');
-
-async_test(function(t) {
- var scope = 'resources/scope/unregister-then-register-reject-install-worker';
- var iframe;
- var registration;
-
- service_worker_unregister_and_register(t, worker_url, scope)
- .then(function(r) {
- registration = r;
- return wait_for_state(t, r.installing, 'activated');
- })
- .then(function() {
- return with_iframe(scope);
- })
- .then(function(frame) {
- iframe = frame;
- return registration.unregister();
- })
- .then(function() {
- var promise = navigator.serviceWorker.register(
- 'resources/reject-install-worker.js', { scope: scope });
- iframe.remove();
- return promise;
- })
- .then(function(r) {
- registration = r;
- return wait_for_state(t, r.installing, 'redundant');
- })
- .then(function() {
- return with_iframe(scope);
- })
- .then(function(frame) {
- assert_equals(frame.contentWindow.navigator.serviceWorker.controller,
- null,
- 'document should not load with a controller');
- frame.remove();
- return registration.unregister();
- })
- .then(function() {
- t.done();
- })
- .catch(unreached_rejection(t));
- }, 'Registering a new script URL that fails to install does not resurrect ' +
- 'an unregistered registration');
-</script>
« no previous file with comments | « third_party/WebKit/LayoutTests/http/tests/serviceworker/unregister-then-register.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698