mirror of
https://github.com/offen/docker-volume-backup.git
synced 2024-11-10 17:05:31 +08:00
1e39ac41f4
* Try running tests in Docker * Spawn new container for each test * Store test artifacts outside of mount * When requested, build up to date image in test script * sudo is unneccessary in containerized test env * Skip azure test * Backdate fixture file in JSON database * Pin versions for azure tools * Mount temp volume for /var/lib/docker to prevent dangling ones created by VOLUME instruction * Fail backdating tests with message * Add some documentation on test setup * Cache images * Run compose stacks with shortened default timeout
41 lines
1,012 B
Bash
Executable file
41 lines
1,012 B
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
|
|
|
|
LOCAL_DIR=$(mktemp -d)
|
|
|
|
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_DIR:/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_DIR/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"
|