wallet-core/packages/taler-wallet-webextension/src/cta/Withdraw.test.ts

268 lines
8.0 KiB
TypeScript
Raw Normal View History

/*
This file is part of GNU Taler
(C) 2021 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/>
*/
/**
*
* @author Sebastian Javier Marchano (sebasjm)
*/
2022-06-06 05:09:25 +02:00
import {
Amounts,
ExchangeListItem,
GetExchangeTosResult,
} from "@gnu-taler/taler-util";
2022-04-12 05:41:16 +02:00
import { ExchangeWithdrawDetails } from "@gnu-taler/taler-wallet-core";
import { expect } from "chai";
import { mountHook } from "../test-utils.js";
import { useComponentState } from "./Withdraw.js";
2022-06-06 05:09:25 +02:00
const exchanges: ExchangeListItem[] = [
{
currency: "ARS",
exchangeBaseUrl: "http://exchange.demo.taler.net",
paytoUris: [],
tos: {
acceptedVersion: "",
},
},
];
describe("Withdraw CTA states", () => {
it("should tell the user that the URI is missing", async () => {
2022-06-06 05:09:25 +02:00
const { getLastResultOrThrow, waitNextUpdate, assertNoPendingUpdate } =
mountHook(() =>
useComponentState(undefined, {
listExchanges: async () => ({ exchanges }),
getWithdrawalDetailsForUri: async ({ talerWithdrawUri }: any) => ({
amount: "ARS:2",
possibleExchanges: exchanges,
}),
} as any),
);
{
2022-06-06 05:09:25 +02:00
const { status, hook } = getLastResultOrThrow();
expect(status).equals("loading-uri");
expect(hook).undefined;
}
2022-06-06 05:09:25 +02:00
await waitNextUpdate();
{
2022-06-06 05:09:25 +02:00
const { status, hook } = getLastResultOrThrow();
2022-06-06 05:09:25 +02:00
expect(status).equals("loading-uri");
2022-04-26 04:07:31 +02:00
if (!hook) expect.fail();
if (!hook.hasError) expect.fail();
if (hook.operational) expect.fail();
expect(hook.message).eq("ERROR_NO-URI-FOR-WITHDRAWAL");
}
2022-06-06 05:09:25 +02:00
await assertNoPendingUpdate();
});
it("should tell the user that there is not known exchange", async () => {
2022-06-06 05:09:25 +02:00
const { getLastResultOrThrow, waitNextUpdate, assertNoPendingUpdate } =
mountHook(() =>
useComponentState("taler-withdraw://", {
listExchanges: async () => ({ exchanges }),
getWithdrawalDetailsForUri: async ({ talerWithdrawUri }: any) => ({
amount: "EUR:2",
possibleExchanges: [],
}),
} as any),
);
{
2022-06-06 05:09:25 +02:00
const { status, hook } = getLastResultOrThrow();
expect(status).equals("loading-uri");
expect(hook).undefined;
}
2022-06-06 05:09:25 +02:00
await waitNextUpdate();
{
2022-06-06 05:09:25 +02:00
const { status, hook } = getLastResultOrThrow();
2022-06-06 05:09:25 +02:00
expect(status).equals("loading-exchange");
2022-06-06 05:09:25 +02:00
expect(hook).deep.equals({
hasError: true,
operational: false,
message: "ERROR_NO-DEFAULT-EXCHANGE",
});
}
2022-06-06 05:09:25 +02:00
await assertNoPendingUpdate();
});
2022-04-12 05:41:16 +02:00
it("should be able to withdraw if tos are ok", async () => {
2022-06-06 05:09:25 +02:00
const { getLastResultOrThrow, waitNextUpdate, assertNoPendingUpdate } =
mountHook(() =>
useComponentState("taler-withdraw://", {
listExchanges: async () => ({ exchanges }),
getWithdrawalDetailsForUri: async ({ talerWithdrawUri }: any) => ({
amount: "ARS:2",
possibleExchanges: exchanges,
}),
getExchangeWithdrawalInfo:
async (): Promise<ExchangeWithdrawDetails> =>
({
withdrawalAmountRaw: "ARS:5",
withdrawalAmountEffective: "ARS:5",
} as any),
getExchangeTos: async (): Promise<GetExchangeTosResult> => ({
contentType: "text",
content: "just accept",
acceptedEtag: "v1",
currentEtag: "v1",
}),
2022-04-12 05:41:16 +02:00
} as any),
2022-06-06 05:09:25 +02:00
);
2022-04-12 05:41:16 +02:00
{
2022-06-06 05:09:25 +02:00
const { status, hook } = getLastResultOrThrow();
expect(status).equals("loading-uri");
2022-04-12 05:41:16 +02:00
expect(hook).undefined;
}
2022-06-06 05:09:25 +02:00
await waitNextUpdate();
2022-04-12 05:41:16 +02:00
{
2022-06-06 05:09:25 +02:00
const { status, hook } = getLastResultOrThrow();
2022-04-12 05:41:16 +02:00
2022-06-06 05:09:25 +02:00
expect(status).equals("loading-info");
2022-04-12 05:41:16 +02:00
expect(hook).undefined;
}
2022-06-06 05:09:25 +02:00
await waitNextUpdate();
2022-04-12 05:41:16 +02:00
{
2022-06-06 05:09:25 +02:00
const state = getLastResultOrThrow();
expect(state.status).equals("success");
2022-04-12 05:41:16 +02:00
if (state.status !== "success") return;
2022-06-06 05:09:25 +02:00
expect(state.exchange.isDirty).false;
expect(state.exchange.value).equal("http://exchange.demo.taler.net");
2022-04-12 05:41:16 +02:00
expect(state.exchange.list).deep.equal({
2022-06-06 05:09:25 +02:00
"http://exchange.demo.taler.net": "http://exchange.demo.taler.net",
});
expect(state.showExchangeSelection).false;
2022-04-12 05:41:16 +02:00
2022-06-06 05:09:25 +02:00
expect(state.toBeReceived).deep.equal(Amounts.parseOrThrow("ARS:2"));
expect(state.withdrawalFee).deep.equal(Amounts.parseOrThrow("ARS:0"));
expect(state.chosenAmount).deep.equal(Amounts.parseOrThrow("ARS:2"));
2022-04-12 05:41:16 +02:00
2022-06-06 05:09:25 +02:00
expect(state.doWithdrawal.onClick).not.undefined;
expect(state.mustAcceptFirst).false;
2022-04-12 05:41:16 +02:00
}
2022-06-06 05:09:25 +02:00
await assertNoPendingUpdate();
2022-04-12 05:41:16 +02:00
});
it("should be accept the tos before withdraw", async () => {
2022-06-06 05:09:25 +02:00
const { getLastResultOrThrow, waitNextUpdate, assertNoPendingUpdate } =
mountHook(() =>
useComponentState("taler-withdraw://", {
listExchanges: async () => ({ exchanges }),
getWithdrawalDetailsForUri: async ({ talerWithdrawUri }: any) => ({
amount: "ARS:2",
possibleExchanges: exchanges,
}),
getExchangeWithdrawalInfo:
async (): Promise<ExchangeWithdrawDetails> =>
({
withdrawalAmountRaw: "ARS:5",
withdrawalAmountEffective: "ARS:5",
} as any),
getExchangeTos: async (): Promise<GetExchangeTosResult> => ({
contentType: "text",
content: "just accept",
acceptedEtag: "v1",
currentEtag: "v2",
}),
setExchangeTosAccepted: async () => ({}),
2022-04-12 05:41:16 +02:00
} as any),
2022-06-06 05:09:25 +02:00
);
2022-04-12 05:41:16 +02:00
{
2022-06-06 05:09:25 +02:00
const { status, hook } = getLastResultOrThrow();
expect(status).equals("loading-uri");
2022-04-12 05:41:16 +02:00
expect(hook).undefined;
}
2022-06-06 05:09:25 +02:00
await waitNextUpdate();
2022-04-12 05:41:16 +02:00
{
2022-06-06 05:09:25 +02:00
const { status, hook } = getLastResultOrThrow();
2022-04-12 05:41:16 +02:00
2022-06-06 05:09:25 +02:00
expect(status).equals("loading-info");
2022-04-12 05:41:16 +02:00
expect(hook).undefined;
}
2022-06-06 05:09:25 +02:00
await waitNextUpdate();
2022-04-12 05:41:16 +02:00
{
2022-06-06 05:09:25 +02:00
const state = getLastResultOrThrow();
expect(state.status).equals("success");
2022-04-12 05:41:16 +02:00
if (state.status !== "success") return;
2022-06-06 05:09:25 +02:00
expect(state.exchange.isDirty).false;
expect(state.exchange.value).equal("http://exchange.demo.taler.net");
2022-04-12 05:41:16 +02:00
expect(state.exchange.list).deep.equal({
2022-06-06 05:09:25 +02:00
"http://exchange.demo.taler.net": "http://exchange.demo.taler.net",
});
expect(state.showExchangeSelection).false;
2022-04-12 05:41:16 +02:00
2022-06-06 05:09:25 +02:00
expect(state.toBeReceived).deep.equal(Amounts.parseOrThrow("ARS:2"));
expect(state.withdrawalFee).deep.equal(Amounts.parseOrThrow("ARS:0"));
expect(state.chosenAmount).deep.equal(Amounts.parseOrThrow("ARS:2"));
2022-04-12 05:41:16 +02:00
2022-06-06 05:09:25 +02:00
expect(state.doWithdrawal.onClick).undefined;
expect(state.mustAcceptFirst).true;
2022-04-12 05:41:16 +02:00
// accept TOS
2022-06-06 05:09:25 +02:00
state.tosProps?.onAccept(true);
2022-04-12 05:41:16 +02:00
}
2022-06-06 05:09:25 +02:00
await waitNextUpdate();
2022-04-12 05:41:16 +02:00
{
2022-06-06 05:09:25 +02:00
const state = getLastResultOrThrow();
expect(state.status).equals("success");
2022-04-12 05:41:16 +02:00
if (state.status !== "success") return;
2022-06-06 05:09:25 +02:00
expect(state.exchange.isDirty).false;
expect(state.exchange.value).equal("http://exchange.demo.taler.net");
2022-04-12 05:41:16 +02:00
expect(state.exchange.list).deep.equal({
2022-06-06 05:09:25 +02:00
"http://exchange.demo.taler.net": "http://exchange.demo.taler.net",
});
expect(state.showExchangeSelection).false;
2022-04-12 05:41:16 +02:00
2022-06-06 05:09:25 +02:00
expect(state.toBeReceived).deep.equal(Amounts.parseOrThrow("ARS:2"));
expect(state.withdrawalFee).deep.equal(Amounts.parseOrThrow("ARS:0"));
expect(state.chosenAmount).deep.equal(Amounts.parseOrThrow("ARS:2"));
2022-04-12 05:41:16 +02:00
2022-06-06 05:09:25 +02:00
expect(state.doWithdrawal.onClick).not.undefined;
expect(state.mustAcceptFirst).true;
2022-04-12 05:41:16 +02:00
}
2022-06-06 05:09:25 +02:00
await assertNoPendingUpdate();
2022-04-12 05:41:16 +02:00
});
2022-06-06 05:09:25 +02:00
});