summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/payment-handler/supports-shipping-contact-delegation-manual.https.html
blob: 939e5429262b039eef36029ada3033652b35daf5 (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
<!DOCTYPE html>
<meta charset="utf-8" />
<title>Tests for Delegation of shipping and contact collection to PH</title>
<link rel="manifest" href="/payment-handler/manifest.json" />
<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 src="register-and-activate-service-worker.js"></script>
<p>If the payment sheet is shown, please authorize the mock payment.</p>
<script>
  async function runTests(registration) {
    const methodName = window.location.origin + '/payment-handler/payment-app/';
    await registration.paymentManager.instruments.clear();
    await registration.paymentManager.instruments.set('instrument-key', {
      name: 'Instrument Name',
      method: methodName,
    });
    await navigator.serviceWorker.ready;
    await registration.paymentManager.enableDelegations(
        ['shippingAddress', 'payerName', 'payerPhone', 'payerEmail']);

    promise_test(async (t) => {
      const request = new PaymentRequest([{supportedMethods: methodName}], {
        total: {label: 'Total', amount: {currency: 'USD', value: '0.01'}},
        shippingOptions: [{
          id: 'freeShippingOption',
          label: 'Free global shipping',
          amount: {
            currency: 'USD',
            value: '0',
          },
          selected: true,
        }],
      }, {requestShipping: true});

      const response = await test_driver.bless('showing a payment sheet', () =>
        request.show()
      );
      const complete_promise = response.complete('success');

      // Validate response
      assert_equals('freeShippingOption', response.shippingOption);
      assert_equals('Reston', response.shippingAddress.city);
      assert_equals('US', response.shippingAddress.country);
      assert_equals('20190', response.shippingAddress.postalCode);
      assert_equals('VA', response.shippingAddress.region);

      return complete_promise;
    }, 'Payment handler response should include shipping address and selected shipping option id.');

    promise_test(async (t) => {
      const request = new PaymentRequest([{
        supportedMethods: methodName
      }], {
        total: {
          label: 'Total',
          amount: {
            currency: 'USD',
            value: '0.01'
          }
        }
      }, {
        requestPayerName: true,
        requestPayerEmail: true,
        requestPayerPhone: true
      });

      const response = await test_driver.bless('showing a payment sheet', () =>
        request.show()
      );
      const complete_promise = response.complete('success');

      // Validate response.
      assert_equals('John Smith', response.payerName);
      assert_equals('smith@gmail.com', response.payerEmail);
      assert_equals('+15555555555', response.payerPhone);

      return complete_promise;
    }, 'Payment handler response should include payer\'s contact information.');
  }

  registerAndActiveServiceWorker(
    'app-supports-shipping-contact-delegation.js',
    'payment-app/',
    runTests
  );
</script>