libeufin

Integration and sandbox testing for FinTech APIs and data formats
Log | Files | Refs | Submodules | README | LICENSE

commit de81d3bc09d05e58baddea7a0eb792b923626b4c
parent b39c7a19aab086279959b6c16a292d3111b532aa
Author: MS <ms@taler.net>
Date:   Mon,  8 Jun 2020 17:38:44 +0200

testing with multiple calls to /transfer

Diffstat:
Mintegration-tests/test-taler-facade.py | 15+++++++++++++++
1 file changed, 15 insertions(+), 0 deletions(-)

diff --git a/integration-tests/test-taler-facade.py b/integration-tests/test-taler-facade.py @@ -170,6 +170,21 @@ assertResponse( ) +assertResponse( + post( + "http://localhost:5001/facades/my-facade/taler/transfer", + json=dict( + request_uid="1", + amount="EUR:2", + exchange_base_url="http//url", + wtid="more nice", + credit_account="payto://iban/THEBIC/THEIBAN?name=theName" + ), + headers=dict(Authorization=USER_AUTHORIZATION_HEADER) + ) + +) + print("Sleeping 5s, to let the automatic tasks ingest the history.") sleep(5)