isle/tests/entrypoint.sh

98 lines
2.1 KiB
Bash
Raw Normal View History

2023-08-30 16:16:19 +00:00
set -e
2023-09-01 16:28:22 +00:00
# cd into script's directory
cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null
root=$(pwd)
export UTILS="$root"/utils
2023-09-01 14:18:23 +00:00
REGEXS=()
2023-08-30 18:08:40 +00:00
while [[ $# -gt 0 ]]; do
case $1 in
2023-09-01 14:18:23 +00:00
-h|--help)
cat <<EOF
USAGE: [flags] [test regexs...]
FLAGS
2023-09-01 15:19:48 +00:00
--keep-tmp
2023-09-01 14:18:23 +00:00
--verbose (-v)
--help (-h)
EOF
2023-08-30 18:08:40 +00:00
exit 1
;;
2023-09-01 15:19:48 +00:00
-v|--verbose)
VERBOSE=1
shift
;;
--keep-tmp)
KEEP_TMP=1
shift
;;
2023-09-01 14:18:23 +00:00
*)
REGEXS+=("$1")
shift
;;
2023-08-30 18:08:40 +00:00
esac
done
TMPDIR="$(mktemp --tmpdir -d isle-tests.XXXXXX)"
2023-09-01 15:19:48 +00:00
if [ -z "$KEEP_TMP" ]; then trap 'rm -rf $TMPDIR' EXIT; fi
2023-08-30 16:16:19 +00:00
export TMPDIR
2023-08-30 16:16:19 +00:00
echo "tmp dir is $TMPDIR"
# Blackhole these directories so that tests don't accidentally use the host's
# real ones.
export XDG_RUNTIME_DIR=/dev/null
export XDG_DATA_HOME=/dev/null
test_files=$(
2023-09-01 16:28:22 +00:00
find ./cases -type f -name '*.sh' \
| sed "s|^\./cases/||" \
| grep -v entrypoint.sh \
| sort
)
2023-08-30 16:16:19 +00:00
2023-09-01 14:18:23 +00:00
for r in "${REGEXS[@]}"; do
2023-09-01 16:28:22 +00:00
test_files="$(echo "$test_files" | grep "$r")"
2023-09-01 14:18:23 +00:00
done
echo -e "number of tests: $(echo "$test_files" | wc -l)\n"
for file in $test_files; do
2023-09-04 18:56:48 +00:00
echo "Running test case: $file"
2023-08-30 18:08:40 +00:00
if [ -z "$VERBOSE" ]; then
output="$TMPDIR/$file.log"
mkdir -p "$(dirname "$output")"
else
output=/dev/stdout
fi
2023-08-30 18:08:40 +00:00
2023-09-01 14:18:23 +00:00
(
export TEST_CASE_FILE="$file"
2023-09-01 16:28:22 +00:00
if ! $SHELL -e -x "$root/cases/$file" >"$output" 2>&1; then
2023-09-01 14:18:23 +00:00
echo "$file FAILED"
if [ -z "$VERBOSE" ]; then
echo "output of test is as follows"
echo "------------------------------"
cat "$output"
echo "------------------------------"
fi
exit 1
fi
2023-09-04 18:56:48 +00:00
) || TESTS_FAILED=1
if [ -n "$TESTS_FAILED" ]; then break; fi
2023-08-30 16:16:19 +00:00
done
2023-09-04 18:56:48 +00:00
# Clean up any shared running clusters. Each cleanup script is responsible for
# figuring out if its shared cluster was actually instantiated during any tests.
echo "Running any cleanup tasks"
# shellcheck source=./utils/cleanup-single-node-cluster.sh
source "$UTILS"/cleanup-single-node-cluster.sh
if [ -z "$TESTS_FAILED" ]; then echo -e '\nall tests succeeded!'; fi