mirror of
https://github.com/offen/docker-volume-backup.git
synced 2024-11-10 00:30:29 +01:00
ad4e2af83f
* Skip backends while pruning * Add pruning test step and silence download log for better readability * Add test cases for pruning in all backends Also add -q or --quiet-pull to all tests. * Add test case for skipping backends while pruning * Adjusted test logging, generate new test spec file * Gitignore for temp test file
32 lines
611 B
Bash
Executable File
32 lines
611 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
cd $(dirname $0)
|
|
. ../util.sh
|
|
current_test=$(basename $(pwd))
|
|
|
|
mkdir -p local
|
|
|
|
docker compose up -d --quiet-pull
|
|
|
|
# sleep until a backup is guaranteed to have happened on the 1 minute schedule
|
|
sleep 100
|
|
|
|
docker compose down --volumes
|
|
|
|
if [ ! -f ./local/conf.tar.gz ]; then
|
|
fail "Config from file was not used."
|
|
fi
|
|
pass "Config from file was used."
|
|
|
|
if [ ! -f ./local/other.tar.gz ]; then
|
|
fail "Run on same schedule did not succeed."
|
|
fi
|
|
pass "Run on same schedule succeeded."
|
|
|
|
if [ -f ./local/never.tar.gz ]; then
|
|
fail "Unexpected file was found."
|
|
fi
|
|
pass "Unexpected cron did not run."
|