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
|
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
/* eslint-env mozilla/chrome-script */
"use strict";
const { XPCOMUtils } = ChromeUtils.importESModule(
"resource://gre/modules/XPCOMUtils.sys.mjs"
);
const paymentSrv = Cc[
"@mozilla.org/dom/payments/payment-request-service;1"
].getService(Ci.nsIPaymentRequestService);
function emitTestFail(message) {
sendAsyncMessage("test-fail", message);
}
function emitTestPass(message) {
sendAsyncMessage("test-pass", message);
}
function rejectPayment(requestId) {
const responseData = Cc[
"@mozilla.org/dom/payments/general-response-data;1"
].createInstance(Ci.nsIGeneralResponseData);
responseData.initData({});
const showResponse = Cc[
"@mozilla.org/dom/payments/payment-show-action-response;1"
].createInstance(Ci.nsIPaymentShowActionResponse);
showResponse.init(
requestId,
Ci.nsIPaymentActionResponse.PAYMENT_REJECTED,
"", // payment method
responseData, // payment method data
"", // payer name
"", // payer email
""
); // payer phone
paymentSrv.respondPayment(
showResponse.QueryInterface(Ci.nsIPaymentActionResponse)
);
}
const DummyUIService = {
testName: "",
requestId: "",
showPayment(requestId) {
this.requestId = requestId;
sendAsyncMessage("showing-payment", { data: "successful" });
},
abortPayment(requestId) {
this.requestId = requestId;
},
completePayment(requestId) {
this.requestId = requestId;
},
updatePayment(requestId) {
this.requestId = requestId;
},
closePayment(requestId) {
this.requestId = requestId;
},
QueryInterface: ChromeUtils.generateQI(["nsIPaymentUIService"]),
};
paymentSrv.setTestingUIService(
DummyUIService.QueryInterface(Ci.nsIPaymentUIService)
);
addMessageListener("reject-payment", function () {
rejectPayment(DummyUIService.requestId);
sendAsyncMessage("reject-payment-complete");
});
addMessageListener("start-test", function (testName) {
DummyUIService.testName = testName;
sendAsyncMessage("start-test-complete");
});
addMessageListener("finish-test", function () {
DummyUIService.testName = "";
sendAsyncMessage("finish-test-complete");
});
addMessageListener("teardown", function () {
paymentSrv.setTestingUIService(null);
sendAsyncMessage("teardown-complete");
});
|