offering amount _objects_ as traits (a string version of
it was already implemented). "Withdraw" command uses it.
This commit is contained in:
parent
63109b6910
commit
513a22c344
@ -67,7 +67,8 @@ libtalertesting_la_SOURCES = \
|
|||||||
testing_api_trait_fresh_coin.c \
|
testing_api_trait_fresh_coin.c \
|
||||||
testing_api_trait_string.c \
|
testing_api_trait_string.c \
|
||||||
testing_api_trait_key_peer.c \
|
testing_api_trait_key_peer.c \
|
||||||
testing_api_trait_wtid.c
|
testing_api_trait_wtid.c \
|
||||||
|
testing_api_trait_amount.c
|
||||||
|
|
||||||
libtalertesting_la_LIBADD = \
|
libtalertesting_la_LIBADD = \
|
||||||
$(top_builddir)/src/json/libtalerjson.la \
|
$(top_builddir)/src/json/libtalerjson.la \
|
||||||
|
@ -286,6 +286,11 @@ withdraw_traits (void *cls,
|
|||||||
&ws->sig),
|
&ws->sig),
|
||||||
TALER_TESTING_make_trait_reserve_priv (0,
|
TALER_TESTING_make_trait_reserve_priv (0,
|
||||||
reserve_priv),
|
reserve_priv),
|
||||||
|
TALER_TESTING_make_trait_amount_obj (0,
|
||||||
|
&ws->amount),
|
||||||
|
TALER_TESTING_make_trait_url (
|
||||||
|
0, MAH_path_to_url (ws->exchange, "/")),
|
||||||
|
|
||||||
TALER_TESTING_trait_end ()
|
TALER_TESTING_trait_end ()
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -2,16 +2,18 @@
|
|||||||
This file is part of TALER
|
This file is part of TALER
|
||||||
Copyright (C) 2018 Taler Systems SA
|
Copyright (C) 2018 Taler Systems SA
|
||||||
|
|
||||||
TALER is free software; you can redistribute it and/or modify it under the
|
TALER is free software; you can redistribute it and/or modify it
|
||||||
terms of the GNU General Public License as published by the Free Software
|
under the terms of the GNU General Public License as published
|
||||||
Foundation; either version 3, or (at your option) any later version.
|
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
|
TALER is distributed in the hope that it will be useful, but
|
||||||
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
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
|
You should have received a copy of the GNU General Public
|
||||||
TALER; see the file COPYING. If not, see
|
License along with TALER; see the file COPYING. If not, see
|
||||||
<http://www.gnu.org/licenses/>
|
<http://www.gnu.org/licenses/>
|
||||||
*/
|
*/
|
||||||
/**
|
/**
|
||||||
@ -39,9 +41,10 @@
|
|||||||
* @return #GNUNET_OK on success
|
* @return #GNUNET_OK on success
|
||||||
*/
|
*/
|
||||||
int
|
int
|
||||||
TALER_TESTING_get_trait_blinding_key (const struct TALER_TESTING_Command *cmd,
|
TALER_TESTING_get_trait_blinding_key (
|
||||||
unsigned int index,
|
const struct TALER_TESTING_Command *cmd,
|
||||||
struct TALER_DenominationBlindingKeyP **blinding_key)
|
unsigned int index,
|
||||||
|
struct TALER_DenominationBlindingKeyP **blinding_key)
|
||||||
{
|
{
|
||||||
return cmd->traits (cmd->cls,
|
return cmd->traits (cmd->cls,
|
||||||
(void **) blinding_key,
|
(void **) blinding_key,
|
||||||
@ -51,8 +54,9 @@ TALER_TESTING_get_trait_blinding_key (const struct TALER_TESTING_Command *cmd,
|
|||||||
|
|
||||||
|
|
||||||
struct TALER_TESTING_Trait
|
struct TALER_TESTING_Trait
|
||||||
TALER_TESTING_make_trait_blinding_key (unsigned int index,
|
TALER_TESTING_make_trait_blinding_key (
|
||||||
const struct TALER_DenominationBlindingKeyP *blinding_key)
|
unsigned int index,
|
||||||
|
const struct TALER_DenominationBlindingKeyP *blinding_key)
|
||||||
{
|
{
|
||||||
struct TALER_TESTING_Trait ret = {
|
struct TALER_TESTING_Trait ret = {
|
||||||
.index = index,
|
.index = index,
|
||||||
|
@ -2,21 +2,24 @@
|
|||||||
This file is part of TALER
|
This file is part of TALER
|
||||||
Copyright (C) 2018 Taler Systems SA
|
Copyright (C) 2018 Taler Systems SA
|
||||||
|
|
||||||
TALER is free software; you can redistribute it and/or modify it under the
|
TALER is free software; you can redistribute it and/or modify
|
||||||
terms of the GNU General Public License as published by the Free Software
|
it under the terms of the GNU General Public License as
|
||||||
Foundation; either version 3, or (at your option) any later version.
|
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
|
TALER is distributed in the hope that it will be useful, but
|
||||||
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
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
|
You should have received a copy of the GNU General Public
|
||||||
TALER; see the file COPYING. If not, see
|
License along with TALER; see the file COPYING. If not, see
|
||||||
<http://www.gnu.org/licenses/>
|
<http://www.gnu.org/licenses/>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @file exchange-lib/testing_api_trait_denom_sig.c
|
* @file exchange-lib/testing_api_trait_denom_sig.c
|
||||||
* @brief main interpreter loop for testcases
|
* @brief offer denomination signatures as traits
|
||||||
* @author Christian Grothoff
|
* @author Christian Grothoff
|
||||||
* @author Marcello Stanisci
|
* @author Marcello Stanisci
|
||||||
*/
|
*/
|
||||||
@ -34,14 +37,16 @@
|
|||||||
* Obtain a denomination signature from a @a cmd.
|
* Obtain a denomination signature from a @a cmd.
|
||||||
*
|
*
|
||||||
* @param cmd command to extract trait from
|
* @param cmd command to extract trait from
|
||||||
* @param selector which signature to pick if @a cmd has multiple on offer
|
* @param selector which signature to pick if @a cmd has multiple
|
||||||
|
* on offer
|
||||||
* @param denom_sig[out] set to the signature
|
* @param denom_sig[out] set to the signature
|
||||||
* @return #GNUNET_OK on success
|
* @return #GNUNET_OK on success
|
||||||
*/
|
*/
|
||||||
int
|
int
|
||||||
TALER_TESTING_get_trait_denom_sig (const struct TALER_TESTING_Command *cmd,
|
TALER_TESTING_get_trait_denom_sig (
|
||||||
unsigned int index,
|
const struct TALER_TESTING_Command *cmd,
|
||||||
struct TALER_DenominationSignature **denom_sig)
|
unsigned int index,
|
||||||
|
struct TALER_DenominationSignature **denom_sig)
|
||||||
{
|
{
|
||||||
return cmd->traits (cmd->cls,
|
return cmd->traits (cmd->cls,
|
||||||
(void **) denom_sig,
|
(void **) denom_sig,
|
||||||
@ -51,8 +56,9 @@ TALER_TESTING_get_trait_denom_sig (const struct TALER_TESTING_Command *cmd,
|
|||||||
|
|
||||||
|
|
||||||
struct TALER_TESTING_Trait
|
struct TALER_TESTING_Trait
|
||||||
TALER_TESTING_make_trait_denom_sig (unsigned int index,
|
TALER_TESTING_make_trait_denom_sig (
|
||||||
const struct TALER_DenominationSignature *denom_sig)
|
unsigned int index,
|
||||||
|
const struct TALER_DenominationSignature *denom_sig)
|
||||||
{
|
{
|
||||||
struct TALER_TESTING_Trait ret = {
|
struct TALER_TESTING_Trait ret = {
|
||||||
.index = index,
|
.index = index,
|
||||||
|
@ -1309,4 +1309,27 @@ TALER_TESTING_make_trait_order_id
|
|||||||
(unsigned int index,
|
(unsigned int index,
|
||||||
const char *order_id);
|
const char *order_id);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Obtain an amount from a @a cmd.
|
||||||
|
*
|
||||||
|
* @param cmd command to extract trait from
|
||||||
|
* @param selector which amount to pick if @a cmd has multiple
|
||||||
|
* on offer
|
||||||
|
* @param amount[out] set to the amount
|
||||||
|
* @return #GNUNET_OK on success
|
||||||
|
*/
|
||||||
|
int
|
||||||
|
TALER_TESTING_get_trait_amount_obj (
|
||||||
|
const struct TALER_TESTING_Command *cmd,
|
||||||
|
unsigned int index,
|
||||||
|
struct TALER_Amount **amount);
|
||||||
|
|
||||||
|
|
||||||
|
struct TALER_TESTING_Trait
|
||||||
|
TALER_TESTING_make_trait_amount_obj (
|
||||||
|
unsigned int index,
|
||||||
|
const struct TALER_Amount *amount);
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user