| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE html> |
| 2 <title>Service Worker: Registration update()</title> |
| 3 <script src="../resources/testharness.js"></script> |
| 4 <script src="../resources/testharnessreport.js"></script> |
| 5 <script src="resources/test-helpers.js"></script> |
| 6 <script> |
| 7 promise_test(function(t) { |
| 8 var scope = 'resources/scope/update'; |
| 9 var worker_url = 'resources/update-worker.php'; |
| 10 var expected_url = normalizeURL(worker_url); |
| 11 var registration; |
| 12 |
| 13 return service_worker_unregister_and_register(t, worker_url, scope) |
| 14 .then(function(r) { |
| 15 registration = r; |
| 16 return wait_for_state(t, registration.installing, 'activated'); |
| 17 }) |
| 18 .then(function() { |
| 19 assert_equals(registration.installing, null, |
| 20 'installing should be null in the initial state'); |
| 21 assert_equals(registration.waiting, null, |
| 22 'waiting should be null in the initial state'); |
| 23 assert_equals(registration.active.scriptURL, expected_url, |
| 24 'active should exist in the initial state'); |
| 25 |
| 26 // A new worker should be found. |
| 27 registration.update(); |
| 28 return wait_for_update(t, registration); |
| 29 }) |
| 30 .then(function() { |
| 31 assert_equals(registration.installing.scriptURL, expected_url, |
| 32 'new installing should be set after updatefound'); |
| 33 assert_equals(registration.waiting, null, |
| 34 'waiting should still be null after updatefound'); |
| 35 assert_equals(registration.active.scriptURL, expected_url, |
| 36 'active should still exist after update found'); |
| 37 return wait_for_state(t, registration.installing, 'installed'); |
| 38 }) |
| 39 .then(function() { |
| 40 assert_equals(registration.installing, null, |
| 41 'installing should be null after installing'); |
| 42 assert_equals(registration.waiting.scriptURL, expected_url, |
| 43 'waiting should be set after installing'); |
| 44 assert_equals(registration.active.scriptURL, expected_url, |
| 45 'active should still exist after installing'); |
| 46 return wait_for_state(t, registration.waiting, 'activated'); |
| 47 }) |
| 48 .then(function() { |
| 49 assert_equals(registration.installing, null, |
| 50 'installing should be null after activated'); |
| 51 assert_equals(registration.waiting, null, |
| 52 'waiting should be null after activated'); |
| 53 assert_equals(registration.active.scriptURL, expected_url, |
| 54 'new worker should be promoted to active'); |
| 55 return service_worker_unregister_and_done(t, scope); |
| 56 }) |
| 57 }, 'Update a registration'); |
| 58 </script> |
| OLD | NEW |