2016-04-17 23:14:23 +02:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
2021-06-19 05:00:45 +02:00
|
|
|
(C) 2016-2021 Taler Systems SA
|
2016-04-17 23:14:23 +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-04-17 23:14:23 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2017-04-20 07:49:56 +02:00
|
|
|
* @file include/taler_fakebank_lib.h
|
2016-04-17 23:14:23 +02:00
|
|
|
* @brief API for a library that fakes being a Taler bank
|
|
|
|
* @author Christian Grothoff <christian@grothoff.org>
|
|
|
|
*/
|
2016-06-08 11:35:28 +02:00
|
|
|
#ifndef TALER_FAKEBANK_H
|
|
|
|
#define TALER_FAKEBANK_H
|
2016-04-17 23:14:23 +02:00
|
|
|
|
|
|
|
#include "taler_util.h"
|
|
|
|
#include <gnunet/gnunet_json_lib.h>
|
|
|
|
#include "taler_json_lib.h"
|
|
|
|
#include <microhttpd.h>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle for the fake bank.
|
|
|
|
*/
|
2016-06-08 11:35:28 +02:00
|
|
|
struct TALER_FAKEBANK_Handle;
|
2016-04-17 23:14:23 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2020-01-18 14:36:49 +01:00
|
|
|
* Start the fake bank. The fake bank will, like the normal bank, listen for
|
|
|
|
* requests for /admin/add/incoming and /transfer. However, instead of
|
|
|
|
* executing or storing those requests, it will simply allow querying whether
|
|
|
|
* such a request has been made via #TALER_FAKEBANK_check_debit() and
|
|
|
|
* #TALER_FAKEBANK_check_credit() as well as the history API.
|
2016-04-17 23:14:23 +02:00
|
|
|
*
|
|
|
|
* This is useful for writing testcases to check whether the exchange
|
|
|
|
* would have issued the correct wire transfer orders.
|
|
|
|
*
|
|
|
|
* @param port port to listen to
|
2020-02-04 21:59:43 +01:00
|
|
|
* @param currency which currency should the bank offer
|
2016-04-17 23:14:23 +02:00
|
|
|
* @return NULL on error
|
|
|
|
*/
|
2016-06-08 11:35:28 +02:00
|
|
|
struct TALER_FAKEBANK_Handle *
|
2020-02-04 21:59:43 +01:00
|
|
|
TALER_FAKEBANK_start (uint16_t port,
|
|
|
|
const char *currency);
|
2016-04-17 23:14:23 +02:00
|
|
|
|
|
|
|
|
2021-06-19 05:00:45 +02:00
|
|
|
/**
|
|
|
|
* Start the fake bank. The fake bank will, like the normal bank, listen for
|
|
|
|
* requests for /admin/add/incoming and /transfer. However, instead of
|
|
|
|
* executing or storing those requests, it will simply allow querying whether
|
|
|
|
* such a request has been made via #TALER_FAKEBANK_check_debit() and
|
|
|
|
* #TALER_FAKEBANK_check_credit() as well as the history API.
|
|
|
|
*
|
|
|
|
* This is useful for writing testcases to check whether the exchange
|
|
|
|
* would have issued the correct wire transfer orders.
|
|
|
|
*
|
|
|
|
* @param port port to listen to
|
|
|
|
* @param currency which currency should the bank offer
|
2021-06-19 08:36:17 +02:00
|
|
|
* @param ram_limit how much memory do we use at most
|
2021-06-19 05:00:45 +02:00
|
|
|
* @param num_threads size of the thread pool, 0 to use the GNUnet scheduler
|
|
|
|
* @return NULL on error
|
|
|
|
*/
|
|
|
|
struct TALER_FAKEBANK_Handle *
|
|
|
|
TALER_FAKEBANK_start2 (uint16_t port,
|
|
|
|
const char *currency,
|
2021-06-19 08:36:17 +02:00
|
|
|
uint64_t ram_limit,
|
2021-08-12 13:13:42 +02:00
|
|
|
unsigned int num_threads);
|
2021-06-19 05:00:45 +02:00
|
|
|
|
|
|
|
|
2016-04-17 23:14:23 +02:00
|
|
|
/**
|
|
|
|
* Check that no wire transfers were ordered (or at least none
|
2020-01-18 16:41:24 +01:00
|
|
|
* that have not been taken care of via #TALER_FAKEBANK_check_debit()
|
|
|
|
* or #TALER_FAKEBANK_check_credit()).
|
2016-04-17 23:14:23 +02:00
|
|
|
* If any transactions are onrecord, return #GNUNET_SYSERR.
|
|
|
|
*
|
2021-06-19 08:36:17 +02:00
|
|
|
* Note that this function only works in
|
|
|
|
* single-threaded mode while nothing else is happening.
|
|
|
|
*
|
2016-04-17 23:14:23 +02:00
|
|
|
* @param h bank instance
|
|
|
|
* @return #GNUNET_OK on success
|
|
|
|
*/
|
|
|
|
int
|
2016-06-08 11:35:28 +02:00
|
|
|
TALER_FAKEBANK_check_empty (struct TALER_FAKEBANK_Handle *h);
|
2016-04-17 23:14:23 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check that the @a want_amount was transferred from the @a
|
2017-06-11 15:25:59 +02:00
|
|
|
* want_debit to the @a want_credit account. If so, set the @a subject
|
2016-04-17 23:14:23 +02:00
|
|
|
* to the transfer identifier and remove the transaction from the
|
|
|
|
* list. If the transaction was not recorded, return #GNUNET_SYSERR.
|
|
|
|
*
|
2021-06-19 08:36:17 +02:00
|
|
|
* Note that this function only works in
|
|
|
|
* single-threaded mode while nothing else is happening.
|
|
|
|
*
|
2016-04-17 23:14:23 +02:00
|
|
|
* @param h bank instance
|
|
|
|
* @param want_amount transfer amount desired
|
|
|
|
* @param want_debit account that should have been debited
|
2021-07-14 14:47:32 +02:00
|
|
|
* @param want_credit account that should have been credited
|
2017-03-02 06:26:12 +01:00
|
|
|
* @param exchange_base_url expected base URL of the exchange,
|
|
|
|
* i.e. "https://example.com/"; may include a port
|
2020-01-12 18:09:41 +01:00
|
|
|
* @param[out] wtid set to the wire transfer identifier
|
2016-04-17 23:14:23 +02:00
|
|
|
* @return #GNUNET_OK on success
|
|
|
|
*/
|
|
|
|
int
|
2020-01-12 17:58:17 +01:00
|
|
|
TALER_FAKEBANK_check_debit (struct TALER_FAKEBANK_Handle *h,
|
|
|
|
const struct TALER_Amount *want_amount,
|
|
|
|
const char *want_debit,
|
|
|
|
const char *want_credit,
|
|
|
|
const char *exchange_base_url,
|
2020-01-12 18:09:41 +01:00
|
|
|
struct TALER_WireTransferIdentifierRawP *wtid);
|
2020-01-12 17:58:17 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check that the @a want_amount was transferred from the @a want_debit to the
|
|
|
|
* @a want_credit account with the @a subject. If so, remove the transaction
|
|
|
|
* from the list. If the transaction was not recorded, return #GNUNET_SYSERR.
|
|
|
|
*
|
2021-06-19 08:36:17 +02:00
|
|
|
* Note that this function only works in
|
|
|
|
* single-threaded mode while nothing else is happening.
|
|
|
|
*
|
2020-01-12 17:58:17 +01:00
|
|
|
* @param h bank instance
|
|
|
|
* @param want_amount transfer amount desired
|
|
|
|
* @param want_debit account that should have been debited
|
2021-07-14 14:49:07 +02:00
|
|
|
* @param want_credit account that should have been credited
|
2020-01-12 17:58:17 +01:00
|
|
|
* @param reserve_pub reserve public key expected in wire subject
|
|
|
|
* @return #GNUNET_OK on success
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
TALER_FAKEBANK_check_credit (struct TALER_FAKEBANK_Handle *h,
|
|
|
|
const struct TALER_Amount *want_amount,
|
|
|
|
const char *want_debit,
|
|
|
|
const char *want_credit,
|
|
|
|
const struct TALER_ReservePublicKeyP *reserve_pub);
|
2016-04-17 23:14:23 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Stop running the fake bank.
|
|
|
|
*
|
|
|
|
* @param h bank to stop
|
|
|
|
*/
|
|
|
|
void
|
2016-06-08 11:35:28 +02:00
|
|
|
TALER_FAKEBANK_stop (struct TALER_FAKEBANK_Handle *h);
|
2016-04-17 23:14:23 +02:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|