https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 7ca7cb4a359d31546505db3b4eb7feb90e69fa4a authored by Marijn Kruisselbrink on 24 May 2018, 23:04:36 UTC
[Mojo Blob URLs] Handle more navigation cases.
Tip revision: 7ca7cb4
payment-request-abort-method.https.html
<!DOCTYPE html>
<meta charset="utf-8">
<title>Test for PaymentRequest.abort() method</title>
<link rel="help" href="https://w3c.github.io/browser-payment-api/#abort-method">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src='/resources/testdriver-vendor.js'></script>
<script src="/resources/testdriver.js"></script>
<script>
"use strict";
setup({
  // Ignore unhandled rejections resulting from .show()'s acceptPromise
  // not being explicitly handled.
  allow_uncaught_exception: true,
  explicit_timeout: true,
});
const basicCard = Object.freeze({ supportedMethods: "basic-card" });
const defaultMethods = Object.freeze([basicCard]);
const defaultDetails = Object.freeze({
  total: {
    label: "Total",
    amount: {
      currency: "USD",
      value: "1.00",
    },
  },
});

window.onload = async () => {
  promise_test(async t => {
    // request is in "created" state
    const request = new PaymentRequest(defaultMethods, defaultDetails);
    await promise_rejects(t, "InvalidStateError", request.abort());
  }, `Throws if the promise [[state]] is not "interactive"`);

  const button = document.getElementById("button");

  promise_test(async t => {
    button.onclick = async () => {
      const request = new PaymentRequest(defaultMethods, defaultDetails);
      const acceptPromise = request.show();
      try {
        await request.abort();
      } catch (err) {
        assert_unreached("Unexpected promise rejection: " + err.message);
      }
      await promise_rejects(t, "AbortError", acceptPromise);
      // As request is now "closed", trying to show it will fail
      await promise_rejects(t, "InvalidStateError", request.show());
    };
    await test_driver.click(button);
  });

  promise_test(async t => {
    button.onclick = async () => {
      // request is in "created" state.
      const request = new PaymentRequest(defaultMethods, defaultDetails);
      await promise_rejects(t, "InvalidStateError", request.abort());
      // Call it again, for good measure.
      await promise_rejects(t, "InvalidStateError", request.abort());
      // The request's state is "created", so let's show it
      // which changes the state to "interactive.".
      const acceptPromise = request.show();
      // Let's set request the state to "closed" by calling .abort()
      try {
        await request.abort();
      } catch (err) {
        assert_unreached("Unexpected promise rejection: " + err.message);
      }
      // The request is now "closed", so...
      await promise_rejects(t, "InvalidStateError", request.abort());
      await promise_rejects(t, "AbortError", acceptPromise);
    };
    await test_driver.click(button);
  });
};
</script>
<button id="button"></button>
back to top