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
|
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
const { XPCOMUtils } = ChromeUtils.import(
"resource://gre/modules/XPCOMUtils.jsm"
);
const paymentSrv = Cc[
"@mozilla.org/dom/payments/payment-request-service;1"
].getService(Ci.nsIPaymentRequestService);
const InvalidDetailsUIService = {
showPayment(requestId) {
paymentSrv.changeShippingOption(requestId, "");
},
abortPayment(requestId) {
const abortResponse = Cc[
"@mozilla.org/dom/payments/payment-abort-action-response;1"
].createInstance(Ci.nsIPaymentAbortActionResponse);
abortResponse.init(requestId, Ci.nsIPaymentActionResponse.ABORT_SUCCEEDED);
paymentSrv.respondPayment(
abortResponse.QueryInterface(Ci.nsIPaymentActionResponse)
);
},
completePayment(requestId) {},
updatePayment(requestId) {},
closePayment(requestId) {},
QueryInterface: ChromeUtils.generateQI(["nsIPaymentUIService"]),
};
function checkLowerCaseCurrency() {
const paymentEnum = paymentSrv.enumerate();
if (!paymentEnum.hasMoreElements()) {
const msg =
"PaymentRequestService should have at least one payment request.";
sendAsyncMessage("test-fail", msg);
}
for (let payRequest of paymentEnum) {
if (!payRequest) {
sendAsyncMessage("test-fail", "Fail to get existing payment request.");
break;
}
const { currency } = payRequest.paymentDetails.totalItem.amount;
if (currency != "USD") {
const msg =
"Currency of PaymentItem total should be 'USD', but got ${currency}";
sendAsyncMessage("check-complete");
}
}
paymentSrv.cleanup();
sendAsyncMessage("check-complete");
}
addMessageListener("check-lower-case-currency", checkLowerCaseCurrency);
addMessageListener("set-update-with-invalid-details-ui-service", () => {
paymentSrv.setTestingUIService(
InvalidDetailsUIService.QueryInterface(Ci.nsIPaymentUIService)
);
});
addMessageListener("teardown", () => sendAsyncMessage("teardown-complete"));
|