2018-01-21 18:45:19 +01:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
|
|
|
Copyright (C) 2018 Taler Systems SA
|
|
|
|
|
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
|
|
|
/**
|
|
|
|
* @file exchange-lib/testing_api_helpers.c
|
|
|
|
* @brief helper functions
|
|
|
|
* @author Christian Grothoff
|
|
|
|
* @author Marcello Stanisci
|
|
|
|
*/
|
|
|
|
#include "platform.h"
|
|
|
|
#include "taler_json_lib.h"
|
|
|
|
#include <gnunet/gnunet_curl_lib.h>
|
|
|
|
#include "exchange_api_handle.h"
|
|
|
|
#include "taler_signatures.h"
|
|
|
|
#include "taler_testing_lib.h"
|
|
|
|
|
|
|
|
|
2018-01-21 19:11:27 +01:00
|
|
|
/**
|
|
|
|
* Remove files from previous runs
|
2018-01-23 10:28:24 +01:00
|
|
|
*
|
|
|
|
* @param config_name configuration filename.
|
2018-01-21 19:11:27 +01:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
TALER_TESTING_cleanup_files (const char *config_name)
|
|
|
|
{
|
|
|
|
struct GNUNET_CONFIGURATION_Handle *cfg;
|
|
|
|
char *dir;
|
|
|
|
|
|
|
|
cfg = GNUNET_CONFIGURATION_create ();
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CONFIGURATION_load (cfg,
|
|
|
|
config_name))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
GNUNET_CONFIGURATION_destroy (cfg);
|
|
|
|
exit (77);
|
|
|
|
}
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
2018-02-21 12:41:22 +01:00
|
|
|
GNUNET_CONFIGURATION_get_value_filename
|
|
|
|
(cfg,
|
|
|
|
"exchange",
|
|
|
|
"keydir",
|
|
|
|
&dir));
|
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);
|
|
|
|
GNUNET_CONFIGURATION_destroy (cfg);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prepare launching an exchange. Checks that the configured
|
|
|
|
* port is available, runs taler-exchange-keyup,
|
2018-01-23 10:28:24 +01:00
|
|
|
* taler-auditor-sign and taler-exchange-dbinit. Does NOT
|
2018-01-21 19:11:27 +01:00
|
|
|
* launch the exchange process itself.
|
|
|
|
*
|
|
|
|
* @param config_filename configuration file to use
|
2018-02-28 16:15:18 +01:00
|
|
|
* @param base_url[out] will be set to the exchange base url,
|
|
|
|
* if the config has any; otherwise it will be set to
|
|
|
|
* NULL.
|
2018-02-21 12:41:22 +01:00
|
|
|
* @return #GNUNET_OK on success, #GNUNET_NO if test should be
|
|
|
|
* skipped, #GNUNET_SYSERR on test failure
|
2018-01-21 19:11:27 +01:00
|
|
|
*/
|
|
|
|
int
|
2018-02-28 16:15:18 +01:00
|
|
|
TALER_TESTING_prepare_exchange (const char *config_filename,
|
|
|
|
char **base_url)
|
2018-01-21 19:11:27 +01:00
|
|
|
{
|
|
|
|
struct GNUNET_OS_Process *proc;
|
|
|
|
enum GNUNET_OS_ProcessStatusType type;
|
|
|
|
unsigned long code;
|
|
|
|
struct GNUNET_CONFIGURATION_Handle *cfg;
|
2018-01-23 10:28:24 +01:00
|
|
|
char *test_home_dir;
|
|
|
|
char *signed_keys_out;
|
|
|
|
char *exchange_master_pub;
|
2018-01-21 19:11:27 +01:00
|
|
|
|
|
|
|
proc = GNUNET_OS_start_process (GNUNET_NO,
|
|
|
|
GNUNET_OS_INHERIT_STD_ALL,
|
|
|
|
NULL, NULL, NULL,
|
|
|
|
"taler-exchange-keyup",
|
|
|
|
"taler-exchange-keyup",
|
2018-01-23 10:28:24 +01:00
|
|
|
"-c", config_filename,
|
2018-07-25 16:07:11 +02:00
|
|
|
"-o", "auditor.in",
|
2018-01-21 19:11:27 +01:00
|
|
|
NULL);
|
|
|
|
if (NULL == proc)
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
2018-02-21 12:41:22 +01:00
|
|
|
"Failed to run `taler-exchange-keyup`,"
|
|
|
|
" is your PATH correct?\n");
|
2018-01-21 19:11:27 +01:00
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
GNUNET_OS_process_wait (proc);
|
|
|
|
GNUNET_OS_process_destroy (proc);
|
|
|
|
|
2018-01-23 10:28:24 +01:00
|
|
|
cfg = GNUNET_CONFIGURATION_create ();
|
|
|
|
if (GNUNET_OK != GNUNET_CONFIGURATION_load
|
|
|
|
(cfg, config_filename))
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
|
2018-02-28 16:15:18 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CONFIGURATION_get_value_string (cfg,
|
|
|
|
"exchange",
|
|
|
|
"BASE_URL",
|
|
|
|
base_url))
|
|
|
|
{
|
|
|
|
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_WARNING,
|
|
|
|
"exchange",
|
|
|
|
"BASE_URL");
|
|
|
|
*base_url = NULL;
|
|
|
|
}
|
|
|
|
|
2018-01-23 10:28:24 +01:00
|
|
|
if (GNUNET_OK !=
|
2018-04-02 17:10:05 +02:00
|
|
|
GNUNET_CONFIGURATION_get_value_filename (cfg,
|
|
|
|
"paths",
|
|
|
|
"TALER_TEST_HOME",
|
|
|
|
&test_home_dir))
|
2018-01-23 10:28:24 +01:00
|
|
|
{
|
|
|
|
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"paths",
|
|
|
|
"TALER_TEST_HOME");
|
|
|
|
GNUNET_CONFIGURATION_destroy (cfg);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
GNUNET_asprintf (&signed_keys_out,
|
|
|
|
"%s/.local/share/taler/auditors/auditor.out",
|
|
|
|
test_home_dir);
|
2018-03-21 15:20:58 +01:00
|
|
|
GNUNET_free (test_home_dir);
|
2018-01-23 10:28:24 +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");
|
|
|
|
GNUNET_CONFIGURATION_destroy (cfg);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
GNUNET_CONFIGURATION_destroy (cfg);
|
|
|
|
|
2018-01-21 19:11:27 +01:00
|
|
|
proc = GNUNET_OS_start_process (GNUNET_NO,
|
|
|
|
GNUNET_OS_INHERIT_STD_ALL,
|
|
|
|
NULL, NULL, NULL,
|
|
|
|
"taler-auditor-sign",
|
|
|
|
"taler-auditor-sign",
|
2018-01-23 10:28:24 +01:00
|
|
|
"-c", config_filename,
|
2018-01-21 19:11:27 +01:00
|
|
|
"-u", "http://auditor/",
|
2018-01-23 10:28:24 +01:00
|
|
|
"-m", exchange_master_pub,
|
2018-07-25 16:07:11 +02:00
|
|
|
"-r", "auditor.in",
|
2018-01-23 10:28:24 +01:00
|
|
|
"-o", signed_keys_out,
|
2018-01-21 19:11:27 +01:00
|
|
|
NULL);
|
|
|
|
if (NULL == proc)
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
2018-02-21 12:41:22 +01:00
|
|
|
"Failed to run `taler-auditor-sign`,"
|
|
|
|
" is your PATH correct?\n");
|
2018-03-21 14:24:57 +01:00
|
|
|
GNUNET_free (signed_keys_out);
|
2018-03-21 17:12:24 +01:00
|
|
|
GNUNET_free (exchange_master_pub);
|
2018-01-21 19:11:27 +01:00
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
2018-03-21 15:20:58 +01:00
|
|
|
|
|
|
|
|
2018-03-21 17:12:24 +01:00
|
|
|
GNUNET_free (exchange_master_pub);
|
2018-03-21 15:20:58 +01:00
|
|
|
GNUNET_free (signed_keys_out);
|
2018-01-21 19:11:27 +01:00
|
|
|
GNUNET_OS_process_wait (proc);
|
|
|
|
GNUNET_OS_process_destroy (proc);
|
|
|
|
|
2018-04-23 17:20:14 +02:00
|
|
|
/* Reset exchange database. */
|
2018-01-21 19:11:27 +01:00
|
|
|
proc = GNUNET_OS_start_process (GNUNET_NO,
|
|
|
|
GNUNET_OS_INHERIT_STD_ALL,
|
|
|
|
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,
|
2018-02-21 12:41:22 +01:00
|
|
|
"Failed to run `taler-exchange-dbinit`,"
|
|
|
|
" is your PATH correct?\n");
|
2018-03-21 14:24:57 +01:00
|
|
|
|
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) )
|
|
|
|
{
|
|
|
|
fprintf (stderr,
|
2018-04-23 17:20:14 +02:00
|
|
|
"Failed to setup (exchange) database\n");
|
2018-01-21 19:11:27 +01:00
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
if ( (type != GNUNET_OS_PROCESS_EXITED) ||
|
|
|
|
(0 != code) )
|
|
|
|
{
|
|
|
|
fprintf (stderr,
|
2018-02-21 12:41:22 +01:00
|
|
|
"Unexpected error running"
|
|
|
|
" `taler-exchange-dbinit'!\n");
|
2018-01-21 19:11:27 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2018-03-21 14:24:57 +01:00
|
|
|
|
2018-04-23 17:20:14 +02:00
|
|
|
|
|
|
|
/* Reset auditor database. */
|
|
|
|
|
|
|
|
proc = GNUNET_OS_start_process (GNUNET_NO,
|
|
|
|
GNUNET_OS_INHERIT_STD_ALL,
|
|
|
|
NULL, NULL, NULL,
|
|
|
|
"taler-auditor-dbinit",
|
|
|
|
"taler-auditor-dbinit",
|
|
|
|
"-c", config_filename,
|
|
|
|
"-r",
|
|
|
|
NULL);
|
|
|
|
if (NULL == proc)
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"Failed to run `taler-auditor-dbinit`,"
|
|
|
|
" is your PATH correct?\n");
|
|
|
|
|
|
|
|
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) )
|
|
|
|
{
|
|
|
|
fprintf (stderr,
|
|
|
|
"Failed to setup (auditor) database\n");
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
if ( (type != GNUNET_OS_PROCESS_EXITED) ||
|
|
|
|
(0 != code) )
|
|
|
|
{
|
|
|
|
fprintf (stderr,
|
|
|
|
"Unexpected error running"
|
|
|
|
" `taler-auditor-dbinit'!\n");
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
|
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 ();
|
|
|
|
for (unsigned int i=0;i<keys->num_denom_keys;i++)
|
|
|
|
{
|
|
|
|
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);
|
|
|
|
for (unsigned int i=0;i<keys->num_denom_keys;i++)
|
|
|
|
{
|
|
|
|
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,
|
|
|
|
"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,
|
|
|
|
"wget -q -t 1 -T 1 %skeys"
|
|
|
|
" -o /dev/null -O /dev/null",
|
|
|
|
base_url); // make sure ends with '/'
|
|
|
|
/* give child time to start and bind against the socket */
|
|
|
|
fprintf (stderr,
|
|
|
|
"Waiting for `taler-exchange-httpd' to be ready\n");
|
|
|
|
iter = 0;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
if (10 == iter)
|
|
|
|
{
|
|
|
|
fprintf (stderr,
|
|
|
|
"Failed to launch `taler-exchange-httpd' (or `wget')\n");
|
|
|
|
GNUNET_free (wget_cmd);
|
|
|
|
return 77;
|
|
|
|
}
|
|
|
|
fprintf (stderr, ".\n");
|
|
|
|
sleep (1);
|
|
|
|
iter++;
|
|
|
|
}
|
|
|
|
while (0 != system (wget_cmd));
|
|
|
|
GNUNET_free (wget_cmd);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-01-21 19:57:09 +01:00
|
|
|
/**
|
|
|
|
* Initialize scheduler loop and curl context for the testcase
|
|
|
|
* including starting and stopping the exchange using the given
|
|
|
|
* configuration file.
|
2018-01-23 10:28:24 +01:00
|
|
|
*
|
|
|
|
* @param main_cb routine containing all the commands to run.
|
|
|
|
* @param main_cb_cls closure for @a main_cb, typically NULL.
|
|
|
|
* @param config_file configuration file for the test-suite.
|
|
|
|
*
|
2018-07-02 11:57:21 +02:00
|
|
|
* @return GNUNET_OK if all is okay, != GNUNET_OK otherwise.
|
|
|
|
* non-GNUNET_OK codes are GNUNET_SYSERR most of the
|
|
|
|
* times.
|
2018-01-21 19:57:09 +01:00
|
|
|
*/
|
|
|
|
int
|
|
|
|
TALER_TESTING_setup_with_exchange (TALER_TESTING_Main main_cb,
|
|
|
|
void *main_cb_cls,
|
2018-01-23 10:28:24 +01:00
|
|
|
const char *config_filename)
|
2018-01-21 19:57:09 +01:00
|
|
|
{
|
|
|
|
int result;
|
|
|
|
struct GNUNET_OS_Process *exchanged;
|
2018-01-23 10:28:24 +01:00
|
|
|
struct GNUNET_CONFIGURATION_Handle *cfg;
|
|
|
|
unsigned long long port;
|
2018-05-04 13:06:23 +02:00
|
|
|
char *serve;
|
|
|
|
char *base_url;
|
2018-01-23 10:28:24 +01:00
|
|
|
|
|
|
|
cfg = GNUNET_CONFIGURATION_create ();
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CONFIGURATION_load (cfg,
|
|
|
|
config_filename))
|
|
|
|
return GNUNET_NO;
|
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
|
|
|
GNUNET_CONFIGURATION_destroy (cfg);
|
|
|
|
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");
|
|
|
|
GNUNET_CONFIGURATION_destroy (cfg);
|
|
|
|
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,
|
|
|
|
(uint16_t) port))
|
|
|
|
{
|
|
|
|
fprintf (stderr,
|
|
|
|
"Required port %llu not available, skipping.\n",
|
|
|
|
port);
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
2018-01-23 10:28:24 +01:00
|
|
|
}
|
2018-01-21 19:57:09 +01:00
|
|
|
exchanged = GNUNET_OS_start_process (GNUNET_NO,
|
|
|
|
GNUNET_OS_INHERIT_STD_ALL,
|
|
|
|
NULL, NULL, NULL,
|
|
|
|
"taler-exchange-httpd",
|
|
|
|
"taler-exchange-httpd",
|
2018-01-23 10:28:24 +01:00
|
|
|
"-c", config_filename,
|
2018-01-21 19:57:09 +01:00
|
|
|
"-i",
|
|
|
|
NULL);
|
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");
|
|
|
|
GNUNET_CONFIGURATION_destroy (cfg);
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
2018-05-04 14:23:17 +02:00
|
|
|
GNUNET_CONFIGURATION_destroy (cfg);
|
2018-05-04 13:06:23 +02:00
|
|
|
|
2018-08-09 10:33:21 +02:00
|
|
|
if (0 != TALER_TESTING_wait_exchange_ready (base_url))
|
|
|
|
return 77;
|
2018-01-21 19:57:09 +01:00
|
|
|
|
2018-07-02 11:57:21 +02:00
|
|
|
/* NOTE: this blocks. */
|
2018-01-21 19:57:09 +01:00
|
|
|
result = TALER_TESTING_setup (main_cb,
|
2018-01-23 10:28:24 +01:00
|
|
|
main_cb_cls,
|
|
|
|
config_filename,
|
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);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test port in URL string for availability.
|
|
|
|
*/
|
|
|
|
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,
|
|
|
|
pnum))
|
|
|
|
{
|
|
|
|
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
|
|
|
|
2018-01-23 10:28:24 +01:00
|
|
|
/**
|
2018-04-02 14:24:45 +02:00
|
|
|
* Allocate and return a piece of wire-details. Combines
|
|
|
|
* the @a account_no and the @a bank_url to a
|
|
|
|
* @a payto://-URL and adds some salt to create the JSON.
|
2018-01-23 10:28:24 +01:00
|
|
|
*
|
2018-04-02 14:24:45 +02:00
|
|
|
* @param account_no account number
|
2018-07-25 10:57:08 +02:00
|
|
|
* @param bank_url the bank_url (FIXME/WARNING: shouldn't this be a _hostname_ ??)
|
2018-04-02 14:24:45 +02:00
|
|
|
* @return JSON describing the account, including the
|
|
|
|
* payto://-URL of the account, must be manually decref'd
|
2018-01-23 10:28:24 +01:00
|
|
|
*/
|
2018-04-02 14:24:45 +02:00
|
|
|
json_t *
|
|
|
|
TALER_TESTING_make_wire_details (unsigned long long account_no,
|
2018-01-23 10:28:24 +01:00
|
|
|
const char *bank_url)
|
|
|
|
{
|
2018-04-02 14:24:45 +02:00
|
|
|
char *payto;
|
|
|
|
json_t *ret;
|
|
|
|
|
|
|
|
GNUNET_asprintf (&payto,
|
|
|
|
"payto://x-taler-bank/%s/%llu",
|
|
|
|
bank_url,
|
|
|
|
account_no);
|
|
|
|
ret = json_pack ("{s:s, s:s}",
|
|
|
|
"url", payto,
|
|
|
|
"salt", "test-salt (must be constant for aggregation tests)");
|
|
|
|
GNUNET_free (payto);
|
|
|
|
return ret;
|
2018-01-23 10:28:24 +01:00
|
|
|
}
|
2018-01-21 20:10:05 +01:00
|
|
|
|
2018-04-02 14:24:45 +02:00
|
|
|
|
2018-01-21 20:10:05 +01:00
|
|
|
/**
|
|
|
|
* Prepare launching a fakebank. Check that the configuration
|
2018-01-23 10:28:24 +01:00
|
|
|
* file has the right option, and that the port is available.
|
2018-01-21 20:10:05 +01:00
|
|
|
* If everything is OK, return the configured URL of the fakebank.
|
|
|
|
*
|
|
|
|
* @param config_filename configuration file to use
|
2018-04-02 14:24:45 +02:00
|
|
|
* @param config_section which account to use (must match x-taler-bank)
|
2018-01-21 20:10:05 +01:00
|
|
|
* @return NULL on error, fakebank URL otherwise
|
|
|
|
*/
|
|
|
|
char *
|
2018-04-02 14:24:45 +02:00
|
|
|
TALER_TESTING_prepare_fakebank (const char *config_filename,
|
|
|
|
const char *config_section)
|
2018-01-21 20:10:05 +01:00
|
|
|
{
|
|
|
|
struct GNUNET_CONFIGURATION_Handle *cfg;
|
2018-04-02 14:24:45 +02:00
|
|
|
char *payto_url;
|
2018-01-21 20:10:05 +01:00
|
|
|
char *fakebank_url;
|
2018-04-02 14:24:45 +02:00
|
|
|
const char *start;
|
|
|
|
const char *end;
|
2018-01-21 20:10:05 +01:00
|
|
|
|
|
|
|
cfg = GNUNET_CONFIGURATION_create ();
|
2018-02-22 14:51:12 +01:00
|
|
|
if (GNUNET_OK != GNUNET_CONFIGURATION_load (cfg,
|
|
|
|
config_filename))
|
2018-01-21 20:10:05 +01:00
|
|
|
return NULL;
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CONFIGURATION_get_value_string (cfg,
|
2018-04-02 14:24:45 +02:00
|
|
|
config_section,
|
|
|
|
"URL",
|
|
|
|
&payto_url))
|
2018-01-21 20:10:05 +01:00
|
|
|
{
|
|
|
|
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_WARNING,
|
2018-04-02 14:24:45 +02:00
|
|
|
config_section,
|
|
|
|
"URL");
|
2018-01-21 20:10:05 +01:00
|
|
|
GNUNET_CONFIGURATION_destroy (cfg);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
GNUNET_CONFIGURATION_destroy (cfg);
|
2018-04-02 14:24:45 +02:00
|
|
|
if (0 != strncasecmp (payto_url,
|
|
|
|
"payto://x-taler-bank/",
|
|
|
|
strlen ("payto://x-taler-bank/")))
|
|
|
|
{
|
2018-05-29 12:18:18 +02:00
|
|
|
GNUNET_log_config_invalid
|
|
|
|
(GNUNET_ERROR_TYPE_WARNING,
|
|
|
|
config_section,
|
|
|
|
"URL",
|
|
|
|
"expected `x-taler-bank' payto://-URL");
|
2018-04-02 14:24:45 +02:00
|
|
|
GNUNET_CONFIGURATION_destroy (cfg);
|
|
|
|
GNUNET_free (payto_url);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
start = &payto_url [strlen ("payto://x-taler-bank/")];
|
|
|
|
end = strchr (start,
|
|
|
|
(unsigned char) '/');
|
|
|
|
if (NULL == end)
|
|
|
|
end = &start[strlen (start)];
|
|
|
|
fakebank_url = GNUNET_strndup (start,
|
|
|
|
end - start);
|
|
|
|
GNUNET_free (payto_url);
|
2018-01-21 20:10:05 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_TESTING_url_port_free (fakebank_url))
|
|
|
|
{
|
|
|
|
GNUNET_free (fakebank_url);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return fakebank_url;
|
|
|
|
}
|
|
|
|
|
2018-01-21 18:45:19 +01:00
|
|
|
/* end of testing_api_helpers.c */
|