summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/push-api/idlharness.https.any.js
blob: d32f6fbc58cba2d2ec3cd4f9ec4d68668951ff07 (plain)
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
// META: global=window,worker
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js
// META: script=/service-workers/service-worker/resources/test-helpers.sub.js
// META: timeout=long

// https://w3c.github.io/push-api/

idl_test(
  ['push-api'],
  ['service-workers', 'hr-time', 'html', 'dom', 'permissions'],
  async (idl_array, t) => {
    const isServiceWorker = 'ServiceWorkerGlobalScope' in self
      && self instanceof ServiceWorkerGlobalScope;
    if (isServiceWorker) {
      idl_array.add_objects({
        ServiceWorkerGlobalScope: ['self'],
        PushEvent: ['new PushEvent("type")'],
        PushSubscriptionChangeEvent: [
          'new PushSubscriptionChangeEvent("pushsubscriptionchange")'
        ],
      })
    }
    if (GLOBAL.isWindow() || isServiceWorker) {
      idl_array.add_objects({
        // self.registration set for window below, and registration is already
        // part of ServiceWorkerGlobalScope.
        ServiceWorkerRegistration: ['registration'],
        PushManager: ['registration.pushManager'],
      });
    }

    if (GLOBAL.isWindow()) {
      const scope = '/service-workers/service-worker/resources/';
      const worker = `${scope}empty-worker.js`;
      return service_worker_unregister_and_register(t, worker, scope)
        .then(registration => {
          self.registration = registration;
          t.add_cleanup(function () { registration.unregister(); });
        });
    }
  }
);