2016-03-30 22:56:17 +02:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
2020-01-12 18:19:18 +01:00
|
|
|
(C) 2016-2020 Taler Systems SA
|
2016-03-30 22:56:17 +02: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
|
2016-07-07 17:55:25 +02:00
|
|
|
TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
|
2016-03-30 22:56:17 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file exchange/test_taler_exchange_aggregator.c
|
|
|
|
* @brief Tests for taler-exchange-aggregator logic
|
|
|
|
* @author Christian Grothoff <christian@grothoff.org>
|
|
|
|
*/
|
|
|
|
#include "platform.h"
|
|
|
|
#include "taler_util.h"
|
2016-04-04 14:26:24 +02:00
|
|
|
#include <gnunet/gnunet_json_lib.h>
|
2016-04-04 14:43:42 +02:00
|
|
|
#include "taler_json_lib.h"
|
2016-03-30 22:56:17 +02:00
|
|
|
#include "taler_exchangedb_plugin.h"
|
2016-04-04 14:04:44 +02:00
|
|
|
#include <microhttpd.h>
|
2016-06-08 11:35:28 +02:00
|
|
|
#include "taler_fakebank_lib.h"
|
2020-01-16 12:54:05 +01:00
|
|
|
#include "taler_testing_lib.h"
|
2016-04-04 14:04:44 +02:00
|
|
|
|
2016-04-04 14:43:42 +02:00
|
|
|
|
2020-01-16 12:54:05 +01:00
|
|
|
/**
|
|
|
|
* Helper structure to keep exchange configuration values.
|
|
|
|
*/
|
|
|
|
static struct TALER_TESTING_ExchangeConfiguration ec;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Bank configuration data.
|
|
|
|
*/
|
|
|
|
static struct TALER_TESTING_BankConfiguration bc;
|
|
|
|
|
2016-03-30 22:56:17 +02:00
|
|
|
/**
|
|
|
|
* Return value from main().
|
|
|
|
*/
|
|
|
|
static int result;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Name of the configuration file to use.
|
|
|
|
*/
|
|
|
|
static char *config_filename;
|
|
|
|
|
2016-04-04 14:04:44 +02:00
|
|
|
/**
|
|
|
|
* Database plugin.
|
|
|
|
*/
|
|
|
|
static struct TALER_EXCHANGEDB_Plugin *plugin;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Our session with the database.
|
|
|
|
*/
|
|
|
|
static struct TALER_EXCHANGEDB_Session *session;
|
2016-03-30 22:56:17 +02:00
|
|
|
|
2016-04-04 16:47:11 +02:00
|
|
|
/**
|
|
|
|
* Private key we use for fake coins.
|
|
|
|
*/
|
|
|
|
static struct GNUNET_CRYPTO_RsaPrivateKey *coin_pk;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Public key we use for fake coins.
|
|
|
|
*/
|
|
|
|
static struct GNUNET_CRYPTO_RsaPublicKey *coin_pub;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Setup (fake) information about a coin used in deposit.
|
|
|
|
*
|
|
|
|
* @param[out] issue information to initialize with "valid" data
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
fake_issue (struct TALER_EXCHANGEDB_DenominationKeyInformationP *issue)
|
|
|
|
{
|
2019-08-25 16:18:24 +02:00
|
|
|
memset (issue, 0, sizeof (struct
|
|
|
|
TALER_EXCHANGEDB_DenominationKeyInformationP));
|
2016-04-04 16:47:11 +02:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_string_to_amount_nbo ("EUR:1",
|
|
|
|
&issue->properties.value));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_string_to_amount_nbo ("EUR:0.1",
|
|
|
|
&issue->properties.fee_withdraw));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_string_to_amount_nbo ("EUR:0.1",
|
|
|
|
&issue->properties.fee_deposit));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_string_to_amount_nbo ("EUR:0.1",
|
|
|
|
&issue->properties.fee_refresh));
|
2016-04-20 01:50:26 +02:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_string_to_amount_nbo ("EUR:0.1",
|
|
|
|
&issue->properties.fee_refund));
|
2016-04-04 16:47:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Setup (fake) information about a coin used in deposit.
|
|
|
|
*
|
|
|
|
* @param[out] coin information to initialize with "valid" data
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
fake_coin (struct TALER_CoinPublicInfo *coin)
|
|
|
|
{
|
|
|
|
struct GNUNET_HashCode hc;
|
|
|
|
|
2019-05-02 21:16:51 +02:00
|
|
|
GNUNET_CRYPTO_rsa_public_key_hash (coin_pub,
|
|
|
|
&coin->denom_pub_hash);
|
2016-04-04 16:47:11 +02:00
|
|
|
GNUNET_CRYPTO_hash_create_random (GNUNET_CRYPTO_QUALITY_WEAK,
|
|
|
|
&hc);
|
|
|
|
coin->denom_sig.rsa_signature = GNUNET_CRYPTO_rsa_sign_fdh (coin_pk,
|
|
|
|
&hc);
|
|
|
|
}
|
|
|
|
|
2016-04-04 14:04:44 +02:00
|
|
|
|
2020-01-16 14:40:28 +01:00
|
|
|
#if 0
|
2016-04-04 15:47:09 +02:00
|
|
|
/**
|
|
|
|
* Helper function to fake a deposit operation.
|
|
|
|
*
|
|
|
|
* @return #GNUNET_OK on success
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
do_deposit (struct Command *cmd)
|
|
|
|
{
|
|
|
|
struct TALER_EXCHANGEDB_Deposit deposit;
|
|
|
|
struct TALER_MerchantPrivateKeyP merchant_priv;
|
|
|
|
int ret;
|
|
|
|
|
2018-04-02 14:24:45 +02:00
|
|
|
memset (&deposit,
|
|
|
|
0,
|
|
|
|
sizeof (deposit));
|
2016-04-04 15:58:40 +02:00
|
|
|
/* we derive the merchant's private key from the
|
|
|
|
name, to ensure that the same name always
|
|
|
|
results in the same key pair. */
|
2016-04-04 15:47:09 +02:00
|
|
|
GNUNET_CRYPTO_kdf (&merchant_priv,
|
|
|
|
sizeof (struct TALER_MerchantPrivateKeyP),
|
|
|
|
"merchant-priv",
|
|
|
|
strlen ("merchant-priv"),
|
|
|
|
cmd->details.deposit.merchant_name,
|
|
|
|
strlen (cmd->details.deposit.merchant_name),
|
|
|
|
NULL, 0);
|
|
|
|
GNUNET_CRYPTO_eddsa_key_get_public (&merchant_priv.eddsa_priv,
|
|
|
|
&deposit.merchant_pub.eddsa_pub);
|
2016-04-04 15:58:40 +02:00
|
|
|
/* contract is just picked at random;
|
|
|
|
note: we may want to write this back to 'cmd' in the future. */
|
2016-04-04 15:47:09 +02:00
|
|
|
GNUNET_CRYPTO_hash_create_random (GNUNET_CRYPTO_QUALITY_WEAK,
|
2017-05-29 01:15:41 +02:00
|
|
|
&deposit.h_contract_terms);
|
2016-04-04 15:47:09 +02:00
|
|
|
if ( (GNUNET_OK !=
|
|
|
|
TALER_string_to_amount (cmd->details.deposit.amount_with_fee,
|
|
|
|
&deposit.amount_with_fee)) ||
|
|
|
|
(GNUNET_OK !=
|
|
|
|
TALER_string_to_amount (cmd->details.deposit.deposit_fee,
|
|
|
|
&deposit.deposit_fee)) )
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2016-04-04 16:47:11 +02:00
|
|
|
fake_coin (&deposit.coin);
|
2016-04-11 02:37:56 +02:00
|
|
|
/* Build JSON for wire details */
|
2018-04-02 14:24:45 +02:00
|
|
|
{
|
|
|
|
char *str;
|
|
|
|
|
|
|
|
GNUNET_asprintf (&str,
|
|
|
|
"payto://x-taler-bank/localhost:8082/%llu",
|
2019-08-25 16:18:24 +02:00
|
|
|
(unsigned long
|
|
|
|
long) cmd->details.deposit.merchant_account);
|
2018-04-02 14:24:45 +02:00
|
|
|
deposit.receiver_wire_account
|
|
|
|
= json_pack ("{s:s, s:s}",
|
|
|
|
"salt", "this-is-a-salt-value",
|
|
|
|
"url", str);
|
|
|
|
GNUNET_free (str);
|
|
|
|
}
|
2016-04-04 15:47:09 +02:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
2019-08-25 16:18:24 +02:00
|
|
|
TALER_JSON_merchant_wire_signature_hash (
|
|
|
|
deposit.receiver_wire_account,
|
|
|
|
&deposit.h_wire));
|
2016-04-04 15:47:09 +02:00
|
|
|
deposit.timestamp = GNUNET_TIME_absolute_get ();
|
2017-11-30 17:17:37 +01:00
|
|
|
GNUNET_TIME_round_abs (&deposit.timestamp);
|
2019-08-25 16:18:24 +02:00
|
|
|
deposit.wire_deadline = GNUNET_TIME_relative_to_absolute (
|
|
|
|
cmd->details.deposit.wire_deadline);
|
2017-11-30 17:17:37 +01:00
|
|
|
GNUNET_TIME_round_abs (&deposit.wire_deadline);
|
2016-04-04 15:47:09 +02:00
|
|
|
|
2016-04-04 15:58:40 +02:00
|
|
|
/* finally, actually perform the DB operation */
|
|
|
|
if ( (GNUNET_OK !=
|
|
|
|
plugin->start (plugin->cls,
|
2018-03-12 11:33:10 +01:00
|
|
|
session,
|
|
|
|
"aggregator-test-1")) ||
|
2018-08-19 16:01:57 +02:00
|
|
|
(0 >
|
|
|
|
plugin->ensure_coin_known (plugin->cls,
|
|
|
|
session,
|
|
|
|
&deposit.coin)) ||
|
|
|
|
(GNUNET_DB_STATUS_SUCCESS_ONE_RESULT !=
|
2016-04-04 15:58:40 +02:00
|
|
|
plugin->insert_deposit (plugin->cls,
|
2016-04-04 15:47:09 +02:00
|
|
|
session,
|
2016-04-04 15:58:40 +02:00
|
|
|
&deposit)) ||
|
2017-06-11 01:59:09 +02:00
|
|
|
(GNUNET_DB_STATUS_SUCCESS_NO_RESULTS !=
|
2016-04-04 15:58:40 +02:00
|
|
|
plugin->commit (plugin->cls,
|
|
|
|
session)) )
|
2018-08-19 16:01:57 +02:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2016-04-04 15:58:40 +02:00
|
|
|
ret = GNUNET_SYSERR;
|
2018-08-19 16:01:57 +02:00
|
|
|
}
|
2016-04-04 15:58:40 +02:00
|
|
|
else
|
|
|
|
ret = GNUNET_OK;
|
2016-04-04 16:47:11 +02:00
|
|
|
GNUNET_CRYPTO_rsa_signature_free (deposit.coin.denom_sig.rsa_signature);
|
2016-05-26 16:38:59 +02:00
|
|
|
json_decref (deposit.receiver_wire_account);
|
2016-04-04 15:47:09 +02:00
|
|
|
return ret;
|
|
|
|
}
|
2020-01-16 14:40:28 +01:00
|
|
|
#endif
|
2016-04-04 15:47:09 +02:00
|
|
|
|
2016-04-04 14:04:44 +02:00
|
|
|
/**
|
|
|
|
* Interprets the commands from the test program.
|
|
|
|
*
|
|
|
|
* @param cls the `struct State` of the interpreter
|
|
|
|
*/
|
2020-01-16 12:54:05 +01:00
|
|
|
#if 0
|
2016-04-04 14:04:44 +02:00
|
|
|
static void
|
2016-04-10 00:57:20 +02:00
|
|
|
interpreter (void *cls)
|
2016-04-04 14:04:44 +02:00
|
|
|
{
|
|
|
|
struct State *state = cls;
|
|
|
|
|
2016-04-10 02:52:46 +02:00
|
|
|
int_task = NULL;
|
2016-04-04 15:07:01 +02:00
|
|
|
while (1)
|
2016-04-04 14:04:44 +02:00
|
|
|
{
|
2016-04-04 15:07:01 +02:00
|
|
|
struct Command *cmd = &state->commands[state->ioff];
|
|
|
|
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Running command %u (%s)\n",
|
|
|
|
state->ioff,
|
|
|
|
cmd->label);
|
|
|
|
switch (cmd->opcode)
|
|
|
|
{
|
|
|
|
case OPCODE_TERMINATE_SKIP:
|
|
|
|
/* return skip: test not finished, but did not fail either */
|
|
|
|
result = 77;
|
|
|
|
GNUNET_SCHEDULER_shutdown ();
|
|
|
|
return;
|
2016-04-04 15:47:09 +02:00
|
|
|
case OPCODE_WAIT:
|
|
|
|
state->ioff++;
|
2016-04-10 02:52:46 +02:00
|
|
|
int_task = GNUNET_SCHEDULER_add_delayed (cmd->details.wait_delay,
|
|
|
|
&interpreter,
|
|
|
|
state);
|
2016-04-04 15:47:09 +02:00
|
|
|
return;
|
2016-04-04 15:07:01 +02:00
|
|
|
case OPCODE_RUN_AGGREGATOR:
|
|
|
|
GNUNET_assert (NULL == aggregator_state);
|
|
|
|
aggregator_state = state;
|
|
|
|
aggregator_proc
|
|
|
|
= GNUNET_OS_start_process (GNUNET_NO,
|
|
|
|
GNUNET_OS_INHERIT_STD_ALL,
|
|
|
|
NULL, NULL, NULL,
|
|
|
|
"taler-exchange-aggregator",
|
|
|
|
"taler-exchange-aggregator",
|
2017-03-02 06:26:12 +01:00
|
|
|
"-c", config_filename,
|
2016-04-04 15:07:01 +02:00
|
|
|
"-t", /* enable temporary tables */
|
|
|
|
NULL);
|
2016-05-06 22:07:19 +02:00
|
|
|
if (NULL == aggregator_proc)
|
|
|
|
{
|
2016-05-18 17:23:21 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"Failed to start taler-exchange-aggregator. Check $PATH.\n");
|
|
|
|
GNUNET_break (0);
|
2016-05-06 22:07:19 +02:00
|
|
|
aggregator_state = NULL;
|
|
|
|
fail (cmd);
|
|
|
|
return;
|
|
|
|
}
|
2019-08-25 16:18:24 +02:00
|
|
|
return;
|
2016-04-04 15:07:01 +02:00
|
|
|
case OPCODE_EXPECT_TRANSACTIONS_EMPTY:
|
2016-06-08 11:35:28 +02:00
|
|
|
if (GNUNET_OK != TALER_FAKEBANK_check_empty (fb))
|
2016-04-04 15:07:01 +02:00
|
|
|
{
|
|
|
|
fail (cmd);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
state->ioff++;
|
|
|
|
break;
|
2016-04-04 15:47:09 +02:00
|
|
|
case OPCODE_DATABASE_DEPOSIT:
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
do_deposit (cmd))
|
|
|
|
{
|
|
|
|
fail (cmd);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
state->ioff++;
|
|
|
|
break;
|
2016-04-04 15:07:01 +02:00
|
|
|
case OPCODE_EXPECT_TRANSACTION:
|
|
|
|
{
|
2016-04-04 16:06:30 +02:00
|
|
|
struct TALER_Amount want_amount;
|
2016-04-04 15:07:01 +02:00
|
|
|
|
2016-04-04 16:06:30 +02:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_string_to_amount (cmd->details.expect_transaction.amount,
|
|
|
|
&want_amount))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
fail (cmd);
|
|
|
|
return;
|
|
|
|
}
|
2016-04-17 23:14:23 +02:00
|
|
|
if (GNUNET_OK !=
|
2020-01-12 18:19:18 +01:00
|
|
|
TALER_FAKEBANK_check_debit (fb,
|
|
|
|
&want_amount,
|
|
|
|
cmd->details.expect_transaction.
|
|
|
|
debit_account,
|
|
|
|
cmd->details.expect_transaction.
|
|
|
|
credit_account,
|
|
|
|
cmd->details.expect_transaction.
|
|
|
|
exchange_base_url,
|
|
|
|
&cmd->details.expect_transaction.wtid))
|
2016-04-04 15:07:01 +02:00
|
|
|
{
|
|
|
|
fail (cmd);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
state->ioff++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case OPCODE_TERMINATE_SUCCESS:
|
|
|
|
result = 0;
|
|
|
|
GNUNET_SCHEDULER_shutdown ();
|
|
|
|
return;
|
|
|
|
}
|
2016-04-04 14:04:44 +02:00
|
|
|
}
|
|
|
|
}
|
2020-01-16 12:54:05 +01:00
|
|
|
#endif
|
2016-04-04 14:04:44 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Contains the test program. Here each step of the testcase
|
|
|
|
* is defined.
|
|
|
|
*/
|
2020-01-16 12:54:05 +01:00
|
|
|
#if 0
|
2016-04-04 14:04:44 +02:00
|
|
|
static void
|
|
|
|
run_test ()
|
|
|
|
{
|
|
|
|
static struct Command commands[] = {
|
2016-04-04 16:47:11 +02:00
|
|
|
/* test running with empty DB */
|
2016-04-04 14:04:44 +02:00
|
|
|
{
|
2016-04-04 15:07:01 +02:00
|
|
|
.opcode = OPCODE_RUN_AGGREGATOR,
|
|
|
|
.label = "run-aggregator-on-empty-db"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_EXPECT_TRANSACTIONS_EMPTY,
|
|
|
|
.label = "expect-empty-transactions-on-start"
|
|
|
|
},
|
2016-04-10 02:52:46 +02:00
|
|
|
|
2016-04-04 16:47:11 +02:00
|
|
|
/* test simple deposit */
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_DATABASE_DEPOSIT,
|
2016-04-10 02:52:46 +02:00
|
|
|
.label = "do-deposit-1",
|
2016-04-04 16:47:11 +02:00
|
|
|
.details.deposit.merchant_name = "bob",
|
|
|
|
.details.deposit.merchant_account = 4,
|
2016-04-10 02:52:46 +02:00
|
|
|
.details.deposit.wire_deadline = { 1000LL * 1000 * 0 }, /* 0s */
|
2016-04-04 16:47:11 +02:00
|
|
|
.details.deposit.amount_with_fee = "EUR:1",
|
2016-05-27 14:04:29 +02:00
|
|
|
.details.deposit.deposit_fee = "EUR:0.1"
|
2016-04-04 16:47:11 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_RUN_AGGREGATOR,
|
|
|
|
.label = "run-aggregator-deposit-1"
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_EXPECT_TRANSACTION,
|
|
|
|
.label = "expect-deposit-1",
|
2016-04-06 12:04:51 +02:00
|
|
|
.details.expect_transaction.debit_account = 3,
|
2016-04-04 16:47:11 +02:00
|
|
|
.details.expect_transaction.credit_account = 4,
|
2019-08-25 16:18:24 +02:00
|
|
|
.details.expect_transaction.exchange_base_url =
|
|
|
|
"https://exchange.taler.net/",
|
2017-03-04 16:49:33 +01:00
|
|
|
.details.expect_transaction.amount = "EUR:0.89"
|
2016-04-04 16:47:11 +02:00
|
|
|
},
|
2016-04-06 12:04:51 +02:00
|
|
|
|
2016-04-04 16:47:11 +02:00
|
|
|
{
|
|
|
|
.opcode = OPCODE_EXPECT_TRANSACTIONS_EMPTY,
|
|
|
|
.label = "expect-empty-transactions-on-start"
|
|
|
|
},
|
2016-04-06 12:04:51 +02:00
|
|
|
|
2016-04-04 16:47:11 +02:00
|
|
|
/* test idempotency: run again on transactions already done */
|
2016-04-10 02:52:46 +02:00
|
|
|
{
|
|
|
|
.opcode = OPCODE_RUN_AGGREGATOR,
|
|
|
|
.label = "run-aggregator-deposit-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_EXPECT_TRANSACTIONS_EMPTY,
|
|
|
|
.label = "expect-empty-transactions-after-1"
|
|
|
|
},
|
|
|
|
|
|
|
|
/* test combining deposits */
|
2016-04-04 16:47:11 +02:00
|
|
|
{
|
|
|
|
.opcode = OPCODE_DATABASE_DEPOSIT,
|
2016-04-10 02:52:46 +02:00
|
|
|
.label = "do-deposit-2a",
|
2016-04-04 16:47:11 +02:00
|
|
|
.details.deposit.merchant_name = "bob",
|
|
|
|
.details.deposit.merchant_account = 4,
|
2016-04-10 02:52:46 +02:00
|
|
|
.details.deposit.wire_deadline = { 1000LL * 1000 * 0 }, /* 0s */
|
2016-04-04 16:47:11 +02:00
|
|
|
.details.deposit.amount_with_fee = "EUR:1",
|
2016-05-27 14:04:29 +02:00
|
|
|
.details.deposit.deposit_fee = "EUR:0.1"
|
2016-04-04 16:47:11 +02:00
|
|
|
},
|
|
|
|
{
|
2016-04-10 02:52:46 +02:00
|
|
|
.opcode = OPCODE_DATABASE_DEPOSIT,
|
|
|
|
.label = "do-deposit-2b",
|
|
|
|
.details.deposit.merchant_name = "bob",
|
|
|
|
.details.deposit.merchant_account = 4,
|
|
|
|
.details.deposit.wire_deadline = { 1000LL * 1000 * 0 }, /* 0s */
|
|
|
|
.details.deposit.amount_with_fee = "EUR:1",
|
2016-05-27 14:04:29 +02:00
|
|
|
.details.deposit.deposit_fee = "EUR:0.1"
|
2016-04-10 02:52:46 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_RUN_AGGREGATOR,
|
|
|
|
.label = "run-aggregator-deposit-2"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_EXPECT_TRANSACTION,
|
|
|
|
.label = "expect-deposit-2",
|
|
|
|
.details.expect_transaction.debit_account = 3,
|
|
|
|
.details.expect_transaction.credit_account = 4,
|
2019-08-25 16:18:24 +02:00
|
|
|
.details.expect_transaction.exchange_base_url =
|
|
|
|
"https://exchange.taler.net/",
|
2017-03-04 16:49:33 +01:00
|
|
|
.details.expect_transaction.amount = "EUR:1.79"
|
2016-04-04 16:47:11 +02:00
|
|
|
},
|
|
|
|
|
2016-04-06 12:04:51 +02:00
|
|
|
{
|
2016-04-10 02:52:46 +02:00
|
|
|
.opcode = OPCODE_EXPECT_TRANSACTIONS_EMPTY,
|
|
|
|
.label = "expect-empty-transactions-after-2"
|
2016-04-06 12:04:51 +02:00
|
|
|
},
|
|
|
|
|
2016-04-10 02:52:46 +02:00
|
|
|
/* test NOT combining deposits of different accounts or keys */
|
2016-04-04 15:07:01 +02:00
|
|
|
{
|
2016-04-10 02:52:46 +02:00
|
|
|
.opcode = OPCODE_DATABASE_DEPOSIT,
|
|
|
|
.label = "do-deposit-3a",
|
|
|
|
.details.deposit.merchant_name = "bob",
|
|
|
|
.details.deposit.merchant_account = 4,
|
|
|
|
.details.deposit.wire_deadline = { 1000LL * 1000 * 0 }, /* 0s */
|
|
|
|
.details.deposit.amount_with_fee = "EUR:1",
|
2016-05-27 14:04:29 +02:00
|
|
|
.details.deposit.deposit_fee = "EUR:0.1"
|
2016-04-10 02:52:46 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_DATABASE_DEPOSIT,
|
|
|
|
.label = "do-deposit-3b",
|
|
|
|
.details.deposit.merchant_name = "bob",
|
|
|
|
.details.deposit.merchant_account = 5,
|
|
|
|
.details.deposit.wire_deadline = { 1000LL * 1000 * 0 }, /* 0s */
|
|
|
|
.details.deposit.amount_with_fee = "EUR:1",
|
2016-05-27 14:04:29 +02:00
|
|
|
.details.deposit.deposit_fee = "EUR:0.1"
|
2016-04-10 02:52:46 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_DATABASE_DEPOSIT,
|
|
|
|
.label = "do-deposit-3c",
|
|
|
|
.details.deposit.merchant_name = "alice",
|
|
|
|
.details.deposit.merchant_account = 4,
|
|
|
|
.details.deposit.wire_deadline = { 1000LL * 1000 * 0 }, /* 0s */
|
|
|
|
.details.deposit.amount_with_fee = "EUR:1",
|
2016-05-27 14:04:29 +02:00
|
|
|
.details.deposit.deposit_fee = "EUR:0.1"
|
2016-04-10 02:52:46 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_RUN_AGGREGATOR,
|
|
|
|
.label = "run-aggregator-deposit-3"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_EXPECT_TRANSACTION,
|
|
|
|
.label = "expect-deposit-3a",
|
|
|
|
.details.expect_transaction.debit_account = 3,
|
|
|
|
.details.expect_transaction.credit_account = 4,
|
2019-08-25 16:18:24 +02:00
|
|
|
.details.expect_transaction.exchange_base_url =
|
|
|
|
"https://exchange.taler.net/",
|
2017-03-04 16:49:33 +01:00
|
|
|
.details.expect_transaction.amount = "EUR:0.89"
|
2016-04-04 14:04:44 +02:00
|
|
|
},
|
|
|
|
{
|
2016-04-04 15:07:01 +02:00
|
|
|
.opcode = OPCODE_EXPECT_TRANSACTION,
|
2016-04-10 02:52:46 +02:00
|
|
|
.label = "expect-deposit-3b",
|
|
|
|
.details.expect_transaction.debit_account = 3,
|
|
|
|
.details.expect_transaction.credit_account = 4,
|
2019-08-25 16:18:24 +02:00
|
|
|
.details.expect_transaction.exchange_base_url =
|
|
|
|
"https://exchange.taler.net/",
|
2017-03-04 16:49:33 +01:00
|
|
|
.details.expect_transaction.amount = "EUR:0.89"
|
2016-04-04 16:06:30 +02:00
|
|
|
},
|
2016-04-10 02:52:46 +02:00
|
|
|
{
|
|
|
|
.opcode = OPCODE_EXPECT_TRANSACTION,
|
|
|
|
.label = "expect-deposit-3c",
|
|
|
|
.details.expect_transaction.debit_account = 3,
|
|
|
|
.details.expect_transaction.credit_account = 5,
|
2019-08-25 16:18:24 +02:00
|
|
|
.details.expect_transaction.exchange_base_url =
|
|
|
|
"https://exchange.taler.net/",
|
2017-03-04 16:49:33 +01:00
|
|
|
.details.expect_transaction.amount = "EUR:0.89"
|
2016-04-10 02:52:46 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_EXPECT_TRANSACTIONS_EMPTY,
|
|
|
|
.label = "expect-empty-transactions-after-3"
|
|
|
|
},
|
|
|
|
|
|
|
|
/* test NOT running deposits instantly, but after delay */
|
2016-04-04 16:06:30 +02:00
|
|
|
{
|
|
|
|
.opcode = OPCODE_DATABASE_DEPOSIT,
|
2016-04-10 02:52:46 +02:00
|
|
|
.label = "do-deposit-4a",
|
2016-04-04 16:06:30 +02:00
|
|
|
.details.deposit.merchant_name = "bob",
|
|
|
|
.details.deposit.merchant_account = 4,
|
|
|
|
.details.deposit.wire_deadline = { 1000LL * 1000 * 5 }, /* 5s */
|
2016-05-27 14:04:29 +02:00
|
|
|
.details.deposit.amount_with_fee = "EUR:0.2",
|
|
|
|
.details.deposit.deposit_fee = "EUR:0.1"
|
2016-04-10 02:52:46 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_DATABASE_DEPOSIT,
|
|
|
|
.label = "do-deposit-4b",
|
|
|
|
.details.deposit.merchant_name = "bob",
|
|
|
|
.details.deposit.merchant_account = 4,
|
|
|
|
.details.deposit.wire_deadline = { 1000LL * 1000 * 5 }, /* 5s */
|
2016-05-27 14:04:29 +02:00
|
|
|
.details.deposit.amount_with_fee = "EUR:0.2",
|
|
|
|
.details.deposit.deposit_fee = "EUR:0.1"
|
2016-04-10 02:52:46 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_RUN_AGGREGATOR,
|
|
|
|
.label = "run-aggregator-deposit-4-early"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_EXPECT_TRANSACTIONS_EMPTY,
|
|
|
|
.label = "expect-empty-transactions-after-4-fast"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_WAIT,
|
|
|
|
.label = "wait (5s)",
|
|
|
|
.details.wait_delay = { 1000LL * 1000 * 6 } /* 6s */
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_RUN_AGGREGATOR,
|
|
|
|
.label = "run-aggregator-deposit-4-delayed"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_EXPECT_TRANSACTION,
|
|
|
|
.label = "expect-deposit-4",
|
|
|
|
.details.expect_transaction.debit_account = 3,
|
|
|
|
.details.expect_transaction.credit_account = 4,
|
2019-08-25 16:18:24 +02:00
|
|
|
.details.expect_transaction.exchange_base_url =
|
|
|
|
"https://exchange.taler.net/",
|
2017-03-04 16:49:33 +01:00
|
|
|
.details.expect_transaction.amount = "EUR:0.19"
|
2016-04-10 02:52:46 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
/* test picking all deposits at earliest deadline */
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_DATABASE_DEPOSIT,
|
|
|
|
.label = "do-deposit-5a",
|
|
|
|
.details.deposit.merchant_name = "bob",
|
|
|
|
.details.deposit.merchant_account = 4,
|
|
|
|
.details.deposit.wire_deadline = { 1000LL * 1000 * 10 }, /* 10s */
|
2016-05-27 14:04:29 +02:00
|
|
|
.details.deposit.amount_with_fee = "EUR:0.2",
|
|
|
|
.details.deposit.deposit_fee = "EUR:0.1"
|
2016-04-04 16:06:30 +02:00
|
|
|
},
|
2016-04-10 02:52:46 +02:00
|
|
|
{
|
|
|
|
.opcode = OPCODE_DATABASE_DEPOSIT,
|
|
|
|
.label = "do-deposit-5b",
|
|
|
|
.details.deposit.merchant_name = "bob",
|
|
|
|
.details.deposit.merchant_account = 4,
|
|
|
|
.details.deposit.wire_deadline = { 1000LL * 1000 * 5 }, /* 5s */
|
2016-05-27 14:04:29 +02:00
|
|
|
.details.deposit.amount_with_fee = "EUR:0.2",
|
|
|
|
.details.deposit.deposit_fee = "EUR:0.1"
|
2016-04-10 02:52:46 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_RUN_AGGREGATOR,
|
|
|
|
.label = "run-aggregator-deposit-5-early"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_EXPECT_TRANSACTIONS_EMPTY,
|
|
|
|
.label = "expect-empty-transactions-after-5-early"
|
|
|
|
},
|
2016-04-04 16:06:30 +02:00
|
|
|
{
|
|
|
|
.opcode = OPCODE_WAIT,
|
|
|
|
.label = "wait (5s)",
|
2016-04-10 02:52:46 +02:00
|
|
|
.details.wait_delay = { 1000LL * 1000 * 6 } /* 6s */
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_RUN_AGGREGATOR,
|
|
|
|
.label = "run-aggregator-deposit-5-delayed"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_EXPECT_TRANSACTION,
|
|
|
|
.label = "expect-deposit-5",
|
|
|
|
.details.expect_transaction.debit_account = 3,
|
|
|
|
.details.expect_transaction.credit_account = 4,
|
2019-08-25 16:18:24 +02:00
|
|
|
.details.expect_transaction.exchange_base_url =
|
|
|
|
"https://exchange.taler.net/",
|
2017-03-04 16:49:33 +01:00
|
|
|
.details.expect_transaction.amount = "EUR:0.19"
|
2016-04-10 02:52:46 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
/* Test NEVER running 'tiny' unless they make up minimum unit */
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_DATABASE_DEPOSIT,
|
|
|
|
.label = "do-deposit-6a",
|
|
|
|
.details.deposit.merchant_name = "bob",
|
|
|
|
.details.deposit.merchant_account = 4,
|
|
|
|
.details.deposit.wire_deadline = { 1000LL * 1000 * 0 }, /* 0s */
|
2016-05-27 14:04:29 +02:00
|
|
|
.details.deposit.amount_with_fee = "EUR:0.102",
|
|
|
|
.details.deposit.deposit_fee = "EUR:0.1"
|
2016-04-10 02:52:46 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_RUN_AGGREGATOR,
|
|
|
|
.label = "run-aggregator-deposit-6a-tiny"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_EXPECT_TRANSACTIONS_EMPTY,
|
|
|
|
.label = "expect-empty-transactions-after-6a-tiny"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_DATABASE_DEPOSIT,
|
|
|
|
.label = "do-deposit-6b",
|
|
|
|
.details.deposit.merchant_name = "bob",
|
|
|
|
.details.deposit.merchant_account = 4,
|
|
|
|
.details.deposit.wire_deadline = { 1000LL * 1000 * 0 }, /* 0s */
|
2016-05-27 14:04:29 +02:00
|
|
|
.details.deposit.amount_with_fee = "EUR:0.102",
|
|
|
|
.details.deposit.deposit_fee = "EUR:0.1"
|
2016-04-10 02:52:46 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_DATABASE_DEPOSIT,
|
|
|
|
.label = "do-deposit-6c",
|
|
|
|
.details.deposit.merchant_name = "bob",
|
|
|
|
.details.deposit.merchant_account = 4,
|
|
|
|
.details.deposit.wire_deadline = { 1000LL * 1000 * 0 }, /* 0s */
|
2016-05-27 14:04:29 +02:00
|
|
|
.details.deposit.amount_with_fee = "EUR:0.102",
|
|
|
|
.details.deposit.deposit_fee = "EUR:0.1"
|
2016-04-10 02:52:46 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_RUN_AGGREGATOR,
|
|
|
|
.label = "run-aggregator-deposit-6c-tiny"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_EXPECT_TRANSACTIONS_EMPTY,
|
|
|
|
.label = "expect-empty-transactions-after-6c-tiny"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_DATABASE_DEPOSIT,
|
|
|
|
.label = "do-deposit-6d",
|
|
|
|
.details.deposit.merchant_name = "bob",
|
|
|
|
.details.deposit.merchant_account = 4,
|
|
|
|
.details.deposit.wire_deadline = { 1000LL * 1000 * 0 }, /* 0s */
|
2016-05-27 14:04:29 +02:00
|
|
|
.details.deposit.amount_with_fee = "EUR:0.102",
|
|
|
|
.details.deposit.deposit_fee = "EUR:0.1"
|
2016-04-10 02:52:46 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_RUN_AGGREGATOR,
|
|
|
|
.label = "run-aggregator-deposit-6d-tiny"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_EXPECT_TRANSACTIONS_EMPTY,
|
|
|
|
.label = "expect-empty-transactions-after-6d-tiny"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_DATABASE_DEPOSIT,
|
|
|
|
.label = "do-deposit-6e",
|
|
|
|
.details.deposit.merchant_name = "bob",
|
|
|
|
.details.deposit.merchant_account = 4,
|
|
|
|
.details.deposit.wire_deadline = { 1000LL * 1000 * 0 }, /* 0s */
|
2017-03-04 16:49:33 +01:00
|
|
|
.details.deposit.amount_with_fee = "EUR:0.112",
|
2016-05-27 14:04:29 +02:00
|
|
|
.details.deposit.deposit_fee = "EUR:0.1"
|
2016-04-10 02:52:46 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_RUN_AGGREGATOR,
|
|
|
|
.label = "run-aggregator-deposit-6e"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_EXPECT_TRANSACTION,
|
|
|
|
.label = "expect-deposit-6",
|
|
|
|
.details.expect_transaction.debit_account = 3,
|
|
|
|
.details.expect_transaction.credit_account = 4,
|
2019-08-25 16:18:24 +02:00
|
|
|
.details.expect_transaction.exchange_base_url =
|
|
|
|
"https://exchange.taler.net/",
|
2016-04-10 02:52:46 +02:00
|
|
|
.details.expect_transaction.amount = "EUR:0.01"
|
|
|
|
},
|
|
|
|
|
2016-04-10 14:28:54 +02:00
|
|
|
/* Test profiteering if wire deadline is short */
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_DATABASE_DEPOSIT,
|
|
|
|
.label = "do-deposit-7a",
|
|
|
|
.details.deposit.merchant_name = "bob",
|
|
|
|
.details.deposit.merchant_account = 4,
|
|
|
|
.details.deposit.wire_deadline = { 1000LL * 1000 * 0 }, /* 0s */
|
2016-05-27 14:04:29 +02:00
|
|
|
.details.deposit.amount_with_fee = "EUR:0.109",
|
|
|
|
.details.deposit.deposit_fee = "EUR:0.1"
|
2016-04-10 14:28:54 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_RUN_AGGREGATOR,
|
|
|
|
.label = "run-aggregator-deposit-7a-tiny"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_EXPECT_TRANSACTIONS_EMPTY,
|
|
|
|
.label = "expect-empty-transactions-after-7a-tiny"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_DATABASE_DEPOSIT,
|
|
|
|
.label = "do-deposit-7b",
|
|
|
|
.details.deposit.merchant_name = "bob",
|
|
|
|
.details.deposit.merchant_account = 4,
|
|
|
|
.details.deposit.wire_deadline = { 1000LL * 1000 * 0 }, /* 0s */
|
2017-03-04 16:49:33 +01:00
|
|
|
.details.deposit.amount_with_fee = "EUR:0.119",
|
2016-05-27 14:04:29 +02:00
|
|
|
.details.deposit.deposit_fee = "EUR:0.1"
|
2016-04-10 14:28:54 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_RUN_AGGREGATOR,
|
|
|
|
.label = "run-aggregator-deposit-7-profit"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_EXPECT_TRANSACTION,
|
|
|
|
.label = "expect-deposit-7",
|
|
|
|
.details.expect_transaction.debit_account = 3,
|
|
|
|
.details.expect_transaction.credit_account = 4,
|
2019-08-25 16:18:24 +02:00
|
|
|
.details.expect_transaction.exchange_base_url =
|
|
|
|
"https://exchange.taler.net/",
|
2016-04-10 14:28:54 +02:00
|
|
|
.details.expect_transaction.amount = "EUR:0.01"
|
|
|
|
},
|
|
|
|
/* Now check profit was actually taken */
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_DATABASE_DEPOSIT,
|
|
|
|
.label = "do-deposit-7c",
|
|
|
|
.details.deposit.merchant_name = "bob",
|
|
|
|
.details.deposit.merchant_account = 4,
|
|
|
|
.details.deposit.wire_deadline = { 1000LL * 1000 * 0 }, /* 0s */
|
2016-05-27 14:04:29 +02:00
|
|
|
.details.deposit.amount_with_fee = "EUR:0.122",
|
|
|
|
.details.deposit.deposit_fee = "EUR:0.1"
|
2016-04-10 14:28:54 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_RUN_AGGREGATOR,
|
|
|
|
.label = "run-aggregator-deposit-7c-loss"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_EXPECT_TRANSACTION,
|
|
|
|
.label = "expect-deposit-7",
|
|
|
|
.details.expect_transaction.debit_account = 3,
|
|
|
|
.details.expect_transaction.credit_account = 4,
|
2019-08-25 16:18:24 +02:00
|
|
|
.details.expect_transaction.exchange_base_url =
|
|
|
|
"https://exchange.taler.net/",
|
2017-03-04 16:49:33 +01:00
|
|
|
.details.expect_transaction.amount = "EUR:0.01"
|
2016-04-10 14:28:54 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
/* Test that aggregation would happen fully if wire deadline is long */
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_DATABASE_DEPOSIT,
|
|
|
|
.label = "do-deposit-8a",
|
|
|
|
.details.deposit.merchant_name = "bob",
|
|
|
|
.details.deposit.merchant_account = 4,
|
|
|
|
.details.deposit.wire_deadline = { 1000LL * 1000 * 5 }, /* 5s */
|
2016-05-27 14:04:29 +02:00
|
|
|
.details.deposit.amount_with_fee = "EUR:0.109",
|
|
|
|
.details.deposit.deposit_fee = "EUR:0.1"
|
2016-04-10 14:28:54 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_RUN_AGGREGATOR,
|
|
|
|
.label = "run-aggregator-deposit-8a-tiny"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_EXPECT_TRANSACTIONS_EMPTY,
|
|
|
|
.label = "expect-empty-transactions-after-8a-tiny"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_DATABASE_DEPOSIT,
|
|
|
|
.label = "do-deposit-8b",
|
|
|
|
.details.deposit.merchant_name = "bob",
|
|
|
|
.details.deposit.merchant_account = 4,
|
|
|
|
.details.deposit.wire_deadline = { 1000LL * 1000 * 5 }, /* 5s */
|
2016-05-27 14:04:29 +02:00
|
|
|
.details.deposit.amount_with_fee = "EUR:0.109",
|
|
|
|
.details.deposit.deposit_fee = "EUR:0.1"
|
2016-04-10 14:28:54 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_RUN_AGGREGATOR,
|
|
|
|
.label = "run-aggregator-deposit-8b-tiny"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_EXPECT_TRANSACTIONS_EMPTY,
|
|
|
|
.label = "expect-empty-transactions-after-8b-tiny"
|
|
|
|
},
|
|
|
|
/* now trigger aggregate with large transaction and short deadline */
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_DATABASE_DEPOSIT,
|
|
|
|
.label = "do-deposit-8c",
|
|
|
|
.details.deposit.merchant_name = "bob",
|
|
|
|
.details.deposit.merchant_account = 4,
|
|
|
|
.details.deposit.wire_deadline = { 1000LL * 1000 * 0 }, /* 0s */
|
2016-05-27 14:04:29 +02:00
|
|
|
.details.deposit.amount_with_fee = "EUR:0.122",
|
|
|
|
.details.deposit.deposit_fee = "EUR:0.1"
|
2016-04-10 14:28:54 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_RUN_AGGREGATOR,
|
|
|
|
.label = "run-aggregator-deposit-8"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_EXPECT_TRANSACTION,
|
|
|
|
.label = "expect-deposit-8",
|
|
|
|
.details.expect_transaction.debit_account = 3,
|
|
|
|
.details.expect_transaction.credit_account = 4,
|
2019-08-25 16:18:24 +02:00
|
|
|
.details.expect_transaction.exchange_base_url =
|
|
|
|
"https://exchange.taler.net/",
|
2017-03-04 16:49:33 +01:00
|
|
|
.details.expect_transaction.amount = "EUR:0.03"
|
2016-04-10 14:28:54 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
/* Test aggregation with fees and rounding profits */
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_DATABASE_DEPOSIT,
|
|
|
|
.label = "do-deposit-9a",
|
|
|
|
.details.deposit.merchant_name = "bob",
|
|
|
|
.details.deposit.merchant_account = 4,
|
|
|
|
.details.deposit.wire_deadline = { 1000LL * 1000 * 5 }, /* 5s */
|
2016-05-27 14:04:29 +02:00
|
|
|
.details.deposit.amount_with_fee = "EUR:0.104",
|
|
|
|
.details.deposit.deposit_fee = "EUR:0.1"
|
2016-04-10 14:28:54 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_RUN_AGGREGATOR,
|
|
|
|
.label = "run-aggregator-deposit-9a-tiny"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_EXPECT_TRANSACTIONS_EMPTY,
|
|
|
|
.label = "expect-empty-transactions-after-9a-tiny"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_DATABASE_DEPOSIT,
|
|
|
|
.label = "do-deposit-9b",
|
|
|
|
.details.deposit.merchant_name = "bob",
|
|
|
|
.details.deposit.merchant_account = 4,
|
|
|
|
.details.deposit.wire_deadline = { 1000LL * 1000 * 5 }, /* 5s */
|
2016-05-27 14:04:29 +02:00
|
|
|
.details.deposit.amount_with_fee = "EUR:0.105",
|
|
|
|
.details.deposit.deposit_fee = "EUR:0.1"
|
2016-04-10 14:28:54 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_RUN_AGGREGATOR,
|
|
|
|
.label = "run-aggregator-deposit-9b-tiny"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_EXPECT_TRANSACTIONS_EMPTY,
|
|
|
|
.label = "expect-empty-transactions-after-9b-tiny"
|
|
|
|
},
|
|
|
|
/* now trigger aggregate with large transaction and short deadline */
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_DATABASE_DEPOSIT,
|
|
|
|
.label = "do-deposit-9c",
|
|
|
|
.details.deposit.merchant_name = "bob",
|
|
|
|
.details.deposit.merchant_account = 4,
|
|
|
|
.details.deposit.wire_deadline = { 1000LL * 1000 * 0 }, /* 0s */
|
2016-05-27 14:04:29 +02:00
|
|
|
.details.deposit.amount_with_fee = "EUR:0.112",
|
|
|
|
.details.deposit.deposit_fee = "EUR:0.1"
|
2016-04-10 14:28:54 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_RUN_AGGREGATOR,
|
|
|
|
.label = "run-aggregator-deposit-9"
|
|
|
|
},
|
|
|
|
/* 0.009 + 0.009 + 0.022 - 0.001 - 0.002 - 0.008 = 0.029 => 0.02 */
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_EXPECT_TRANSACTION,
|
|
|
|
.label = "expect-deposit-9",
|
|
|
|
.details.expect_transaction.debit_account = 3,
|
|
|
|
.details.expect_transaction.credit_account = 4,
|
2019-08-25 16:18:24 +02:00
|
|
|
.details.expect_transaction.exchange_base_url =
|
|
|
|
"https://exchange.taler.net/",
|
2017-03-04 16:49:33 +01:00
|
|
|
.details.expect_transaction.amount = "EUR:0.01"
|
2016-04-10 14:28:54 +02:00
|
|
|
},
|
2016-04-10 02:52:46 +02:00
|
|
|
|
|
|
|
/* Everything tested, terminate with success */
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_TERMINATE_SUCCESS,
|
|
|
|
.label = "testcase-complete-terminating-with-success"
|
|
|
|
},
|
|
|
|
/* note: rest not reached, this is just sample code */
|
|
|
|
{
|
|
|
|
.opcode = OPCODE_TERMINATE_SKIP,
|
|
|
|
.label = "testcase-incomplete-terminating-with-skip"
|
2016-04-04 14:04:44 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
static struct State state = {
|
|
|
|
.commands = commands
|
|
|
|
};
|
|
|
|
|
2016-04-04 15:07:01 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Launching interpreter\n");
|
2016-04-10 02:52:46 +02:00
|
|
|
int_task = GNUNET_SCHEDULER_add_now (&interpreter,
|
|
|
|
&state);
|
2016-04-04 14:04:44 +02:00
|
|
|
}
|
2020-01-16 12:54:05 +01:00
|
|
|
#endif
|
2016-04-04 14:04:44 +02:00
|
|
|
|
2020-01-16 12:54:05 +01:00
|
|
|
/**
|
|
|
|
* @return GNUNET_NO if database could not be prepared,
|
|
|
|
* otherwise GNUNET_OK
|
|
|
|
*/
|
|
|
|
static int
|
2020-01-16 14:40:28 +01:00
|
|
|
prepare_database (void *cls,
|
|
|
|
const struct GNUNET_CONFIGURATION_Handle *cfg)
|
2020-01-16 12:54:05 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
// connect to the database.
|
|
|
|
plugin = TALER_EXCHANGEDB_plugin_load (cfg);
|
|
|
|
if (NULL == plugin)
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
result = 77;
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
plugin->create_tables (plugin->cls))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
TALER_EXCHANGEDB_plugin_unload (plugin);
|
|
|
|
plugin = NULL;
|
|
|
|
result = 77;
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
|
|
|
|
session = plugin->get_session (plugin->cls);
|
|
|
|
GNUNET_assert (NULL != session);
|
|
|
|
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-01-16 14:40:28 +01:00
|
|
|
/**
|
|
|
|
* Collects all the tests.
|
|
|
|
*/
|
2020-01-16 12:54:05 +01:00
|
|
|
static void
|
|
|
|
run (void *cls,
|
|
|
|
struct TALER_TESTING_Interpreter *is)
|
|
|
|
{
|
2020-01-16 14:40:28 +01:00
|
|
|
struct TALER_TESTING_Command all[] = {
|
|
|
|
TALER_TESTING_cmd_end ()
|
|
|
|
};
|
|
|
|
|
|
|
|
TALER_TESTING_run_with_fakebank (is,
|
|
|
|
all,
|
|
|
|
bc.bank_url);
|
2020-01-16 12:54:05 +01:00
|
|
|
}
|
2016-04-04 14:04:44 +02:00
|
|
|
|
2016-03-30 22:56:17 +02:00
|
|
|
int
|
|
|
|
main (int argc,
|
|
|
|
char *const argv[])
|
|
|
|
{
|
|
|
|
const char *plugin_name;
|
|
|
|
char *testname;
|
2017-03-04 16:49:33 +01:00
|
|
|
struct GNUNET_OS_Process *proc;
|
2016-04-01 17:14:30 +02:00
|
|
|
struct GNUNET_CONFIGURATION_Handle *cfg;
|
2016-04-04 14:04:44 +02:00
|
|
|
struct GNUNET_SIGNAL_Context *shc_chld;
|
2016-03-30 22:56:17 +02:00
|
|
|
|
|
|
|
if (NULL == (plugin_name = strrchr (argv[0], (int) '-')))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
plugin_name++;
|
|
|
|
(void) GNUNET_asprintf (&testname,
|
2017-03-02 06:26:12 +01:00
|
|
|
"test-taler-exchange-aggregator-%s",
|
|
|
|
plugin_name);
|
2016-03-30 22:56:17 +02:00
|
|
|
(void) GNUNET_asprintf (&config_filename,
|
2017-03-02 06:26:12 +01:00
|
|
|
"%s.conf",
|
|
|
|
testname);
|
2020-01-16 12:54:05 +01:00
|
|
|
|
2016-04-04 15:07:01 +02:00
|
|
|
GNUNET_log_setup ("test_taler_exchange_aggregator",
|
2020-01-16 12:54:05 +01:00
|
|
|
"DEBUG",
|
2016-04-04 15:07:01 +02:00
|
|
|
NULL);
|
2020-01-16 12:54:05 +01:00
|
|
|
|
2020-01-16 14:40:28 +01:00
|
|
|
/* these might get in the way */
|
|
|
|
unsetenv ("XDG_DATA_HOME");
|
|
|
|
unsetenv ("XDG_CONFIG_HOME");
|
2020-01-16 12:54:05 +01:00
|
|
|
|
|
|
|
TALER_TESTING_cleanup_files (config_filename);
|
2020-01-16 14:40:28 +01:00
|
|
|
|
|
|
|
// BUG: FAILS NOW.
|
2020-01-16 12:54:05 +01:00
|
|
|
if (GNUNET_OK != TALER_TESTING_prepare_exchange (config_filename,
|
|
|
|
&ec))
|
2017-03-04 16:49:33 +01:00
|
|
|
{
|
2020-01-16 14:40:28 +01:00
|
|
|
TALER_LOG_WARNING ("Could not prepare the exchange.\n");
|
2017-03-04 16:49:33 +01:00
|
|
|
return 77;
|
|
|
|
}
|
2020-01-16 12:54:05 +01:00
|
|
|
|
|
|
|
if (GNUNET_OK != TALER_TESTING_prepare_fakebank (config_filename,
|
|
|
|
"account-1",
|
|
|
|
&bc))
|
2017-03-24 13:41:21 +01:00
|
|
|
{
|
2020-01-16 12:54:05 +01:00
|
|
|
TALER_LOG_WARNING ("Could not prepare the fakebank\n");
|
2017-03-24 13:41:21 +01:00
|
|
|
return 77;
|
|
|
|
}
|
2020-01-16 12:54:05 +01:00
|
|
|
|
2016-04-04 16:47:11 +02:00
|
|
|
coin_pk = GNUNET_CRYPTO_rsa_private_key_create (1024);
|
|
|
|
coin_pub = GNUNET_CRYPTO_rsa_private_key_get_public (coin_pk);
|
2020-01-16 12:54:05 +01:00
|
|
|
|
2020-01-16 14:40:28 +01:00
|
|
|
if (GNUNET_OK != GNUNET_CONFIGURATION_parse_and_run (config_filename,
|
|
|
|
&prepare_database,
|
|
|
|
NULL))
|
|
|
|
{
|
|
|
|
TALER_LOG_WARNING ("Could not prepare database for tests.\n");
|
|
|
|
return result;
|
|
|
|
}
|
2020-01-16 12:54:05 +01:00
|
|
|
|
|
|
|
result = TALER_TESTING_setup (&run,
|
|
|
|
NULL,
|
|
|
|
config_filename,
|
|
|
|
NULL, // no exchange process handle.
|
|
|
|
GNUNET_NO); // do not try to connect to the exchange
|
|
|
|
|
2016-04-04 16:47:11 +02:00
|
|
|
GNUNET_CRYPTO_rsa_private_key_free (coin_pk);
|
|
|
|
GNUNET_CRYPTO_rsa_public_key_free (coin_pub);
|
2016-03-30 22:56:17 +02:00
|
|
|
GNUNET_free (config_filename);
|
|
|
|
GNUNET_free (testname);
|
2020-01-16 12:54:05 +01:00
|
|
|
return GNUNET_OK == result ? 0 : 1;
|
2016-03-30 22:56:17 +02:00
|
|
|
}
|
|
|
|
|
2019-10-31 12:59:50 +01:00
|
|
|
|
2016-03-30 22:56:17 +02:00
|
|
|
/* end of test_taler_exchange_aggregator.c */
|