mirror of
https://github.com/ViViDboarder/docker-duplicity-cron.git
synced 2024-11-14 18:06:32 +00:00
72 lines
1.9 KiB
Bash
72 lines
1.9 KiB
Bash
|
#! /bin/bash
|
||
|
set -e
|
||
|
|
||
|
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-pre-scripts.sh:/test.sh" \
|
||
|
-v "$(pwd)/test-pre-scripts:/scripts" \
|
||
|
$image \
|
||
|
bash -c "/test.sh"
|
||
|
else
|
||
|
echo "Performing backup tests"
|
||
|
|
||
|
echo "Verify cron and crontab exist"
|
||
|
type cron
|
||
|
type crontab
|
||
|
|
||
|
echo "Install sqlite3"
|
||
|
apt-get update
|
||
|
apt-get install -y --no-install-recommends sqlite3
|
||
|
|
||
|
echo "Create test data..."
|
||
|
mkdir -p /data
|
||
|
touch /data/test_database.db
|
||
|
sqlite3 /data/test_database.db < /scripts/create-test-data.sql
|
||
|
|
||
|
echo "Making backup..."
|
||
|
/backup.sh
|
||
|
|
||
|
echo "Verify intermediary file is gone"
|
||
|
test -f /data/test_database.db.bak && exit 1 || echo "Gone"
|
||
|
|
||
|
echo "Delete test data..."
|
||
|
rm -fr /data/*
|
||
|
|
||
|
echo "Verify deleted..."
|
||
|
test -f /data/test_database.db && exit 1 || echo "Gone"
|
||
|
|
||
|
echo "Restore backup..."
|
||
|
/restore.sh
|
||
|
|
||
|
echo "Verify restored files exist..."
|
||
|
test -f /data/test_database.db
|
||
|
test -f /data/test_database.db.bak && exit 1 || echo "Gone"
|
||
|
sqlite3 /data/test_database.db "select data from test_table where id = 1"
|
||
|
|
||
|
echo "Delete test data again..."
|
||
|
rm -fr /data/*
|
||
|
|
||
|
echo "Verify deleted..."
|
||
|
test -f /data/test_database.db && exit 1 || echo "Gone"
|
||
|
|
||
|
echo "Simulate a restart with RESTORE_ON_EMPTY_START..."
|
||
|
RESTORE_ON_EMPTY_START=true /start.sh
|
||
|
|
||
|
echo "Verify restore happened..."
|
||
|
test -f /data/test_database.db
|
||
|
test -f /data/test_database.db.bak && exit 1 || echo "Gone"
|
||
|
sqlite3 /data/test_database.db "select data from test_table where id = 1"
|
||
|
|
||
|
echo "Delete test data..."
|
||
|
rm -fr /data/*
|
||
|
|
||
|
echo "Verify restore with incorrect passphrase fails..."
|
||
|
echo "Fail to restore backup..."
|
||
|
PASSPHRASE=Incorrect.Mule.Solar.Paperclip /restore.sh && exit 1 || echo "OK"
|
||
|
fi
|