2018-02-22 14:51:12 +01:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
2020-01-13 00:27:48 +01:00
|
|
|
Copyright (C) 2018-2020 Taler Systems SA
|
2018-02-22 14:51:12 +01:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
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 TALER; see the file COPYING. If not, see
|
|
|
|
<http://www.gnu.org/licenses/>
|
|
|
|
*/
|
|
|
|
/**
|
2020-01-13 18:16:01 +01:00
|
|
|
* @file lib/testing_api_helpers_bank.c
|
|
|
|
* @brief convenience functions for bank tests.
|
2018-02-22 14:51:12 +01:00
|
|
|
* @author Marcello Stanisci
|
2020-01-13 18:16:01 +01:00
|
|
|
* @author Christian Grothoff
|
2018-02-22 14:51:12 +01:00
|
|
|
*/
|
|
|
|
#include "platform.h"
|
|
|
|
#include <gnunet/gnunet_util_lib.h>
|
2020-01-13 00:27:48 +01:00
|
|
|
#include "taler_testing_lib.h"
|
2019-09-09 16:46:01 +02:00
|
|
|
#include "taler_fakebank_lib.h"
|
2018-02-22 14:51:12 +01:00
|
|
|
|
2019-09-15 10:27:39 +02:00
|
|
|
#define BANK_FAIL() \
|
|
|
|
do {GNUNET_break (0); return NULL; } while (0)
|
|
|
|
|
|
|
|
|
2019-09-09 16:46:01 +02:00
|
|
|
/**
|
|
|
|
* Runs the Fakebank by guessing / extracting the portnumber
|
|
|
|
* from the base URL.
|
|
|
|
*
|
|
|
|
* @param bank_url bank's base URL.
|
|
|
|
* @return the fakebank process handle, or NULL if any
|
|
|
|
* error occurs.
|
|
|
|
*/
|
|
|
|
struct TALER_FAKEBANK_Handle *
|
|
|
|
TALER_TESTING_run_fakebank (const char *bank_url)
|
|
|
|
{
|
|
|
|
const char *port;
|
|
|
|
long pnum;
|
|
|
|
struct TALER_FAKEBANK_Handle *fakebankd;
|
|
|
|
|
|
|
|
port = strrchr (bank_url,
|
|
|
|
(unsigned char) ':');
|
|
|
|
if (NULL == port)
|
|
|
|
pnum = 80;
|
|
|
|
else
|
|
|
|
pnum = strtol (port + 1, NULL, 10);
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Starting Fakebank on port %u (%s)\n",
|
|
|
|
(unsigned int) pnum,
|
|
|
|
bank_url);
|
|
|
|
fakebankd = TALER_FAKEBANK_start ((uint16_t) pnum);
|
|
|
|
if (NULL == fakebankd)
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return fakebankd;
|
|
|
|
}
|
|
|
|
|
2019-09-09 23:20:18 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Look for substring in a programs' name.
|
|
|
|
*
|
|
|
|
* @param prog program's name to look into
|
|
|
|
* @param marker chunk to find in @a prog
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
TALER_TESTING_has_in_name (const char *prog_name,
|
|
|
|
const char *marker)
|
|
|
|
{
|
|
|
|
size_t name_pos;
|
|
|
|
size_t pos;
|
|
|
|
|
2019-09-15 10:27:39 +02:00
|
|
|
if (! prog_name || ! marker)
|
2019-09-09 23:20:18 +02:00
|
|
|
return GNUNET_NO;
|
|
|
|
|
|
|
|
pos = 0;
|
|
|
|
name_pos = 0;
|
|
|
|
while (prog_name[pos])
|
|
|
|
{
|
|
|
|
if ('/' == prog_name[pos])
|
|
|
|
name_pos = pos + 1;
|
|
|
|
pos++;
|
|
|
|
}
|
|
|
|
if (name_pos == pos)
|
|
|
|
return GNUNET_YES;
|
2019-09-15 10:27:39 +02:00
|
|
|
return strstr (prog_name + name_pos, marker) != NULL;
|
2019-09-09 23:20:18 +02:00
|
|
|
}
|
|
|
|
|
2019-10-31 12:59:50 +01:00
|
|
|
|
2018-02-22 14:51:12 +01:00
|
|
|
/**
|
|
|
|
* Start the (Python) bank process. Assume the port
|
|
|
|
* is available and the database is clean. Use the "prepare
|
|
|
|
* bank" function to do such tasks.
|
|
|
|
*
|
|
|
|
* @param config_filename configuration filename.
|
2018-05-29 10:27:41 +02:00
|
|
|
* @param bank_url base URL of the bank, used by `wget' to check
|
|
|
|
* that the bank was started right.
|
2018-02-22 14:51:12 +01:00
|
|
|
*
|
|
|
|
* @return the process, or NULL if the process could not
|
|
|
|
* be started.
|
|
|
|
*/
|
|
|
|
struct GNUNET_OS_Process *
|
2018-05-04 15:46:07 +02:00
|
|
|
TALER_TESTING_run_bank (const char *config_filename,
|
|
|
|
const char *bank_url)
|
2018-02-22 14:51:12 +01:00
|
|
|
{
|
|
|
|
struct GNUNET_OS_Process *bank_proc;
|
|
|
|
unsigned int iter;
|
2018-05-04 15:46:07 +02:00
|
|
|
char *wget_cmd;
|
|
|
|
char *database;
|
|
|
|
char *serve_cfg;
|
|
|
|
char *serve_arg;
|
|
|
|
struct GNUNET_CONFIGURATION_Handle *cfg;
|
|
|
|
|
|
|
|
cfg = GNUNET_CONFIGURATION_create ();
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CONFIGURATION_load (cfg,
|
|
|
|
config_filename))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
GNUNET_CONFIGURATION_destroy (cfg);
|
|
|
|
exit (77);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CONFIGURATION_get_value_string (cfg,
|
|
|
|
"bank",
|
|
|
|
"database",
|
|
|
|
&database))
|
|
|
|
{
|
|
|
|
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_WARNING,
|
|
|
|
"bank",
|
|
|
|
"database");
|
|
|
|
GNUNET_break (0);
|
|
|
|
GNUNET_CONFIGURATION_destroy (cfg);
|
|
|
|
exit (77);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CONFIGURATION_get_value_string (cfg,
|
|
|
|
"bank",
|
|
|
|
"serve",
|
|
|
|
&serve_cfg))
|
|
|
|
{
|
|
|
|
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_WARNING,
|
|
|
|
"bank",
|
|
|
|
"serve");
|
|
|
|
GNUNET_break (0);
|
|
|
|
GNUNET_CONFIGURATION_destroy (cfg);
|
2019-09-15 10:27:39 +02:00
|
|
|
GNUNET_free (database);
|
2018-05-04 15:46:07 +02:00
|
|
|
exit (77);
|
|
|
|
}
|
2019-09-15 10:27:39 +02:00
|
|
|
GNUNET_CONFIGURATION_destroy (cfg);
|
2018-05-04 15:46:07 +02:00
|
|
|
|
|
|
|
serve_arg = "serve-http";
|
|
|
|
if (0 != strcmp ("http", serve_cfg))
|
|
|
|
serve_arg = "serve-uwsgi";
|
2019-09-15 10:27:39 +02:00
|
|
|
GNUNET_free (serve_cfg);
|
2018-02-22 14:51:12 +01:00
|
|
|
bank_proc = GNUNET_OS_start_process
|
2019-08-25 16:18:24 +02:00
|
|
|
(GNUNET_NO,
|
|
|
|
GNUNET_OS_INHERIT_STD_ALL,
|
|
|
|
NULL, NULL, NULL,
|
2019-12-23 11:47:16 +01:00
|
|
|
"taler-bank-manage-testing",
|
|
|
|
"taler-bank-manage-testing",
|
|
|
|
config_filename,
|
|
|
|
database,
|
2019-08-25 16:18:24 +02:00
|
|
|
serve_arg, NULL);
|
2019-09-15 10:27:39 +02:00
|
|
|
GNUNET_free (database);
|
2018-02-22 14:51:12 +01:00
|
|
|
if (NULL == bank_proc)
|
2019-09-15 10:27:39 +02:00
|
|
|
{
|
2018-02-22 14:51:12 +01:00
|
|
|
BANK_FAIL ();
|
2019-09-15 10:27:39 +02:00
|
|
|
}
|
2018-02-22 14:51:12 +01:00
|
|
|
|
2018-05-04 15:46:07 +02:00
|
|
|
GNUNET_asprintf (&wget_cmd,
|
2020-01-09 16:20:28 +01:00
|
|
|
"wget -q -t 2 -T 1 %s -o /dev/null -O /dev/null",
|
2018-05-04 15:46:07 +02:00
|
|
|
bank_url);
|
|
|
|
|
2018-02-22 14:51:12 +01:00
|
|
|
/* give child time to start and bind against the socket */
|
|
|
|
fprintf (stderr,
|
2020-01-17 12:15:57 +01:00
|
|
|
"Waiting for `taler-bank-manage' to be ready (via %s)\n", wget_cmd);
|
2018-02-22 14:51:12 +01:00
|
|
|
iter = 0;
|
|
|
|
do
|
2019-08-25 16:18:24 +02:00
|
|
|
{
|
|
|
|
if (10 == iter)
|
2018-02-22 14:51:12 +01:00
|
|
|
{
|
2019-08-25 16:18:24 +02:00
|
|
|
fprintf (
|
|
|
|
stderr,
|
|
|
|
"Failed to launch `taler-bank-manage' (or `wget')\n");
|
|
|
|
GNUNET_OS_process_kill (bank_proc,
|
|
|
|
SIGTERM);
|
|
|
|
GNUNET_OS_process_wait (bank_proc);
|
|
|
|
GNUNET_OS_process_destroy (bank_proc);
|
2019-09-15 10:27:39 +02:00
|
|
|
GNUNET_free (wget_cmd);
|
2019-08-25 16:18:24 +02:00
|
|
|
BANK_FAIL ();
|
2018-02-22 14:51:12 +01:00
|
|
|
}
|
2019-08-25 16:18:24 +02:00
|
|
|
fprintf (stderr, ".");
|
|
|
|
sleep (1);
|
|
|
|
iter++;
|
|
|
|
}
|
2018-05-04 15:46:07 +02:00
|
|
|
while (0 != system (wget_cmd));
|
2019-09-15 10:27:39 +02:00
|
|
|
GNUNET_free (wget_cmd);
|
2018-02-22 14:51:12 +01:00
|
|
|
fprintf (stderr, "\n");
|
|
|
|
|
|
|
|
return bank_proc;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-05-29 10:27:41 +02:00
|
|
|
|
2018-02-22 14:51:12 +01:00
|
|
|
/**
|
|
|
|
* Prepare the bank execution. Check if the port is available
|
2018-05-29 10:27:41 +02:00
|
|
|
* and reset database.
|
2018-02-22 14:51:12 +01:00
|
|
|
*
|
2018-05-29 10:34:41 +02:00
|
|
|
* @param config_filename configuration file name.
|
2020-01-18 13:57:47 +01:00
|
|
|
* @param[out] bc set to the bank's configuration data
|
2018-02-22 14:51:12 +01:00
|
|
|
* @return the base url, or NULL upon errors. Must be freed
|
|
|
|
* by the caller.
|
|
|
|
*/
|
2020-01-13 00:27:48 +01:00
|
|
|
int
|
|
|
|
TALER_TESTING_prepare_bank (const char *config_filename,
|
2020-01-18 03:50:54 +01:00
|
|
|
const char *config_section,
|
2020-01-13 00:27:48 +01:00
|
|
|
struct TALER_TESTING_BankConfiguration *bc)
|
2018-02-22 14:51:12 +01:00
|
|
|
{
|
|
|
|
struct GNUNET_CONFIGURATION_Handle *cfg;
|
|
|
|
unsigned long long port;
|
|
|
|
struct GNUNET_OS_Process *dbreset_proc;
|
|
|
|
enum GNUNET_OS_ProcessStatusType type;
|
|
|
|
unsigned long code;
|
2018-05-29 10:27:41 +02:00
|
|
|
char *database;
|
2020-01-18 03:50:54 +01:00
|
|
|
char *exchange_payto_uri;
|
2018-02-22 14:51:12 +01:00
|
|
|
|
|
|
|
cfg = GNUNET_CONFIGURATION_create ();
|
|
|
|
|
2019-09-15 10:27:39 +02:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CONFIGURATION_load (cfg, config_filename))
|
|
|
|
{
|
|
|
|
GNUNET_CONFIGURATION_destroy (cfg);
|
2020-01-13 00:27:48 +01:00
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
2019-09-15 10:27:39 +02:00
|
|
|
}
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CONFIGURATION_get_value_string (cfg,
|
|
|
|
"bank",
|
|
|
|
"DATABASE",
|
|
|
|
&database))
|
2018-05-29 10:27:41 +02:00
|
|
|
{
|
|
|
|
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"bank",
|
|
|
|
"DATABASE");
|
|
|
|
GNUNET_CONFIGURATION_destroy (cfg);
|
2020-01-13 00:27:48 +01:00
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
2018-05-29 10:27:41 +02:00
|
|
|
}
|
|
|
|
|
2020-01-18 03:50:54 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CONFIGURATION_get_value_string (cfg,
|
|
|
|
config_section,
|
|
|
|
"URL", /* FIXME: config should be renamed to payto_uri, it's not an url even! */
|
|
|
|
&exchange_payto_uri))
|
|
|
|
{
|
|
|
|
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_WARNING,
|
|
|
|
config_section,
|
|
|
|
"URL");
|
|
|
|
GNUNET_CONFIGURATION_destroy (cfg);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
|
2019-09-15 10:27:39 +02:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CONFIGURATION_get_value_number (cfg,
|
|
|
|
"bank",
|
|
|
|
"HTTP_PORT",
|
|
|
|
&port))
|
2018-02-22 14:51:12 +01:00
|
|
|
{
|
|
|
|
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"bank",
|
|
|
|
"HTTP_PORT");
|
|
|
|
GNUNET_CONFIGURATION_destroy (cfg);
|
2019-09-15 10:27:39 +02:00
|
|
|
GNUNET_free (database);
|
2020-01-13 00:27:48 +01:00
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
2018-02-22 14:51:12 +01:00
|
|
|
}
|
|
|
|
|
2020-01-13 00:27:48 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_NETWORK_test_port_free (IPPROTO_TCP,
|
|
|
|
(uint16_t) port))
|
2018-02-22 14:51:12 +01:00
|
|
|
{
|
|
|
|
fprintf (stderr,
|
|
|
|
"Required port %llu not available, skipping.\n",
|
2019-08-25 16:18:24 +02:00
|
|
|
port);
|
2020-01-13 00:27:48 +01:00
|
|
|
GNUNET_break (0);
|
|
|
|
GNUNET_free (database);
|
2020-01-16 20:44:35 +01:00
|
|
|
GNUNET_CONFIGURATION_destroy (cfg);
|
2020-01-13 00:27:48 +01:00
|
|
|
return GNUNET_SYSERR;
|
2018-02-22 14:51:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* DB preparation */
|
|
|
|
if (NULL ==
|
2019-08-25 16:18:24 +02:00
|
|
|
(dbreset_proc = GNUNET_OS_start_process (
|
|
|
|
GNUNET_NO,
|
|
|
|
GNUNET_OS_INHERIT_STD_ALL,
|
|
|
|
NULL, NULL, NULL,
|
|
|
|
"taler-bank-manage",
|
|
|
|
"taler-bank-manage",
|
2020-01-17 12:31:20 +01:00
|
|
|
"-c", config_filename,
|
2019-08-25 16:18:24 +02:00
|
|
|
"--with-db", database,
|
|
|
|
"django",
|
|
|
|
"flush",
|
|
|
|
"--no-input", NULL)))
|
2018-02-22 14:51:12 +01:00
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"Failed to flush the bank db.\n");
|
2019-09-15 10:27:39 +02:00
|
|
|
GNUNET_free (database);
|
2020-01-16 20:44:35 +01:00
|
|
|
GNUNET_CONFIGURATION_destroy (cfg);
|
2020-01-13 00:27:48 +01:00
|
|
|
return GNUNET_SYSERR;
|
2018-02-22 14:51:12 +01:00
|
|
|
}
|
2019-09-15 10:27:39 +02:00
|
|
|
GNUNET_free (database);
|
2018-02-22 14:51:12 +01:00
|
|
|
|
|
|
|
if (GNUNET_SYSERR ==
|
|
|
|
GNUNET_OS_process_wait_status (dbreset_proc,
|
|
|
|
&type,
|
|
|
|
&code))
|
|
|
|
{
|
|
|
|
GNUNET_OS_process_destroy (dbreset_proc);
|
2020-01-13 00:27:48 +01:00
|
|
|
GNUNET_break (0);
|
2020-01-16 20:44:35 +01:00
|
|
|
GNUNET_CONFIGURATION_destroy (cfg);
|
2020-01-13 00:27:48 +01:00
|
|
|
return GNUNET_SYSERR;
|
2018-02-22 14:51:12 +01:00
|
|
|
}
|
|
|
|
if ( (type == GNUNET_OS_PROCESS_EXITED) &&
|
|
|
|
(0 != code) )
|
|
|
|
{
|
|
|
|
fprintf (stderr,
|
|
|
|
"Failed to setup database\n");
|
2020-01-13 00:27:48 +01:00
|
|
|
GNUNET_break (0);
|
2020-01-16 20:44:35 +01:00
|
|
|
GNUNET_CONFIGURATION_destroy (cfg);
|
2020-01-13 00:27:48 +01:00
|
|
|
return GNUNET_SYSERR;
|
2018-02-22 14:51:12 +01:00
|
|
|
}
|
|
|
|
if ( (type != GNUNET_OS_PROCESS_EXITED) ||
|
|
|
|
(0 != code) )
|
|
|
|
{
|
2020-01-13 00:27:48 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"Unexpected error running `taler-bank-manage django flush'!\n");
|
|
|
|
GNUNET_break (0);
|
2020-01-16 20:44:35 +01:00
|
|
|
GNUNET_CONFIGURATION_destroy (cfg);
|
2020-01-13 00:27:48 +01:00
|
|
|
return GNUNET_SYSERR;
|
2018-02-22 14:51:12 +01:00
|
|
|
}
|
|
|
|
GNUNET_OS_process_destroy (dbreset_proc);
|
2020-01-13 18:16:01 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_BANK_auth_parse_cfg (cfg,
|
2020-01-18 03:50:54 +01:00
|
|
|
config_section,
|
2020-01-13 18:16:01 +01:00
|
|
|
&bc->exchange_auth))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2020-01-16 20:44:35 +01:00
|
|
|
GNUNET_CONFIGURATION_destroy (cfg);
|
2020-01-13 18:16:01 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2020-01-16 20:44:35 +01:00
|
|
|
GNUNET_CONFIGURATION_destroy (cfg);
|
2020-01-18 03:50:54 +01:00
|
|
|
bc->exchange_payto = exchange_payto_uri;
|
2020-01-17 12:15:57 +01:00
|
|
|
bc->user42_payto = "payto://x-taler-bank/localhost/42";
|
|
|
|
bc->user43_payto = "payto://x-taler-bank/localhost/43";
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Using pybank %s on port %u\n",
|
|
|
|
bc->exchange_auth.wire_gateway_url,
|
|
|
|
(unsigned int) port);
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO, "exchange payto: %s\n",
|
|
|
|
bc->exchange_payto);
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO, "user42_payto: %s\n",
|
|
|
|
bc->user42_payto);
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO, "user42_payto: %s\n",
|
|
|
|
bc->user43_payto);
|
2020-01-13 00:27:48 +01:00
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prepare launching a fakebank. Check that the configuration
|
|
|
|
* file has the right option, and that the port is available.
|
|
|
|
* If everything is OK, return the configuration data of the fakebank.
|
|
|
|
*
|
|
|
|
* @param config_filename configuration file to use
|
|
|
|
* @param config_section which account to use (must match x-taler-bank)
|
2020-01-18 13:57:47 +01:00
|
|
|
* @param[out] bc set to the bank's configuration data
|
2020-01-13 00:27:48 +01:00
|
|
|
* @return #GNUNET_OK on success
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
TALER_TESTING_prepare_fakebank (const char *config_filename,
|
|
|
|
const char *config_section,
|
|
|
|
struct TALER_TESTING_BankConfiguration *bc)
|
|
|
|
{
|
|
|
|
struct GNUNET_CONFIGURATION_Handle *cfg;
|
2020-01-17 02:23:38 +01:00
|
|
|
unsigned long long fakebank_port;
|
2020-01-18 03:50:54 +01:00
|
|
|
char *exchange_payto_uri;
|
|
|
|
char *exchange_xtalerbank_account;
|
2020-01-13 00:27:48 +01:00
|
|
|
|
|
|
|
cfg = GNUNET_CONFIGURATION_create ();
|
|
|
|
if (GNUNET_OK != GNUNET_CONFIGURATION_load (cfg,
|
|
|
|
config_filename))
|
|
|
|
return GNUNET_SYSERR;
|
2020-01-17 01:23:32 +01:00
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
2020-01-17 02:23:38 +01:00
|
|
|
GNUNET_CONFIGURATION_get_value_number (cfg,
|
|
|
|
"BANK",
|
|
|
|
"HTTP_PORT",
|
|
|
|
&fakebank_port))
|
2020-01-17 01:23:32 +01:00
|
|
|
{
|
2020-01-17 02:23:38 +01:00
|
|
|
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_WARNING,
|
|
|
|
"BANK",
|
|
|
|
"HTTP_PORT");
|
2020-01-17 01:23:32 +01:00
|
|
|
GNUNET_CONFIGURATION_destroy (cfg);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2020-01-18 03:50:54 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CONFIGURATION_get_value_string (cfg,
|
|
|
|
config_section,
|
|
|
|
"URL", /* FIXME: config should be renamed to payto_uri, it's not an url even! */
|
|
|
|
&exchange_payto_uri))
|
|
|
|
{
|
|
|
|
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_WARNING,
|
|
|
|
config_section,
|
|
|
|
"URL");
|
|
|
|
GNUNET_CONFIGURATION_destroy (cfg);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2020-01-17 02:23:38 +01:00
|
|
|
bc->exchange_auth.method = TALER_BANK_AUTH_NONE;
|
2020-01-17 20:50:39 +01:00
|
|
|
|
2020-01-18 03:50:54 +01:00
|
|
|
exchange_xtalerbank_account = TALER_xtalerbank_account_from_payto (
|
|
|
|
exchange_payto_uri);
|
|
|
|
|
|
|
|
if (NULL == exchange_xtalerbank_account)
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
|
2020-01-17 02:23:38 +01:00
|
|
|
GNUNET_asprintf (&bc->exchange_auth.wire_gateway_url,
|
2020-01-17 20:50:39 +01:00
|
|
|
"http://localhost:%u/%s/",
|
|
|
|
(unsigned int) fakebank_port,
|
2020-01-18 03:50:54 +01:00
|
|
|
exchange_xtalerbank_account);
|
2020-01-17 01:23:32 +01:00
|
|
|
|
2020-01-17 02:23:38 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Using fakebank %s on port %u\n",
|
|
|
|
bc->exchange_auth.wire_gateway_url,
|
|
|
|
(unsigned int) fakebank_port);
|
2020-01-17 01:23:32 +01:00
|
|
|
|
2020-01-13 00:27:48 +01:00
|
|
|
GNUNET_CONFIGURATION_destroy (cfg);
|
|
|
|
if (GNUNET_OK !=
|
2020-01-18 04:00:35 +01:00
|
|
|
TALER_TESTING_url_port_free (bc->exchange_auth.wire_gateway_url))
|
2020-01-13 00:27:48 +01:00
|
|
|
{
|
2020-01-18 04:00:35 +01:00
|
|
|
GNUNET_free (bc->exchange_auth.wire_gateway_url);
|
|
|
|
bc->exchange_auth.wire_gateway_url = NULL;
|
2020-01-13 00:27:48 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2020-01-17 01:23:32 +01:00
|
|
|
/* Now we know it's the fake bank, for purpose of authentication, we
|
|
|
|
* don't have any auth. */
|
2020-01-13 18:16:01 +01:00
|
|
|
bc->exchange_auth.method = TALER_BANK_AUTH_NONE;
|
2020-01-18 03:50:54 +01:00
|
|
|
bc->exchange_payto = exchange_payto_uri;
|
2020-01-17 02:23:38 +01:00
|
|
|
bc->user42_payto = "payto://x-taler-bank/localhost/42";
|
|
|
|
bc->user43_payto = "payto://x-taler-bank/localhost/43";
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO, "exchange payto: %s\n",
|
|
|
|
bc->exchange_payto);
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO, "user42_payto: %s\n",
|
|
|
|
bc->user42_payto);
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO, "user42_payto: %s\n",
|
|
|
|
bc->user43_payto);
|
2020-01-13 00:27:48 +01:00
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Allocate and return a piece of wire-details. Combines
|
|
|
|
* a @a payto -URL and adds some salt to create the JSON.
|
|
|
|
*
|
|
|
|
* @param payto payto://-URL to encapsulate
|
|
|
|
* @return JSON describing the account, including the
|
|
|
|
* payto://-URL of the account, must be manually decref'd
|
|
|
|
*/
|
|
|
|
json_t *
|
|
|
|
TALER_TESTING_make_wire_details (const char *payto)
|
|
|
|
{
|
|
|
|
return json_pack ("{s:s, s:s}",
|
|
|
|
"url", payto,
|
|
|
|
"salt",
|
|
|
|
"test-salt (must be constant for aggregation tests)");
|
2018-02-22 14:51:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-01-13 00:27:48 +01:00
|
|
|
/* end of testing_api_helpers_bank.c */
|