2016-11-04 00:37:47 +01:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
2016-11-06 13:39:22 +01:00
|
|
|
Copyright (C) 2016 GNUnet e.V. and INRIA
|
2016-11-04 00:37:47 +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/>
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @file auditordb/test_auditordb.c
|
|
|
|
* @brief test cases for DB interaction functions
|
2016-11-06 14:24:17 +01:00
|
|
|
* @author Gabor X Toth
|
2016-11-04 00:37:47 +01:00
|
|
|
*/
|
|
|
|
#include "platform.h"
|
|
|
|
#include "taler_auditordb_lib.h"
|
|
|
|
#include "taler_auditordb_plugin.h"
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Global result from the testcase.
|
|
|
|
*/
|
|
|
|
static int result = -1;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Report line of error if @a cond is true, and jump to label "drop".
|
|
|
|
*/
|
|
|
|
#define FAILIF(cond) \
|
2016-11-06 14:24:17 +01:00
|
|
|
do { \
|
|
|
|
if (!(cond)){ break;} \
|
|
|
|
GNUNET_break (0); \
|
|
|
|
goto drop; \
|
2016-11-04 00:37:47 +01:00
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initializes @a ptr with random data.
|
|
|
|
*/
|
|
|
|
#define RND_BLK(ptr) \
|
|
|
|
GNUNET_CRYPTO_random_block (GNUNET_CRYPTO_QUALITY_WEAK, ptr, sizeof (*ptr))
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initializes @a ptr with zeros.
|
|
|
|
*/
|
|
|
|
#define ZR_BLK(ptr) \
|
|
|
|
memset (ptr, 0, sizeof (*ptr))
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Currency we use.
|
|
|
|
*/
|
|
|
|
#define CURRENCY "EUR"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Database plugin under test.
|
|
|
|
*/
|
|
|
|
static struct TALER_AUDITORDB_Plugin *plugin;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Main function that will be run by the scheduler.
|
|
|
|
*
|
|
|
|
* @param cls closure with config
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
run (void *cls)
|
|
|
|
{
|
|
|
|
struct GNUNET_CONFIGURATION_Handle *cfg = cls;
|
|
|
|
struct TALER_AUDITORDB_Session *session;
|
2017-03-15 13:36:47 +01:00
|
|
|
uint64_t rowid;
|
2016-11-04 00:37:47 +01:00
|
|
|
|
2016-11-04 20:38:21 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"loading database plugin\n");
|
|
|
|
|
2016-11-04 00:37:47 +01:00
|
|
|
if (NULL ==
|
|
|
|
(plugin = TALER_AUDITORDB_plugin_load (cfg)))
|
|
|
|
{
|
|
|
|
result = 77;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
(void) plugin->drop_tables (plugin->cls);
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
plugin->create_tables (plugin->cls))
|
|
|
|
{
|
|
|
|
result = 77;
|
|
|
|
goto drop;
|
|
|
|
}
|
|
|
|
if (NULL ==
|
|
|
|
(session = plugin->get_session (plugin->cls)))
|
|
|
|
{
|
|
|
|
result = 77;
|
|
|
|
goto drop;
|
|
|
|
}
|
|
|
|
|
2016-11-04 20:38:21 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"initializing\n");
|
|
|
|
|
2016-11-04 00:37:47 +01:00
|
|
|
struct TALER_Amount value, fee_withdraw, fee_deposit, fee_refresh, fee_refund;
|
|
|
|
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_string_to_amount (CURRENCY ":1.000010",
|
|
|
|
&value));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_string_to_amount (CURRENCY ":0.000011",
|
|
|
|
&fee_withdraw));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_string_to_amount (CURRENCY ":0.000012",
|
|
|
|
&fee_deposit));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_string_to_amount (CURRENCY ":0.000013",
|
|
|
|
&fee_refresh));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_string_to_amount (CURRENCY ":0.000014",
|
|
|
|
&fee_refund));
|
|
|
|
|
|
|
|
struct TALER_MasterPublicKeyP master_pub;
|
|
|
|
struct TALER_ReservePublicKeyP reserve_pub;
|
2016-11-04 20:38:21 +01:00
|
|
|
struct GNUNET_HashCode rnd_hash;
|
2016-11-04 00:37:47 +01:00
|
|
|
RND_BLK (&master_pub);
|
|
|
|
RND_BLK (&reserve_pub);
|
2016-11-04 20:38:21 +01:00
|
|
|
RND_BLK (&rnd_hash);
|
2016-11-04 00:37:47 +01:00
|
|
|
|
|
|
|
struct TALER_DenominationPrivateKey denom_priv;
|
|
|
|
struct TALER_DenominationPublicKey denom_pub;
|
|
|
|
struct GNUNET_HashCode denom_pub_hash;
|
|
|
|
denom_priv.rsa_private_key = GNUNET_CRYPTO_rsa_private_key_create (1024);
|
|
|
|
denom_pub.rsa_public_key = GNUNET_CRYPTO_rsa_private_key_get_public (denom_priv.rsa_private_key);
|
|
|
|
GNUNET_CRYPTO_rsa_public_key_hash (denom_pub.rsa_public_key, &denom_pub_hash);
|
|
|
|
|
2016-11-04 20:38:21 +01:00
|
|
|
struct GNUNET_TIME_Absolute now, past, future, date;
|
2016-11-04 00:37:47 +01:00
|
|
|
now = GNUNET_TIME_absolute_get ();
|
|
|
|
past = GNUNET_TIME_absolute_subtract (now,
|
|
|
|
GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS,
|
|
|
|
4));
|
|
|
|
future = GNUNET_TIME_absolute_add (now,
|
|
|
|
GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS,
|
|
|
|
4));
|
|
|
|
|
2016-11-04 20:38:21 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Test: insert_denomination_info\n");
|
|
|
|
|
2016-11-04 00:37:47 +01:00
|
|
|
struct TALER_DenominationKeyValidityPS issue = { 0 };
|
|
|
|
issue.master = master_pub;
|
|
|
|
issue.denom_hash = denom_pub_hash;
|
|
|
|
|
|
|
|
issue.start = GNUNET_TIME_absolute_hton (now);
|
|
|
|
issue.expire_withdraw = GNUNET_TIME_absolute_hton
|
|
|
|
(GNUNET_TIME_absolute_add (now,
|
|
|
|
GNUNET_TIME_UNIT_HOURS));
|
|
|
|
issue.expire_deposit = GNUNET_TIME_absolute_hton
|
|
|
|
(GNUNET_TIME_absolute_add
|
|
|
|
(now,
|
|
|
|
GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 2)));
|
|
|
|
issue.expire_legal = GNUNET_TIME_absolute_hton
|
|
|
|
(GNUNET_TIME_absolute_add
|
|
|
|
(now,
|
|
|
|
GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 3)));
|
|
|
|
TALER_amount_hton (&issue.value, &value);
|
|
|
|
TALER_amount_hton (&issue.fee_withdraw, &fee_withdraw);
|
|
|
|
TALER_amount_hton (&issue.fee_deposit, &fee_deposit);
|
|
|
|
TALER_amount_hton (&issue.fee_refresh, &fee_refresh);
|
|
|
|
TALER_amount_hton (&issue.fee_refund, &fee_refund);
|
|
|
|
|
|
|
|
FAILIF (GNUNET_OK !=
|
|
|
|
plugin->insert_denomination_info (plugin->cls,
|
|
|
|
session,
|
|
|
|
&issue));
|
|
|
|
|
2016-11-04 20:38:21 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Test: select_denomination_info\n");
|
|
|
|
|
|
|
|
int
|
|
|
|
select_denomination_info_result (void *cls,
|
|
|
|
const struct TALER_DenominationKeyValidityPS *issue2)
|
|
|
|
{
|
|
|
|
const struct TALER_DenominationKeyValidityPS *issue1 = cls;
|
|
|
|
|
|
|
|
if (0 != memcmp (issue1, issue2, sizeof (*issue2)))
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"select_denomination_info_result: issue does not match\n");
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
2016-11-04 00:37:47 +01:00
|
|
|
FAILIF (GNUNET_OK !=
|
|
|
|
plugin->select_denomination_info (plugin->cls,
|
|
|
|
session,
|
|
|
|
&master_pub,
|
|
|
|
select_denomination_info_result,
|
|
|
|
&issue));
|
|
|
|
|
2016-11-06 14:24:17 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Test: insert_auditor_progress\n");
|
|
|
|
|
2017-03-15 13:12:45 +01:00
|
|
|
struct TALER_AUDITORDB_ProgressPoint pp = {
|
|
|
|
.last_reserve_in_serial_id = 1234,
|
|
|
|
.last_reserve_out_serial_id = 5678,
|
|
|
|
.last_deposit_serial_id = 123,
|
|
|
|
.last_melt_serial_id = 456,
|
|
|
|
.last_refund_serial_id = 789,
|
2017-03-18 22:38:31 +01:00
|
|
|
.last_wire_out_serial_id = 555
|
2017-03-15 13:12:45 +01:00
|
|
|
};
|
|
|
|
struct TALER_AUDITORDB_ProgressPoint pp2 = {
|
|
|
|
.last_reserve_in_serial_id = 0,
|
|
|
|
.last_reserve_out_serial_id = 0,
|
|
|
|
.last_deposit_serial_id = 0,
|
|
|
|
.last_melt_serial_id = 0,
|
|
|
|
.last_refund_serial_id = 0,
|
2017-03-18 22:38:31 +01:00
|
|
|
.last_wire_out_serial_id = 0
|
2017-03-15 13:12:45 +01:00
|
|
|
};
|
2016-11-06 14:24:17 +01:00
|
|
|
|
|
|
|
FAILIF (GNUNET_OK !=
|
|
|
|
plugin->insert_auditor_progress (plugin->cls,
|
|
|
|
session,
|
|
|
|
&master_pub,
|
2017-03-15 13:12:45 +01:00
|
|
|
&pp));
|
2016-11-06 14:24:17 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Test: update_auditor_progress\n");
|
|
|
|
|
2017-03-15 13:12:45 +01:00
|
|
|
pp.last_reserve_in_serial_id++;
|
|
|
|
pp.last_reserve_out_serial_id++;
|
|
|
|
pp.last_deposit_serial_id++;
|
|
|
|
pp.last_melt_serial_id++;
|
|
|
|
pp.last_refund_serial_id++;
|
2017-03-18 22:38:31 +01:00
|
|
|
pp.last_wire_out_serial_id++;
|
2016-11-06 14:24:17 +01:00
|
|
|
|
|
|
|
FAILIF (GNUNET_OK !=
|
|
|
|
plugin->update_auditor_progress (plugin->cls,
|
|
|
|
session,
|
|
|
|
&master_pub,
|
2017-03-15 13:12:45 +01:00
|
|
|
&pp));
|
2016-11-06 14:24:17 +01:00
|
|
|
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Test: get_auditor_progress\n");
|
|
|
|
|
|
|
|
FAILIF (GNUNET_OK !=
|
|
|
|
plugin->get_auditor_progress (plugin->cls,
|
|
|
|
session,
|
|
|
|
&master_pub,
|
2017-03-15 13:12:45 +01:00
|
|
|
&pp2));
|
|
|
|
FAILIF ( (pp.last_reserve_in_serial_id != pp2.last_reserve_in_serial_id) ||
|
|
|
|
(pp.last_reserve_out_serial_id != pp2.last_reserve_out_serial_id) ||
|
|
|
|
(pp.last_deposit_serial_id != pp2.last_deposit_serial_id) ||
|
|
|
|
(pp.last_melt_serial_id != pp2.last_melt_serial_id) ||
|
|
|
|
(pp.last_refund_serial_id != pp2.last_refund_serial_id) ||
|
2017-03-18 22:38:31 +01:00
|
|
|
(pp.last_wire_out_serial_id != pp2.last_wire_out_serial_id) );
|
2016-11-06 14:24:17 +01:00
|
|
|
|
2016-11-04 20:38:21 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Test: insert_reserve_info\n");
|
|
|
|
|
|
|
|
struct TALER_Amount reserve_balance, withdraw_fee_balance;
|
|
|
|
struct TALER_Amount reserve_balance2 = {}, withdraw_fee_balance2 = {};
|
|
|
|
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_string_to_amount (CURRENCY ":12.345678",
|
|
|
|
&reserve_balance));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_string_to_amount (CURRENCY ":23.456789",
|
|
|
|
&withdraw_fee_balance));
|
|
|
|
|
|
|
|
FAILIF (GNUNET_OK !=
|
|
|
|
plugin->insert_reserve_info (plugin->cls,
|
|
|
|
session,
|
|
|
|
&reserve_pub,
|
|
|
|
&master_pub,
|
|
|
|
&reserve_balance,
|
|
|
|
&withdraw_fee_balance,
|
2017-03-18 22:38:31 +01:00
|
|
|
past));
|
2016-11-04 20:38:21 +01:00
|
|
|
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Test: update_reserve_info\n");
|
|
|
|
|
|
|
|
FAILIF (GNUNET_OK !=
|
|
|
|
plugin->update_reserve_info (plugin->cls,
|
|
|
|
session,
|
|
|
|
&reserve_pub,
|
|
|
|
&master_pub,
|
|
|
|
&reserve_balance,
|
|
|
|
&withdraw_fee_balance,
|
2017-03-18 22:38:31 +01:00
|
|
|
future));
|
2016-11-04 20:38:21 +01:00
|
|
|
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Test: get_reserve_info\n");
|
|
|
|
|
|
|
|
FAILIF (GNUNET_OK !=
|
|
|
|
plugin->get_reserve_info (plugin->cls,
|
|
|
|
session,
|
|
|
|
&reserve_pub,
|
|
|
|
&master_pub,
|
2017-03-15 13:36:47 +01:00
|
|
|
&rowid,
|
2016-11-04 20:38:21 +01:00
|
|
|
&reserve_balance2,
|
|
|
|
&withdraw_fee_balance2,
|
2017-03-18 22:38:31 +01:00
|
|
|
&date));
|
2016-11-04 20:38:21 +01:00
|
|
|
|
|
|
|
FAILIF (0 != memcmp (&date, &future, sizeof (future))
|
|
|
|
|| 0 != memcmp (&reserve_balance2, &reserve_balance, sizeof (reserve_balance))
|
2017-03-18 22:38:31 +01:00
|
|
|
|| 0 != memcmp (&withdraw_fee_balance2, &withdraw_fee_balance, sizeof (withdraw_fee_balance)));
|
2016-11-04 20:38:21 +01:00
|
|
|
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Test: insert_reserve_summary\n");
|
|
|
|
|
|
|
|
FAILIF (GNUNET_OK !=
|
|
|
|
plugin->insert_reserve_summary (plugin->cls,
|
|
|
|
session,
|
|
|
|
&master_pub,
|
|
|
|
&withdraw_fee_balance,
|
|
|
|
&reserve_balance));
|
|
|
|
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Test: update_reserve_summary\n");
|
|
|
|
|
|
|
|
FAILIF (GNUNET_OK !=
|
|
|
|
plugin->update_reserve_summary (plugin->cls,
|
|
|
|
session,
|
|
|
|
&master_pub,
|
|
|
|
&reserve_balance,
|
|
|
|
&withdraw_fee_balance));
|
|
|
|
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Test: get_reserve_summary\n");
|
|
|
|
|
|
|
|
ZR_BLK (&reserve_balance2);
|
|
|
|
ZR_BLK (&withdraw_fee_balance2);
|
|
|
|
|
|
|
|
FAILIF (GNUNET_OK !=
|
|
|
|
plugin->get_reserve_summary (plugin->cls,
|
|
|
|
session,
|
|
|
|
&master_pub,
|
|
|
|
&reserve_balance2,
|
|
|
|
&withdraw_fee_balance2));
|
|
|
|
|
|
|
|
FAILIF (0 != memcmp (&reserve_balance2, &reserve_balance, sizeof (reserve_balance))
|
|
|
|
|| 0 != memcmp (&withdraw_fee_balance2, &withdraw_fee_balance, sizeof (withdraw_fee_balance)));
|
|
|
|
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Test: insert_denomination_balance\n");
|
|
|
|
|
|
|
|
struct TALER_Amount denom_balance, deposit_fee_balance, melt_fee_balance, refund_fee_balance;
|
|
|
|
struct TALER_Amount denom_balance2, deposit_fee_balance2, melt_fee_balance2, refund_fee_balance2;
|
2017-03-18 22:06:27 +01:00
|
|
|
struct TALER_Amount rbalance, rbalance2;
|
2016-11-04 20:38:21 +01:00
|
|
|
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_string_to_amount (CURRENCY ":12.345678",
|
|
|
|
&denom_balance));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_string_to_amount (CURRENCY ":23.456789",
|
|
|
|
&deposit_fee_balance));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_string_to_amount (CURRENCY ":34.567890",
|
|
|
|
&melt_fee_balance));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_string_to_amount (CURRENCY ":45.678901",
|
|
|
|
&refund_fee_balance));
|
2017-03-18 22:06:27 +01:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_string_to_amount (CURRENCY ":13.57986",
|
|
|
|
&rbalance));
|
2016-11-04 20:38:21 +01:00
|
|
|
|
|
|
|
FAILIF (GNUNET_OK !=
|
|
|
|
plugin->insert_denomination_balance (plugin->cls,
|
|
|
|
session,
|
|
|
|
&denom_pub_hash,
|
2017-03-18 22:20:48 +01:00
|
|
|
&denom_balance,
|
|
|
|
&rbalance));
|
2016-11-04 20:38:21 +01:00
|
|
|
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Test: update_denomination_balance\n");
|
|
|
|
|
2017-03-15 13:12:45 +01:00
|
|
|
pp.last_reserve_out_serial_id++;
|
|
|
|
pp.last_deposit_serial_id++;
|
|
|
|
pp.last_melt_serial_id++;
|
|
|
|
pp.last_refund_serial_id++;
|
2016-11-04 20:38:21 +01:00
|
|
|
|
|
|
|
FAILIF (GNUNET_OK !=
|
|
|
|
plugin->update_denomination_balance (plugin->cls,
|
|
|
|
session,
|
|
|
|
&denom_pub_hash,
|
2017-03-18 22:20:48 +01:00
|
|
|
&denom_balance,
|
|
|
|
&rbalance));
|
2016-11-04 20:38:21 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Test: get_denomination_balance\n");
|
|
|
|
|
|
|
|
FAILIF (GNUNET_OK !=
|
|
|
|
plugin->get_denomination_balance (plugin->cls,
|
|
|
|
session,
|
|
|
|
&denom_pub_hash,
|
2017-03-18 22:20:48 +01:00
|
|
|
&denom_balance2,
|
|
|
|
&rbalance2));
|
2017-03-18 22:06:27 +01:00
|
|
|
|
|
|
|
FAILIF (0 != memcmp (&denom_balance2, &denom_balance, sizeof (denom_balance)));
|
2017-03-18 22:20:48 +01:00
|
|
|
FAILIF (0 != memcmp (&rbalance2, &rbalance, sizeof (rbalance)));
|
2016-11-04 20:38:21 +01:00
|
|
|
|
|
|
|
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
2017-03-19 01:09:00 +01:00
|
|
|
"Test: insert_balance_summary\n");
|
2016-11-04 20:38:21 +01:00
|
|
|
|
|
|
|
FAILIF (GNUNET_OK !=
|
2017-03-19 01:09:00 +01:00
|
|
|
plugin->insert_balance_summary (plugin->cls,
|
2016-11-04 20:38:21 +01:00
|
|
|
session,
|
|
|
|
&master_pub,
|
|
|
|
&refund_fee_balance,
|
|
|
|
&melt_fee_balance,
|
|
|
|
&deposit_fee_balance,
|
2017-03-18 22:06:27 +01:00
|
|
|
&denom_balance,
|
|
|
|
&rbalance));
|
2016-11-04 20:38:21 +01:00
|
|
|
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
2017-03-19 01:09:00 +01:00
|
|
|
"Test: update_balance_summary\n");
|
2016-11-04 20:38:21 +01:00
|
|
|
|
|
|
|
FAILIF (GNUNET_OK !=
|
2017-03-19 01:09:00 +01:00
|
|
|
plugin->update_balance_summary (plugin->cls,
|
2016-11-04 20:38:21 +01:00
|
|
|
session,
|
|
|
|
&master_pub,
|
|
|
|
&denom_balance,
|
|
|
|
&deposit_fee_balance,
|
|
|
|
&melt_fee_balance,
|
2017-03-18 22:06:27 +01:00
|
|
|
&refund_fee_balance,
|
|
|
|
&rbalance));
|
2016-11-04 20:38:21 +01:00
|
|
|
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
2017-03-19 01:09:00 +01:00
|
|
|
"Test: get_balance_summary\n");
|
2016-11-04 20:38:21 +01:00
|
|
|
|
|
|
|
ZR_BLK (&denom_balance2);
|
|
|
|
ZR_BLK (&deposit_fee_balance2);
|
|
|
|
ZR_BLK (&melt_fee_balance2);
|
|
|
|
ZR_BLK (&refund_fee_balance2);
|
2017-03-18 22:06:27 +01:00
|
|
|
ZR_BLK (&rbalance2);
|
2016-11-04 20:38:21 +01:00
|
|
|
|
|
|
|
FAILIF (GNUNET_OK !=
|
2017-03-19 01:09:00 +01:00
|
|
|
plugin->get_balance_summary (plugin->cls,
|
2016-11-04 20:38:21 +01:00
|
|
|
session,
|
|
|
|
&master_pub,
|
|
|
|
&denom_balance2,
|
|
|
|
&deposit_fee_balance2,
|
|
|
|
&melt_fee_balance2,
|
2017-03-18 22:06:27 +01:00
|
|
|
&refund_fee_balance2,
|
|
|
|
&rbalance2));
|
2016-11-04 20:38:21 +01:00
|
|
|
|
|
|
|
FAILIF (0 != memcmp (&denom_balance2, &denom_balance, sizeof (denom_balance))
|
|
|
|
|| 0 != memcmp (&deposit_fee_balance2, &deposit_fee_balance, sizeof (deposit_fee_balance))
|
|
|
|
|| 0 != memcmp (&melt_fee_balance2, &melt_fee_balance, sizeof (melt_fee_balance))
|
|
|
|
|| 0 != memcmp (&refund_fee_balance2, &refund_fee_balance, sizeof (refund_fee_balance)));
|
2017-03-18 22:06:27 +01:00
|
|
|
FAILIF (0 != memcmp (&rbalance2, &rbalance, sizeof (rbalance)));
|
2016-11-04 20:38:21 +01:00
|
|
|
|
|
|
|
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Test: insert_historic_denom_revenue\n");
|
|
|
|
|
|
|
|
FAILIF (GNUNET_OK !=
|
|
|
|
plugin->insert_historic_denom_revenue (plugin->cls,
|
|
|
|
session,
|
|
|
|
&master_pub,
|
|
|
|
&denom_pub_hash,
|
|
|
|
past,
|
2017-03-18 23:03:00 +01:00
|
|
|
&rbalance));
|
2016-11-04 20:38:21 +01:00
|
|
|
|
|
|
|
FAILIF (GNUNET_OK !=
|
|
|
|
plugin->insert_historic_denom_revenue (plugin->cls,
|
|
|
|
session,
|
|
|
|
&master_pub,
|
|
|
|
&rnd_hash,
|
|
|
|
now,
|
2017-03-18 23:03:00 +01:00
|
|
|
&rbalance));
|
2016-11-04 20:38:21 +01:00
|
|
|
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Test: select_historic_denom_revenue\n");
|
|
|
|
|
|
|
|
int
|
|
|
|
select_historic_denom_revenue_result (void *cls,
|
|
|
|
const struct GNUNET_HashCode *denom_pub_hash2,
|
|
|
|
struct GNUNET_TIME_Absolute revenue_timestamp2,
|
2017-03-18 23:03:00 +01:00
|
|
|
const struct TALER_Amount *revenue_balance2)
|
2016-11-04 20:38:21 +01:00
|
|
|
{
|
|
|
|
static int n = 0;
|
|
|
|
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"select_historic_denom_revenue_result: row %u\n", n);
|
|
|
|
|
|
|
|
if (2 <= n++
|
|
|
|
|| cls != NULL
|
|
|
|
|| (0 != memcmp (&revenue_timestamp2, &past, sizeof (past))
|
|
|
|
&& 0 != memcmp (&revenue_timestamp2, &now, sizeof (now)))
|
|
|
|
|| (0 != memcmp (denom_pub_hash2, &denom_pub_hash, sizeof (denom_pub_hash))
|
|
|
|
&& 0 != memcmp (denom_pub_hash2, &rnd_hash, sizeof (rnd_hash)))
|
2017-03-18 23:03:00 +01:00
|
|
|
|| 0 != memcmp (revenue_balance2, &rbalance, sizeof (rbalance)))
|
2016-11-04 20:38:21 +01:00
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"select_historic_denom_revenue_result: result does not match\n");
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
FAILIF (GNUNET_OK !=
|
|
|
|
plugin->select_historic_denom_revenue (plugin->cls,
|
|
|
|
session,
|
|
|
|
&master_pub,
|
|
|
|
select_historic_denom_revenue_result,
|
|
|
|
NULL));
|
|
|
|
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Test: insert_historic_losses\n");
|
|
|
|
|
|
|
|
FAILIF (GNUNET_OK !=
|
|
|
|
plugin->insert_historic_losses (plugin->cls,
|
|
|
|
session,
|
|
|
|
&master_pub,
|
|
|
|
&denom_pub_hash,
|
|
|
|
past,
|
2017-03-18 22:06:27 +01:00
|
|
|
&rbalance));
|
2016-11-04 20:38:21 +01:00
|
|
|
|
|
|
|
FAILIF (GNUNET_OK !=
|
|
|
|
plugin->insert_historic_losses (plugin->cls,
|
|
|
|
session,
|
|
|
|
&master_pub,
|
|
|
|
&rnd_hash,
|
|
|
|
past,
|
2017-03-18 22:06:27 +01:00
|
|
|
&rbalance));
|
2016-11-04 20:38:21 +01:00
|
|
|
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Test: select_historic_losses\n");
|
|
|
|
|
|
|
|
int
|
|
|
|
select_historic_losses_result (void *cls,
|
|
|
|
const struct GNUNET_HashCode *denom_pub_hash2,
|
|
|
|
struct GNUNET_TIME_Absolute loss_timestamp2,
|
|
|
|
const struct TALER_Amount *loss_balance2)
|
|
|
|
{
|
|
|
|
static int n = 0;
|
|
|
|
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"select_historic_losses_result: row %u\n", n);
|
|
|
|
|
|
|
|
if (2 <= n++
|
|
|
|
|| cls != NULL
|
|
|
|
|| (0 != memcmp (&loss_timestamp2, &past, sizeof (past))
|
|
|
|
&& 0 != memcmp (&loss_timestamp2, &now, sizeof (now)))
|
|
|
|
|| (0 != memcmp (denom_pub_hash2, &denom_pub_hash, sizeof (denom_pub_hash))
|
|
|
|
&& 0 != memcmp (denom_pub_hash2, &rnd_hash, sizeof (rnd_hash)))
|
2017-03-18 22:06:27 +01:00
|
|
|
|| 0 != memcmp (loss_balance2, &rbalance, sizeof (rbalance)))
|
2016-11-04 20:38:21 +01:00
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"select_historic_denom_revenue_result: result does not match\n");
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
FAILIF (GNUNET_OK !=
|
|
|
|
plugin->select_historic_losses (plugin->cls,
|
|
|
|
session,
|
|
|
|
&master_pub,
|
|
|
|
select_historic_losses_result,
|
|
|
|
NULL));
|
|
|
|
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Test: insert_historic_reserve_revenue\n");
|
|
|
|
|
|
|
|
struct TALER_Amount reserve_profits;
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_string_to_amount (CURRENCY ":56.789012",
|
|
|
|
&reserve_profits));
|
|
|
|
|
|
|
|
FAILIF (GNUNET_OK !=
|
|
|
|
plugin->insert_historic_reserve_revenue (plugin->cls,
|
|
|
|
session,
|
|
|
|
&master_pub,
|
|
|
|
past,
|
|
|
|
future,
|
|
|
|
&reserve_profits));
|
|
|
|
|
|
|
|
FAILIF (GNUNET_OK !=
|
|
|
|
plugin->insert_historic_reserve_revenue (plugin->cls,
|
|
|
|
session,
|
|
|
|
&master_pub,
|
|
|
|
now,
|
|
|
|
future,
|
|
|
|
&reserve_profits));
|
|
|
|
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Test: select_historic_reserve_revenue\n");
|
|
|
|
|
|
|
|
int
|
|
|
|
select_historic_reserve_revenue_result (void *cls,
|
|
|
|
struct GNUNET_TIME_Absolute start_time2,
|
|
|
|
struct GNUNET_TIME_Absolute end_time2,
|
|
|
|
const struct TALER_Amount *reserve_profits2)
|
|
|
|
{
|
|
|
|
static int n = 0;
|
|
|
|
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"select_historic_reserve_revenue_result: row %u\n", n);
|
|
|
|
|
|
|
|
if (2 <= n++
|
|
|
|
|| cls != NULL
|
|
|
|
|| (0 != memcmp (&start_time2, &past, sizeof (past))
|
|
|
|
&& 0 != memcmp (&start_time2, &now, sizeof (now)))
|
|
|
|
|| 0 != memcmp (&end_time2, &future, sizeof (future))
|
|
|
|
|| 0 != memcmp (reserve_profits2, &reserve_profits, sizeof (reserve_profits)))
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"select_historic_reserve_revenue_result: result does not match\n");
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
FAILIF (GNUNET_OK !=
|
|
|
|
plugin->select_historic_reserve_revenue (plugin->cls,
|
|
|
|
session,
|
|
|
|
&master_pub,
|
|
|
|
select_historic_reserve_revenue_result,
|
|
|
|
NULL));
|
|
|
|
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Test: insert_predicted_result\n");
|
|
|
|
|
|
|
|
FAILIF (GNUNET_OK !=
|
|
|
|
plugin->insert_predicted_result (plugin->cls,
|
|
|
|
session,
|
|
|
|
&master_pub,
|
2017-03-18 22:06:27 +01:00
|
|
|
&rbalance));
|
2016-11-04 20:38:21 +01:00
|
|
|
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Test: update_predicted_result\n");
|
|
|
|
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_string_to_amount (CURRENCY ":78.901234",
|
2017-03-18 22:06:27 +01:00
|
|
|
&rbalance));
|
2016-11-04 20:38:21 +01:00
|
|
|
|
|
|
|
FAILIF (GNUNET_OK !=
|
|
|
|
plugin->update_predicted_result (plugin->cls,
|
|
|
|
session,
|
|
|
|
&master_pub,
|
2017-03-18 22:06:27 +01:00
|
|
|
&rbalance));
|
2016-11-04 20:38:21 +01:00
|
|
|
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Test: get_predicted_balance\n");
|
|
|
|
|
|
|
|
FAILIF (GNUNET_OK !=
|
|
|
|
plugin->get_predicted_balance (plugin->cls,
|
|
|
|
session,
|
|
|
|
&master_pub,
|
2017-03-18 22:06:27 +01:00
|
|
|
&rbalance2));
|
2016-11-04 20:38:21 +01:00
|
|
|
|
2017-03-18 22:06:27 +01:00
|
|
|
FAILIF (0 != memcmp (&rbalance2, &rbalance, sizeof (rbalance)));
|
2016-11-04 20:38:21 +01:00
|
|
|
|
2016-11-04 00:37:47 +01:00
|
|
|
result = 0;
|
|
|
|
|
|
|
|
drop:
|
|
|
|
|
|
|
|
GNUNET_break (GNUNET_OK ==
|
|
|
|
plugin->drop_tables (plugin->cls));
|
|
|
|
TALER_AUDITORDB_plugin_unload (plugin);
|
|
|
|
plugin = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
main (int argc,
|
|
|
|
char *const argv[])
|
|
|
|
{
|
|
|
|
const char *plugin_name;
|
|
|
|
char *config_filename;
|
|
|
|
char *testname;
|
|
|
|
struct GNUNET_CONFIGURATION_Handle *cfg;
|
|
|
|
|
|
|
|
result = -1;
|
|
|
|
if (NULL == (plugin_name = strrchr (argv[0], (int) '-')))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
GNUNET_log_setup (argv[0],
|
|
|
|
"WARNING",
|
|
|
|
NULL);
|
|
|
|
plugin_name++;
|
|
|
|
(void) GNUNET_asprintf (&testname,
|
|
|
|
"test-auditor-db-%s", plugin_name);
|
|
|
|
(void) GNUNET_asprintf (&config_filename,
|
|
|
|
"%s.conf", testname);
|
|
|
|
cfg = GNUNET_CONFIGURATION_create ();
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CONFIGURATION_parse (cfg,
|
|
|
|
config_filename))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
GNUNET_free (config_filename);
|
|
|
|
GNUNET_free (testname);
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
GNUNET_SCHEDULER_run (&run, cfg);
|
|
|
|
GNUNET_CONFIGURATION_destroy (cfg);
|
|
|
|
GNUNET_free (config_filename);
|
|
|
|
GNUNET_free (testname);
|
|
|
|
return result;
|
|
|
|
}
|