harness: fix exchange base URL in tests with fault injection
This commit is contained in:
parent
34e2fd51e0
commit
7dcfd02dae
@ -406,6 +406,11 @@ export async function createFaultInjectedMerchantTestkudosEnvironment(
|
||||
const faultyMerchant = new FaultInjectedMerchantService(t, merchant, 9083);
|
||||
const faultyExchange = new FaultInjectedExchangeService(t, exchange, 9081);
|
||||
|
||||
// Base URL must contain port that the proxy is listening on.
|
||||
await exchange.modifyConfig(async (config) => {
|
||||
config.setString("exchange", "base_url", "http://localhost:9081/");
|
||||
});
|
||||
|
||||
const exchangeBankAccount = await bank.createExchangeAccount(
|
||||
"myexchange",
|
||||
"x",
|
||||
@ -546,8 +551,9 @@ export async function withdrawViaBankV2(
|
||||
},
|
||||
);
|
||||
|
||||
const withdrawalFinishedCond = wallet.waitForNotificationCond((x) =>
|
||||
x.type === NotificationType.TransactionStateTransition &&
|
||||
const withdrawalFinishedCond = wallet.waitForNotificationCond(
|
||||
(x) =>
|
||||
x.type === NotificationType.TransactionStateTransition &&
|
||||
x.newTxState.major === TransactionMajorState.Done &&
|
||||
x.transactionId === acceptRes.transactionId,
|
||||
);
|
||||
|
@ -44,7 +44,7 @@ import {
|
||||
import { defaultCoinConfig } from "../harness/denomStructures.js";
|
||||
|
||||
/**
|
||||
* Test if the wallet handles outdated exchange versions correct.y
|
||||
* Test if the wallet handles outdated exchange versions correctly.
|
||||
*/
|
||||
export async function runExchangeManagementTest(
|
||||
t: GlobalTestState,
|
||||
@ -81,6 +81,10 @@ export async function runExchangeManagementTest(
|
||||
exchange.addBankAccount("1", exchangeBankAccount);
|
||||
|
||||
const faultyExchange = new FaultInjectedExchangeService(t, exchange, 8091);
|
||||
// Base URL must contain port that the proxy is listening on.
|
||||
await exchange.modifyConfig(async (config) => {
|
||||
config.setString("exchange", "base_url", "http://localhost:8091/");
|
||||
});
|
||||
|
||||
bank.setSuggestedExchange(
|
||||
faultyExchange,
|
||||
|
@ -79,6 +79,11 @@ export async function createConfusedMerchantTestkudosEnvironment(
|
||||
const faultyMerchant = new FaultInjectedMerchantService(t, merchant, 9083);
|
||||
const faultyExchange = new FaultInjectedExchangeService(t, exchange, 9081);
|
||||
|
||||
// Base URL must contain port that the proxy is listening on.
|
||||
await exchange.modifyConfig(async (config) => {
|
||||
config.setString("exchange", "base_url", "http://localhost:9081/");
|
||||
});
|
||||
|
||||
const exchangeBankAccount = await bank.createExchangeAccount(
|
||||
"myexchange",
|
||||
"x",
|
||||
|
@ -84,6 +84,10 @@ export async function runPaymentFaultTest(t: GlobalTestState) {
|
||||
await exchange.pingUntilAvailable();
|
||||
|
||||
const faultyExchange = new FaultInjectedExchangeService(t, exchange, 8091);
|
||||
// Base URL must contain port that the proxy is listening on.
|
||||
await exchange.modifyConfig(async (config) => {
|
||||
config.setString("exchange", "base_url", "http://localhost:8091/");
|
||||
});
|
||||
|
||||
// Print all requests to the exchange
|
||||
faultyExchange.faultProxy.addFault({
|
||||
|
Loading…
Reference in New Issue
Block a user