/* 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 */ /** * Imports. */ import { Duration, MerchantApiClient, PreparePayResultType, TalerCorebankApiClient, TalerMerchantApi, TransactionMajorState, } from "@gnu-taler/taler-util"; import { WalletApiOperation } from "@gnu-taler/taler-wallet-core"; import { CoinConfig, defaultCoinConfig } from "../harness/denomStructures.js"; import { BankService, ExchangeService, GlobalTestState, MerchantService, generateRandomPayto, setupDb, } from "../harness/harness.js"; import { createWalletDaemonWithClient, withdrawViaBankV3, } from "../harness/helpers.js"; /** * Test payment where the exchange charges wire fees. */ export async function runWalletWirefeesTest(t: GlobalTestState) { // Set up test environment 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, // Ridiculously high wire fees! overrideWireFee: "TESTKUDOS:5", }); const merchant = await MerchantService.create(t, { name: "testmerchant-1", currency: "TESTKUDOS", httpPort: 8083, database: db.connStr, }); let receiverName = "Exchange"; let exchangeBankUsername = "exchange"; let exchangeBankPassword = "mypw"; let exchangePaytoUri = generateRandomPayto(exchangeBankUsername); await exchange.addBankAccount("1", { accountName: exchangeBankUsername, accountPassword: exchangeBankPassword, wireGatewayApiBaseUrl: new URL( "accounts/exchange/taler-wire-gateway/", bank.baseUrl, ).href, accountPaytoUri: exchangePaytoUri, }); bank.setSuggestedExchange(exchange, exchangePaytoUri); await bank.start(); await bank.pingUntilAvailable(); const bankClient = new TalerCorebankApiClient(bank.corebankApiBaseUrl, { auth: { username: "admin", password: "adminpw", }, }); await bankClient.registerAccountExtended({ name: receiverName, password: exchangeBankPassword, username: exchangeBankUsername, is_taler_exchange: true, payto_uri: exchangePaytoUri, }); const coinConfig: CoinConfig[] = defaultCoinConfig.map((x) => x("TESTKUDOS")); exchange.addCoinConfigList(coinConfig); await exchange.start(); await exchange.pingUntilAvailable(); merchant.addExchange(exchange); await merchant.start(); await merchant.pingUntilAvailable(); await merchant.addInstanceWithWireAccount({ id: "default", name: "Default Instance", paytoUris: [generateRandomPayto("merchant-default")], defaultWireTransferDelay: Duration.toTalerProtocolDuration( Duration.fromSpec({ minutes: 1 }), ), }); await merchant.addInstanceWithWireAccount({ id: "minst1", name: "minst1", paytoUris: [generateRandomPayto("minst1")], defaultWireTransferDelay: Duration.toTalerProtocolDuration( Duration.fromSpec({ minutes: 1 }), ), }); const { walletClient, walletService } = await createWalletDaemonWithClient( t, { name: "wallet", persistent: true }, ); console.log("setup done!"); // Withdraw digital cash into the wallet. await withdrawViaBankV3(t, { walletClient, bankClient, exchange, amount: "TESTKUDOS:20", }); await walletClient.call(WalletApiOperation.TestingWaitTransactionsFinal, {}); const order: TalerMerchantApi.Order = { summary: "Buy me!", amount: "TESTKUDOS:1", fulfillment_url: "taler://fulfillment-success/thx", //max_wire_fee: "TESTKUDOS:0.1", max_fee: "TESTKUDOS:0.1", }; const merchantClient = new MerchantApiClient(merchant.makeInstanceBaseUrl()); const orderResp = await merchantClient.createOrder({ order, }); let orderStatus = await merchantClient.queryPrivateOrderStatus({ orderId: orderResp.order_id, }); t.assertTrue(orderStatus.order_status === "unpaid"); // Make wallet pay for the order const preparePayResult = await walletClient.call( WalletApiOperation.PreparePayForUri, { talerPayUri: orderStatus.taler_pay_uri, }, ); t.assertTrue( preparePayResult.status === PreparePayResultType.PaymentPossible, ); console.log(`amountEffective: ${preparePayResult.amountEffective}`); t.assertAmountEquals(preparePayResult.amountEffective, "TESTKUDOS:6.4"); await walletClient.call(WalletApiOperation.ConfirmPay, { transactionId: preparePayResult.transactionId, }); await walletClient.call(WalletApiOperation.TestingWaitTransactionsFinal, {}); const payTxn = await walletClient.call( WalletApiOperation.GetTransactionById, { transactionId: preparePayResult.transactionId, }, ); t.assertTrue(payTxn.txState.major === TransactionMajorState.Done); } runWalletWirefeesTest.suites = ["wallet"];