summaryrefslogtreecommitdiff
path: root/integrationtests/test-base.sh
blob: 80ac466f72fea1150cb46a1b8a2314bd1bb076f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash
# Script to generate the basic database for auditor
# testing from a 'correct' interaction between exchange,
# wallet and merchant.

source "common.sh"
setup_config "base"
setup_services
launch_services
wait_for_services

# run wallet CLI
echo "Running wallet"
taler-wallet-cli testing integrationtest -e "$EXCHANGE_URL" -m "$MERCHANT_URL" -b "$BANK_URL"

echo "SUCCESS"
exit 0