41 lines
1.1 KiB
Bash
Executable File
41 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -Eeuo pipefail
|
|
|
|
dir="$(dirname "$(readlink -f "$BASH_SOURCE")")"
|
|
|
|
serverImage="$1"
|
|
|
|
# Use a client image with curl for testing
|
|
clientImage='buildpack-deps:trixie-curl'
|
|
# ensure the clientImage is ready and available
|
|
if ! docker image inspect "$clientImage" &> /dev/null; then
|
|
docker pull "$clientImage" > /dev/null
|
|
fi
|
|
|
|
# Create an instance of the container-under-test
|
|
cid="$(docker run -d "$serverImage")"
|
|
trap "docker rm -vf $cid > /dev/null" EXIT
|
|
|
|
_request() {
|
|
local method="$1"
|
|
shift
|
|
|
|
local url="${1#/}"
|
|
shift
|
|
|
|
docker run --rm \
|
|
--link "$cid":redmine \
|
|
"$clientImage" \
|
|
curl -fs -X"$method" "$@" "http://redmine:3000/$url"
|
|
}
|
|
|
|
# Make sure that Redmine is listening and ready
|
|
# (give it plenty of time, since it needs to do a lot of database migrations)
|
|
. "$dir/../../retry.sh" --tries 40 '_request GET / --output /dev/null'
|
|
|
|
# Check that / include the text "Redmine" somewhere
|
|
_request GET '/' | grep Redmine > /dev/null
|
|
|
|
# Check that /account/register include the text "Password" somewhere
|
|
_request GET '/account/register' | grep Password > /dev/null
|