exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit d5d2fc12f54fbfe608f66417b0b350c2bd94d516
parent 6243afe0ef6ace667e9219165c5db4d753dd4c57
Author: Christian Grothoff <christian@grothoff.org>
Date:   Fri, 25 Dec 2020 08:59:04 +0100

fix test failures

Diffstat:
Msrc/exchange/taler-exchange-httpd_keys.c | 6------
Msrc/testing/test_auditor_api.conf | 2+-
Msrc/testing/test_bank_api.c | 3+--
Msrc/testing/testing_api_cmd_wire.c | 4+++-
4 files changed, 5 insertions(+), 10 deletions(-)

diff --git a/src/exchange/taler-exchange-httpd_keys.c b/src/exchange/taler-exchange-httpd_keys.c @@ -639,9 +639,6 @@ helper_denom_cb ( { /* should be just an update (revocation!), so update existing entry */ hd->validity_duration = validity_duration; - GNUNET_break (0 == - GNUNET_memcmp (sm_sig, - &hd->sm_sig)); GNUNET_break (start_time.abs_value_us == hd->start_time.abs_value_us); GNUNET_break (0 == @@ -709,9 +706,6 @@ helper_esign_cb ( { /* should be just an update (revocation!), so update existing entry */ hsk->validity_duration = validity_duration; - GNUNET_break (0 == - GNUNET_memcmp (sm_sig, - &hsk->sm_sig)); GNUNET_break (start_time.abs_value_us == hsk->start_time.abs_value_us); return; diff --git a/src/testing/test_auditor_api.conf b/src/testing/test_auditor_api.conf @@ -11,7 +11,7 @@ CURRENCY = EUR CURRENCY_ROUND_UNIT = EUR:0.01 [auditor] -BASE_URL = "http://localhost:8083/" +AUDITOR_URL = "http://localhost:8083/" # HTTP port the auditor listens to PORT = 8083 diff --git a/src/testing/test_bank_api.c b/src/testing/test_bank_api.c @@ -185,8 +185,7 @@ main (int argc, "_with_pybank")) { TALER_LOG_DEBUG ("Running against the Pybank.\n"); - // FIXME: is the line below correct? - cfgfile = CONFIG_FILE_FAKEBANK; + cfgfile = CONFIG_FILE_PYBANK; if (GNUNET_OK != TALER_TESTING_prepare_bank (CONFIG_FILE_PYBANK, GNUNET_YES, diff --git a/src/testing/testing_api_cmd_wire.c b/src/testing/testing_api_cmd_wire.c @@ -91,7 +91,9 @@ wire_cb (void *cls, ws->wh = NULL; if (ws->expected_response_code != hr->http_status) { - GNUNET_break (0); + GNUNET_log (GNUNET_ERROR_TYPE_ERROR, + "Received unexpected status code %u\n", + hr->http_status); TALER_TESTING_interpreter_fail (ws->is); return; }