-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tests.sh
executable file
·34 lines (28 loc) · 1.03 KB
/
tests.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
#!/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"
printf "Starting a container for '%s'\\n" "$DOCKER_TAG"
DOCKER_CONTAINER=$(docker run --rm -v "$(pwd)/test:/tests" -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!
echo "Running test suite"
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 \
--disable-pytest-warnings \
--verbose --hosts="docker://$DOCKER_CONTAINER"