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
29 lines
513 B
Bash
29 lines
513 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
cd $(dirname $0)
|
|
. ../util.sh
|
|
current_test=$(basename $(pwd))
|
|
|
|
mkdir -p local
|
|
|
|
docker compose up -d --quiet-pull
|
|
sleep 5
|
|
docker compose exec backup backup
|
|
|
|
docker compose down --volumes
|
|
|
|
out=$(mktemp -d)
|
|
sudo tar --same-owner -xvf ./local/test.tar.gz -C "$out"
|
|
|
|
if [ ! -f "$out/backup/data/me.txt" ]; then
|
|
fail "Expected file was not found."
|
|
fi
|
|
pass "Expected file was found."
|
|
|
|
if [ -f "$out/backup/data/skip.me" ]; then
|
|
fail "Ignored file was found."
|
|
fi
|
|
pass "Ignored file was not found."
|