mirror of
https://github.com/offen/docker-volume-backup.git
synced 2026-04-19 15:22:40 +02:00
Add test case as per #187
This commit is contained in:
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
|
||||
Reference in New Issue
Block a user