2020-08-05 21:00:36 +02:00
|
|
|
/*
|
|
|
|
This file is part of GNU Taler
|
|
|
|
(C) 2020 Taler Systems S.A.
|
|
|
|
|
|
|
|
GNU Taler is free software; you can redistribute it and/or modify it under the
|
|
|
|
terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation; either version 3, or (at your option) any later version.
|
|
|
|
|
|
|
|
GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
|
|
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
|
|
GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Imports.
|
|
|
|
*/
|
2021-10-20 13:06:31 +02:00
|
|
|
import { GlobalTestState } from "../harness/harness.js";
|
2020-09-03 22:50:20 +02:00
|
|
|
import {
|
|
|
|
createSimpleTestkudosEnvironment,
|
|
|
|
withdrawViaBank,
|
|
|
|
makeTestPayment,
|
2021-10-20 13:06:31 +02:00
|
|
|
} from "../harness/helpers.js";
|
2020-08-05 21:00:36 +02:00
|
|
|
|
|
|
|
/**
|
2020-09-03 22:50:20 +02:00
|
|
|
* Run test for basic, bank-integrated withdrawal and payment.
|
2020-08-05 21:00:36 +02:00
|
|
|
*/
|
2021-01-12 20:04:16 +01:00
|
|
|
export async function runPaymentTest(t: GlobalTestState) {
|
2020-08-05 21:00:36 +02:00
|
|
|
// Set up test environment
|
|
|
|
|
|
|
|
const {
|
|
|
|
wallet,
|
|
|
|
bank,
|
|
|
|
exchange,
|
|
|
|
merchant,
|
|
|
|
} = await createSimpleTestkudosEnvironment(t);
|
|
|
|
|
|
|
|
// Withdraw digital cash into the wallet.
|
|
|
|
|
|
|
|
await withdrawViaBank(t, { wallet, bank, exchange, amount: "TESTKUDOS:20" });
|
|
|
|
|
2020-09-03 22:50:20 +02:00
|
|
|
const order = {
|
|
|
|
summary: "Buy me!",
|
|
|
|
amount: "TESTKUDOS:5",
|
|
|
|
fulfillment_url: "taler://fulfillment-success/thx",
|
|
|
|
};
|
2020-08-05 21:00:36 +02:00
|
|
|
|
2020-09-03 22:50:20 +02:00
|
|
|
await makeTestPayment(t, { wallet, merchant, order });
|
2020-12-02 17:05:28 +01:00
|
|
|
|
2022-01-27 14:33:23 +01:00
|
|
|
const order2 = {
|
|
|
|
summary: "Testing “unicode” characters",
|
|
|
|
amount: "TESTKUDOS:5",
|
|
|
|
fulfillment_url: "taler://fulfillment-success/thx",
|
|
|
|
};
|
|
|
|
|
|
|
|
await makeTestPayment(t, { wallet, merchant, order: order2 });
|
|
|
|
|
2020-12-02 17:05:28 +01:00
|
|
|
await wallet.runUntilDone();
|
2021-01-12 20:04:16 +01:00
|
|
|
}
|
2021-05-21 11:47:20 +02:00
|
|
|
|
|
|
|
runPaymentTest.suites = ["wallet"];
|