2022-09-12 11:33:56 +02:00
|
|
|
#!/bin/bash
|
2021-01-13 19:47:45 +01:00
|
|
|
|
|
|
|
set -eu
|
|
|
|
|
2022-09-09 22:26:11 +02:00
|
|
|
# Exit, with status code "skip" (no 'real' failure)
|
2022-09-12 11:33:56 +02:00
|
|
|
function exit_skip() {
|
|
|
|
echo "SKIPPING test: $1"
|
2022-09-09 22:26:11 +02:00
|
|
|
exit 77
|
|
|
|
}
|
2021-01-13 19:47:45 +01:00
|
|
|
|
2022-09-09 22:26:11 +02:00
|
|
|
# Exit, with error message (hard failure)
|
2022-09-12 11:33:56 +02:00
|
|
|
function exit_fail() {
|
|
|
|
echo "FAILING test: $1"
|
2022-09-09 22:26:11 +02:00
|
|
|
exit 1
|
|
|
|
}
|
2021-01-13 19:47:45 +01:00
|
|
|
|
2022-09-12 11:33:56 +02:00
|
|
|
# Cleanup to run whenever we exit
|
|
|
|
function cleanup() {
|
|
|
|
if test ! -z ${POSTGRES_PATH:-}
|
|
|
|
then
|
|
|
|
${POSTGRES_PATH}/pg_ctl -D $TMPDIR stop &> /dev/null || true
|
|
|
|
fi
|
|
|
|
for n in `jobs -p`
|
|
|
|
do
|
|
|
|
kill $n 2> /dev/null || true
|
|
|
|
done
|
|
|
|
wait
|
|
|
|
}
|
|
|
|
|
|
|
|
# Install cleanup handler (except for kill -9)
|
|
|
|
trap cleanup EXIT
|
|
|
|
|
|
|
|
function check_with_database()
|
2022-09-09 22:26:11 +02:00
|
|
|
{
|
|
|
|
echo -n "Testing synchronization logic ..."
|
2021-01-13 19:47:45 +01:00
|
|
|
|
2022-09-09 22:26:11 +02:00
|
|
|
dropdb talercheck-in 2> /dev/null || true
|
|
|
|
dropdb talercheck-out 2> /dev/null || true
|
2021-01-13 19:47:45 +01:00
|
|
|
|
2022-09-09 22:26:11 +02:00
|
|
|
createdb talercheck-in || exit 77
|
|
|
|
createdb talercheck-out || exit 77
|
|
|
|
echo -n "."
|
2021-01-13 19:47:45 +01:00
|
|
|
|
2022-09-09 22:26:11 +02:00
|
|
|
taler-exchange-dbinit -c test-sync-out.conf
|
2021-01-13 19:47:45 +01:00
|
|
|
echo -n "."
|
2022-09-09 22:26:11 +02:00
|
|
|
psql -Aqt talercheck-in -q -1 -f $1.sql >/dev/null || exit_skip "Failed to load database"
|
2021-01-13 19:47:45 +01:00
|
|
|
|
2022-09-09 22:26:11 +02:00
|
|
|
echo -n "."
|
|
|
|
taler-auditor-sync -s test-sync-in.conf -d test-sync-out.conf -t
|
|
|
|
|
|
|
|
# cs_nonce_locks excluded: no point
|
|
|
|
for table in denominations denomination_revocations wire_targets reserves reserves_in reserves_close reserves_out auditors auditor_denom_sigs exchange_sign_keys signkey_revocations extensions extension_details known_coins refresh_commitments refresh_revealed_coins refresh_transfer_keys deposits refunds wire_out aggregation_tracking wire_fee recoup recoup_refresh
|
|
|
|
do
|
|
|
|
echo -n "."
|
|
|
|
CIN=`echo "SELECT COUNT(*) FROM exchange.$table" | psql talercheck-in -Aqt`
|
|
|
|
COUT=`echo "SELECT COUNT(*) FROM exchange.$table" | psql talercheck-out -Aqt`
|
|
|
|
|
|
|
|
if test ${CIN} != ${COUT}
|
|
|
|
then
|
|
|
|
dropdb talercheck-in
|
|
|
|
dropdb talercheck-out
|
|
|
|
echo "FAIL"
|
|
|
|
exit_fail "Record count mismatch: $CIN / $COUT in table $table"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
echo -n ". "
|
|
|
|
dropdb talercheck-in
|
|
|
|
dropdb talercheck-out
|
2021-01-13 19:47:45 +01:00
|
|
|
|
2022-09-09 22:26:11 +02:00
|
|
|
echo "PASS"
|
|
|
|
}
|
2021-01-13 19:47:45 +01:00
|
|
|
|
2022-09-09 22:26:11 +02:00
|
|
|
|
|
|
|
|
|
|
|
# Postgres database to use
|
|
|
|
DB=auditor-basedb
|
|
|
|
|
|
|
|
# Configuration file to use
|
|
|
|
CONF=${DB}.conf
|
|
|
|
|
|
|
|
# test required commands exist
|
|
|
|
echo "Testing for jq"
|
|
|
|
jq -h > /dev/null || exit_skip "jq required"
|
|
|
|
echo "Testing for faketime"
|
|
|
|
faketime -h > /dev/null || exit_skip "faketime required"
|
|
|
|
echo "Testing for libeufin"
|
2022-09-12 11:33:56 +02:00
|
|
|
libeufin-cli --help >/dev/null </dev/null 2> /dev/null || exit_skip "libeufin required"
|
2022-09-09 22:26:11 +02:00
|
|
|
echo "Testing for pdflatex"
|
|
|
|
which pdflatex > /dev/null </dev/null || exit_skip "pdflatex required"
|
|
|
|
echo "Testing for taler-wallet-cli"
|
|
|
|
taler-wallet-cli -h >/dev/null </dev/null 2>/dev/null || exit_skip "taler-wallet-cli required"
|
2022-09-12 11:33:56 +02:00
|
|
|
|
|
|
|
echo -n "Testing for Postgres"
|
|
|
|
HAVE_INITDB=`find /usr -name "initdb" | grep postgres` || exit_skip " MISSING"
|
|
|
|
echo " FOUND"
|
|
|
|
echo -n "Setting up Postgres DB"
|
|
|
|
INITDB_BIN=`find /usr -name "initdb" | grep bin/initdb | grep postgres | sort -n | tail -n1`
|
|
|
|
POSTGRES_PATH=`basename $INITDB_BIN`
|
|
|
|
TMPDIR=`mktemp -d /tmp/taler-test-postgresXXXXXX`
|
|
|
|
$INITDB_BIN --no-sync --auth=trust -D ${TMPDIR} > postgres-dbinit.log 2> postgres-dbinit.err
|
|
|
|
echo " DONE"
|
|
|
|
mkdir ${TMPDIR}/sockets
|
|
|
|
echo -n "Launching Postgres service"
|
|
|
|
cat - >> $TMPDIR/postgresql.conf <<EOF
|
|
|
|
unix_socket_directories='${TMPDIR}/sockets'
|
|
|
|
fsync=off
|
|
|
|
max_wal_senders=0
|
|
|
|
synchronous_commit=off
|
|
|
|
wal_level=minimal
|
|
|
|
listen_addresses=''
|
|
|
|
EOF
|
|
|
|
cat $TMPDIR/pg_hba.conf | grep -v host > $TMPDIR/pg_hba.conf.new
|
|
|
|
mv $TMPDIR/pg_hba.conf.new $TMPDIR/pg_hba.conf
|
|
|
|
${POSTGRES_PATH}/pg_ctl -D $TMPDIR -l /dev/null start > postgres-start.log 2> postgres-start.err
|
|
|
|
echo " DONE"
|
|
|
|
PGHOST="$TMPDIR/sockets"
|
|
|
|
EXPORT PGHOST="@POSTGRES_SOCKET"
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-09-09 22:26:11 +02:00
|
|
|
MYDIR=`mktemp -d /tmp/taler-auditor-basedbXXXXXX`
|
|
|
|
echo "Generating fresh database at $MYDIR"
|
|
|
|
if faketime -f '-1 d' ./generate-auditor-basedb.sh $MYDIR/basedb
|
|
|
|
then
|
|
|
|
check_with_database $MYDIR/basedb
|
|
|
|
if test x$fail != x0
|
|
|
|
then
|
|
|
|
exit $fail
|
|
|
|
else
|
|
|
|
echo "Cleaning up $MYDIR..."
|
|
|
|
rm -rf $MYDIR || echo "Removing $MYDIR failed"
|
2022-09-12 11:33:56 +02:00
|
|
|
rm -rf $TMPDIR || echo "Removing $TMPDIR failed"
|
2022-09-09 22:26:11 +02:00
|
|
|
fi
|
|
|
|
else
|
|
|
|
echo "Generation failed"
|
|
|
|
exit 77
|
|
|
|
fi
|
2021-01-13 19:47:45 +01:00
|
|
|
exit 0
|