| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- #!/bin/bash
- set -eo pipefail
- dir="$(dirname "$(readlink -f "$BASH_SOURCE")")"
- image="$1"
- # Build a client image with cgi-fcgi for testing
- clientImage='librarytest/php-fpm-hello-web:fcgi-client'
- docker build -t "$clientImage" - > /dev/null <<'EOF'
- FROM debian:stretch-slim
- RUN set -x && apt-get update && apt-get install -y libfcgi0ldbl && rm -rf /var/lib/apt/lists/*
- ENTRYPOINT ["cgi-fcgi"]
- EOF
- serverImage="$("$dir/../image-name.sh" librarytest/php-fpm-hello-web "$image")"
- "$dir/../docker-build.sh" "$dir" "$serverImage" <<EOD
- FROM $image
- COPY dir/index.php /var/www/html/
- EOD
- # Create an instance of the container-under-test
- cid="$(docker run -d "$serverImage")"
- trap "docker rm -vf $cid > /dev/null" EXIT
- # RACY TESTS ARE RACY
- sleep 1
- # TODO find a cleaner solution to this, similar to what we do in mysql-basics
- fcgi-request() {
- local method="$1"
- local url="$2"
- local queryString=
- if [[ "$url" == *\?* ]]; then
- queryString="${url#*\?}"
- url="${url%%\?*}"
- fi
- docker run --rm -i --link "$cid":fpm \
- -e REQUEST_METHOD="$method" \
- -e SCRIPT_NAME="$url" \
- -e SCRIPT_FILENAME=/var/www/html/"${url#/}" \
- -e QUERY_STRING="$queryString" \
- "$clientImage" \
- -bind -connect fpm:9000
- }
- # Check that we can request /index.php with no params
- [ -n "$(fcgi-request GET "/index.php")" ]
- # Check that our index.php echoes the value of the "hello" param
- hello="world-$RANDOM-$RANDOM"
- [ "$(fcgi-request GET "/index.php?hello=$hello" | tail -1)" = "$hello" ]
|