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
|
<!DOCTYPE html>
<meta charset="utf-8" />
<title>Tests for Delegation of shipping and contact collection to PH</title>
<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>
<p>If the payment sheet is shown, please authorize the mock payment.</p>
<script>
const methodName = window.location.origin + '/payment-handler/'
+ 'supports-shipping-contact-delegation-manual-manifest.json';
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.');
</script>
|