File: synced-state.https.html

package info (click to toggle)
firefox-esr 52.8.1esr-1~deb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 1,983,244 kB
  • sloc: cpp: 4,810,275; ansic: 2,004,548; python: 451,282; java: 241,615; asm: 178,649; xml: 136,302; sh: 82,207; makefile: 22,575; perl: 15,783; objc: 4,389; yacc: 1,816; ada: 1,697; pascal: 1,519; lex: 1,257; cs: 879; exp: 499; php: 436; lisp: 258; awk: 152; sed: 51; ruby: 47; csh: 27
file content (64 lines) | stat: -rw-r--r-- 3,405 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!doctype html>
<title>ServiceWorker: worker objects have synced state</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/test-helpers.sub.js"></script>
<script>
// Tests that ServiceWorker objects representing the same Service Worker
// entity have the same state. JS object equality is not tested, since the spec
// does not require it.
promise_test(function(t) {
    var scope = 'resources/synced-state';
    var script = 'resources/empty-worker.js';
    return service_worker_unregister_and_register(t, script, scope)
      .then(function(registration) {
          return new Promise(function(resolve) {
              var step = 0;
              registration.installing.addEventListener('statechange',
                                                       function(e) {
                  step++;
                  if (step == 1) {
                    assert_equals(e.currentTarget.state, 'installed',
                                  'original SW should be installed');
                    assert_equals(registration.installing, null,
                                  'in installed, .installing should be null');
                    // The Activate algorithm may have cleared the waiting worker
                    // by now.
                    if (registration.waiting) {
                      assert_equals(registration.waiting.state, 'installed',
                                    'in installed, .waiting should be installed');
                      assert_equals(registration.active, null,
                                    'in installed, .active should be null');
                    } else {
                      assert_equals(registration.active.state, 'activating',
                                    'in installed, .active should be activating');
                    }
                  } else if (step == 2) {
                    assert_equals(e.currentTarget.state, 'activating',
                                  'original SW should be activating');
                    assert_equals(registration.installing, null,
                                  'in activating, .installing should be null');
                    assert_equals(registration.waiting, null,
                                  'in activating, .waiting should be null');
                    assert_equals(
                        registration.active.state, 'activating',
                        'in activating, .active should be activating');
                  } else if (step == 3) {
                    assert_equals(e.currentTarget.state, 'activated',
                                  'original SW should be activated');
                    assert_equals(registration.installing, null,
                                  'in activated, .installing should be null');
                    assert_equals(registration.waiting, null,
                                  'in activated, .waiting should be null');
                    assert_equals(registration.active.state, 'activated',
                                  'in activated .active should be activated');
                    resolve();
                  }
                })
            })
        })
      .then(function() {
          return service_worker_unregister_and_done(t, scope);
        });
  }, 'worker objects for the same entity have the same state');
</script>