2018-01-21 18:45:19 +01:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
2020-01-13 00:27:48 +01:00
|
|
|
Copyright (C) 2018-2020 Taler Systems SA
|
2018-01-21 18:45:19 +01:00
|
|
|
|
2018-02-21 12:41:22 +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.
|
2018-01-21 18:45:19 +01:00
|
|
|
|
2018-02-21 12:41:22 +01:00
|
|
|
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.
|
2018-01-21 18:45:19 +01:00
|
|
|
|
2018-02-21 12:41:22 +01:00
|
|
|
You should have received a copy of the GNU General Public
|
|
|
|
License along with TALER; see the file COPYING. If not, see
|
2018-01-21 18:45:19 +01:00
|
|
|
<http://www.gnu.org/licenses/>
|
|
|
|
*/
|
2018-05-04 14:23:17 +02:00
|
|
|
|
2018-01-21 18:45:19 +01:00
|
|
|
/**
|
2020-01-19 15:23:19 +01:00
|
|
|
* @file testing/testing_api_helpers_exchange.c
|
2018-01-21 18:45:19 +01:00
|
|
|
* @brief helper functions
|
|
|
|
* @author Christian Grothoff
|
|
|
|
* @author Marcello Stanisci
|
|
|
|
*/
|
|
|
|
#include "platform.h"
|
|
|
|
#include "taler_json_lib.h"
|
|
|
|
#include <gnunet/gnunet_curl_lib.h>
|
|
|
|
#include "taler_signatures.h"
|
|
|
|
#include "taler_testing_lib.h"
|
|
|
|
|
|
|
|
|
2018-01-21 19:11:27 +01:00
|
|
|
void
|
|
|
|
TALER_TESTING_cleanup_files (const char *config_name)
|
|
|
|
{
|
2018-11-10 19:28:28 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CONFIGURATION_parse_and_run (config_name,
|
2019-08-25 16:18:24 +02:00
|
|
|
&TALER_TESTING_cleanup_files_cfg,
|
|
|
|
NULL))
|
2018-11-10 19:28:28 +01:00
|
|
|
exit (77);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
TALER_TESTING_cleanup_files_cfg (void *cls,
|
2019-08-25 16:18:24 +02:00
|
|
|
const struct GNUNET_CONFIGURATION_Handle *cfg)
|
2018-11-10 19:28:28 +01:00
|
|
|
{
|
2018-01-21 19:11:27 +01:00
|
|
|
char *dir;
|
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
2018-11-10 19:28:28 +01:00
|
|
|
GNUNET_CONFIGURATION_get_value_filename (cfg,
|
2019-08-25 16:18:24 +02:00
|
|
|
"exchange",
|
2020-01-16 15:28:07 +01:00
|
|
|
"KEYDIR",
|
2019-08-25 16:18:24 +02:00
|
|
|
&dir))
|
2018-01-21 19:11:27 +01:00
|
|
|
{
|
2018-11-10 19:28:28 +01:00
|
|
|
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
|
2019-08-25 16:18:24 +02:00
|
|
|
"exchange",
|
2020-01-16 15:28:07 +01:00
|
|
|
"KEYDIR");
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
if (GNUNET_YES ==
|
|
|
|
GNUNET_DISK_directory_test (dir,
|
|
|
|
GNUNET_NO))
|
|
|
|
GNUNET_break (GNUNET_OK ==
|
|
|
|
GNUNET_DISK_directory_remove (dir));
|
|
|
|
GNUNET_free (dir);
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CONFIGURATION_get_value_filename (cfg,
|
|
|
|
"exchange",
|
|
|
|
"REVOCATION_DIR",
|
|
|
|
&dir))
|
|
|
|
{
|
|
|
|
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"exchange",
|
|
|
|
"REVOCATION_DIR");
|
2018-11-10 19:28:28 +01:00
|
|
|
return GNUNET_SYSERR;
|
2018-01-21 19:11:27 +01:00
|
|
|
}
|
|
|
|
if (GNUNET_YES ==
|
|
|
|
GNUNET_DISK_directory_test (dir,
|
|
|
|
GNUNET_NO))
|
|
|
|
GNUNET_break (GNUNET_OK ==
|
|
|
|
GNUNET_DISK_directory_remove (dir));
|
|
|
|
GNUNET_free (dir);
|
2018-11-10 19:28:28 +01:00
|
|
|
return GNUNET_OK;
|
2018-01-21 19:11:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-11-11 15:46:06 +01:00
|
|
|
int
|
|
|
|
TALER_TESTING_run_auditor_exchange (const char *config_filename,
|
|
|
|
const char *exchange_master_pub,
|
|
|
|
const char *exchange_base_url,
|
|
|
|
int do_remove)
|
|
|
|
{
|
|
|
|
struct GNUNET_OS_Process *proc;
|
2019-03-11 03:43:32 +01:00
|
|
|
enum GNUNET_OS_ProcessStatusType type;
|
|
|
|
unsigned long code;
|
2018-11-11 15:46:06 +01:00
|
|
|
|
2019-01-28 17:23:12 +01:00
|
|
|
TALER_LOG_DEBUG ("Add exchange (%s,%s) to the auditor\n",
|
|
|
|
exchange_base_url,
|
|
|
|
exchange_master_pub);
|
|
|
|
|
2020-07-17 22:18:57 +02:00
|
|
|
proc = GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
2018-11-11 15:46:06 +01:00
|
|
|
NULL, NULL, NULL,
|
|
|
|
"taler-auditor-exchange",
|
|
|
|
"taler-auditor-exchange",
|
|
|
|
"-c", config_filename,
|
|
|
|
"-u", exchange_base_url,
|
|
|
|
"-m", exchange_master_pub,
|
|
|
|
(GNUNET_YES == do_remove)
|
|
|
|
? "-r"
|
|
|
|
: NULL,
|
|
|
|
NULL);
|
|
|
|
if (NULL == proc)
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
2019-08-25 16:18:24 +02:00
|
|
|
"Failed to run `taler-auditor-exchange`, is your PATH correct?\n");
|
2018-11-11 15:46:06 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2019-03-11 03:43:32 +01:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
GNUNET_OS_process_wait_status (proc,
|
|
|
|
&type,
|
|
|
|
&code));
|
2018-11-11 15:46:06 +01:00
|
|
|
GNUNET_OS_process_destroy (proc);
|
2019-03-11 03:43:32 +01:00
|
|
|
if ( (0 != code) ||
|
|
|
|
(GNUNET_OS_PROCESS_EXITED != type) )
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
2019-08-25 16:18:24 +02:00
|
|
|
"taler-auditor-exchange terminated with error (%d/%d)\n",
|
2019-03-11 03:43:32 +01:00
|
|
|
(int) type,
|
|
|
|
(int) code);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2018-11-11 15:46:06 +01:00
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-11-10 19:28:28 +01:00
|
|
|
int
|
|
|
|
TALER_TESTING_exchange_db_reset (const char *config_filename)
|
|
|
|
{
|
|
|
|
struct GNUNET_OS_Process *proc;
|
|
|
|
enum GNUNET_OS_ProcessStatusType type;
|
|
|
|
unsigned long code;
|
2018-01-21 19:11:27 +01:00
|
|
|
|
2020-07-17 22:18:57 +02:00
|
|
|
proc = GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
2018-01-21 19:11:27 +01:00
|
|
|
NULL, NULL, NULL,
|
|
|
|
"taler-exchange-dbinit",
|
|
|
|
"taler-exchange-dbinit",
|
2018-01-23 10:28:24 +01:00
|
|
|
"-c", config_filename,
|
2018-01-21 19:11:27 +01:00
|
|
|
"-r",
|
|
|
|
NULL);
|
|
|
|
if (NULL == proc)
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
2019-08-25 16:18:24 +02:00
|
|
|
"Failed to run `taler-exchange-dbinit`, is your PATH correct?\n");
|
2018-01-21 19:11:27 +01:00
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
if (GNUNET_SYSERR ==
|
|
|
|
GNUNET_OS_process_wait_status (proc,
|
|
|
|
&type,
|
|
|
|
&code))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
GNUNET_OS_process_destroy (proc);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
GNUNET_OS_process_destroy (proc);
|
|
|
|
if ( (type == GNUNET_OS_PROCESS_EXITED) &&
|
|
|
|
(0 != code) )
|
|
|
|
{
|
2018-11-10 19:28:28 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
2019-08-25 16:18:24 +02:00
|
|
|
"Failed to setup (exchange) database, exit code %d\n",
|
2019-03-11 03:43:32 +01:00
|
|
|
(int) code);
|
2018-01-21 19:11:27 +01:00
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
if ( (type != GNUNET_OS_PROCESS_EXITED) ||
|
|
|
|
(0 != code) )
|
|
|
|
{
|
2018-11-10 19:28:28 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
2019-08-25 16:18:24 +02:00
|
|
|
"Unexpected error (%d/%d) running `taler-exchange-dbinit'!\n",
|
2019-03-11 03:43:32 +01:00
|
|
|
(int) type,
|
|
|
|
(int) code);
|
2018-01-21 19:11:27 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2018-11-10 19:28:28 +01:00
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
2018-03-21 14:24:57 +01:00
|
|
|
|
2018-04-23 17:20:14 +02:00
|
|
|
|
2018-11-10 19:28:28 +01:00
|
|
|
int
|
|
|
|
TALER_TESTING_auditor_db_reset (const char *config_filename)
|
|
|
|
{
|
|
|
|
struct GNUNET_OS_Process *proc;
|
|
|
|
enum GNUNET_OS_ProcessStatusType type;
|
|
|
|
unsigned long code;
|
2018-04-23 17:20:14 +02:00
|
|
|
|
2020-07-17 22:18:57 +02:00
|
|
|
proc = GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
2018-04-23 17:20:14 +02:00
|
|
|
NULL, NULL, NULL,
|
|
|
|
"taler-auditor-dbinit",
|
|
|
|
"taler-auditor-dbinit",
|
|
|
|
"-c", config_filename,
|
2020-03-21 17:37:06 +01:00
|
|
|
"-R",
|
2018-04-23 17:20:14 +02:00
|
|
|
NULL);
|
|
|
|
if (NULL == proc)
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
2019-08-25 16:18:24 +02:00
|
|
|
"Failed to run `taler-auditor-dbinit`, is your PATH correct?\n");
|
2018-04-23 17:20:14 +02:00
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
if (GNUNET_SYSERR ==
|
|
|
|
GNUNET_OS_process_wait_status (proc,
|
|
|
|
&type,
|
|
|
|
&code))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
GNUNET_OS_process_destroy (proc);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
GNUNET_OS_process_destroy (proc);
|
|
|
|
if ( (type == GNUNET_OS_PROCESS_EXITED) &&
|
|
|
|
(0 != code) )
|
|
|
|
{
|
2018-11-10 19:28:28 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
2019-08-25 16:18:24 +02:00
|
|
|
"Failed to setup (auditor) database, exit code %d\n",
|
2019-03-11 03:43:32 +01:00
|
|
|
(int) code);
|
2018-04-23 17:20:14 +02:00
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
if ( (type != GNUNET_OS_PROCESS_EXITED) ||
|
|
|
|
(0 != code) )
|
|
|
|
{
|
2018-11-10 19:28:28 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
2019-08-25 16:18:24 +02:00
|
|
|
"Unexpected error (%d/%d) running `taler-auditor-dbinit'!\n",
|
2019-03-11 03:43:32 +01:00
|
|
|
(int) type,
|
|
|
|
(int) code);
|
2018-11-10 19:28:28 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2018-11-11 15:46:06 +01:00
|
|
|
* Type of closure for
|
2018-11-10 19:28:28 +01:00
|
|
|
* #sign_keys_for_exchange.
|
2018-11-11 15:46:06 +01:00
|
|
|
*/
|
2018-11-10 19:28:28 +01:00
|
|
|
struct SignInfo
|
|
|
|
{
|
|
|
|
/**
|
2020-01-13 00:27:48 +01:00
|
|
|
* Members will be set to the exchange configuration.
|
2018-11-10 19:28:28 +01:00
|
|
|
*/
|
2020-01-13 00:27:48 +01:00
|
|
|
struct TALER_TESTING_ExchangeConfiguration *ec;
|
2018-11-10 19:28:28 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Name of the configuration file to use.
|
|
|
|
*/
|
|
|
|
const char *config_filename;
|
|
|
|
|
2020-03-19 19:17:56 +01:00
|
|
|
/**
|
|
|
|
* Did we reset the database?
|
|
|
|
*/
|
|
|
|
int db_reset;
|
2018-11-10 19:28:28 +01:00
|
|
|
};
|
|
|
|
|
2018-11-11 15:46:06 +01:00
|
|
|
|
2018-11-10 19:28:28 +01:00
|
|
|
/**
|
|
|
|
* Sign the keys for an exchange given configuration @a cfg.
|
|
|
|
* The information to be signed must be in a file "auditor.in".
|
|
|
|
*
|
2020-03-31 20:57:11 +02:00
|
|
|
* @param[in,out] cls a `struct SignInfo` with further parameters
|
2018-11-10 19:28:28 +01:00
|
|
|
* @param cfg configuration to use
|
|
|
|
* @return #GNUNET_OK on success
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
sign_keys_for_exchange (void *cls,
|
2019-08-25 16:18:24 +02:00
|
|
|
const struct GNUNET_CONFIGURATION_Handle *cfg)
|
2018-11-10 19:28:28 +01:00
|
|
|
{
|
|
|
|
struct SignInfo *si = cls;
|
2018-11-11 15:46:06 +01:00
|
|
|
char *exchange_master_pub;
|
2020-01-13 00:27:48 +01:00
|
|
|
int ret;
|
2018-11-10 19:28:28 +01:00
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CONFIGURATION_get_value_string (cfg,
|
|
|
|
"exchange",
|
|
|
|
"BASE_URL",
|
2020-01-13 00:27:48 +01:00
|
|
|
&si->ec->exchange_url))
|
2018-11-10 19:28:28 +01:00
|
|
|
{
|
|
|
|
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_WARNING,
|
|
|
|
"exchange",
|
|
|
|
"BASE_URL");
|
2020-01-13 00:27:48 +01:00
|
|
|
si->ec->exchange_url = NULL;
|
2018-11-10 19:28:28 +01:00
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
2020-03-28 20:41:49 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_TESTING_url_port_free (si->ec->exchange_url))
|
|
|
|
{
|
|
|
|
GNUNET_free (si->ec->exchange_url);
|
|
|
|
si->ec->exchange_url = NULL;
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
2018-11-10 19:28:28 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CONFIGURATION_get_value_string (cfg,
|
|
|
|
"auditor",
|
|
|
|
"BASE_URL",
|
2020-01-13 00:27:48 +01:00
|
|
|
&si->ec->auditor_url))
|
2018-11-10 19:28:28 +01:00
|
|
|
{
|
|
|
|
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_WARNING,
|
|
|
|
"auditor",
|
|
|
|
"BASE_URL");
|
2020-01-13 00:27:48 +01:00
|
|
|
GNUNET_free (si->ec->exchange_url);
|
|
|
|
si->ec->exchange_url = NULL;
|
|
|
|
si->ec->auditor_url = NULL;
|
2018-04-23 17:20:14 +02:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2020-03-28 20:41:49 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_TESTING_url_port_free (si->ec->auditor_url))
|
|
|
|
{
|
|
|
|
ret = GNUNET_NO;
|
|
|
|
goto fail;
|
|
|
|
}
|
2018-11-10 19:28:28 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CONFIGURATION_get_value_string (cfg,
|
|
|
|
"exchange",
|
|
|
|
"MASTER_PUBLIC_KEY",
|
|
|
|
&exchange_master_pub))
|
|
|
|
{
|
|
|
|
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"exchange",
|
|
|
|
"MASTER_PUBLIC_KEY");
|
2020-01-13 00:27:48 +01:00
|
|
|
ret = GNUNET_SYSERR;
|
|
|
|
goto fail;
|
2018-11-10 19:28:28 +01:00
|
|
|
}
|
2020-03-19 19:17:56 +01:00
|
|
|
if ( (GNUNET_OK !=
|
|
|
|
TALER_TESTING_run_auditor_exchange (si->config_filename,
|
|
|
|
exchange_master_pub,
|
|
|
|
si->ec->exchange_url,
|
|
|
|
GNUNET_NO)) &&
|
|
|
|
(GNUNET_YES == si->db_reset) )
|
2018-11-11 15:46:06 +01:00
|
|
|
{
|
2020-01-13 00:27:48 +01:00
|
|
|
ret = GNUNET_NO;
|
|
|
|
goto fail;
|
2018-11-10 19:28:28 +01:00
|
|
|
}
|
|
|
|
GNUNET_free (exchange_master_pub);
|
|
|
|
return GNUNET_OK;
|
2020-01-13 00:27:48 +01:00
|
|
|
fail:
|
|
|
|
GNUNET_free (si->ec->exchange_url);
|
|
|
|
GNUNET_free (si->ec->auditor_url);
|
|
|
|
si->ec->exchange_url = NULL;
|
|
|
|
si->ec->auditor_url = NULL;
|
|
|
|
return ret;
|
2018-11-10 19:28:28 +01:00
|
|
|
}
|
2018-04-23 17:20:14 +02:00
|
|
|
|
2018-11-10 19:28:28 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Prepare launching an exchange. Checks that the configured
|
2020-12-16 15:05:43 +01:00
|
|
|
* port is available, runs taler-exchange-dbinit. Does NOT
|
2018-11-10 19:28:28 +01:00
|
|
|
* launch the exchange process itself.
|
|
|
|
*
|
|
|
|
* @param config_filename configuration file to use
|
2020-03-19 17:56:23 +01:00
|
|
|
* @param reset_db should we reset the database?
|
2020-01-18 13:35:51 +01:00
|
|
|
* @param[out] ec will be set to the exchange configuration data
|
2018-11-10 19:28:28 +01:00
|
|
|
* @return #GNUNET_OK on success, #GNUNET_NO if test should be
|
|
|
|
* skipped, #GNUNET_SYSERR on test failure
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
TALER_TESTING_prepare_exchange (const char *config_filename,
|
2020-03-19 17:56:23 +01:00
|
|
|
int reset_db,
|
2020-01-13 00:27:48 +01:00
|
|
|
struct TALER_TESTING_ExchangeConfiguration *ec)
|
2018-11-10 19:28:28 +01:00
|
|
|
{
|
|
|
|
struct SignInfo si = {
|
|
|
|
.config_filename = config_filename,
|
2020-01-13 00:27:48 +01:00
|
|
|
.ec = ec,
|
2020-03-19 19:17:56 +01:00
|
|
|
.db_reset = reset_db
|
2018-11-10 19:28:28 +01:00
|
|
|
};
|
2018-11-11 15:46:06 +01:00
|
|
|
|
2020-03-19 17:56:23 +01:00
|
|
|
if (GNUNET_YES == reset_db)
|
|
|
|
{
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_TESTING_exchange_db_reset (config_filename))
|
|
|
|
return GNUNET_NO;
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_TESTING_auditor_db_reset (config_filename))
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
2018-11-10 19:28:28 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CONFIGURATION_parse_and_run (config_filename,
|
2019-08-25 16:18:24 +02:00
|
|
|
&sign_keys_for_exchange,
|
|
|
|
&si))
|
2018-11-10 19:28:28 +01:00
|
|
|
return GNUNET_NO;
|
2018-01-21 19:11:27 +01:00
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-01-21 18:45:19 +01:00
|
|
|
/**
|
|
|
|
* Find denomination key matching the given amount.
|
|
|
|
*
|
|
|
|
* @param keys array of keys to search
|
|
|
|
* @param amount coin value to look for
|
|
|
|
* @return NULL if no matching key was found
|
|
|
|
*/
|
|
|
|
const struct TALER_EXCHANGE_DenomPublicKey *
|
|
|
|
TALER_TESTING_find_pk (const struct TALER_EXCHANGE_Keys *keys,
|
|
|
|
const struct TALER_Amount *amount)
|
|
|
|
{
|
|
|
|
struct GNUNET_TIME_Absolute now;
|
|
|
|
struct TALER_EXCHANGE_DenomPublicKey *pk;
|
|
|
|
char *str;
|
|
|
|
|
|
|
|
now = GNUNET_TIME_absolute_get ();
|
2019-08-25 16:18:24 +02:00
|
|
|
for (unsigned int i = 0; i<keys->num_denom_keys; i++)
|
2018-01-21 18:45:19 +01:00
|
|
|
{
|
|
|
|
pk = &keys->denom_keys[i];
|
|
|
|
if ( (0 == TALER_amount_cmp (amount,
|
|
|
|
&pk->value)) &&
|
|
|
|
(now.abs_value_us >= pk->valid_from.abs_value_us) &&
|
2018-02-21 12:41:22 +01:00
|
|
|
(now.abs_value_us <
|
|
|
|
pk->withdraw_valid_until.abs_value_us) )
|
2018-01-21 18:45:19 +01:00
|
|
|
return pk;
|
|
|
|
}
|
2018-02-21 12:41:22 +01:00
|
|
|
/* do 2nd pass to check if expiration times are to blame for
|
|
|
|
* failure */
|
2018-01-21 18:45:19 +01:00
|
|
|
str = TALER_amount_to_string (amount);
|
2019-08-25 16:18:24 +02:00
|
|
|
for (unsigned int i = 0; i<keys->num_denom_keys; i++)
|
2018-01-21 18:45:19 +01:00
|
|
|
{
|
|
|
|
pk = &keys->denom_keys[i];
|
|
|
|
if ( (0 == TALER_amount_cmp (amount,
|
|
|
|
&pk->value)) &&
|
|
|
|
( (now.abs_value_us < pk->valid_from.abs_value_us) ||
|
2018-02-21 12:41:22 +01:00
|
|
|
(now.abs_value_us >
|
|
|
|
pk->withdraw_valid_until.abs_value_us) ) )
|
2018-01-21 18:45:19 +01:00
|
|
|
{
|
2018-02-21 12:41:22 +01:00
|
|
|
GNUNET_log
|
|
|
|
(GNUNET_ERROR_TYPE_WARNING,
|
2019-08-25 16:18:24 +02:00
|
|
|
"Have denomination key for `%s', but with wrong"
|
|
|
|
" expiration range %llu vs [%llu,%llu)\n",
|
|
|
|
str,
|
|
|
|
(unsigned long long) now.abs_value_us,
|
|
|
|
(unsigned long long) pk->valid_from.abs_value_us,
|
|
|
|
(unsigned long long)
|
|
|
|
pk->withdraw_valid_until.abs_value_us);
|
2018-01-21 18:45:19 +01:00
|
|
|
GNUNET_free (str);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
|
|
|
|
"No denomination key for amount %s found\n",
|
|
|
|
str);
|
|
|
|
GNUNET_free (str);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-01-21 19:57:09 +01:00
|
|
|
|
2018-08-09 10:33:21 +02:00
|
|
|
/**
|
|
|
|
* Wait for the exchange to have started. Waits for at
|
|
|
|
* most 10s, after that returns 77 to indicate an error.
|
|
|
|
*
|
|
|
|
* @param base_url what URL should we expect the exchange
|
|
|
|
* to be running at
|
|
|
|
* @return 0 on success
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
TALER_TESTING_wait_exchange_ready (const char *base_url)
|
|
|
|
{
|
|
|
|
char *wget_cmd;
|
|
|
|
unsigned int iter;
|
|
|
|
|
|
|
|
GNUNET_asprintf (&wget_cmd,
|
2020-12-14 15:42:32 +01:00
|
|
|
"wget -q -t 1 -T 1 %sseed -o /dev/null -O /dev/null",
|
2018-08-09 10:33:21 +02:00
|
|
|
base_url); // make sure ends with '/'
|
|
|
|
/* give child time to start and bind against the socket */
|
|
|
|
fprintf (stderr,
|
2019-03-13 17:43:21 +01:00
|
|
|
"Waiting for `taler-exchange-httpd' to be ready (check with: %s)\n",
|
|
|
|
wget_cmd);
|
2018-08-09 10:33:21 +02:00
|
|
|
iter = 0;
|
|
|
|
do
|
2019-08-25 16:18:24 +02:00
|
|
|
{
|
|
|
|
if (10 == iter)
|
2018-08-09 10:33:21 +02:00
|
|
|
{
|
2019-08-25 16:18:24 +02:00
|
|
|
fprintf (stderr,
|
|
|
|
"Failed to launch `taler-exchange-httpd' (or `wget')\n");
|
|
|
|
GNUNET_free (wget_cmd);
|
|
|
|
return 77;
|
2018-08-09 10:33:21 +02:00
|
|
|
}
|
2019-08-25 16:18:24 +02:00
|
|
|
fprintf (stderr, ".\n");
|
|
|
|
sleep (1);
|
|
|
|
iter++;
|
|
|
|
}
|
2018-08-09 10:33:21 +02:00
|
|
|
while (0 != system (wget_cmd));
|
|
|
|
GNUNET_free (wget_cmd);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-11-10 19:28:28 +01:00
|
|
|
/**
|
|
|
|
* Wait for the auditor to have started. Waits for at
|
|
|
|
* most 10s, after that returns 77 to indicate an error.
|
|
|
|
*
|
|
|
|
* @param base_url what URL should we expect the auditor
|
|
|
|
* to be running at
|
|
|
|
* @return 0 on success
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
TALER_TESTING_wait_auditor_ready (const char *base_url)
|
|
|
|
{
|
|
|
|
char *wget_cmd;
|
|
|
|
unsigned int iter;
|
|
|
|
|
|
|
|
GNUNET_asprintf (&wget_cmd,
|
2019-09-15 13:13:29 +02:00
|
|
|
"wget -q -t 1 -T 1 %sversion -o /dev/null -O /dev/null",
|
2018-11-10 19:28:28 +01:00
|
|
|
base_url); // make sure ends with '/'
|
|
|
|
/* give child time to start and bind against the socket */
|
|
|
|
fprintf (stderr,
|
|
|
|
"Waiting for `taler-auditor-httpd' to be ready\n");
|
|
|
|
iter = 0;
|
|
|
|
do
|
2019-08-25 16:18:24 +02:00
|
|
|
{
|
|
|
|
if (10 == iter)
|
2018-11-10 19:28:28 +01:00
|
|
|
{
|
2019-08-25 16:18:24 +02:00
|
|
|
fprintf (stderr,
|
|
|
|
"Failed to launch `taler-auditor-httpd' (or `wget')\n");
|
|
|
|
GNUNET_free (wget_cmd);
|
|
|
|
return 77;
|
2018-11-10 19:28:28 +01:00
|
|
|
}
|
2019-08-25 16:18:24 +02:00
|
|
|
fprintf (stderr, ".\n");
|
|
|
|
sleep (1);
|
|
|
|
iter++;
|
|
|
|
}
|
2018-11-10 19:28:28 +01:00
|
|
|
while (0 != system (wget_cmd));
|
|
|
|
GNUNET_free (wget_cmd);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-01-21 19:57:09 +01:00
|
|
|
int
|
|
|
|
TALER_TESTING_setup_with_exchange (TALER_TESTING_Main main_cb,
|
|
|
|
void *main_cb_cls,
|
2020-01-18 17:06:24 +01:00
|
|
|
const char *config_file)
|
2018-01-21 19:57:09 +01:00
|
|
|
{
|
2018-11-11 15:46:06 +01:00
|
|
|
struct TALER_TESTING_SetupContext setup_ctx = {
|
2020-01-18 17:06:24 +01:00
|
|
|
.config_filename = config_file,
|
2018-11-11 15:46:06 +01:00
|
|
|
.main_cb = main_cb,
|
|
|
|
.main_cb_cls = main_cb_cls
|
|
|
|
};
|
2018-01-21 19:57:09 +01:00
|
|
|
int result;
|
2018-11-11 15:46:06 +01:00
|
|
|
|
2019-12-07 17:20:09 +01:00
|
|
|
result =
|
2020-01-18 17:06:24 +01:00
|
|
|
GNUNET_CONFIGURATION_parse_and_run (config_file,
|
2019-12-07 17:20:09 +01:00
|
|
|
&TALER_TESTING_setup_with_exchange_cfg,
|
|
|
|
&setup_ctx);
|
|
|
|
if (GNUNET_OK != result)
|
2018-11-11 15:46:06 +01:00
|
|
|
return result;
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-01 19:47:01 +01:00
|
|
|
/**
|
|
|
|
* Stop taler-exchange-crypto helpers.
|
|
|
|
*
|
|
|
|
* @param[in] helpers the process handles.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
stop_helpers (struct GNUNET_OS_Process *helpers[2])
|
|
|
|
{
|
|
|
|
for (unsigned int i = 0; i<2; i++)
|
|
|
|
{
|
|
|
|
if (NULL == helpers[i])
|
|
|
|
continue;
|
|
|
|
GNUNET_break (0 ==
|
|
|
|
GNUNET_OS_process_kill (helpers[i],
|
|
|
|
SIGTERM));
|
|
|
|
GNUNET_break (GNUNET_OK ==
|
|
|
|
GNUNET_OS_process_wait (helpers[i]));
|
|
|
|
GNUNET_OS_process_destroy (helpers[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Start taler-exchange-crypto helpers.
|
|
|
|
*
|
|
|
|
* @param config_filename configuration file to use
|
|
|
|
* @param[out] helpers where to store the process handles.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
start_helpers (const char *config_filename,
|
|
|
|
struct GNUNET_OS_Process *helpers[2])
|
|
|
|
{
|
|
|
|
char *dir;
|
2020-12-11 12:51:00 +01:00
|
|
|
const struct GNUNET_OS_ProjectData *pd;
|
2020-12-01 19:47:01 +01:00
|
|
|
|
2020-12-11 12:51:00 +01:00
|
|
|
pd = GNUNET_OS_project_data_get ();
|
|
|
|
GNUNET_OS_init (TALER_project_data_default ());
|
2020-12-01 19:47:01 +01:00
|
|
|
dir = GNUNET_OS_installation_get_path (GNUNET_OS_IPK_LIBEXECDIR);
|
2020-12-11 12:51:00 +01:00
|
|
|
GNUNET_OS_init (pd);
|
2020-12-01 19:47:01 +01:00
|
|
|
if (NULL == dir)
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
char *fn;
|
|
|
|
|
|
|
|
GNUNET_asprintf (&fn,
|
|
|
|
"%s/%s",
|
|
|
|
dir,
|
|
|
|
"taler-helper-crypto-eddsa");
|
|
|
|
helpers[0] = GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
|
|
|
NULL, NULL, NULL,
|
|
|
|
fn,
|
|
|
|
"taler-helper-crypto-eddsa",
|
|
|
|
"-c", config_filename,
|
|
|
|
NULL);
|
|
|
|
GNUNET_free (fn);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
char *fn;
|
|
|
|
|
|
|
|
GNUNET_asprintf (&fn,
|
|
|
|
"%s/%s",
|
|
|
|
dir,
|
|
|
|
"taler-helper-crypto-rsa");
|
|
|
|
helpers[1] = GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
|
|
|
NULL, NULL, NULL,
|
|
|
|
fn,
|
|
|
|
"taler-helper-crypto-rsa",
|
|
|
|
"-c", config_filename,
|
|
|
|
NULL);
|
|
|
|
GNUNET_free (fn);
|
|
|
|
}
|
|
|
|
GNUNET_free (dir);
|
|
|
|
if ( (NULL == helpers[0]) ||
|
|
|
|
(NULL == helpers[1]) )
|
|
|
|
{
|
|
|
|
stop_helpers (helpers);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-11-11 15:46:06 +01:00
|
|
|
int
|
2020-12-01 19:47:01 +01:00
|
|
|
TALER_TESTING_setup_with_exchange_cfg (
|
|
|
|
void *cls,
|
|
|
|
const struct GNUNET_CONFIGURATION_Handle *cfg)
|
2018-11-11 15:46:06 +01:00
|
|
|
{
|
|
|
|
const struct TALER_TESTING_SetupContext *setup_ctx = cls;
|
2018-01-21 19:57:09 +01:00
|
|
|
struct GNUNET_OS_Process *exchanged;
|
2020-12-01 19:47:01 +01:00
|
|
|
struct GNUNET_OS_Process *helpers[2];
|
2018-01-23 10:28:24 +01:00
|
|
|
unsigned long long port;
|
2018-05-04 13:06:23 +02:00
|
|
|
char *serve;
|
|
|
|
char *base_url;
|
2018-11-11 15:46:06 +01:00
|
|
|
int result;
|
2018-05-04 13:06:23 +02:00
|
|
|
|
2018-01-23 10:28:24 +01:00
|
|
|
if (GNUNET_OK !=
|
2018-05-04 13:06:23 +02:00
|
|
|
GNUNET_CONFIGURATION_get_value_string (cfg,
|
2018-01-23 10:28:24 +01:00
|
|
|
"exchange",
|
2018-05-04 13:06:23 +02:00
|
|
|
"SERVE",
|
|
|
|
&serve))
|
2018-01-23 10:28:24 +01:00
|
|
|
{
|
|
|
|
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"exchange",
|
2018-05-04 13:06:23 +02:00
|
|
|
"SERVE");
|
2018-01-23 10:28:24 +01:00
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
|
2018-05-04 14:23:17 +02:00
|
|
|
if (0 == strcmp ("tcp", serve))
|
2018-01-23 10:28:24 +01:00
|
|
|
{
|
2018-05-04 13:06:23 +02:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CONFIGURATION_get_value_number (cfg,
|
|
|
|
"exchange",
|
|
|
|
"PORT",
|
|
|
|
&port))
|
|
|
|
{
|
|
|
|
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"exchange",
|
|
|
|
"PORT");
|
2018-10-13 18:51:48 +02:00
|
|
|
GNUNET_free (serve);
|
2018-05-04 13:06:23 +02:00
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
2018-08-09 10:33:21 +02:00
|
|
|
|
2018-05-04 13:06:23 +02:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_NETWORK_test_port_free (IPPROTO_TCP,
|
2019-08-25 16:18:24 +02:00
|
|
|
(uint16_t) port))
|
2018-05-04 13:06:23 +02:00
|
|
|
{
|
2018-11-11 15:46:06 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
|
|
|
|
"Required port %llu not available, skipping.\n",
|
|
|
|
port);
|
2018-10-13 18:51:48 +02:00
|
|
|
GNUNET_free (serve);
|
2018-05-04 13:06:23 +02:00
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
2018-01-23 10:28:24 +01:00
|
|
|
}
|
2018-10-13 18:51:48 +02:00
|
|
|
GNUNET_free (serve);
|
2020-12-01 19:47:01 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
start_helpers (setup_ctx->config_filename,
|
|
|
|
helpers))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return 77;
|
|
|
|
}
|
2020-07-17 22:18:57 +02:00
|
|
|
exchanged = GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
2018-01-21 19:57:09 +01:00
|
|
|
NULL, NULL, NULL,
|
|
|
|
"taler-exchange-httpd",
|
|
|
|
"taler-exchange-httpd",
|
2020-03-17 17:33:30 +01:00
|
|
|
"-a", /* some tests may need timetravel */
|
2018-11-11 15:46:06 +01:00
|
|
|
"-c", setup_ctx->config_filename,
|
2018-01-21 19:57:09 +01:00
|
|
|
NULL);
|
2020-12-01 19:47:01 +01:00
|
|
|
if (NULL == exchanged)
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
stop_helpers (helpers);
|
|
|
|
return 77;
|
|
|
|
}
|
2018-05-04 13:06:23 +02:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CONFIGURATION_get_value_string (cfg,
|
|
|
|
"exchange",
|
|
|
|
"BASE_URL",
|
|
|
|
&base_url))
|
|
|
|
{
|
|
|
|
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"exchange",
|
|
|
|
"BASE_URL");
|
2020-12-01 19:47:01 +01:00
|
|
|
stop_helpers (helpers);
|
2018-05-04 13:06:23 +02:00
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
|
2018-08-09 10:33:21 +02:00
|
|
|
if (0 != TALER_TESTING_wait_exchange_ready (base_url))
|
2018-10-13 18:51:48 +02:00
|
|
|
{
|
|
|
|
GNUNET_free (base_url);
|
2020-12-01 19:47:01 +01:00
|
|
|
stop_helpers (helpers);
|
2018-08-09 10:33:21 +02:00
|
|
|
return 77;
|
2018-10-13 18:51:48 +02:00
|
|
|
}
|
|
|
|
GNUNET_free (base_url);
|
2018-11-11 15:46:06 +01:00
|
|
|
|
|
|
|
/* NOTE: this call blocks. */
|
|
|
|
result = TALER_TESTING_setup (setup_ctx->main_cb,
|
|
|
|
setup_ctx->main_cb_cls,
|
2020-02-04 21:59:43 +01:00
|
|
|
cfg,
|
2018-08-19 00:49:16 +02:00
|
|
|
exchanged,
|
|
|
|
GNUNET_YES);
|
2018-01-21 19:57:09 +01:00
|
|
|
GNUNET_break (0 ==
|
|
|
|
GNUNET_OS_process_kill (exchanged,
|
|
|
|
SIGTERM));
|
|
|
|
GNUNET_break (GNUNET_OK ==
|
|
|
|
GNUNET_OS_process_wait (exchanged));
|
|
|
|
GNUNET_OS_process_destroy (exchanged);
|
2020-12-01 19:47:01 +01:00
|
|
|
stop_helpers (helpers);
|
2018-01-21 19:57:09 +01:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-11-11 15:46:06 +01:00
|
|
|
int
|
2020-12-16 15:05:43 +01:00
|
|
|
TALER_TESTING_setup_with_auditor_and_exchange_cfg (
|
|
|
|
void *cls,
|
|
|
|
const struct GNUNET_CONFIGURATION_Handle *cfg)
|
2018-11-11 15:46:06 +01:00
|
|
|
{
|
|
|
|
const struct TALER_TESTING_SetupContext *setup_ctx = cls;
|
|
|
|
struct GNUNET_OS_Process *auditord;
|
|
|
|
unsigned long long port;
|
|
|
|
char *serve;
|
|
|
|
char *base_url;
|
|
|
|
int result;
|
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CONFIGURATION_get_value_string (cfg,
|
|
|
|
"auditor",
|
|
|
|
"SERVE",
|
|
|
|
&serve))
|
|
|
|
{
|
|
|
|
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"auditor",
|
|
|
|
"SERVE");
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (0 == strcmp ("tcp", serve))
|
|
|
|
{
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CONFIGURATION_get_value_number (cfg,
|
|
|
|
"auditor",
|
|
|
|
"PORT",
|
|
|
|
&port))
|
|
|
|
{
|
|
|
|
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"auditor",
|
|
|
|
"PORT");
|
|
|
|
GNUNET_free (serve);
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_NETWORK_test_port_free (IPPROTO_TCP,
|
2019-08-25 16:18:24 +02:00
|
|
|
(uint16_t) port))
|
2018-11-11 15:46:06 +01:00
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
|
|
|
|
"Required port %llu not available, skipping.\n",
|
|
|
|
port);
|
|
|
|
GNUNET_free (serve);
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
GNUNET_free (serve);
|
2020-07-17 22:18:57 +02:00
|
|
|
auditord = GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
2018-11-11 15:46:06 +01:00
|
|
|
NULL, NULL, NULL,
|
|
|
|
"taler-auditor-httpd",
|
|
|
|
"taler-auditor-httpd",
|
|
|
|
"-c", setup_ctx->config_filename,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CONFIGURATION_get_value_string (cfg,
|
|
|
|
"auditor",
|
|
|
|
"BASE_URL",
|
|
|
|
&base_url))
|
|
|
|
{
|
|
|
|
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"auditor",
|
|
|
|
"BASE_URL");
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (0 != TALER_TESTING_wait_auditor_ready (base_url))
|
|
|
|
{
|
|
|
|
GNUNET_free (base_url);
|
2018-11-18 14:41:27 +01:00
|
|
|
GNUNET_break (0 ==
|
|
|
|
GNUNET_OS_process_kill (auditord,
|
|
|
|
SIGTERM));
|
|
|
|
GNUNET_break (GNUNET_OK ==
|
|
|
|
GNUNET_OS_process_wait (auditord));
|
|
|
|
GNUNET_OS_process_destroy (auditord);
|
2018-11-11 15:46:06 +01:00
|
|
|
return 77;
|
|
|
|
}
|
|
|
|
GNUNET_free (base_url);
|
|
|
|
|
|
|
|
/* NOTE: this call blocks. */
|
|
|
|
result = TALER_TESTING_setup_with_exchange_cfg ((void *) setup_ctx,
|
|
|
|
cfg);
|
|
|
|
GNUNET_break (0 ==
|
|
|
|
GNUNET_OS_process_kill (auditord,
|
|
|
|
SIGTERM));
|
|
|
|
GNUNET_break (GNUNET_OK ==
|
|
|
|
GNUNET_OS_process_wait (auditord));
|
|
|
|
GNUNET_OS_process_destroy (auditord);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
TALER_TESTING_setup_with_auditor_and_exchange (TALER_TESTING_Main main_cb,
|
|
|
|
void *main_cb_cls,
|
|
|
|
const char *config_file)
|
|
|
|
{
|
|
|
|
struct TALER_TESTING_SetupContext setup_ctx = {
|
|
|
|
.config_filename = config_file,
|
|
|
|
.main_cb = main_cb,
|
|
|
|
.main_cb_cls = main_cb_cls
|
|
|
|
};
|
|
|
|
|
2020-12-16 15:05:43 +01:00
|
|
|
return GNUNET_CONFIGURATION_parse_and_run (
|
|
|
|
config_file,
|
|
|
|
&TALER_TESTING_setup_with_auditor_and_exchange_cfg,
|
|
|
|
&setup_ctx);
|
2018-11-11 15:46:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-01-21 19:57:09 +01:00
|
|
|
int
|
|
|
|
TALER_TESTING_url_port_free (const char *url)
|
|
|
|
{
|
|
|
|
const char *port;
|
|
|
|
long pnum;
|
|
|
|
|
|
|
|
port = strrchr (url,
|
|
|
|
(unsigned char) ':');
|
|
|
|
if (NULL == port)
|
|
|
|
pnum = 80;
|
|
|
|
else
|
|
|
|
pnum = strtol (port + 1, NULL, 10);
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_NETWORK_test_port_free (IPPROTO_TCP,
|
2019-08-25 16:18:24 +02:00
|
|
|
pnum))
|
2018-01-21 19:57:09 +01:00
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
|
|
|
|
"Port %u not available.\n",
|
|
|
|
(unsigned int) pnum);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
2018-04-02 14:24:45 +02:00
|
|
|
|
2020-01-13 18:16:01 +01:00
|
|
|
/* end of testing_api_helpers_exchange.c */
|