summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/cli/test_free_reducer.conf12
-rwxr-xr-xsrc/cli/test_iban.sh25
2 files changed, 13 insertions, 24 deletions
diff --git a/src/cli/test_free_reducer.conf b/src/cli/test_free_reducer.conf
index 364758c..ba11c56 100644
--- a/src/cli/test_free_reducer.conf
+++ b/src/cli/test_free_reducer.conf
@@ -1,15 +1,15 @@
# This file is in the public domain.
# It is used by test_iban.sh
[taler]
-CURRENCY = TESTKUDOS
+CURRENCY = EUR
[anastasis]
DB = postgres
-ANNUAL_FEE = TESTKUDOS:0
-TRUTH_UPLOAD_FEE = TESTKUDOS:0
+ANNUAL_FEE = EUR:0
+TRUTH_UPLOAD_FEE = EUR:0
UPLOAD_LIMIT_MB = 1
ANNUAL_POLICY_UPLOAD_LIMIT = 128
-INSURANCE = TESTKUDOS:0
+INSURANCE = EUR:0
PORT = 8086
SERVER_SALT = BUfO1KGOKYIFlFQg
BUSINESS_NAME = "Data loss Inc."
@@ -19,9 +19,9 @@ BUSINESS_NAME = "Data loss Inc."
PAYMENT_BACKEND_URL = http://localhost:9966/
[authorization-question]
-COST = TESTKUDOS:0.0
+COST = EUR:0.0
[authorization-iban]
ENABLED = YES
-COST = TESTKUDOS:5
+COST = EUR:5
BUSINESS_NAME = "Data loss inc."
diff --git a/src/cli/test_iban.sh b/src/cli/test_iban.sh
index c947518..9cdb475 100755
--- a/src/cli/test_iban.sh
+++ b/src/cli/test_iban.sh
@@ -444,31 +444,20 @@ then
fi
AMOUNT=`jq -r -e .challenge_feedback.\"$NAME_UUID\".details.challenge_amount < $R1FILE`
-NUMBER=`jq -r -e .challenge_feedback.\"$NAME_UUID\".details.wire_transfer_subject < $R1FILE`
-SUBJECT="Anastasis ${NUMBER}"
+SUBJECT=`jq -r -e .challenge_feedback.\"$NAME_UUID\".details.wire_transfer_subject < $R1FILE`
-# FIXME-MS: must do wire transfer using $SUBJECT and $AMOUNT here!
-#
-# This command (see function definition above) wires funds:
-# wire_transfer_to_anastasis "$CURRENCY:1" "Sandbox-only transaction 1"
-# wire_transfer_to_anastasis "$CURRENCY:1" "Sandbox-only transaction 2"
-#
-# This command (see function definition above) checks the history via the facade API:
-# see_anastasis_transactions_via_facade $FACADE_URL
-
-
-bash
+echo -e "Performing authorization wire transfer ..."
+wire_transfer_to_anastasis "${AMOUNT}" "${SUBJECT}"
-echo "TEST INCOMPLETE --- BAILING for now"
-
-exit 77
+echo " OK"
-# Check for inbound wire transfer (fails with 'Failed to load bank access configuration data')
+echo -e "Triggering inbound check ..."
anastasis-helper-authorization-iban -c $CONF -t
+echo " OK"
# Now we should get the secret...
+echo -e "Polling for recovery ..."
anastasis-reducer poll < $R1FILE > $R2FILE
-
echo " OK"
echo -n "Checking recovered secret ..."