docker-postfix/integration-tests.sh

38 lines
781 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -e
cd integration-tests
run_test() {
2020-11-03 19:11:50 +08:00
local exit_code
echo
echo
echo "☆☆☆☆☆☆☆☆☆☆ $1 ☆☆☆☆☆☆☆☆☆☆"
echo
(
cd "$1"
2020-11-03 19:11:50 +08:00
set +e
docker-compose up --build --abort-on-container-exit --exit-code-from tests
2020-11-03 19:11:50 +08:00
exit_code="$?"
docker-compose down -v
2020-11-03 19:11:50 +08:00
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