mirror of
https://github.com/offen/docker-volume-backup.git
synced 2024-11-10 00:30:29 +01:00
Frederik Ring
1e39ac41f4
* Try running tests in Docker * Spawn new container for each test * Store test artifacts outside of mount * When requested, build up to date image in test script * sudo is unneccessary in containerized test env * Skip azure test * Backdate fixture file in JSON database * Pin versions for azure tools * Mount temp volume for /var/lib/docker to prevent dangling ones created by VOLUME instruction * Fail backdating tests with message * Add some documentation on test setup * Cache images * Run compose stacks with shortened default timeout
49 lines
1.6 KiB
Bash
Executable File
49 lines
1.6 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
cd $(dirname $0)
|
|
. ../util.sh
|
|
current_test=$(basename $(pwd))
|
|
|
|
export LOCAL_DIR=$(mktemp -d)
|
|
|
|
docker compose up -d --quiet-pull
|
|
sleep 5
|
|
|
|
GOTIFY_TOKEN=$(curl -sSLX POST -H 'Content-Type: application/json' -d '{"name":"test"}' http://admin:custom@localhost:8080/application | jq -r '.token')
|
|
info "Set up Gotify application using token $GOTIFY_TOKEN"
|
|
|
|
docker compose exec backup backup
|
|
|
|
NUM_MESSAGES=$(curl -sSL http://admin:custom@localhost:8080/message | jq -r '.messages | length')
|
|
if [ "$NUM_MESSAGES" != 0 ]; then
|
|
fail "Expected no notifications to be sent when not configured"
|
|
fi
|
|
pass "No notifications were sent when not configured."
|
|
|
|
docker compose down
|
|
|
|
NOTIFICATION_URLS="gotify://gotify/${GOTIFY_TOKEN}?disableTLS=true" docker compose up -d
|
|
|
|
docker compose exec backup backup
|
|
|
|
NUM_MESSAGES=$(curl -sSL http://admin:custom@localhost:8080/message | jq -r '.messages | length')
|
|
if [ "$NUM_MESSAGES" != 1 ]; then
|
|
fail "Expected one notifications to be sent when configured"
|
|
fi
|
|
pass "Correct number of notifications were sent when configured."
|
|
|
|
MESSAGE_TITLE=$(curl -sSL http://admin:custom@localhost:8080/message | jq -r '.messages[0].title')
|
|
MESSAGE_BODY=$(curl -sSL http://admin:custom@localhost:8080/message | jq -r '.messages[0].message')
|
|
|
|
if [ "$MESSAGE_TITLE" != "Successful test run with extra-value, yay!" ]; then
|
|
fail "Unexpected notification title $MESSAGE_TITLE"
|
|
fi
|
|
pass "Custom notification title was used."
|
|
|
|
if [ "$MESSAGE_BODY" != "Backing up /tmp/test.tar.gz succeeded." ]; then
|
|
fail "Unexpected notification body $MESSAGE_BODY"
|
|
fi
|
|
pass "Custom notification body was used."
|