2023-08-22 20:01:24 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
. ../util.sh
|
|
|
|
current_test=$(basename $(pwd))
|
|
|
|
|
|
|
|
docker compose up -d
|
|
|
|
sleep 5
|
|
|
|
|
2023-08-22 21:39:07 +02:00
|
|
|
logs=$(docker compose exec -T backup backup)
|
2023-08-22 20:01:24 +02:00
|
|
|
|
|
|
|
sleep 5
|
|
|
|
|
|
|
|
expect_running_containers "3"
|
|
|
|
|
2023-08-22 21:57:41 +02:00
|
|
|
echo "$logs"
|
2023-08-22 21:39:07 +02:00
|
|
|
if echo "$logs" | grep -q "ERROR"; then
|
2023-08-22 20:01:24 +02:00
|
|
|
fail "Backup failed, errors reported: $dvb_logs"
|
|
|
|
else
|
|
|
|
pass "Backup succeeded, no errors reported."
|
|
|
|
fi
|
|
|
|
|
|
|
|
# The second part of this test checks if backups get deleted when the retention
|
|
|
|
# is set to 0 days (which it should not as it would mean all backups get deleted)
|
|
|
|
# TODO: find out if we can test actual deletion without having to wait for a day
|
|
|
|
BACKUP_RETENTION_DAYS="0" docker compose up -d
|
|
|
|
sleep 5
|
|
|
|
|
2023-08-22 21:39:07 +02:00
|
|
|
logs=$(docker compose exec -T backup backup)
|
2023-08-22 20:01:24 +02:00
|
|
|
|
2023-08-22 21:57:41 +02:00
|
|
|
echo "$logs"
|
2023-08-22 21:39:07 +02:00
|
|
|
if echo "$logs" | grep -q "Refusing to do so, please check your configuration"; then
|
2023-08-22 20:01:24 +02:00
|
|
|
pass "Remote backups have not been deleted."
|
|
|
|
else
|
|
|
|
fail "Remote backups would have been deleted: $dvb_logs"
|
|
|
|
fi
|
|
|
|
|
|
|
|
docker compose down --volumes
|