summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-cli/src/integrationtests/test-merchant-instances-urls.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2021-03-02 21:47:57 +0100
committerFlorian Dold <florian@dold.me>2021-03-02 21:47:57 +0100
commit90a77de2f4b89bfa545f7cb7f81be6b8f6164f72 (patch)
tree1695f4a2af502ef419487929cd244ff82ce9a8b1 /packages/taler-wallet-cli/src/integrationtests/test-merchant-instances-urls.ts
parent9c2440718d566bf28a61c732849a3aa5d3ad82bb (diff)
downloadwallet-core-90a77de2f4b89bfa545f7cb7f81be6b8f6164f72.tar.gz
wallet-core-90a77de2f4b89bfa545f7cb7f81be6b8f6164f72.tar.bz2
wallet-core-90a77de2f4b89bfa545f7cb7f81be6b8f6164f72.zip
add test
Diffstat (limited to 'packages/taler-wallet-cli/src/integrationtests/test-merchant-instances-urls.ts')
-rw-r--r--packages/taler-wallet-cli/src/integrationtests/test-merchant-instances-urls.ts152
1 files changed, 152 insertions, 0 deletions
diff --git a/packages/taler-wallet-cli/src/integrationtests/test-merchant-instances-urls.ts b/packages/taler-wallet-cli/src/integrationtests/test-merchant-instances-urls.ts
new file mode 100644
index 000000000..9ed1705af
--- /dev/null
+++ b/packages/taler-wallet-cli/src/integrationtests/test-merchant-instances-urls.ts
@@ -0,0 +1,152 @@
+/*
+ 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/>
+ */
+
+/**
+ * Imports.
+ */
+import { URL } from "@gnu-taler/taler-wallet-core";
+import axios from "axios";
+import {
+ ExchangeService,
+ GlobalTestState,
+ MerchantApiClient,
+ MerchantService,
+ setupDb,
+} from "./harness";
+
+/**
+ * Do basic checks on instance management and authentication.
+ */
+export async function runMerchantInstancesUrlsTest(t: GlobalTestState) {
+ // Set up test environment
+
+ const db = await setupDb(t);
+
+ 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,
+ });
+
+ merchant.addExchange(exchange);
+
+ await merchant.start();
+ await merchant.pingUntilAvailable();
+
+ const clientForDefault = new MerchantApiClient(
+ merchant.makeInstanceBaseUrl(),
+ {
+ method: "token",
+ token: "secret-token:i-am-default",
+ },
+ );
+
+ const clientForMyinst = new MerchantApiClient(
+ merchant.makeInstanceBaseUrl("myinst"),
+ {
+ method: "token",
+ token: "secret-token:i-am-myinst",
+ },
+ );
+
+ await clientForDefault.createInstance({
+ id: "default",
+ address: {},
+ default_max_deposit_fee: "TESTKUDOS:1",
+ default_max_wire_fee: "TESTKUDOS:1",
+ default_pay_delay: { d_ms: 60000 },
+ default_wire_fee_amortization: 1,
+ default_wire_transfer_delay: { d_ms: 60000 },
+ jurisdiction: {},
+ name: "My Default Instance",
+ payto_uris: ["payto://x-taler-bank/foo/bar"],
+ auth: {
+ method: "token",
+ token: "secret-token:i-am-default",
+ },
+ });
+
+ await clientForDefault.createInstance({
+ id: "myinst",
+ address: {},
+ default_max_deposit_fee: "TESTKUDOS:1",
+ default_max_wire_fee: "TESTKUDOS:1",
+ default_pay_delay: { d_ms: 60000 },
+ default_wire_fee_amortization: 1,
+ default_wire_transfer_delay: { d_ms: 60000 },
+ jurisdiction: {},
+ name: "My Second Instance",
+ payto_uris: ["payto://x-taler-bank/foo/bar"],
+ auth: {
+ method: "token",
+ token: "secret-token:i-am-myinst",
+ },
+ });
+
+ async function check(url: string, token: string, expectedStatus: number) {
+ const resp = await axios.get(url, {
+ headers: {
+ Authorization: `Bearer ${token}`,
+ },
+ validateStatus: () => true,
+ });
+ console.log("checking", url);
+ t.assertDeepEqual(resp.status, expectedStatus);
+ }
+
+ const tokDefault = "secret-token:i-am-default";
+ const tokMyinst = "secret-token:i-am-myinst";
+
+ const defaultBaseUrl = merchant.makeInstanceBaseUrl();
+
+ await check(`${defaultBaseUrl}config`, "foo", 200);
+ await check(`${defaultBaseUrl}instances/default/config`, "foo", 200);
+ await check(`${defaultBaseUrl}instances/myinst/config`, "foo", 200);
+ await check(`${defaultBaseUrl}instances/foo/config`, "foo", 404);
+ await check(
+ `${defaultBaseUrl}instances/default/instances/config`,
+ "foo",
+ 404,
+ );
+
+ await check(
+ `${defaultBaseUrl}private/instances/myinst/config`,
+ tokDefault,
+ 404,
+ );
+
+ await check(
+ `${defaultBaseUrl}instances/myinst/private/orders`,
+ tokDefault,
+ 200,
+ );
+
+ await check(
+ `${defaultBaseUrl}private/instances/myinst/orders`,
+ tokDefault,
+ 404,
+ );
+}
+
+runMerchantInstancesUrlsTest.suites = ["merchant"];