diff options
author | Florian Dold <florian.dold@gmail.com> | 2020-08-13 00:41:53 +0530 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2020-08-13 00:41:53 +0530 |
commit | db65f0a20669a81cb7db4425d7d044b8ff49952a (patch) | |
tree | 280ebbc25fdc3aed12ae3ebbecb692c1b0e39093 /integrationtests/test-tip.sh | |
parent | e9ed3b18672af919efa12364b97fd2b7efe21cd9 (diff) |
remove old tests, superseded by the JS-based harness
Diffstat (limited to 'integrationtests/test-tip.sh')
-rwxr-xr-x | integrationtests/test-tip.sh | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/integrationtests/test-tip.sh b/integrationtests/test-tip.sh deleted file mode 100755 index 8bdcc6ef3..000000000 --- a/integrationtests/test-tip.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/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" - -exit_success |