2021-01-17 01:18:37 +01:00
|
|
|
/*
|
|
|
|
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 axios from "axios";
|
2021-01-30 16:35:55 +01:00
|
|
|
import { URL } from "@gnu-taler/taler-wallet-core";
|
2021-01-17 01:18:37 +01:00
|
|
|
import {
|
|
|
|
GlobalTestState,
|
|
|
|
pingProc,
|
|
|
|
ProcessWrapper,
|
|
|
|
runCommand,
|
2021-02-01 13:38:15 +01:00
|
|
|
extendEnv,
|
2021-01-17 01:18:37 +01:00
|
|
|
} from "./harness";
|
|
|
|
|
|
|
|
export interface LibeufinSandboxServiceInterface {
|
|
|
|
baseUrl: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface LibeufinNexusServiceInterface {
|
|
|
|
baseUrl: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface LibeufinSandboxConfig {
|
|
|
|
httpPort: number;
|
|
|
|
databaseJdbcUri: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface LibeufinNexusConfig {
|
|
|
|
httpPort: number;
|
|
|
|
databaseJdbcUri: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export class LibeufinSandboxService implements LibeufinSandboxServiceInterface {
|
|
|
|
static async create(
|
|
|
|
gc: GlobalTestState,
|
|
|
|
sandboxConfig: LibeufinSandboxConfig,
|
|
|
|
): Promise<LibeufinSandboxService> {
|
|
|
|
return new LibeufinSandboxService(gc, sandboxConfig);
|
|
|
|
}
|
|
|
|
|
|
|
|
sandboxProc: ProcessWrapper | undefined;
|
|
|
|
globalTestState: GlobalTestState;
|
|
|
|
|
|
|
|
constructor(
|
|
|
|
gc: GlobalTestState,
|
|
|
|
private sandboxConfig: LibeufinSandboxConfig,
|
|
|
|
) {
|
|
|
|
this.globalTestState = gc;
|
|
|
|
}
|
|
|
|
|
|
|
|
get baseUrl(): string {
|
|
|
|
return `http://localhost:${this.sandboxConfig.httpPort}/`;
|
|
|
|
}
|
|
|
|
|
|
|
|
async start(): Promise<void> {
|
|
|
|
this.sandboxProc = this.globalTestState.spawnService(
|
|
|
|
"libeufin-sandbox",
|
2021-02-01 13:38:15 +01:00
|
|
|
["serve", "--port", `${this.sandboxConfig.httpPort}`],
|
2021-01-17 01:18:37 +01:00
|
|
|
"libeufin-sandbox",
|
2021-02-01 13:38:15 +01:00
|
|
|
extendEnv({
|
|
|
|
LIBEUFIN_SANDBOX_DB_CONNECTION: this.sandboxConfig.databaseJdbcUri,
|
|
|
|
}),
|
2021-01-17 01:18:37 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
async pingUntilAvailable(): Promise<void> {
|
|
|
|
const url = `${this.baseUrl}config`;
|
|
|
|
await pingProc(this.sandboxProc, url, "libeufin-sandbox");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export class LibeufinNexusService {
|
|
|
|
static async create(
|
|
|
|
gc: GlobalTestState,
|
|
|
|
nexusConfig: LibeufinNexusConfig,
|
|
|
|
): Promise<LibeufinNexusService> {
|
|
|
|
return new LibeufinNexusService(gc, nexusConfig);
|
|
|
|
}
|
|
|
|
|
|
|
|
nexusProc: ProcessWrapper | undefined;
|
|
|
|
globalTestState: GlobalTestState;
|
|
|
|
|
|
|
|
constructor(gc: GlobalTestState, private nexusConfig: LibeufinNexusConfig) {
|
|
|
|
this.globalTestState = gc;
|
|
|
|
}
|
|
|
|
|
|
|
|
get baseUrl(): string {
|
|
|
|
return `http://localhost:${this.nexusConfig.httpPort}/`;
|
|
|
|
}
|
|
|
|
|
|
|
|
async start(): Promise<void> {
|
|
|
|
await runCommand(
|
|
|
|
this.globalTestState,
|
|
|
|
"libeufin-nexus-superuser",
|
|
|
|
"libeufin-nexus",
|
2021-02-01 13:38:15 +01:00
|
|
|
["superuser", "admin", "--password", "test"],
|
|
|
|
extendEnv({
|
|
|
|
LIBEUFIN_NEXUS_DB_CONNECTION: this.nexusConfig.databaseJdbcUri,
|
|
|
|
}),
|
2021-01-17 01:18:37 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
this.nexusProc = this.globalTestState.spawnService(
|
|
|
|
"libeufin-nexus",
|
2021-02-01 13:38:15 +01:00
|
|
|
["serve", "--port", `${this.nexusConfig.httpPort}`],
|
2021-01-17 01:18:37 +01:00
|
|
|
"libeufin-nexus",
|
2021-02-01 13:38:15 +01:00
|
|
|
extendEnv({
|
|
|
|
LIBEUFIN_NEXUS_DB_CONNECTION: this.nexusConfig.databaseJdbcUri,
|
|
|
|
}),
|
2021-01-17 01:18:37 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
async pingUntilAvailable(): Promise<void> {
|
|
|
|
const url = `${this.baseUrl}config`;
|
|
|
|
await pingProc(this.nexusProc, url, "libeufin-nexus");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface CreateEbicsSubscriberRequest {
|
|
|
|
hostID: string;
|
|
|
|
userID: string;
|
|
|
|
partnerID: string;
|
|
|
|
systemID?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface CreateEbicsBankAccountRequest {
|
|
|
|
subscriber: {
|
|
|
|
hostID: string;
|
|
|
|
partnerID: string;
|
|
|
|
userID: string;
|
|
|
|
systemID?: string;
|
|
|
|
};
|
|
|
|
// IBAN
|
|
|
|
iban: string;
|
|
|
|
// BIC
|
|
|
|
bic: string;
|
|
|
|
// human name
|
|
|
|
name: string;
|
|
|
|
currency: string;
|
|
|
|
label: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface SimulateIncomingTransactionRequest {
|
|
|
|
debtorIban: string;
|
|
|
|
debtorBic: string;
|
|
|
|
debtorName: string;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Subject / unstructured remittance info.
|
|
|
|
*/
|
|
|
|
subject: string;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Decimal amount without currency.
|
|
|
|
*/
|
|
|
|
amount: string;
|
|
|
|
currency: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export namespace LibeufinSandboxApi {
|
|
|
|
export async function createEbicsHost(
|
|
|
|
libeufinSandboxService: LibeufinSandboxServiceInterface,
|
|
|
|
hostID: string,
|
|
|
|
) {
|
|
|
|
const baseUrl = libeufinSandboxService.baseUrl;
|
|
|
|
let url = new URL("admin/ebics/hosts", baseUrl);
|
|
|
|
await axios.post(url.href, {
|
|
|
|
hostID,
|
|
|
|
ebicsVersion: "2.5",
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function createEbicsSubscriber(
|
|
|
|
libeufinSandboxService: LibeufinSandboxServiceInterface,
|
|
|
|
req: CreateEbicsSubscriberRequest,
|
|
|
|
) {
|
|
|
|
const baseUrl = libeufinSandboxService.baseUrl;
|
|
|
|
let url = new URL("admin/ebics/subscribers", baseUrl);
|
|
|
|
await axios.post(url.href, req);
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function createEbicsBankAccount(
|
|
|
|
libeufinSandboxService: LibeufinSandboxServiceInterface,
|
|
|
|
req: CreateEbicsBankAccountRequest,
|
|
|
|
) {
|
|
|
|
const baseUrl = libeufinSandboxService.baseUrl;
|
|
|
|
let url = new URL("admin/ebics/bank-accounts", baseUrl);
|
|
|
|
await axios.post(url.href, req);
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function simulateIncomingTransaction(
|
|
|
|
libeufinSandboxService: LibeufinSandboxServiceInterface,
|
|
|
|
accountLabel: string,
|
|
|
|
req: SimulateIncomingTransactionRequest,
|
|
|
|
) {
|
|
|
|
const baseUrl = libeufinSandboxService.baseUrl;
|
|
|
|
let url = new URL(
|
|
|
|
`admin/bank-accounts/${accountLabel}/simulate-incoming-transaction`,
|
|
|
|
baseUrl,
|
|
|
|
);
|
|
|
|
await axios.post(url.href, req);
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function getAccountTransactions(
|
|
|
|
libeufinSandboxService: LibeufinSandboxServiceInterface,
|
|
|
|
accountLabel: string,
|
|
|
|
): Promise<SandboxAccountTransactions> {
|
|
|
|
const baseUrl = libeufinSandboxService.baseUrl;
|
|
|
|
let url = new URL(
|
|
|
|
`admin/bank-accounts/${accountLabel}/transactions`,
|
|
|
|
baseUrl,
|
|
|
|
);
|
|
|
|
const res = await axios.get(url.href);
|
|
|
|
return res.data as SandboxAccountTransactions;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface SandboxAccountTransactions {
|
|
|
|
payments: {
|
|
|
|
accountLabel: string;
|
|
|
|
creditorIban: string;
|
|
|
|
creditorBic?: string;
|
|
|
|
creditorName: string;
|
|
|
|
debtorIban: string;
|
|
|
|
debtorBic: string;
|
|
|
|
debtorName: string;
|
|
|
|
amount: string;
|
|
|
|
currency: string;
|
|
|
|
subject: string;
|
|
|
|
date: string;
|
|
|
|
creditDebitIndicator: "debit" | "credit";
|
|
|
|
accountServicerReference: string;
|
|
|
|
}[];
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface CreateEbicsBankConnectionRequest {
|
|
|
|
name: string;
|
|
|
|
ebicsURL: string;
|
|
|
|
hostID: string;
|
|
|
|
userID: string;
|
|
|
|
partnerID: string;
|
|
|
|
systemID?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface CreateTalerWireGatewayFacadeRequest {
|
|
|
|
name: string;
|
|
|
|
connectionName: string;
|
|
|
|
accountName: string;
|
|
|
|
currency: string;
|
|
|
|
reserveTransferLevel: "report" | "statement" | "notification";
|
|
|
|
}
|
|
|
|
|
2021-01-20 20:31:32 +01:00
|
|
|
export interface CreateNexusUserRequest {
|
|
|
|
username: string;
|
|
|
|
password: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface PostNexusPermissionRequest {
|
|
|
|
action: "revoke" | "grant";
|
|
|
|
permission: {
|
|
|
|
subjectType: string;
|
|
|
|
subjectId: string;
|
|
|
|
resourceType: string;
|
|
|
|
resourceId: string;
|
|
|
|
permissionName: string;
|
2021-02-01 13:38:15 +01:00
|
|
|
};
|
2021-01-20 20:31:32 +01:00
|
|
|
}
|
|
|
|
|
2021-01-17 01:18:37 +01:00
|
|
|
export namespace LibeufinNexusApi {
|
|
|
|
export async function createEbicsBankConnection(
|
|
|
|
libeufinNexusService: LibeufinNexusServiceInterface,
|
|
|
|
req: CreateEbicsBankConnectionRequest,
|
|
|
|
): Promise<void> {
|
|
|
|
const baseUrl = libeufinNexusService.baseUrl;
|
|
|
|
let url = new URL("bank-connections", baseUrl);
|
|
|
|
await axios.post(
|
|
|
|
url.href,
|
|
|
|
{
|
|
|
|
source: "new",
|
|
|
|
type: "ebics",
|
|
|
|
name: req.name,
|
|
|
|
data: {
|
|
|
|
ebicsURL: req.ebicsURL,
|
|
|
|
hostID: req.hostID,
|
|
|
|
userID: req.userID,
|
|
|
|
partnerID: req.partnerID,
|
|
|
|
systemID: req.systemID,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
auth: {
|
|
|
|
username: "admin",
|
|
|
|
password: "test",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function fetchAccounts(
|
|
|
|
libeufinNexusService: LibeufinNexusServiceInterface,
|
|
|
|
connectionName: string,
|
|
|
|
): Promise<void> {
|
|
|
|
const baseUrl = libeufinNexusService.baseUrl;
|
|
|
|
let url = new URL(
|
|
|
|
`bank-connections/${connectionName}/fetch-accounts`,
|
|
|
|
baseUrl,
|
|
|
|
);
|
|
|
|
await axios.post(
|
|
|
|
url.href,
|
|
|
|
{},
|
|
|
|
{
|
|
|
|
auth: {
|
|
|
|
username: "admin",
|
|
|
|
password: "test",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function importConnectionAccount(
|
|
|
|
libeufinNexusService: LibeufinNexusServiceInterface,
|
|
|
|
connectionName: string,
|
|
|
|
offeredAccountId: string,
|
|
|
|
nexusBankAccountId: string,
|
|
|
|
): Promise<void> {
|
|
|
|
const baseUrl = libeufinNexusService.baseUrl;
|
|
|
|
let url = new URL(
|
|
|
|
`bank-connections/${connectionName}/import-account`,
|
|
|
|
baseUrl,
|
|
|
|
);
|
|
|
|
await axios.post(
|
|
|
|
url.href,
|
|
|
|
{
|
|
|
|
offeredAccountId,
|
|
|
|
nexusBankAccountId,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
auth: {
|
|
|
|
username: "admin",
|
|
|
|
password: "test",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function connectBankConnection(
|
|
|
|
libeufinNexusService: LibeufinNexusServiceInterface,
|
|
|
|
connectionName: string,
|
|
|
|
) {
|
|
|
|
const baseUrl = libeufinNexusService.baseUrl;
|
|
|
|
let url = new URL(`bank-connections/${connectionName}/connect`, baseUrl);
|
|
|
|
await axios.post(
|
|
|
|
url.href,
|
|
|
|
{},
|
|
|
|
{
|
|
|
|
auth: {
|
|
|
|
username: "admin",
|
|
|
|
password: "test",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function fetchAllTransactions(
|
|
|
|
libeufinNexusService: LibeufinNexusService,
|
|
|
|
accountName: string,
|
|
|
|
): Promise<void> {
|
|
|
|
const baseUrl = libeufinNexusService.baseUrl;
|
|
|
|
let url = new URL(
|
|
|
|
`/bank-accounts/${accountName}/fetch-transactions`,
|
|
|
|
baseUrl,
|
|
|
|
);
|
|
|
|
await axios.post(
|
|
|
|
url.href,
|
|
|
|
{
|
|
|
|
rangeType: "all",
|
|
|
|
level: "report",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
auth: {
|
|
|
|
username: "admin",
|
|
|
|
password: "test",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-01-20 20:31:32 +01:00
|
|
|
export async function createUser(
|
|
|
|
libeufinNexusService: LibeufinNexusServiceInterface,
|
|
|
|
req: CreateNexusUserRequest,
|
|
|
|
) {
|
|
|
|
const baseUrl = libeufinNexusService.baseUrl;
|
2021-02-01 13:38:15 +01:00
|
|
|
let url = new URL(`/users`, baseUrl);
|
|
|
|
await axios.post(url.href, req, {
|
|
|
|
auth: {
|
|
|
|
username: "admin",
|
|
|
|
password: "test",
|
2021-01-20 20:31:32 +01:00
|
|
|
},
|
2021-02-01 13:38:15 +01:00
|
|
|
});
|
2021-01-20 20:31:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export async function postPermission(
|
|
|
|
libeufinNexusService: LibeufinNexusServiceInterface,
|
|
|
|
req: PostNexusPermissionRequest,
|
|
|
|
) {
|
|
|
|
const baseUrl = libeufinNexusService.baseUrl;
|
2021-02-01 13:38:15 +01:00
|
|
|
let url = new URL(`/permissions`, baseUrl);
|
|
|
|
await axios.post(url.href, req, {
|
|
|
|
auth: {
|
|
|
|
username: "admin",
|
|
|
|
password: "test",
|
2021-01-20 20:31:32 +01:00
|
|
|
},
|
2021-02-01 13:38:15 +01:00
|
|
|
});
|
2021-01-20 20:31:32 +01:00
|
|
|
}
|
|
|
|
|
2021-01-17 01:18:37 +01:00
|
|
|
export async function createTwgFacade(
|
|
|
|
libeufinNexusService: LibeufinNexusServiceInterface,
|
|
|
|
req: CreateTalerWireGatewayFacadeRequest,
|
|
|
|
) {
|
|
|
|
const baseUrl = libeufinNexusService.baseUrl;
|
|
|
|
let url = new URL("facades", baseUrl);
|
|
|
|
await axios.post(
|
|
|
|
url.href,
|
|
|
|
{
|
|
|
|
name: req.name,
|
|
|
|
type: "taler-wire-gateway",
|
|
|
|
config: {
|
|
|
|
bankAccount: req.accountName,
|
|
|
|
bankConnection: req.connectionName,
|
|
|
|
currency: req.currency,
|
|
|
|
reserveTransferLevel: req.reserveTransferLevel,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
auth: {
|
|
|
|
username: "admin",
|
|
|
|
password: "test",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function submitAllPaymentInitiations(
|
|
|
|
libeufinNexusService: LibeufinNexusServiceInterface,
|
|
|
|
accountId: string,
|
|
|
|
) {
|
|
|
|
const baseUrl = libeufinNexusService.baseUrl;
|
|
|
|
let url = new URL(
|
|
|
|
`/bank-accounts/${accountId}/submit-all-payment-initiations`,
|
|
|
|
baseUrl,
|
|
|
|
);
|
|
|
|
await axios.post(
|
|
|
|
url.href,
|
|
|
|
{},
|
|
|
|
{
|
|
|
|
auth: {
|
|
|
|
username: "admin",
|
|
|
|
password: "test",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|