summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/payment-request/payment-request-show-method.https.html
blob: d3385b5468b8fc6cfd954df4e77c5959f8ceb32f (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<meta charset="utf-8" />
<title>Test for PaymentRequest.show() method</title>
<link rel="help" href="https://w3c.github.io/payment-request/#show-method" />
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
<script>
"use strict";

setup({ allow_uncaught_exception: true });

const defaultMethods = Object.freeze([
  { supportedMethods: "basic-card" },
  {
    supportedMethods: "https://apple.com/apple-pay",
    data: {
      version: 3,
      merchantIdentifier: "merchant.com.example",
      countryCode: "US",
      merchantCapabilities: ["supports3DS"],
      supportedNetworks: ["visa"],
    },
  },
]);

const defaultDetails = Object.freeze({
  total: {
    label: "Total",
    amount: {
      currency: "USD",
      value: "1.00",
    },
  },
});

promise_test(async (t) => {
  const request = new PaymentRequest(defaultMethods, defaultDetails);
  await promise_rejects_dom(t, "SecurityError", request.show());

  await test_driver.bless();
  // Sets state to "interactive", but consumes user interaction.
  const acceptPromise = request.show();
  await promise_rejects_dom(t, "SecurityError", request.show());

  // With user activation, but already showing the sheet...
  await test_driver.bless();
  await promise_rejects_dom(t, "InvalidStateError", request.show());

  await request.abort();
  await promise_rejects_dom(t, "AbortError", acceptPromise);
}, "Throws if the promise [[state]] is not 'created'.");

promise_test(async (t) => {
  const request1 = new PaymentRequest(defaultMethods, defaultDetails);
  await test_driver.bless();
  const acceptPromise1 = request1.show();

  // Payment request already showing, so...
  const request2 = new PaymentRequest(defaultMethods, defaultDetails);
  await test_driver.bless();
  await promise_rejects_dom(t, "AbortError", request2.show());

  await request1.abort();
  await promise_rejects_dom(t, "AbortError", acceptPromise1);
}, `If the user agent's "payment request is showing" boolean is true, then return a promise rejected with an "AbortError" DOMException.`);

promise_test(async (t) => {
  const request = new PaymentRequest(
    [{ supportedMethods: "this-is-not-supported" }],
    defaultDetails
  );
  await test_driver.bless();
  const acceptPromise = request.show();
  await promise_rejects_dom(t, "NotSupportedError", acceptPromise);
}, `If payment method consultation produces no supported method of payment, then return a promise rejected with a "NotSupportedError" DOMException.`);

promise_test(async (t) => {
  const request = new PaymentRequest(defaultMethods, defaultDetails);
  await test_driver.bless();
  const p1 = request.show();
  await test_driver.bless();
  const p2 = request.show();
  await test_driver.bless();
  const p3 = request.show();
  await request.abort();

  const promises = new Set([p1, p2, p3]);
  assert_equals(promises.size, 3, "Must have three unique objects");

  await promise_rejects_dom(t, "AbortError", p1);
  await promise_rejects_dom(t, "InvalidStateError", p2);
  await promise_rejects_dom(t, "InvalidStateError", p3);
}, "Calling show() multiple times always returns a new promise.");
</script>
<small>
  If you find a buggy test, please
  <a href="https://github.com/web-platform-tests/wpt/issues">file a bug</a> and
  tag one of the
  <a
    href="https://github.com/web-platform-tests/wpt/blob/master/payment-request/META.yml"
    >suggested reviewers</a
  >.
</small>