aboutsummaryrefslogtreecommitdiff
path: root/integrationtests/test-base.sh
blob: 45554f0bb4397c778121bc83a993c3516637ecee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/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"

shutdown_services

exit 0