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
47 lines
1.1 KiB
Bash
Executable File
47 lines
1.1 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
cd $(dirname $0)
|
|
. ../util.sh
|
|
current_test=$(basename $(pwd))
|
|
|
|
docker network create test_network
|
|
docker volume create app_data
|
|
|
|
mkdir -p local
|
|
|
|
docker run -d -q \
|
|
--name offen \
|
|
--network test_network \
|
|
-v app_data:/var/opt/offen/ \
|
|
offen/offen:latest
|
|
|
|
sleep 10
|
|
|
|
docker run --rm -q \
|
|
--network test_network \
|
|
-v app_data:/backup/app_data \
|
|
-v ./local:/archive \
|
|
-v /var/run/docker.sock:/var/run/docker.sock \
|
|
--env BACKUP_COMPRESSION=zst \
|
|
--env BACKUP_FILENAME='test.{{ .Extension }}' \
|
|
--entrypoint backup \
|
|
offen/docker-volume-backup:${TEST_VERSION:-canary}
|
|
|
|
tmp_dir=$(mktemp -d)
|
|
tar -xvf ./local/test.tar.zst --zstd -C $tmp_dir
|
|
if [ ! -f "$tmp_dir/backup/app_data/offen.db" ]; then
|
|
fail "Could not find expected file in untared archive."
|
|
fi
|
|
pass "Found relevant files in untared local backup."
|
|
|
|
# This test does not stop containers during backup. This is happening on
|
|
# purpose in order to cover this setup as well.
|
|
expect_running_containers "1"
|
|
|
|
docker rm $(docker stop offen)
|
|
|
|
docker volume rm app_data
|
|
docker network rm test_network
|