mirror of
https://github.com/offen/docker-volume-backup.git
synced 2024-11-22 13:20:29 +01:00
Add test case as per #187
This commit is contained in:
parent
81e36289c1
commit
24796928e9
28
test/order/docker-compose.yml
Normal file
28
test/order/docker-compose.yml
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
version: "3"
|
||||||
|
|
||||||
|
services:
|
||||||
|
rsync:
|
||||||
|
image: eeacms/rsync
|
||||||
|
tty: true
|
||||||
|
restart: unless-stopped
|
||||||
|
labels:
|
||||||
|
- docker-volume-backup.exec-label=order
|
||||||
|
- docker-volume-backup.archive-pre=sh -c "rsync -aAX --ignore-missing-args --delete-missing-args /data/ /bu/"
|
||||||
|
- docker-volume-backup.archive-post=sh -c "rm -rf /bu/*"
|
||||||
|
volumes:
|
||||||
|
- ./fixture:/data:ro
|
||||||
|
- bu:/bu
|
||||||
|
|
||||||
|
backup:
|
||||||
|
image: offen/docker-volume-backup:${TEST_VERSION:-canary}
|
||||||
|
restart: always
|
||||||
|
environment:
|
||||||
|
BACKUP_FILENAME: backup.tar.gz
|
||||||
|
BACKUP_EXEC_LABEL: order
|
||||||
|
volumes:
|
||||||
|
- bu:/backup/order:ro
|
||||||
|
- ./local:/archive
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
bu:
|
1
test/order/fixture/test.txt
Normal file
1
test/order/fixture/test.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
ok
|
26
test/order/run.sh
Normal file
26
test/order/run.sh
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
cd $(dirname $0)
|
||||||
|
. ../util.sh
|
||||||
|
current_test=$(basename $(pwd))
|
||||||
|
|
||||||
|
mkdir -p local
|
||||||
|
|
||||||
|
docker compose up -d
|
||||||
|
sleep 10
|
||||||
|
|
||||||
|
docker compose exec backup backup
|
||||||
|
|
||||||
|
if [ ! -f "./local/backup.tar.gz" ]; then
|
||||||
|
fail "Could not find expected backup file."
|
||||||
|
fi
|
||||||
|
|
||||||
|
tmp_dir=$(mktemp -d)
|
||||||
|
tar -xvf ./local/backup.tar.gz -C $tmp_dir
|
||||||
|
if [ ! -f "$tmp_dir/backup/order/test.txt" ]; then
|
||||||
|
fail "Could not find expected file in untared archive."
|
||||||
|
fi
|
||||||
|
|
||||||
|
docker compose down --volumes
|
Loading…
Reference in New Issue
Block a user