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
|
|
|
|
2023-09-02 15:17:46 +02:00
|
|
|
export LOCAL_DIR=$(mktemp -d)
|
|
|
|
export TMP_DIR=$(mktemp -d)
|
2023-04-02 19:41:00 +02:00
|
|
|
|
2023-08-27 19:19:11 +02:00
|
|
|
docker compose up -d --quiet-pull
|
2022-02-22 07:53:33 +01:00
|
|
|
sleep 30 # mariadb likes to take a bit before responding
|
|
|
|
|
2023-01-07 18:50:27 +01:00
|
|
|
docker compose exec backup backup
|
2022-02-22 07:53:33 +01:00
|
|
|
|
2023-09-02 15:17:46 +02:00
|
|
|
tar -xvf "$LOCAL_DIR/test.tar.gz" -C $TMP_DIR
|
|
|
|
if [ ! -f "$TMP_DIR/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
|
|
|
|
2023-09-02 15:17:46 +02:00
|
|
|
if [ -f "$TMP_DIR/backup/data/not-relevant.txt" ]; then
|
2022-07-15 09:34:01 +02:00
|
|
|
fail "Command ran for container with other label."
|
|
|
|
fi
|
|
|
|
pass "Command did not run for container with other label."
|
|
|
|
|
2023-09-02 15:17:46 +02:00
|
|
|
if [ -f "$TMP_DIR/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
|
|
|
|
2023-01-07 18:50:27 +01:00
|
|
|
docker compose down --volumes
|
2022-02-22 07:53:33 +01:00
|
|
|
|
2022-06-23 14:40:29 +02:00
|
|
|
info "Running commands test in swarm mode next."
|
2022-02-22 07:53:33 +01:00
|
|
|
|
2023-09-02 15:17:46 +02:00
|
|
|
export LOCAL_DIR=$(mktemp -d)
|
|
|
|
export TMP_DIR=$(mktemp -d)
|
|
|
|
|
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
|
|
|
|
|
2023-09-02 15:17:46 +02:00
|
|
|
tar -xvf "$LOCAL_DIR/test.tar.gz" -C $TMP_DIR
|
|
|
|
if [ ! -f "$TMP_DIR/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
|
|
|
|
2023-09-02 15:17:46 +02:00
|
|
|
if [ -f "$TMP_DIR/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."
|