2018-07-14 04:42:15 +00:00
|
|
|
#!/usr/bin/env bash
|
2018-10-09 04:03:53 +00:00
|
|
|
#
|
|
|
|
# run_tests
|
|
|
|
#
|
2021-03-05 10:30:52 +00:00
|
|
|
HERE="$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )"
|
|
|
|
TESTS="$HERE/../tests"
|
|
|
|
export PATH="$HERE:$TESTS:$PATH"
|
2018-07-14 04:42:15 +00:00
|
|
|
|
|
|
|
# exit on first failure
|
|
|
|
set -e
|
|
|
|
|
2018-09-02 08:27:39 +00:00
|
|
|
exec_test () {
|
2018-10-02 09:25:46 +00:00
|
|
|
printf "\n\033[0;32m[Test $2] \033[0m$3...\n"
|
2020-11-18 02:04:28 +00:00
|
|
|
# Check to see if we should skip tests
|
|
|
|
if [[ -n "$4" ]] ; then
|
|
|
|
if [[ ! "$3" =~ $4 ]] ; then
|
|
|
|
printf "\033[1;33mSkipped\033[0m\n"
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if [[ -z "$VERBOSE_PLATFORMIO" ]] ; then
|
|
|
|
silent="--silent"
|
|
|
|
else
|
2021-01-28 08:02:06 +00:00
|
|
|
silent="-v"
|
2020-11-18 02:04:28 +00:00
|
|
|
fi
|
|
|
|
if platformio run --project-dir $1 -e $2 $silent; then
|
2018-07-14 04:42:15 +00:00
|
|
|
printf "\033[0;32mPassed\033[0m\n"
|
|
|
|
return 0
|
|
|
|
else
|
2020-11-18 02:04:28 +00:00
|
|
|
if [[ -n $GIT_RESET_HARD ]]; then
|
|
|
|
git reset --hard HEAD
|
|
|
|
else
|
|
|
|
restore_configs
|
|
|
|
fi
|
2018-07-14 04:42:15 +00:00
|
|
|
printf "\033[0;31mFailed!\033[0m\n"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
export -f exec_test
|
|
|
|
|
2018-09-02 08:27:39 +00:00
|
|
|
printf "Running \033[0;32m$2\033[0m Tests\n"
|
|
|
|
|
2018-08-24 23:53:24 +00:00
|
|
|
if [[ $2 = "ALL" ]]; then
|
2021-03-05 10:30:52 +00:00
|
|
|
tests=("$TESTS"/*)
|
2018-07-14 04:42:15 +00:00
|
|
|
for f in "${tests[@]}"; do
|
2021-03-05 10:30:52 +00:00
|
|
|
testenv=$(basename $f)
|
2018-07-14 04:42:15 +00:00
|
|
|
printf "Running \033[0;32m$f\033[0m Tests\n"
|
|
|
|
exec_test $1 "$testenv --target clean" "Setup Build Environment"
|
2020-11-18 02:04:28 +00:00
|
|
|
if [[ $GIT_RESET_HARD == "true" ]]; then
|
|
|
|
git reset --hard HEAD
|
|
|
|
else
|
|
|
|
restore_configs
|
|
|
|
fi
|
2018-07-14 04:42:15 +00:00
|
|
|
done
|
|
|
|
else
|
|
|
|
exec_test $1 "$2 --target clean" "Setup Build Environment"
|
2020-11-18 02:04:28 +00:00
|
|
|
test_name="$3"
|
|
|
|
# If the test name is 1 or 2 digits, treat it as an index
|
|
|
|
if [[ "$test_name" =~ ^[0-9][0-9]?$ ]] ; then
|
|
|
|
# Find the test name that corresponds to that index
|
2021-03-05 10:30:52 +00:00
|
|
|
test_name="$(cat $TESTS/$2 | grep -e '^exec_test' | sed -n "$3p" | sed "s/.*\$1 \$2 \"\([^\"]*\).*/\1/g")"
|
2020-11-18 02:04:28 +00:00
|
|
|
if [[ -z "$test_name" ]] ; then
|
|
|
|
# Fail if none matches
|
2021-03-05 10:30:52 +00:00
|
|
|
printf "\033[0;31mCould not find test \033[0m#$3\033[0;31m in \033[0mbuildroot/tests/$2\n"
|
2020-11-18 02:04:28 +00:00
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
printf "\033[0;32mMatching test \033[0m#$3\033[0;32m: '\033[0m$test_name\033[0;32m'\n"
|
|
|
|
fi
|
|
|
|
fi
|
2021-03-05 10:30:52 +00:00
|
|
|
$TESTS/$2 $1 $2 "$test_name"
|
2020-11-18 02:04:28 +00:00
|
|
|
if [[ $GIT_RESET_HARD == "true" ]]; then
|
|
|
|
git reset --hard HEAD
|
|
|
|
else
|
|
|
|
restore_configs
|
|
|
|
fi
|
2018-07-14 04:42:15 +00:00
|
|
|
fi
|
|
|
|
printf "\033[0;32mAll tests completed successfully\033[0m\n"
|