docker-duplicity-cron/tests/test.sh

68 lines
1.8 KiB
Bash
Raw Normal View History

2018-05-13 17:31:31 +00:00
#! /bin/bash
2018-08-10 18:20:47 +00:00
set -e
2018-05-13 17:31:31 +00:00
image=$1
if [ "$IN_CONTAINER" != "true" ] ; then
# Run the test script within the container
docker run --rm \
-e IN_CONTAINER=true \
-e SKIP_ON_START=true \
-v "$(pwd)/test.sh:/test.sh" \
$image \
bash -c "/test.sh"
else
echo "Performing backup tests"
echo "Verify cron and crontab exist"
type cron
type crontab
echo "Create test data..."
mkdir -p /data && echo Test > /data/test.txt
echo "Making backup..."
2019-02-01 22:01:51 +00:00
/cron-exec.sh /backup.sh || { cat /cron.log && exit 1; }
2018-05-13 17:31:31 +00:00
echo "Verify backup..."
2019-02-01 22:01:51 +00:00
/cron-exec.sh /verify.sh || { cat /cron.log && exit 1; }
2018-05-13 17:31:31 +00:00
echo "Delete test data..."
rm -fr /data/*
echo "Verify deleted..."
test -f /data/test.txt && exit 1 || echo "Gone"
echo "Restore backup..."
2019-02-01 22:01:51 +00:00
/cron-exec.sh /restore.sh || { cat /cron.log && exit 1; }
/healthcheck.sh || { cat /cron.log && exit 1; }
2018-05-13 17:31:31 +00:00
2018-08-10 18:20:47 +00:00
echo "Verify restore..."
test -f /data/test.txt
cat /data/test.txt
2018-05-13 17:31:31 +00:00
echo "Verify backup..."
2019-02-01 22:01:51 +00:00
/cron-exec.sh /verify.sh || { cat /cron.log && exit 1; }
2018-05-13 17:31:31 +00:00
echo "Delete test data again..."
rm -fr /data/*
echo "Verify deleted..."
test -f /data/test.txt && exit 1 || echo "Gone"
echo "Simulate a restart with RESTORE_ON_EMPTY_START..."
2019-02-01 22:01:51 +00:00
RESTORE_ON_EMPTY_START=true /start.sh || { cat /cron.log && exit 1; }
/healthcheck.sh || { cat /cron.log && exit 1; }
2018-05-13 17:31:31 +00:00
echo "Verify restore happened..."
test -f /data/test.txt
2018-08-10 18:20:47 +00:00
cat /data/test.txt
2018-05-13 17:31:31 +00:00
echo "Verify restore with incorrect passphrase fails..."
echo "Fail to restore backup..."
2019-02-01 21:48:00 +00:00
PASSPHRASE=Incorrect.Mule.Solar.Paperclip /cron-exec.sh /restore.sh && exit 1 || echo "OK"
echo "Verify failed healthcheck"
/healthcheck.sh && exit 1 || echo "OK"
2018-05-13 17:31:31 +00:00
fi