2020-01-14 15:57:36 +01:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
|
|
|
(C) 2020 Taler Systems SA
|
|
|
|
|
|
|
|
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/>
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @file util/test_payto.c
|
|
|
|
* @brief Tests for payto helpers
|
|
|
|
* @author Christian Grothoff
|
|
|
|
*/
|
|
|
|
#include "platform.h"
|
|
|
|
#include "taler_util.h"
|
|
|
|
|
2020-01-14 23:54:43 +01:00
|
|
|
#define CHECK(a,b) do { \
|
|
|
|
if (0 != strcmp (a,b)) { \
|
|
|
|
GNUNET_break (0); \
|
|
|
|
fprintf (stderr, "Got %s, wanted %s\n", b, a); \
|
|
|
|
GNUNET_free (b); \
|
|
|
|
return 1; \
|
|
|
|
} else { \
|
|
|
|
GNUNET_free (b); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
2020-01-14 15:57:36 +01:00
|
|
|
|
|
|
|
int
|
|
|
|
main (int argc,
|
|
|
|
const char *const argv[])
|
|
|
|
{
|
2020-01-14 23:54:43 +01:00
|
|
|
char *r;
|
2020-01-14 15:57:36 +01:00
|
|
|
|
2020-03-27 17:28:33 +01:00
|
|
|
(void) argc;
|
|
|
|
(void) argv;
|
2020-01-14 23:54:43 +01:00
|
|
|
GNUNET_log_setup ("test-payto",
|
|
|
|
"WARNING",
|
|
|
|
NULL);
|
2020-01-15 11:48:41 +01:00
|
|
|
r = TALER_xtalerbank_account_from_payto (
|
|
|
|
"payto://x-taler-bank/localhost:1080/alice");
|
|
|
|
CHECK ("alice",
|
|
|
|
r);
|
|
|
|
r = TALER_xtalerbank_account_from_payto (
|
|
|
|
"payto://x-taler-bank/localhost:1080/alice?subject=hello&amount=EUR:1");
|
|
|
|
CHECK ("alice",
|
|
|
|
r);
|
2020-01-14 15:57:36 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* end of test_payto.c */
|