restic-scheduler/itest/validate-tests.sh
Ian Fijolek 28f081c8d0
All checks were successful
continuous-integration/drone/push Build is passing
Add integration testing to verify backup and restoration
Including databases
2023-08-02 14:55:14 -07:00

16 lines
412 B
Bash
Executable File

#! /bin/sh
set -ex
# Check flat file
test -f /data/test.txt
grep "^Hello" /data/test.txt
# Check Sqlite database
test -f /data/test_database.db
sqlite3 /data/test_database.db "select data from test_table where id = 1" | grep "^Test row"
# Check MySql database
mysql --host "$MYSQL_HOST" --user "$MYSQL_USER" --password="$MYSQL_PWD" main <<-EOF | grep "^Test row"
select data from test_table where id = 1;
EOF