https://github.com/web-platform-tests/wpt
Raw File
Tip revision: d0802e5f893fea69f18a272e88ed8d0ce13166ce authored by Philip Jägenstedt on 20 December 2018, 16:48:28 UTC
Revamp how idlharness.js handles iterable declarations
Tip revision: d0802e5
idlharness.https.any.js
// 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

'use strict';

// https://w3c.github.io/payment-handler/

idl_test(
  ['payment-handler'],
  ['service-workers', 'dedicated-workers', 'dom'],
  async (idl_array, t) => {
    const isWindow = self.GLOBAL.isWindow();
    const isServiceWorker = 'ServiceWorkerGlobalScope' in self;
    const hasRegistration = isServiceWorker || isWindow;

    if (hasRegistration) {
      idl_array.add_objects({
        ServiceWorkerRegistration: ['registration'],
        PaymentManager: ['paymentManager'],
        PaymentInstruments: ['instruments'],
      });
    }
    if (isServiceWorker) {
      idl_array.add_objects({
        ServiceWorkerGlobalScope: ['self'],
        CanMakePaymentEvent: ['new CanMakePaymentEvent("type")'],
        PaymentRequestEvent: ['new PaymentRequestEvent("type")'],
      })
    }

    if (isWindow) {
      const scope = '/service-workers/service-worker/resources/';
      const reg = await service_worker_unregister_and_register(
        t, '/service-workers/service-worker/resources/empty-worker.js', scope);
      self.registration = reg;
      await wait_for_state(t, reg.installing, "activated");
      add_completion_callback(() => reg.unregister());
    }
    if (hasRegistration) {
      self.paymentManager = self.registration.paymentManager;
      self.instruments = self.paymentManager.instruments;
    }
  }
);
back to top