docker-postfix/integration-tests.sh
2020-11-03 12:11:50 +01:00

37 lines
No EOL
777 B
Bash
Executable file

#!/usr/bin/env bash
set -e
cd integration-tests
run_test() {
local exit_code
echo
echo
echo "☆☆☆☆☆☆☆☆☆☆ $1 ☆☆☆☆☆☆☆☆☆☆"
echo
(
cd "$1"
set +e
docker-compose up --build --abort-on-container-exit --exit-code-from tests
exit_code="$?"
docker-compose down
if [[ "$exit_code" != 0 ]]; then
exit "$exit_code"
fi
set -e
)
}
if [[ $# -gt 0 ]]; then
while [[ -n "$1" ]]; do
run_test "$1"
shift
done
else
for i in `find -maxdepth 1 -type d`; do
i="$(basename "$i")"
if [ "$i" == "tester" ] || [ "$i" == "." ] || [ "$i" == ".." ]; then
continue
fi
run_test $i
done
fi