2020-08-14 12:23:50 +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/>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Integration test for the wallet testing functionality used by the exchange
|
|
|
|
* test cases.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Imports.
|
|
|
|
*/
|
2021-06-22 13:52:28 +02:00
|
|
|
import { Amounts } from "@gnu-taler/taler-util";
|
2021-06-17 13:34:59 +02:00
|
|
|
import { WalletApiOperation } from "@gnu-taler/taler-wallet-core";
|
2021-10-20 13:06:31 +02:00
|
|
|
import { CoinConfig, defaultCoinConfig } from "../harness/denomStructures.js";
|
2021-02-04 17:13:31 +01:00
|
|
|
import {
|
|
|
|
BankService,
|
|
|
|
ExchangeService,
|
|
|
|
GlobalTestState,
|
|
|
|
MerchantService,
|
|
|
|
setupDb,
|
|
|
|
WalletCli,
|
2021-11-13 12:53:48 +01:00
|
|
|
getPayto
|
2021-10-20 13:06:31 +02:00
|
|
|
} from "../harness/harness.js";
|
|
|
|
import { SimpleTestEnvironment } from "../harness/helpers.js";
|
2021-02-04 17:13:31 +01:00
|
|
|
|
|
|
|
const merchantAuthToken = "secret-token:sandbox";
|
2020-08-14 12:23:50 +02:00
|
|
|
|
|
|
|
/**
|
2021-02-04 17:13:31 +01:00
|
|
|
* Run a test case with a simple TESTKUDOS Taler environment, consisting
|
|
|
|
* of one exchange, one bank and one merchant.
|
2020-08-14 12:23:50 +02:00
|
|
|
*/
|
2021-02-04 17:13:31 +01:00
|
|
|
export async function createMyEnvironment(
|
|
|
|
t: GlobalTestState,
|
|
|
|
coinConfig: CoinConfig[] = defaultCoinConfig.map((x) => x("TESTKUDOS")),
|
|
|
|
): Promise<SimpleTestEnvironment> {
|
|
|
|
const db = await setupDb(t);
|
|
|
|
|
|
|
|
const bank = await BankService.create(t, {
|
|
|
|
allowRegistrations: true,
|
|
|
|
currency: "TESTKUDOS",
|
|
|
|
database: db.connStr,
|
|
|
|
httpPort: 8082,
|
|
|
|
});
|
|
|
|
|
|
|
|
const exchange = ExchangeService.create(t, {
|
|
|
|
name: "testexchange-1",
|
|
|
|
currency: "TESTKUDOS",
|
|
|
|
httpPort: 8081,
|
|
|
|
database: db.connStr,
|
|
|
|
});
|
|
|
|
|
|
|
|
const merchant = await MerchantService.create(t, {
|
|
|
|
name: "testmerchant-1",
|
|
|
|
currency: "TESTKUDOS",
|
|
|
|
httpPort: 8083,
|
|
|
|
database: db.connStr,
|
|
|
|
});
|
|
|
|
|
|
|
|
const exchangeBankAccount = await bank.createExchangeAccount(
|
2021-11-13 12:53:48 +01:00
|
|
|
"myexchange",
|
2021-02-04 17:13:31 +01:00
|
|
|
"x",
|
|
|
|
);
|
|
|
|
exchange.addBankAccount("1", exchangeBankAccount);
|
|
|
|
|
|
|
|
bank.setSuggestedExchange(exchange, exchangeBankAccount.accountPaytoUri);
|
|
|
|
|
|
|
|
await bank.start();
|
|
|
|
|
|
|
|
await bank.pingUntilAvailable();
|
|
|
|
|
|
|
|
exchange.addCoinConfigList(coinConfig);
|
|
|
|
|
|
|
|
await exchange.start();
|
|
|
|
await exchange.pingUntilAvailable();
|
|
|
|
|
|
|
|
merchant.addExchange(exchange);
|
|
|
|
|
|
|
|
await merchant.start();
|
|
|
|
await merchant.pingUntilAvailable();
|
|
|
|
|
|
|
|
await merchant.addInstance({
|
|
|
|
id: "default",
|
|
|
|
name: "Default Instance",
|
2021-11-13 12:53:48 +01:00
|
|
|
paytoUris: [getPayto("merchant-default")],
|
2021-02-04 17:13:31 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
console.log("setup done!");
|
|
|
|
|
|
|
|
const wallet = new WalletCli(t);
|
|
|
|
|
|
|
|
return {
|
|
|
|
commonDb: db,
|
2020-08-14 12:23:50 +02:00
|
|
|
exchange,
|
|
|
|
merchant,
|
2021-02-04 17:13:31 +01:00
|
|
|
wallet,
|
|
|
|
bank,
|
|
|
|
exchangeBankAccount,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Run test for basic, bank-integrated withdrawal.
|
|
|
|
*/
|
|
|
|
export async function runWallettestingTest(t: GlobalTestState) {
|
|
|
|
const { wallet, bank, exchange, merchant } = await createMyEnvironment(t);
|
2020-08-14 12:23:50 +02:00
|
|
|
|
2021-06-17 13:34:59 +02:00
|
|
|
await wallet.client.call(WalletApiOperation.RunIntegrationTest, {
|
2020-08-14 12:23:50 +02:00
|
|
|
amountToSpend: "TESTKUDOS:5",
|
|
|
|
amountToWithdraw: "TESTKUDOS:10",
|
|
|
|
bankBaseUrl: bank.baseUrl,
|
2022-08-25 18:34:25 +02:00
|
|
|
bankAccessApiBaseUrl: bank.bankAccessApiBaseUrl,
|
2020-08-14 12:23:50 +02:00
|
|
|
exchangeBaseUrl: exchange.baseUrl,
|
2021-02-04 17:13:31 +01:00
|
|
|
merchantAuthToken: merchantAuthToken,
|
2020-08-14 12:23:50 +02:00
|
|
|
merchantBaseUrl: merchant.makeInstanceBaseUrl(),
|
|
|
|
});
|
|
|
|
|
2021-06-17 13:34:59 +02:00
|
|
|
let txns = await wallet.client.call(WalletApiOperation.GetTransactions, {});
|
2020-08-14 12:23:50 +02:00
|
|
|
console.log(JSON.stringify(txns, undefined, 2));
|
|
|
|
let txTypes = txns.transactions.map((x) => x.type);
|
|
|
|
|
|
|
|
t.assertDeepEqual(txTypes, [
|
|
|
|
"withdrawal",
|
|
|
|
"payment",
|
|
|
|
"withdrawal",
|
|
|
|
"payment",
|
|
|
|
"refund",
|
|
|
|
"payment",
|
|
|
|
]);
|
|
|
|
|
|
|
|
wallet.deleteDatabase();
|
|
|
|
|
2021-06-17 13:34:59 +02:00
|
|
|
await wallet.client.call(WalletApiOperation.WithdrawTestBalance, {
|
2020-08-14 12:23:50 +02:00
|
|
|
amount: "TESTKUDOS:10",
|
|
|
|
bankBaseUrl: bank.baseUrl,
|
2022-08-25 18:34:25 +02:00
|
|
|
bankAccessApiBaseUrl: bank.bankAccessApiBaseUrl,
|
2020-08-14 12:23:50 +02:00
|
|
|
exchangeBaseUrl: exchange.baseUrl,
|
|
|
|
});
|
|
|
|
|
|
|
|
await wallet.runUntilDone();
|
|
|
|
|
2021-06-17 13:34:59 +02:00
|
|
|
await wallet.client.call(WalletApiOperation.TestPay, {
|
2020-08-14 12:23:50 +02:00
|
|
|
amount: "TESTKUDOS:5",
|
2021-02-04 17:13:31 +01:00
|
|
|
merchantAuthToken: merchantAuthToken,
|
2020-08-14 12:23:50 +02:00
|
|
|
merchantBaseUrl: merchant.makeInstanceBaseUrl(),
|
|
|
|
summary: "foo",
|
|
|
|
});
|
|
|
|
|
|
|
|
await wallet.runUntilDone();
|
|
|
|
|
2021-06-17 13:34:59 +02:00
|
|
|
txns = await wallet.client.call(WalletApiOperation.GetTransactions, {});
|
2020-08-14 12:23:50 +02:00
|
|
|
console.log(JSON.stringify(txns, undefined, 2));
|
|
|
|
txTypes = txns.transactions.map((x) => x.type);
|
|
|
|
|
2020-09-01 15:37:14 +02:00
|
|
|
t.assertDeepEqual(txTypes, ["withdrawal", "payment"]);
|
2020-08-14 12:23:50 +02:00
|
|
|
|
2021-06-22 13:52:28 +02:00
|
|
|
wallet.deleteDatabase();
|
|
|
|
|
|
|
|
await wallet.client.call(WalletApiOperation.WithdrawTestBalance, {
|
|
|
|
amount: "TESTKUDOS:10",
|
|
|
|
bankBaseUrl: bank.baseUrl,
|
2022-08-25 18:34:25 +02:00
|
|
|
bankAccessApiBaseUrl: bank.bankAccessApiBaseUrl,
|
2021-06-22 13:52:28 +02:00
|
|
|
exchangeBaseUrl: exchange.baseUrl,
|
|
|
|
});
|
|
|
|
|
|
|
|
await wallet.runUntilDone();
|
|
|
|
|
|
|
|
const coinDump = await wallet.client.call(WalletApiOperation.DumpCoins, {});
|
|
|
|
|
|
|
|
console.log("coin dump:", JSON.stringify(coinDump, undefined, 2));
|
|
|
|
|
|
|
|
let susp: string | undefined;
|
|
|
|
{
|
|
|
|
for (const c of coinDump.coins) {
|
|
|
|
if (0 === Amounts.cmp(c.remaining_value, "TESTKUDOS:8")) {
|
|
|
|
susp = c.coin_pub;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
t.assertTrue(susp !== undefined);
|
|
|
|
|
|
|
|
console.log("suspending coin");
|
|
|
|
|
|
|
|
await wallet.client.call(WalletApiOperation.SetCoinSuspended, {
|
|
|
|
coinPub: susp,
|
|
|
|
suspended: true,
|
|
|
|
});
|
|
|
|
|
|
|
|
// This should fail, as we've suspended a coin that we need
|
|
|
|
// to pay.
|
|
|
|
await t.assertThrowsAsync(async () => {
|
|
|
|
await wallet.client.call(WalletApiOperation.TestPay, {
|
|
|
|
amount: "TESTKUDOS:5",
|
|
|
|
merchantAuthToken: merchantAuthToken,
|
|
|
|
merchantBaseUrl: merchant.makeInstanceBaseUrl(),
|
|
|
|
summary: "foo",
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
console.log("unsuspending coin");
|
|
|
|
|
|
|
|
await wallet.client.call(WalletApiOperation.SetCoinSuspended, {
|
|
|
|
coinPub: susp,
|
|
|
|
suspended: false,
|
|
|
|
});
|
|
|
|
|
|
|
|
await wallet.client.call(WalletApiOperation.TestPay, {
|
|
|
|
amount: "TESTKUDOS:5",
|
|
|
|
merchantAuthToken: merchantAuthToken,
|
|
|
|
merchantBaseUrl: merchant.makeInstanceBaseUrl(),
|
|
|
|
summary: "foo",
|
|
|
|
});
|
|
|
|
|
2020-08-14 12:23:50 +02:00
|
|
|
await t.shutdown();
|
2021-01-12 20:04:16 +01:00
|
|
|
}
|
2021-05-21 11:47:20 +02:00
|
|
|
|
|
|
|
runWallettestingTest.suites = ["wallet"];
|