2022-02-22 07:53:33 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
cd $(dirname $0)
|
2022-06-23 14:40:29 +02:00
|
|
|
. ../util.sh
|
|
|
|
current_test=$(basename $(pwd))
|
2022-02-22 07:53:33 +01:00
|
|
|
|
|
|
|
docker-compose up -d
|
|
|
|
sleep 30 # mariadb likes to take a bit before responding
|
|
|
|
|
|
|
|
docker-compose exec backup backup
|
|
|
|
sudo cp -r $(docker volume inspect --format='{{ .Mountpoint }}' commands_archive) ./local
|
|
|
|
|
|
|
|
tar -xvf ./local/test.tar.gz
|
|
|
|
if [ ! -f ./backup/data/dump.sql ]; then
|
2022-06-23 14:40:29 +02:00
|
|
|
fail "Could not find file written by pre command."
|
2022-02-22 07:53:33 +01:00
|
|
|
fi
|
2022-06-23 14:40:29 +02:00
|
|
|
pass "Found expected file."
|
2022-02-22 07:53:33 +01:00
|
|
|
|
2022-07-15 09:34:01 +02:00
|
|
|
if [ -f ./backup/data/not-relevant.txt ]; then
|
|
|
|
fail "Command ran for container with other label."
|
|
|
|
fi
|
|
|
|
pass "Command did not run for container with other label."
|
|
|
|
|
2022-02-22 07:53:33 +01:00
|
|
|
if [ -f ./backup/data/post.txt ]; then
|
2022-06-23 14:40:29 +02:00
|
|
|
fail "File created in post command was present in backup."
|
2022-02-22 07:53:33 +01:00
|
|
|
fi
|
2022-06-23 14:40:29 +02:00
|
|
|
pass "Did not find unexpected file."
|
2022-02-22 07:53:33 +01:00
|
|
|
|
|
|
|
docker-compose down --volumes
|
|
|
|
sudo rm -rf ./local
|
|
|
|
|
|
|
|
|
2022-06-23 14:40:29 +02:00
|
|
|
info "Running commands test in swarm mode next."
|
2022-02-22 07:53:33 +01:00
|
|
|
|
|
|
|
docker swarm init
|
|
|
|
|
|
|
|
docker stack deploy --compose-file=docker-compose.yml test_stack
|
|
|
|
|
|
|
|
while [ -z $(docker ps -q -f name=backup) ]; do
|
2022-06-23 14:40:29 +02:00
|
|
|
info "Backup container not ready yet. Retrying."
|
2022-02-22 07:53:33 +01:00
|
|
|
sleep 1
|
|
|
|
done
|
|
|
|
|
|
|
|
sleep 20
|
|
|
|
|
|
|
|
docker exec $(docker ps -q -f name=backup) backup
|
|
|
|
|
|
|
|
sudo cp -r $(docker volume inspect --format='{{ .Mountpoint }}' test_stack_archive) ./local
|
|
|
|
|
|
|
|
tar -xvf ./local/test.tar.gz
|
|
|
|
if [ ! -f ./backup/data/dump.sql ]; then
|
2022-06-23 14:40:29 +02:00
|
|
|
fail "Could not find file written by pre command."
|
2022-02-22 07:53:33 +01:00
|
|
|
fi
|
2022-06-23 14:40:29 +02:00
|
|
|
pass "Found expected file."
|
2022-02-22 07:53:33 +01:00
|
|
|
|
|
|
|
if [ -f ./backup/data/post.txt ]; then
|
2022-06-23 14:40:29 +02:00
|
|
|
fail "File created in post command was present in backup."
|
2022-02-22 07:53:33 +01:00
|
|
|
fi
|
2022-06-23 14:40:29 +02:00
|
|
|
pass "Did not find unexpected file."
|
2022-02-22 07:53:33 +01:00
|
|
|
|
|
|
|
docker stack rm test_stack
|
|
|
|
docker swarm leave --force
|