taler-docs

Documentation for GNU Taler components, APIs and protocols
Log | Files | Refs | README | LICENSE

commit 8fef03b7aaa3ab9da1a997574ec85d473f18722c
parent e887347f3cb932d0b8e2852a78f6893dba39dcbd
Author: Florian Dold <florian.dold@gmail.com>
Date:   Fri, 14 Aug 2020 16:25:11 +0530

document test functionality

Diffstat:
Mtaler-wallet.rst | 81++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-----------
1 file changed, 70 insertions(+), 11 deletions(-)

diff --git a/taler-wallet.rst b/taler-wallet.rst @@ -607,17 +607,6 @@ A typical API sequence for *manual* withdrawals can for example look like this: #. ``"acceptManualWithdrawal"`` after the user confirmed withdrawal with associated fees -Withdraw balance from test environment -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -:Name: ``"withdrawTestkudos"`` -:Description: - Withdraw a balance from the test environment. -:Request: - The request parameters are ignored. -:Response: - On success, the response is an empty object. - Get Details For Bank-integrated Withdrawal ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -832,6 +821,76 @@ Confirm Payment | ConfirmPayResultDone; | ConfirmPayResultPending; +Testing API calls +----------------- + +The following API calls are useful for testing. + +Withdraw balance from the TESTKUDOS environment +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +:Name: ``"withdrawTestkudos"`` +:Description: + Withdraw a balance from the ``TESTKUDOS`` environment. +:Request: + The request parameters are ignored. +:Response: + On success, the response is an empty object. + +Withdraw balance from a test environment +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +:Name: ``"withdrawTestBalance"`` +:Description: + Withdraw a balance from a test environment. +:Request: + .. ts:def:: WithdrawTestBalanceRequest + + interface WithdrawTestBalanceRequest { + amount: string; + bankBaseUrl: string; + exchangeBaseUrl: string; + } +:Response: + On success, the response is an empty object. + +Run integration test +~~~~~~~~~~~~~~~~~~~~ + +:Name: ``"runIntegrationTest"`` +:Description: + Run a basic integration test that does a withdrawal, payment, + refund and again a payment. Useful to generate test data + in the integration tests of other components. +:Request: + .. ts:def:: IntegrationTestArgs + + interface IntegrationTestArgs { + exchangeBaseUrl: string; + bankBaseUrl: string; + merchantBaseUrl: string; + merchantApiKey: string; + amountToWithdraw: string; + amountToSpend: string; + } +:Response: + On success, the response is an empty object. + +Make a test payment +~~~~~~~~~~~~~~~~~~~ + +:Name: ``"testPay"`` +:Description: + Make a test payment with existing funds. +:Request: + .. ts:def:: TestPayArgs + + interface TestPayArgs { + merchantBaseUrl: string; + merchantApiKey: string; + amount: string; + summary: string; + } Global Errors -------------