-
Notifications
You must be signed in to change notification settings - Fork 15
/
test-fpm.sh
executable file
·42 lines (34 loc) · 1.32 KB
/
test-fpm.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/bin/bash
#
# A simple script to start a Docker container
# and run Testinfra in it
# Original script: https://gist.github.com/renatomefi/bbf44d4e8a2614b1390416c6189fbb8e
# Author: @renatomefi https://github.com/renatomefi
#
set -eEuo pipefail
# The first parameter is a Docker tag or image id
declare -r DOCKER_TAG="$1"
declare TEST_SUITE
if [[ $DOCKER_TAG == *"-dev" ]]; then
TEST_SUITE="php or php_fpm or php_dev"
else
VERSION_SUITE=$(echo "${DOCKER_TAG}" | grep -P ':\d.\d-' -o | sed 's/[^0-9]*//g')
TEST_SUITE="php or php_fpm or php_fpm_exec or php_fpm_exec_${VERSION_SUITE} or php_no_dev and not php_dev"
fi
printf "Starting a container for '%s'\\n" "$DOCKER_TAG"
DOCKER_CONTAINER=$(docker run --rm -t -d "$DOCKER_TAG")
readonly DOCKER_CONTAINER
# Let's register a trap function, if our tests fail, finish or the script gets
# interrupted, we'll still be able to remove the running container
function tearDown {
docker rm -f "$DOCKER_CONTAINER" &>/dev/null &
}
trap tearDown EXIT TERM ERR
# Finally, run the tests!
docker run --rm -t \
-v "$(pwd)/test:/tests" \
-v "$(pwd)/tmp/test-results:/results" \
-v /var/run/docker.sock:/var/run/docker.sock:ro \
renatomefi/docker-testinfra:5 \
-m "$TEST_SUITE" --junitxml="/results/php-fpm-$DOCKER_TAG.xml" \
--verbose --hosts="docker://$DOCKER_CONTAINER"