diff options
author | Torsten Grote <t@grobox.de> | 2020-05-08 10:13:52 -0300 |
---|---|---|
committer | Torsten Grote <t@grobox.de> | 2020-05-08 10:13:52 -0300 |
commit | 122574fe05a7f568d4fa968ff4fcde0c403c8a4d (patch) | |
tree | 0e3f98ed83a0a35da03b5b5233287b626285d9c8 /integrationtests/test-tip.sh | |
parent | 06aa5abcc7b96236b42fdf33af347f09632b6560 (diff) |
Add test for refund and tip, fix cli testing gen-*-uri
Diffstat (limited to 'integrationtests/test-tip.sh')
-rwxr-xr-x | integrationtests/test-tip.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/integrationtests/test-tip.sh b/integrationtests/test-tip.sh new file mode 100755 index 000000000..1a0ea2817 --- /dev/null +++ b/integrationtests/test-tip.sh @@ -0,0 +1,19 @@ +#!/bin/bash +# Script to check that the wallet can handle tip URIs and actually process the tips + +source "common.sh" +normal_start_and_wait "tip" + +# TODO fund exchange tipping reserve: 404 tipping reserve unknown at exchange +TIP_URI=$(taler-wallet-cli --wallet-db="$WALLET_DB" --no-throttle testing gen-tip-uri \ + -m "$MERCHANT_URL" -k sandbox -a "TESTKUDOS:5" 2>>"$LOG" | grep -E -m 1 -o "taler://tip.*insecure=1") +echo -n "Balance after tip: " +taler-wallet-cli --wallet-db="$WALLET_DB" balance 2>>"$LOG" +echo "Handling tip: $TIP_URI" +taler-wallet-cli --wallet-db="$WALLET_DB" --no-throttle handle-uri "$TIP_URI" 2>"$LOG" +taler-wallet-cli --wallet-db="$WALLET_DB" run-until-done 2>>"$LOG" >>"$LOG" +echo -n "Balance after first tip: " +taler-wallet-cli --wallet-db="$WALLET_DB" balance 2>>"$LOG" + +echo "SUCCESS" +exit 0 |