Files
dokku/tests/ci/unit_test_runner.sh
2016-03-04 20:59:17 -08:00

39 lines
706 B
Bash
Executable File

#!/usr/bin/env bash
is_number() {
local NUMBER=$1; local NUM_RE='^[1-4]+$'
if [[ $NUMBER =~ $NUM_RE ]]; then
return 0
else
return 1
fi
}
usage() {
echo "usage: $0 1|2|3|4"
exit 0
}
BATCH_NUM="$1"
is_number "$BATCH_NUM" || usage
TESTS=$(find "$(dirname "$0")/../unit" -maxdepth 1 -name "${BATCH_NUM}0*.bats" | sort -n | xargs)
echo "running the following tests $TESTS"
# shellcheck disable=SC2086
for test in $TESTS; do
echo $test
starttest=$(date +%s)
bats $test
RC=$?
if [[ $RC -ne 0 ]]; then
echo "exit status: $RC"
exit $RC
fi
endtest=$(date +%s)
testruntime=$((endtest-starttest))
echo "individual runtime: $(date -u -d @${testruntime} +"%T")"
done