2018-01-23 10:28:24 +01:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
2020-01-12 23:13:46 +01:00
|
|
|
Copyright (C) 2018-2020 Taler Systems SA
|
2018-01-23 10:28:24 +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/>
|
|
|
|
*/
|
|
|
|
/**
|
2020-01-19 15:23:19 +01:00
|
|
|
* @file testing/testing_api_cmd_deposit.c
|
2018-01-23 10:28:24 +01:00
|
|
|
* @brief command for testing /deposit.
|
|
|
|
* @author Marcello Stanisci
|
|
|
|
*/
|
|
|
|
#include "platform.h"
|
|
|
|
#include "taler_json_lib.h"
|
|
|
|
#include <gnunet/gnunet_curl_lib.h>
|
|
|
|
#include "taler_testing_lib.h"
|
|
|
|
#include "taler_signatures.h"
|
2018-09-26 23:24:24 +02:00
|
|
|
#include "backoff.h"
|
2018-01-23 10:28:24 +01:00
|
|
|
|
2018-05-28 13:27:54 +02:00
|
|
|
|
2020-03-19 19:33:20 +01:00
|
|
|
/**
|
|
|
|
* How often do we retry before giving up?
|
|
|
|
*/
|
|
|
|
#define NUM_RETRIES 5
|
|
|
|
|
|
|
|
|
2018-05-28 13:27:54 +02:00
|
|
|
/**
|
|
|
|
* State for a "deposit" CMD.
|
|
|
|
*/
|
2018-01-23 10:28:24 +01:00
|
|
|
struct DepositState
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Amount to deposit.
|
|
|
|
*/
|
2020-01-12 23:13:46 +01:00
|
|
|
struct TALER_Amount amount;
|
2018-01-23 10:28:24 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Reference to any command that is able to provide a coin.
|
|
|
|
*/
|
|
|
|
const char *coin_reference;
|
|
|
|
|
|
|
|
/**
|
2018-05-28 13:27:54 +02:00
|
|
|
* If @e coin_reference refers to an operation that generated
|
2018-01-23 10:28:24 +01:00
|
|
|
* an array of coins, this value determines which coin to pick.
|
|
|
|
*/
|
|
|
|
unsigned int coin_index;
|
|
|
|
|
|
|
|
/**
|
2018-05-28 13:27:54 +02:00
|
|
|
* Wire details of who is depositing -- this would be merchant
|
|
|
|
* wire details in a normal scenario.
|
2018-01-23 10:28:24 +01:00
|
|
|
*/
|
2018-04-02 14:24:45 +02:00
|
|
|
json_t *wire_details;
|
2018-01-23 10:28:24 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* JSON string describing what a proposal is about.
|
|
|
|
*/
|
2018-11-20 13:32:02 +01:00
|
|
|
json_t *contract_terms;
|
2018-01-23 10:28:24 +01:00
|
|
|
|
|
|
|
/**
|
2019-07-28 15:39:28 +02:00
|
|
|
* Refund deadline. Zero for no refunds.
|
2018-01-23 10:28:24 +01:00
|
|
|
*/
|
2019-07-28 15:39:28 +02:00
|
|
|
struct GNUNET_TIME_Absolute refund_deadline;
|
2018-01-23 10:28:24 +01:00
|
|
|
|
|
|
|
/**
|
2018-05-28 13:27:54 +02:00
|
|
|
* Set (by the interpreter) to a fresh private key. This
|
|
|
|
* key will be used to sign the deposit request.
|
2018-01-23 10:28:24 +01:00
|
|
|
*/
|
|
|
|
struct TALER_MerchantPrivateKeyP merchant_priv;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Deposit handle while operation is running.
|
|
|
|
*/
|
|
|
|
struct TALER_EXCHANGE_DepositHandle *dh;
|
|
|
|
|
2019-07-28 15:39:28 +02:00
|
|
|
/**
|
|
|
|
* Timestamp of the /deposit operation.
|
|
|
|
*/
|
|
|
|
struct GNUNET_TIME_Absolute timestamp;
|
|
|
|
|
2018-01-23 10:28:24 +01:00
|
|
|
/**
|
|
|
|
* Interpreter state.
|
|
|
|
*/
|
|
|
|
struct TALER_TESTING_Interpreter *is;
|
|
|
|
|
2018-08-11 11:29:02 +02:00
|
|
|
/**
|
|
|
|
* Task scheduled to try later.
|
|
|
|
*/
|
|
|
|
struct GNUNET_SCHEDULER_Task *retry_task;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* How long do we wait until we retry?
|
|
|
|
*/
|
|
|
|
struct GNUNET_TIME_Relative backoff;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Expected HTTP response code.
|
|
|
|
*/
|
|
|
|
unsigned int expected_response_code;
|
|
|
|
|
|
|
|
/**
|
2020-03-19 19:33:20 +01:00
|
|
|
* How often should we retry on (transient) failures?
|
2018-08-11 11:29:02 +02:00
|
|
|
*/
|
2020-03-19 19:33:20 +01:00
|
|
|
unsigned int do_retry;
|
2018-08-11 11:29:02 +02:00
|
|
|
|
2018-11-17 15:15:51 +01:00
|
|
|
/**
|
|
|
|
* Set to #GNUNET_YES if the /deposit succeeded
|
|
|
|
* and we now can provide the resulting traits.
|
|
|
|
*/
|
|
|
|
int traits_ready;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Signing key used by the exchange to sign the
|
|
|
|
* deposit confirmation.
|
|
|
|
*/
|
|
|
|
struct TALER_ExchangePublicKeyP exchange_pub;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Signature from the exchange on the
|
|
|
|
* deposit confirmation.
|
|
|
|
*/
|
|
|
|
struct TALER_ExchangeSignatureP exchange_sig;
|
2018-01-23 10:28:24 +01:00
|
|
|
};
|
|
|
|
|
2018-08-11 11:29:02 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Run the command.
|
|
|
|
*
|
|
|
|
* @param cls closure.
|
|
|
|
* @param cmd the command to execute.
|
|
|
|
* @param is the interpreter state.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
deposit_run (void *cls,
|
|
|
|
const struct TALER_TESTING_Command *cmd,
|
|
|
|
struct TALER_TESTING_Interpreter *is);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Task scheduled to re-try #deposit_run.
|
|
|
|
*
|
|
|
|
* @param cls a `struct DepositState`
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
do_retry (void *cls)
|
|
|
|
{
|
|
|
|
struct DepositState *ds = cls;
|
|
|
|
|
|
|
|
ds->retry_task = NULL;
|
|
|
|
deposit_run (ds,
|
|
|
|
NULL,
|
|
|
|
ds->is);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-01-23 10:28:24 +01:00
|
|
|
/**
|
2018-05-28 13:27:54 +02:00
|
|
|
* Callback to analyze the /deposit response, just used to
|
|
|
|
* check if the response code is acceptable.
|
2018-01-23 10:28:24 +01:00
|
|
|
*
|
2018-05-28 13:27:54 +02:00
|
|
|
* @param cls closure.
|
|
|
|
* @param http_status HTTP response code.
|
|
|
|
* @param ec taler-specific error code.
|
2018-11-17 15:15:51 +01:00
|
|
|
* @param exchange_sig signature provided by the exchange
|
|
|
|
* (NULL on errors)
|
2018-05-28 13:27:54 +02:00
|
|
|
* @param exchange_pub public key of the exchange,
|
|
|
|
* used for signing the response.
|
|
|
|
* @param obj raw response from the exchange.
|
2018-01-23 10:28:24 +01:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
deposit_cb (void *cls,
|
|
|
|
unsigned int http_status,
|
|
|
|
enum TALER_ErrorCode ec,
|
2018-11-17 15:15:51 +01:00
|
|
|
const struct TALER_ExchangeSignatureP *exchange_sig,
|
2018-01-23 10:28:24 +01:00
|
|
|
const struct TALER_ExchangePublicKeyP *exchange_pub,
|
|
|
|
const json_t *obj)
|
|
|
|
{
|
|
|
|
struct DepositState *ds = cls;
|
|
|
|
|
|
|
|
ds->dh = NULL;
|
|
|
|
if (ds->expected_response_code != http_status)
|
|
|
|
{
|
2020-03-19 19:33:20 +01:00
|
|
|
if (0 != ds->do_retry)
|
2018-08-11 11:29:02 +02:00
|
|
|
{
|
2020-03-19 19:33:20 +01:00
|
|
|
ds->do_retry--;
|
2018-08-11 11:29:02 +02:00
|
|
|
if ( (0 == http_status) ||
|
|
|
|
(TALER_EC_DB_COMMIT_FAILED_ON_RETRY == ec) ||
|
2019-08-25 16:18:24 +02:00
|
|
|
(MHD_HTTP_INTERNAL_SERVER_ERROR == http_status) )
|
2018-08-11 11:29:02 +02:00
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Retrying deposit failed with %u/%d\n",
|
|
|
|
http_status,
|
|
|
|
(int) ec);
|
2019-08-25 16:18:24 +02:00
|
|
|
/* on DB conflicts, do not use backoff */
|
|
|
|
if (TALER_EC_DB_COMMIT_FAILED_ON_RETRY == ec)
|
|
|
|
ds->backoff = GNUNET_TIME_UNIT_ZERO;
|
|
|
|
else
|
|
|
|
ds->backoff = EXCHANGE_LIB_BACKOFF (ds->backoff);
|
|
|
|
ds->retry_task
|
|
|
|
= GNUNET_SCHEDULER_add_delayed (ds->backoff,
|
|
|
|
&do_retry,
|
|
|
|
ds);
|
2018-08-11 11:29:02 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2018-01-23 10:28:24 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
2018-08-09 21:10:56 +02:00
|
|
|
"Unexpected response code %u to command %s in %s:%u\n",
|
2018-01-23 10:28:24 +01:00
|
|
|
http_status,
|
2018-08-09 21:10:56 +02:00
|
|
|
ds->is->commands[ds->is->ip].label,
|
|
|
|
__FILE__,
|
|
|
|
__LINE__);
|
2018-01-23 10:28:24 +01:00
|
|
|
json_dumpf (obj, stderr, 0);
|
|
|
|
TALER_TESTING_interpreter_fail (ds->is);
|
|
|
|
return;
|
|
|
|
}
|
2018-11-17 15:15:51 +01:00
|
|
|
if (MHD_HTTP_OK == http_status)
|
|
|
|
{
|
|
|
|
ds->traits_ready = GNUNET_YES;
|
|
|
|
ds->exchange_pub = *exchange_pub;
|
|
|
|
ds->exchange_sig = *exchange_sig;
|
|
|
|
}
|
2018-01-23 10:28:24 +01:00
|
|
|
TALER_TESTING_interpreter_next (ds->is);
|
|
|
|
}
|
|
|
|
|
2018-04-02 14:24:45 +02:00
|
|
|
|
2018-01-23 10:28:24 +01:00
|
|
|
/**
|
|
|
|
* Run the command.
|
|
|
|
*
|
2018-05-28 13:27:54 +02:00
|
|
|
* @param cls closure.
|
|
|
|
* @param cmd the command to execute.
|
|
|
|
* @param is the interpreter state.
|
2018-01-23 10:28:24 +01:00
|
|
|
*/
|
2018-04-02 14:24:45 +02:00
|
|
|
static void
|
2018-01-23 10:28:24 +01:00
|
|
|
deposit_run (void *cls,
|
|
|
|
const struct TALER_TESTING_Command *cmd,
|
|
|
|
struct TALER_TESTING_Interpreter *is)
|
|
|
|
{
|
|
|
|
struct DepositState *ds = cls;
|
|
|
|
const struct TALER_TESTING_Command *coin_cmd;
|
2018-11-17 16:11:47 +01:00
|
|
|
const struct TALER_CoinSpendPrivateKeyP *coin_priv;
|
2018-01-23 10:28:24 +01:00
|
|
|
struct TALER_CoinSpendPublicKeyP coin_pub;
|
2018-02-21 16:58:18 +01:00
|
|
|
const struct TALER_EXCHANGE_DenomPublicKey *denom_pub;
|
2018-11-17 17:19:02 +01:00
|
|
|
const struct TALER_DenominationSignature *denom_pub_sig;
|
2018-01-23 10:28:24 +01:00
|
|
|
struct TALER_CoinSpendSignatureP coin_sig;
|
|
|
|
struct GNUNET_TIME_Absolute wire_deadline;
|
|
|
|
struct GNUNET_CRYPTO_EddsaPrivateKey *merchant_priv;
|
|
|
|
struct TALER_MerchantPublicKeyP merchant_pub;
|
|
|
|
struct GNUNET_HashCode h_contract_terms;
|
|
|
|
|
|
|
|
ds->is = is;
|
|
|
|
GNUNET_assert (ds->coin_reference);
|
|
|
|
coin_cmd = TALER_TESTING_interpreter_lookup_command
|
2019-08-25 16:18:24 +02:00
|
|
|
(is,
|
|
|
|
ds->coin_reference);
|
2018-01-23 10:28:24 +01:00
|
|
|
if (NULL == coin_cmd)
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2018-04-02 14:24:45 +02:00
|
|
|
TALER_TESTING_interpreter_fail (is);
|
2018-01-23 10:28:24 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-01-17 17:32:09 +01:00
|
|
|
if ( (GNUNET_OK !=
|
|
|
|
TALER_TESTING_get_trait_coin_priv (coin_cmd,
|
|
|
|
ds->coin_index,
|
|
|
|
&coin_priv)) ||
|
|
|
|
(GNUNET_OK !=
|
|
|
|
TALER_TESTING_get_trait_denom_pub (coin_cmd,
|
|
|
|
ds->coin_index,
|
|
|
|
&denom_pub)) ||
|
|
|
|
(GNUNET_OK !=
|
|
|
|
TALER_TESTING_get_trait_denom_sig (coin_cmd,
|
|
|
|
ds->coin_index,
|
|
|
|
&denom_pub_sig)) ||
|
|
|
|
(GNUNET_OK !=
|
|
|
|
TALER_JSON_hash (ds->contract_terms,
|
|
|
|
&h_contract_terms)) )
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
TALER_TESTING_interpreter_fail (is);
|
|
|
|
return;
|
|
|
|
}
|
2018-01-23 10:28:24 +01:00
|
|
|
GNUNET_CRYPTO_eddsa_key_get_public (&coin_priv->eddsa_priv,
|
|
|
|
&coin_pub.eddsa_pub);
|
|
|
|
|
|
|
|
merchant_priv = GNUNET_CRYPTO_eddsa_key_create ();
|
|
|
|
ds->merchant_priv.eddsa_priv = *merchant_priv;
|
|
|
|
GNUNET_free (merchant_priv);
|
|
|
|
|
2019-07-28 15:39:28 +02:00
|
|
|
if (0 != ds->refund_deadline.abs_value_us)
|
2018-01-23 10:28:24 +01:00
|
|
|
{
|
2019-07-28 15:39:28 +02:00
|
|
|
struct GNUNET_TIME_Relative refund_deadline;
|
|
|
|
|
|
|
|
refund_deadline = GNUNET_TIME_absolute_get_remaining (ds->refund_deadline);
|
2018-01-23 10:28:24 +01:00
|
|
|
wire_deadline = GNUNET_TIME_relative_to_absolute
|
2019-08-25 16:18:24 +02:00
|
|
|
(GNUNET_TIME_relative_multiply (refund_deadline, 2));
|
2018-01-23 10:28:24 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-07-28 15:39:28 +02:00
|
|
|
ds->refund_deadline = ds->timestamp;
|
2018-01-23 10:28:24 +01:00
|
|
|
wire_deadline = GNUNET_TIME_relative_to_absolute
|
2019-08-25 16:18:24 +02:00
|
|
|
(GNUNET_TIME_UNIT_ZERO);
|
2018-01-23 10:28:24 +01:00
|
|
|
}
|
2020-01-17 17:32:09 +01:00
|
|
|
GNUNET_CRYPTO_eddsa_key_get_public (&ds->merchant_priv.eddsa_priv,
|
|
|
|
&merchant_pub.eddsa_pub);
|
2018-01-23 10:28:24 +01:00
|
|
|
|
2019-07-28 15:39:28 +02:00
|
|
|
(void) GNUNET_TIME_round_abs (&wire_deadline);
|
2018-01-23 10:28:24 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
struct TALER_DepositRequestPS dr;
|
|
|
|
|
|
|
|
memset (&dr, 0, sizeof (dr));
|
|
|
|
dr.purpose.size = htonl
|
2019-08-25 16:18:24 +02:00
|
|
|
(sizeof (struct TALER_DepositRequestPS));
|
2018-01-23 10:28:24 +01:00
|
|
|
dr.purpose.purpose = htonl
|
2019-08-25 16:18:24 +02:00
|
|
|
(TALER_SIGNATURE_WALLET_COIN_DEPOSIT);
|
2018-01-23 10:28:24 +01:00
|
|
|
dr.h_contract_terms = h_contract_terms;
|
2020-01-17 17:32:09 +01:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_JSON_merchant_wire_signature_hash (ds->wire_details,
|
|
|
|
&dr.h_wire));
|
2019-07-28 15:39:28 +02:00
|
|
|
dr.timestamp = GNUNET_TIME_absolute_hton (ds->timestamp);
|
2018-01-23 10:28:24 +01:00
|
|
|
dr.refund_deadline = GNUNET_TIME_absolute_hton
|
2019-08-25 16:18:24 +02:00
|
|
|
(ds->refund_deadline);
|
2020-01-12 23:13:46 +01:00
|
|
|
TALER_amount_hton (&dr.amount_with_fee,
|
|
|
|
&ds->amount);
|
|
|
|
TALER_amount_hton (&dr.deposit_fee,
|
|
|
|
&denom_pub->fee_deposit);
|
2018-01-23 10:28:24 +01:00
|
|
|
dr.merchant = merchant_pub;
|
|
|
|
dr.coin_pub = coin_pub;
|
2020-01-17 17:32:09 +01:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
GNUNET_CRYPTO_eddsa_sign (&coin_priv->eddsa_priv,
|
|
|
|
&dr.purpose,
|
|
|
|
&coin_sig.eddsa_signature));
|
2018-01-23 10:28:24 +01:00
|
|
|
}
|
2020-01-12 23:13:46 +01:00
|
|
|
ds->dh = TALER_EXCHANGE_deposit (is->exchange,
|
|
|
|
&ds->amount,
|
|
|
|
wire_deadline,
|
|
|
|
ds->wire_details,
|
|
|
|
&h_contract_terms,
|
|
|
|
&coin_pub,
|
|
|
|
denom_pub_sig,
|
|
|
|
&denom_pub->key,
|
|
|
|
ds->timestamp,
|
|
|
|
&merchant_pub,
|
|
|
|
ds->refund_deadline,
|
|
|
|
&coin_sig,
|
|
|
|
&deposit_cb,
|
|
|
|
ds);
|
2018-01-23 10:28:24 +01:00
|
|
|
|
|
|
|
if (NULL == ds->dh)
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
TALER_TESTING_interpreter_fail (is);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-02 14:24:45 +02:00
|
|
|
|
2018-01-23 10:28:24 +01:00
|
|
|
/**
|
2018-05-28 13:27:54 +02:00
|
|
|
* Free the state of a "deposit" CMD, and possibly cancel a
|
|
|
|
* pending operation thereof.
|
2018-01-23 10:28:24 +01:00
|
|
|
*
|
2020-01-18 17:06:24 +01:00
|
|
|
* @param cls closure, must be a `struct DepositState`.
|
2018-01-23 10:28:24 +01:00
|
|
|
* @param cmd the command which is being cleaned up.
|
|
|
|
*/
|
2018-04-02 14:24:45 +02:00
|
|
|
static void
|
2018-01-23 10:28:24 +01:00
|
|
|
deposit_cleanup (void *cls,
|
|
|
|
const struct TALER_TESTING_Command *cmd)
|
|
|
|
{
|
|
|
|
struct DepositState *ds = cls;
|
|
|
|
|
|
|
|
if (NULL != ds->dh)
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
|
|
|
|
"Command %u (%s) did not complete\n",
|
|
|
|
ds->is->ip,
|
|
|
|
cmd->label);
|
|
|
|
TALER_EXCHANGE_deposit_cancel (ds->dh);
|
|
|
|
ds->dh = NULL;
|
|
|
|
}
|
2018-08-11 11:29:02 +02:00
|
|
|
if (NULL != ds->retry_task)
|
|
|
|
{
|
|
|
|
GNUNET_SCHEDULER_cancel (ds->retry_task);
|
|
|
|
ds->retry_task = NULL;
|
|
|
|
}
|
2018-04-02 14:24:45 +02:00
|
|
|
json_decref (ds->wire_details);
|
2018-11-20 13:32:02 +01:00
|
|
|
json_decref (ds->contract_terms);
|
2018-01-23 10:28:24 +01:00
|
|
|
GNUNET_free (ds);
|
|
|
|
}
|
|
|
|
|
2018-04-02 14:24:45 +02:00
|
|
|
|
2018-01-23 10:28:24 +01:00
|
|
|
/**
|
2018-05-28 13:27:54 +02:00
|
|
|
* Offer internal data from a "deposit" CMD, to other commands.
|
2018-01-23 10:28:24 +01:00
|
|
|
*
|
2018-05-28 13:27:54 +02:00
|
|
|
* @param cls closure.
|
2020-01-18 13:57:47 +01:00
|
|
|
* @param[out] ret result.
|
2018-05-28 13:27:54 +02:00
|
|
|
* @param trait name of the trait.
|
2018-05-29 12:43:34 +02:00
|
|
|
* @param index index number of the object to offer.
|
2018-05-28 13:27:54 +02:00
|
|
|
*
|
|
|
|
* @return #GNUNET_OK on success.
|
2018-01-23 10:28:24 +01:00
|
|
|
*/
|
|
|
|
static int
|
|
|
|
deposit_traits (void *cls,
|
2018-11-17 17:19:02 +01:00
|
|
|
const void **ret,
|
2018-01-23 10:28:24 +01:00
|
|
|
const char *trait,
|
|
|
|
unsigned int index)
|
|
|
|
{
|
|
|
|
struct DepositState *ds = cls;
|
2018-04-02 14:24:45 +02:00
|
|
|
const struct TALER_TESTING_Command *coin_cmd;
|
2018-01-23 10:28:24 +01:00
|
|
|
/* Will point to coin cmd internals. */
|
2018-11-17 16:11:47 +01:00
|
|
|
const struct TALER_CoinSpendPrivateKeyP *coin_spent_priv;
|
2018-01-23 10:28:24 +01:00
|
|
|
|
2020-01-17 17:32:09 +01:00
|
|
|
coin_cmd
|
|
|
|
= TALER_TESTING_interpreter_lookup_command (ds->is,
|
|
|
|
ds->coin_reference);
|
2018-01-23 10:28:24 +01:00
|
|
|
if (NULL == coin_cmd)
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
TALER_TESTING_interpreter_fail (ds->is);
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
2018-11-17 15:15:51 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_TESTING_get_trait_coin_priv (coin_cmd,
|
2019-07-23 21:56:21 +02:00
|
|
|
ds->coin_index,
|
|
|
|
&coin_spent_priv))
|
2018-01-23 10:28:24 +01:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
TALER_TESTING_interpreter_fail (ds->is);
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
2020-01-17 17:32:09 +01:00
|
|
|
{
|
|
|
|
struct TALER_TESTING_Trait traits[] = {
|
|
|
|
/* First two traits are only available if
|
|
|
|
ds->traits is #GNUNET_YES */
|
|
|
|
TALER_TESTING_make_trait_exchange_pub (0,
|
|
|
|
&ds->exchange_pub),
|
|
|
|
TALER_TESTING_make_trait_exchange_sig (0,
|
|
|
|
&ds->exchange_sig),
|
|
|
|
/* These traits are always available */
|
|
|
|
TALER_TESTING_make_trait_coin_priv (0,
|
|
|
|
coin_spent_priv),
|
|
|
|
TALER_TESTING_make_trait_wire_details (0,
|
|
|
|
ds->wire_details),
|
|
|
|
TALER_TESTING_make_trait_contract_terms (0,
|
|
|
|
ds->contract_terms),
|
2020-01-17 17:46:13 +01:00
|
|
|
TALER_TESTING_make_trait_merchant_priv (0,
|
|
|
|
&ds->merchant_priv),
|
2020-01-17 17:32:09 +01:00
|
|
|
TALER_TESTING_make_trait_amount_obj (0,
|
|
|
|
&ds->amount),
|
|
|
|
TALER_TESTING_trait_end ()
|
|
|
|
};
|
|
|
|
|
|
|
|
return TALER_TESTING_get_trait ((ds->traits_ready)
|
|
|
|
? traits
|
|
|
|
: &traits[2],
|
|
|
|
ret,
|
|
|
|
trait,
|
|
|
|
index);
|
|
|
|
}
|
2018-01-23 10:28:24 +01:00
|
|
|
}
|
|
|
|
|
2019-10-31 12:59:50 +01:00
|
|
|
|
2018-01-23 10:28:24 +01:00
|
|
|
/**
|
2018-05-28 13:27:54 +02:00
|
|
|
* Create a "deposit" command.
|
2018-01-23 10:28:24 +01:00
|
|
|
*
|
2018-05-28 13:27:54 +02:00
|
|
|
* @param label command label.
|
2018-01-23 10:28:24 +01:00
|
|
|
* @param coin_reference reference to any operation that can
|
2018-05-28 13:27:54 +02:00
|
|
|
* provide a coin.
|
2018-01-23 10:28:24 +01:00
|
|
|
* @param coin_index if @a withdraw_reference offers an array of
|
|
|
|
* coins, this parameter selects which one in that array.
|
|
|
|
* This value is currently ignored, as only one-coin
|
|
|
|
* withdrawals are implemented.
|
2020-01-13 00:27:48 +01:00
|
|
|
* @param target_account_payto target account for the "deposit"
|
2018-05-28 13:27:54 +02:00
|
|
|
* request.
|
2018-01-23 10:28:24 +01:00
|
|
|
* @param contract_terms contract terms to be signed over by the
|
2018-05-28 13:27:54 +02:00
|
|
|
* coin.
|
|
|
|
* @param refund_deadline refund deadline, zero means 'no refunds'.
|
2018-07-02 11:13:28 +02:00
|
|
|
* Note, if time were absolute, then it would have come
|
|
|
|
* one day and disrupt tests meaning.
|
2018-05-28 13:27:54 +02:00
|
|
|
* @param amount how much is going to be deposited.
|
|
|
|
* @param expected_response_code expected HTTP response code.
|
2018-01-23 10:28:24 +01:00
|
|
|
*
|
2018-05-28 13:27:54 +02:00
|
|
|
* @return the command.
|
2018-01-23 10:28:24 +01:00
|
|
|
*/
|
|
|
|
struct TALER_TESTING_Command
|
2020-01-16 20:20:12 +01:00
|
|
|
TALER_TESTING_cmd_deposit (const char *label,
|
|
|
|
const char *coin_reference,
|
|
|
|
unsigned int coin_index,
|
|
|
|
const char *target_account_payto,
|
|
|
|
const char *contract_terms,
|
|
|
|
struct GNUNET_TIME_Relative refund_deadline,
|
|
|
|
const char *amount,
|
|
|
|
unsigned int expected_response_code)
|
2018-01-23 10:28:24 +01:00
|
|
|
{
|
|
|
|
struct DepositState *ds;
|
2020-01-13 00:27:48 +01:00
|
|
|
json_t *wire_details;
|
2018-04-02 14:24:45 +02:00
|
|
|
|
2020-01-13 00:27:48 +01:00
|
|
|
wire_details = TALER_TESTING_make_wire_details (target_account_payto);
|
2018-01-23 10:28:24 +01:00
|
|
|
ds = GNUNET_new (struct DepositState);
|
|
|
|
ds->coin_reference = coin_reference;
|
|
|
|
ds->coin_index = coin_index;
|
|
|
|
ds->wire_details = wire_details;
|
2018-11-20 13:32:02 +01:00
|
|
|
ds->contract_terms = json_loads (contract_terms,
|
|
|
|
JSON_REJECT_DUPLICATES,
|
|
|
|
NULL);
|
|
|
|
if (NULL == ds->contract_terms)
|
|
|
|
{
|
2020-01-18 18:09:15 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"Failed to parse contract terms `%s' for CMD `%s'\n",
|
|
|
|
contract_terms,
|
|
|
|
label);
|
2018-11-20 13:32:02 +01:00
|
|
|
GNUNET_assert (0);
|
|
|
|
}
|
2019-07-28 15:39:28 +02:00
|
|
|
ds->timestamp = GNUNET_TIME_absolute_get ();
|
|
|
|
(void) GNUNET_TIME_round_abs (&ds->timestamp);
|
2018-11-20 13:32:02 +01:00
|
|
|
|
2020-01-18 18:09:15 +01:00
|
|
|
json_object_set_new (ds->contract_terms,
|
|
|
|
"timestamp",
|
|
|
|
GNUNET_JSON_from_time_abs (ds->timestamp));
|
2019-07-28 15:39:28 +02:00
|
|
|
if (0 != refund_deadline.rel_value_us)
|
|
|
|
{
|
|
|
|
ds->refund_deadline = GNUNET_TIME_relative_to_absolute (refund_deadline);
|
|
|
|
(void) GNUNET_TIME_round_abs (&ds->refund_deadline);
|
2020-01-18 18:09:15 +01:00
|
|
|
json_object_set_new (ds->contract_terms,
|
|
|
|
"refund_deadline",
|
|
|
|
GNUNET_JSON_from_time_abs (ds->refund_deadline));
|
2019-07-28 15:39:28 +02:00
|
|
|
}
|
2020-01-12 23:13:46 +01:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_string_to_amount (amount,
|
|
|
|
&ds->amount));
|
2018-01-23 10:28:24 +01:00
|
|
|
ds->expected_response_code = expected_response_code;
|
2020-01-12 23:13:46 +01:00
|
|
|
{
|
|
|
|
struct TALER_TESTING_Command cmd = {
|
|
|
|
.cls = ds,
|
|
|
|
.label = label,
|
|
|
|
.run = &deposit_run,
|
|
|
|
.cleanup = &deposit_cleanup,
|
|
|
|
.traits = &deposit_traits
|
|
|
|
};
|
|
|
|
|
|
|
|
return cmd;
|
|
|
|
}
|
2018-01-23 10:28:24 +01:00
|
|
|
}
|
2018-08-11 11:29:02 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Modify a deposit command to enable retries when we get transient
|
|
|
|
* errors from the exchange.
|
|
|
|
*
|
|
|
|
* @param cmd a deposit command
|
|
|
|
* @return the command with retries enabled
|
|
|
|
*/
|
|
|
|
struct TALER_TESTING_Command
|
|
|
|
TALER_TESTING_cmd_deposit_with_retry (struct TALER_TESTING_Command cmd)
|
|
|
|
{
|
|
|
|
struct DepositState *ds;
|
|
|
|
|
|
|
|
GNUNET_assert (&deposit_run == cmd.run);
|
|
|
|
ds = cmd.cls;
|
2020-03-19 19:33:20 +01:00
|
|
|
ds->do_retry = NUM_RETRIES;
|
2018-08-11 11:29:02 +02:00
|
|
|
return cmd;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* end of testing_api_cmd_deposit.c */
|