2025-06-09 14:19:18 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
|
|
cd $(dirname $0)
|
|
|
|
|
. ../util.sh
|
|
|
|
|
current_test=$(basename $(pwd))
|
|
|
|
|
|
|
|
|
|
export LOCAL_DIR=$(mktemp -d)
|
2025-06-11 19:46:41 +02:00
|
|
|
export TMP_DIR=$(mktemp -d)
|
2025-06-09 14:19:18 +02:00
|
|
|
|
2025-06-11 19:46:41 +02:00
|
|
|
docker compose up -d --quiet-pull
|
|
|
|
|
sleep 30 # mariadb likes to take a bit before responding
|
2025-06-09 14:19:18 +02:00
|
|
|
|
2025-06-11 19:46:41 +02:00
|
|
|
docker compose exec backup backup
|
2025-06-09 14:19:18 +02:00
|
|
|
|
2025-06-11 19:46:41 +02:00
|
|
|
tar -xvf "$LOCAL_DIR/test.tar.gz" -C $TMP_DIR
|
2025-06-09 14:19:18 +02:00
|
|
|
if [ ! -f "$TMP_DIR/backup/data/dump.sql" ]; then
|
|
|
|
|
fail "Could not find file written by pre command."
|
|
|
|
|
fi
|
|
|
|
|
pass "Found expected file."
|
|
|
|
|
|
2025-06-11 19:46:41 +02:00
|
|
|
if [ -f "$TMP_DIR/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."
|
|
|
|
|
|
2025-06-09 14:19:18 +02:00
|
|
|
if [ -f "$TMP_DIR/backup/data/post.txt" ]; then
|
|
|
|
|
fail "File created in post command was present in backup."
|
|
|
|
|
fi
|
|
|
|
|
pass "Did not find unexpected file."
|
2025-06-11 19:46:41 +02:00
|
|
|
|
|
|
|
|
docker compose down --volumes
|