2018-01-23 10:28:24 +01:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
2020-04-05 22:05:38 +02:00
|
|
|
Copyright (C) 2014-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_refund.c
|
2018-01-23 10:28:24 +01:00
|
|
|
* @brief Implement the /refund test command, plus other
|
|
|
|
* corollary commands (?).
|
|
|
|
* @author Marcello Stanisci
|
|
|
|
*/
|
|
|
|
#include "platform.h"
|
|
|
|
#include "taler_json_lib.h"
|
|
|
|
#include <gnunet/gnunet_curl_lib.h>
|
|
|
|
#include "taler_testing_lib.h"
|
|
|
|
|
2018-05-28 13:35:29 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* State for a "refund" CMD.
|
|
|
|
*/
|
2018-01-23 10:28:24 +01:00
|
|
|
struct RefundState
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Expected HTTP response code.
|
|
|
|
*/
|
|
|
|
unsigned int expected_response_code;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Amount to be refunded.
|
|
|
|
*/
|
|
|
|
const char *refund_amount;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reference to any command that can provide a coin to refund.
|
|
|
|
*/
|
|
|
|
const char *coin_reference;
|
|
|
|
|
|
|
|
/**
|
2018-05-28 13:35:29 +02:00
|
|
|
* Refund transaction identifier.
|
2018-01-23 10:28:24 +01:00
|
|
|
*/
|
|
|
|
uint64_t refund_transaction_id;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Connection to the exchange.
|
|
|
|
*/
|
|
|
|
struct TALER_EXCHANGE_Handle *exchange;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle to the refund operation.
|
|
|
|
*/
|
|
|
|
struct TALER_EXCHANGE_RefundHandle *rh;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Interpreter state.
|
|
|
|
*/
|
|
|
|
struct TALER_TESTING_Interpreter *is;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2018-05-28 13:35:29 +02:00
|
|
|
* Check the result for the refund request, just check if the
|
|
|
|
* response code is acceptable.
|
2018-01-23 10:28:24 +01:00
|
|
|
*
|
|
|
|
* @param cls closure
|
2020-04-05 22:05:38 +02:00
|
|
|
* @param hr HTTP response details
|
2018-05-28 13:35:29 +02:00
|
|
|
* @param exchange_pub public key the exchange
|
|
|
|
* used for signing @a obj.
|
2020-04-10 16:49:54 +02:00
|
|
|
* @param exchange_sig actual signature confirming the refund
|
2018-01-23 10:28:24 +01:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
refund_cb (void *cls,
|
2020-04-05 22:05:38 +02:00
|
|
|
const struct TALER_EXCHANGE_HttpResponse *hr,
|
2020-04-10 16:49:54 +02:00
|
|
|
const struct TALER_ExchangePublicKeyP *exchange_pub,
|
|
|
|
const struct TALER_ExchangeSignatureP *exchange_sig)
|
2018-01-23 10:28:24 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
struct RefundState *rs = cls;
|
|
|
|
struct TALER_TESTING_Command *refund_cmd;
|
|
|
|
|
|
|
|
refund_cmd = &rs->is->commands[rs->is->ip];
|
|
|
|
rs->rh = NULL;
|
2020-04-05 22:05:38 +02:00
|
|
|
if (rs->expected_response_code != hr->http_status)
|
2018-01-23 10:28:24 +01:00
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
2020-04-05 22:05:38 +02:00
|
|
|
"Unexpected response code %u/%d to command %s in %s:%u\n",
|
|
|
|
hr->http_status,
|
|
|
|
hr->ec,
|
2018-08-09 21:10:56 +02:00
|
|
|
refund_cmd->label,
|
|
|
|
__FILE__,
|
|
|
|
__LINE__);
|
2020-04-05 22:05:38 +02:00
|
|
|
json_dumpf (hr->reply,
|
|
|
|
stderr,
|
|
|
|
0);
|
2018-01-23 10:28:24 +01:00
|
|
|
TALER_TESTING_interpreter_fail (rs->is);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
TALER_TESTING_interpreter_next (rs->is);
|
|
|
|
}
|
|
|
|
|
2019-06-18 14:54:26 +02:00
|
|
|
|
2018-01-23 10:28:24 +01:00
|
|
|
/**
|
|
|
|
* Run the command.
|
|
|
|
*
|
2018-05-28 13:35:29 +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-10-04 12:32:51 +02:00
|
|
|
static void
|
2018-01-23 10:28:24 +01:00
|
|
|
refund_run (void *cls,
|
|
|
|
const struct TALER_TESTING_Command *cmd,
|
|
|
|
struct TALER_TESTING_Interpreter *is)
|
|
|
|
{
|
2018-04-02 14:24:45 +02:00
|
|
|
struct RefundState *rs = cls;
|
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;
|
2018-11-20 13:32:02 +01:00
|
|
|
const json_t *contract_terms;
|
2021-10-27 21:59:04 +02:00
|
|
|
struct TALER_PrivateContractHash h_contract_terms;
|
2018-01-23 10:28:24 +01:00
|
|
|
struct TALER_Amount refund_amount;
|
2020-01-17 17:46:13 +01:00
|
|
|
const struct TALER_MerchantPrivateKeyP *merchant_priv;
|
2018-01-23 10:28:24 +01:00
|
|
|
const struct TALER_TESTING_Command *coin_cmd;
|
|
|
|
|
|
|
|
rs->exchange = is->exchange;
|
|
|
|
rs->is = is;
|
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_string_to_amount (rs->refund_amount,
|
|
|
|
&refund_amount))
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"Failed to parse amount `%s' at %u/%s\n",
|
|
|
|
rs->refund_amount,
|
|
|
|
is->ip,
|
|
|
|
cmd->label);
|
|
|
|
TALER_TESTING_interpreter_fail (is);
|
|
|
|
return;
|
|
|
|
}
|
2020-01-17 17:46:13 +01:00
|
|
|
coin_cmd = TALER_TESTING_interpreter_lookup_command (is,
|
|
|
|
rs->coin_reference);
|
2018-01-23 10:28:24 +01:00
|
|
|
if (NULL == coin_cmd)
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
TALER_TESTING_interpreter_fail (is);
|
|
|
|
return;
|
|
|
|
}
|
2020-01-17 17:46:13 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_TESTING_get_trait_contract_terms (coin_cmd,
|
|
|
|
&contract_terms))
|
2018-01-23 10:28:24 +01:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
TALER_TESTING_interpreter_fail (is);
|
2018-04-02 14:24:45 +02:00
|
|
|
return;
|
2018-01-23 10:28:24 +01:00
|
|
|
}
|
2018-04-02 14:24:45 +02:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
2020-07-16 00:42:42 +02:00
|
|
|
TALER_JSON_contract_hash (contract_terms,
|
|
|
|
&h_contract_terms));
|
2018-01-23 10:28:24 +01:00
|
|
|
|
|
|
|
/* Hunting for a coin .. */
|
2020-01-17 17:46:13 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_TESTING_get_trait_coin_priv (coin_cmd,
|
|
|
|
0,
|
|
|
|
&coin_priv))
|
2018-01-23 10:28:24 +01:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
TALER_TESTING_interpreter_fail (is);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
GNUNET_CRYPTO_eddsa_key_get_public (&coin_priv->eddsa_priv,
|
|
|
|
&coin.eddsa_pub);
|
2020-01-17 17:46:13 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_TESTING_get_trait_merchant_priv (coin_cmd,
|
|
|
|
&merchant_priv))
|
2018-01-23 10:28:24 +01:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
TALER_TESTING_interpreter_fail (is);
|
2018-04-02 14:24:45 +02:00
|
|
|
return;
|
2018-01-23 10:28:24 +01:00
|
|
|
}
|
2020-01-17 17:46:13 +01:00
|
|
|
rs->rh = TALER_EXCHANGE_refund (rs->exchange,
|
|
|
|
&refund_amount,
|
|
|
|
&h_contract_terms,
|
|
|
|
&coin,
|
|
|
|
rs->refund_transaction_id,
|
|
|
|
merchant_priv,
|
|
|
|
&refund_cb,
|
|
|
|
rs);
|
2018-01-23 10:28:24 +01:00
|
|
|
GNUNET_assert (NULL != rs->rh);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2018-05-28 13:35:29 +02:00
|
|
|
* Free the state from a "refund" CMD, and possibly cancel
|
|
|
|
* a pending operation thereof.
|
2018-01-23 10:28:24 +01:00
|
|
|
*
|
2018-05-28 13:35:29 +02:00
|
|
|
* @param cls closure.
|
2018-01-23 10:28:24 +01:00
|
|
|
* @param cmd the command which is being cleaned up.
|
|
|
|
*/
|
2018-10-04 12:32:51 +02:00
|
|
|
static void
|
2018-01-23 10:28:24 +01:00
|
|
|
refund_cleanup (void *cls,
|
|
|
|
const struct TALER_TESTING_Command *cmd)
|
|
|
|
{
|
|
|
|
struct RefundState *rs = cls;
|
|
|
|
|
|
|
|
if (NULL != rs->rh)
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
|
|
|
|
"Command %u (%s) did not complete\n",
|
|
|
|
rs->is->ip,
|
|
|
|
cmd->label);
|
|
|
|
TALER_EXCHANGE_refund_cancel (rs->rh);
|
|
|
|
rs->rh = NULL;
|
|
|
|
}
|
|
|
|
GNUNET_free (rs);
|
|
|
|
}
|
|
|
|
|
2019-06-18 14:54:26 +02:00
|
|
|
|
2018-01-23 10:28:24 +01:00
|
|
|
struct TALER_TESTING_Command
|
|
|
|
TALER_TESTING_cmd_refund (const char *label,
|
|
|
|
unsigned int expected_response_code,
|
|
|
|
const char *refund_amount,
|
|
|
|
const char *coin_reference)
|
|
|
|
{
|
|
|
|
struct RefundState *rs;
|
|
|
|
|
|
|
|
rs = GNUNET_new (struct RefundState);
|
|
|
|
|
|
|
|
rs->expected_response_code = expected_response_code;
|
|
|
|
rs->refund_amount = refund_amount;
|
|
|
|
rs->coin_reference = coin_reference;
|
2019-06-18 14:54:26 +02:00
|
|
|
{
|
|
|
|
struct TALER_TESTING_Command cmd = {
|
|
|
|
.cls = rs,
|
|
|
|
.label = label,
|
|
|
|
.run = &refund_run,
|
|
|
|
.cleanup = &refund_cleanup
|
|
|
|
};
|
|
|
|
|
|
|
|
return cmd;
|
|
|
|
}
|
2018-01-23 10:28:24 +01:00
|
|
|
}
|
2018-05-17 15:50:50 +02:00
|
|
|
|
2019-06-18 14:54:26 +02:00
|
|
|
|
2018-05-17 15:50:50 +02:00
|
|
|
struct TALER_TESTING_Command
|
2021-10-27 21:59:04 +02:00
|
|
|
TALER_TESTING_cmd_refund_with_id (
|
|
|
|
const char *label,
|
2019-08-25 16:18:24 +02:00
|
|
|
unsigned int expected_response_code,
|
|
|
|
const char *refund_amount,
|
|
|
|
const char *coin_reference,
|
|
|
|
uint64_t refund_transaction_id)
|
2018-05-17 15:50:50 +02:00
|
|
|
{
|
|
|
|
struct RefundState *rs;
|
|
|
|
|
|
|
|
rs = GNUNET_new (struct RefundState);
|
|
|
|
rs->expected_response_code = expected_response_code;
|
|
|
|
rs->refund_amount = refund_amount;
|
|
|
|
rs->coin_reference = coin_reference;
|
|
|
|
rs->refund_transaction_id = refund_transaction_id;
|
2019-06-18 14:54:26 +02:00
|
|
|
{
|
|
|
|
struct TALER_TESTING_Command cmd = {
|
|
|
|
.cls = rs,
|
|
|
|
.label = label,
|
|
|
|
.run = &refund_run,
|
|
|
|
.cleanup = &refund_cleanup
|
|
|
|
};
|
|
|
|
|
|
|
|
return cmd;
|
|
|
|
}
|
2018-05-17 15:50:50 +02:00
|
|
|
}
|