implement test and fix minor discovered bugs for /history via test wire plugin (fixes #4959)
This commit is contained in:
parent
55823814a5
commit
fb381df2e0
@ -866,6 +866,7 @@ bhist_cb (void *cls,
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
if (NULL != whh->hres_cb)
|
||||||
(void) whh->hres_cb (whh->hres_cb_cls,
|
(void) whh->hres_cb (whh->hres_cb_cls,
|
||||||
TALER_BANK_DIRECTION_NONE,
|
TALER_BANK_DIRECTION_NONE,
|
||||||
NULL,
|
NULL,
|
||||||
@ -929,7 +930,7 @@ test_get_history (void *cls,
|
|||||||
}
|
}
|
||||||
if (NULL == start_off)
|
if (NULL == start_off)
|
||||||
{
|
{
|
||||||
start_row = (num_results > 0) ? 0 : UINT64_MAX;
|
start_row = UINT64_MAX; /* no start row */
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -34,8 +34,11 @@
|
|||||||
#define TIMEOUT GNUNET_TIME_UNIT_SECONDS
|
#define TIMEOUT GNUNET_TIME_UNIT_SECONDS
|
||||||
|
|
||||||
|
|
||||||
const char *json_proto
|
/**
|
||||||
= "{ \"type\":\"test\", \"bank_uri\":\"http://localhost:8088/\", \"account_number\":42 }";
|
* Input for the wire transfer details.
|
||||||
|
*/
|
||||||
|
static const char *json_proto =
|
||||||
|
"{ \"type\":\"test\", \"bank_uri\":\"http://localhost:8088/\", \"account_number\":42 }";
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -88,6 +91,16 @@ static struct TALER_WIRE_HistoryHandle *hh;
|
|||||||
*/
|
*/
|
||||||
static struct GNUNET_SCHEDULER_Task *tt;
|
static struct GNUNET_SCHEDULER_Task *tt;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Which serial ID do we expect to get from /history?
|
||||||
|
*/
|
||||||
|
static uint64_t serial_target;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Wire transfer identifier we are using.
|
||||||
|
*/
|
||||||
|
static struct TALER_WireTransferIdentifierRawP wtid;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function called on shutdown (regular, error or CTRL-C).
|
* Function called on shutdown (regular, error or CTRL-C).
|
||||||
@ -122,6 +135,7 @@ do_shutdown (void *cls)
|
|||||||
GNUNET_SCHEDULER_cancel (tt);
|
GNUNET_SCHEDULER_cancel (tt);
|
||||||
tt = NULL;
|
tt = NULL;
|
||||||
}
|
}
|
||||||
|
TALER_WIRE_plugin_unload (plugin);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -158,10 +172,56 @@ history_result_cb (void *cls,
|
|||||||
size_t row_off_size,
|
size_t row_off_size,
|
||||||
const struct TALER_WIRE_TransferDetails *details)
|
const struct TALER_WIRE_TransferDetails *details)
|
||||||
{
|
{
|
||||||
// FIXME: check result!
|
uint64_t *serialp;
|
||||||
global_ret = GNUNET_OK;
|
uint64_t serialh;
|
||||||
|
struct TALER_Amount amount;
|
||||||
|
|
||||||
|
hh = NULL;
|
||||||
|
if ( (TALER_BANK_DIRECTION_NONE == dir) &&
|
||||||
|
(GNUNET_OK == global_ret) )
|
||||||
|
{
|
||||||
GNUNET_SCHEDULER_shutdown ();
|
GNUNET_SCHEDULER_shutdown ();
|
||||||
return GNUNET_OK;
|
return GNUNET_OK;
|
||||||
|
}
|
||||||
|
if (sizeof (uint64_t) != row_off_size)
|
||||||
|
{
|
||||||
|
GNUNET_break (0);
|
||||||
|
global_ret = GNUNET_SYSERR;
|
||||||
|
GNUNET_SCHEDULER_shutdown ();
|
||||||
|
return GNUNET_SYSERR;
|
||||||
|
}
|
||||||
|
serialp = (uint64_t *) row_off;
|
||||||
|
serialh = GNUNET_ntohll (*serialp);
|
||||||
|
if (serialh != serial_target)
|
||||||
|
{
|
||||||
|
GNUNET_break (0);
|
||||||
|
global_ret = GNUNET_SYSERR;
|
||||||
|
GNUNET_SCHEDULER_shutdown ();
|
||||||
|
return GNUNET_SYSERR;
|
||||||
|
}
|
||||||
|
GNUNET_assert (GNUNET_OK ==
|
||||||
|
TALER_string_to_amount ("KUDOS:5.01",
|
||||||
|
&amount));
|
||||||
|
if (0 != TALER_amount_cmp (&amount,
|
||||||
|
&details->amount))
|
||||||
|
{
|
||||||
|
GNUNET_break (0);
|
||||||
|
global_ret = GNUNET_SYSERR;
|
||||||
|
GNUNET_SCHEDULER_shutdown ();
|
||||||
|
return GNUNET_SYSERR;
|
||||||
|
}
|
||||||
|
if (0 != memcmp (&wtid,
|
||||||
|
&details->reserve_pub,
|
||||||
|
GNUNET_MIN (sizeof (struct TALER_ReservePublicKeyP),
|
||||||
|
sizeof (wtid))))
|
||||||
|
{
|
||||||
|
GNUNET_break (0);
|
||||||
|
global_ret = GNUNET_SYSERR;
|
||||||
|
GNUNET_SCHEDULER_shutdown ();
|
||||||
|
return GNUNET_SYSERR;
|
||||||
|
}
|
||||||
|
global_ret = GNUNET_OK;
|
||||||
|
return GNUNET_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -187,6 +247,7 @@ confirmation_cb (void *cls,
|
|||||||
GNUNET_SCHEDULER_shutdown ();
|
GNUNET_SCHEDULER_shutdown ();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
serial_target = serial_id;
|
||||||
hh = plugin->get_history (plugin->cls,
|
hh = plugin->get_history (plugin->cls,
|
||||||
TALER_BANK_DIRECTION_BOTH,
|
TALER_BANK_DIRECTION_BOTH,
|
||||||
NULL, 0,
|
NULL, 0,
|
||||||
@ -233,7 +294,6 @@ static void
|
|||||||
run (void *cls)
|
run (void *cls)
|
||||||
{
|
{
|
||||||
json_t *wire;
|
json_t *wire;
|
||||||
struct TALER_WireTransferIdentifierRawP wtid;
|
|
||||||
struct TALER_Amount amount;
|
struct TALER_Amount amount;
|
||||||
|
|
||||||
GNUNET_SCHEDULER_add_shutdown (&do_shutdown,
|
GNUNET_SCHEDULER_add_shutdown (&do_shutdown,
|
||||||
@ -241,6 +301,15 @@ run (void *cls)
|
|||||||
tt = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
|
tt = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
|
||||||
&timeout_cb,
|
&timeout_cb,
|
||||||
NULL);
|
NULL);
|
||||||
|
GNUNET_CRYPTO_random_block (GNUNET_CRYPTO_QUALITY_WEAK,
|
||||||
|
&wtid,
|
||||||
|
sizeof (wtid));
|
||||||
|
GNUNET_assert (GNUNET_OK ==
|
||||||
|
TALER_string_to_amount ("KUDOS:5.01",
|
||||||
|
&amount));
|
||||||
|
wire = json_loads (json_proto,
|
||||||
|
0,
|
||||||
|
NULL);
|
||||||
fb = TALER_FAKEBANK_start (8088);
|
fb = TALER_FAKEBANK_start (8088);
|
||||||
ph = plugin->prepare_wire_transfer (plugin->cls,
|
ph = plugin->prepare_wire_transfer (plugin->cls,
|
||||||
wire,
|
wire,
|
||||||
@ -249,6 +318,7 @@ run (void *cls)
|
|||||||
&wtid,
|
&wtid,
|
||||||
&prepare_cb,
|
&prepare_cb,
|
||||||
NULL);
|
NULL);
|
||||||
|
json_decref (wire);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -276,7 +346,6 @@ main (int argc,
|
|||||||
GNUNET_assert (NULL != plugin);
|
GNUNET_assert (NULL != plugin);
|
||||||
GNUNET_SCHEDULER_run (&run,
|
GNUNET_SCHEDULER_run (&run,
|
||||||
NULL);
|
NULL);
|
||||||
TALER_WIRE_plugin_unload (plugin);
|
|
||||||
GNUNET_CONFIGURATION_destroy (cfg);
|
GNUNET_CONFIGURATION_destroy (cfg);
|
||||||
if (GNUNET_OK != global_ret)
|
if (GNUNET_OK != global_ret)
|
||||||
return 1;
|
return 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user