2020-04-06 10:45:49 +02:00
|
|
|
#!/bin/bash
|
|
|
|
# Script to generate the basic database for auditor
|
|
|
|
# testing from a 'correct' interaction between exchange,
|
|
|
|
# wallet and merchant.
|
|
|
|
|
2020-05-05 17:58:29 +02:00
|
|
|
source "common.sh"
|
2020-05-08 14:58:47 +02:00
|
|
|
normal_start_and_wait "base"
|
2020-04-06 10:45:49 +02:00
|
|
|
|
|
|
|
# run wallet CLI
|
|
|
|
echo "Running wallet"
|
2020-05-05 17:58:29 +02:00
|
|
|
taler-wallet-cli testing integrationtest -e "$EXCHANGE_URL" -m "$MERCHANT_URL" -b "$BANK_URL"
|
2020-04-06 10:45:49 +02:00
|
|
|
|
2020-05-07 20:33:43 +02:00
|
|
|
echo "SUCCESS"
|
2020-04-06 10:45:49 +02:00
|
|
|
exit 0
|