1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:27:43 +00:00

LibJS: Refactor run-tests.sh to use the new test-js program

This commit is contained in:
Matthew Olsson 2020-07-03 14:39:12 -07:00 committed by Andreas Kling
parent b9cf7a833f
commit 4b8a3e6d78

View file

@ -1,81 +1,26 @@
#!/bin/bash
if [ "$(uname)" = "SerenityOS" ]; then
js_program=/bin/js
js_program=/bin/test-js
test_root=/home/anon/js-tests
else
[ -z "$js_program" ] && js_program="$SERENITY_ROOT/Build/Meta/Lagom/js"
[ -z "$js_program" ] && js_program="$SERENITY_ROOT/Build/Meta/Lagom/test-js"
test_root="$SERENITY_ROOT/Libraries/LibJS/Tests"
# Enable back traces if sanitizers are enabled
export UBSAN_OPTIONS=print_stacktrace=1
fi
pass_count=0
fail_count=0
count=0
test_count=0
GLOBIGNORE=test-common.js
# FIXME: Support "find -name" in Serenity to remove the file name checks below
test_files=$(find . -type f | cut -b 3- | sort)
test_files_tmp=$(find . -type f | cut -b 3- | sort)
for f in $test_files; do
for f in $test_files_tmp; do
if [ "$f" = "test-common.js" ] || [ "$f" = "run-tests.sh" ]; then
continue
fi
(( ++test_count ))
test_files=("${test_files[@]}" "$f");
done
for f in $test_files; do
if [ "$f" = "test-common.js" ] || [ "$f" = "run-tests.sh" ]; then
continue
fi
result="$("$js_program" "$@" -t "$f" 2>/dev/null)"
if [ "$result" = "PASS" ]; then
(( ++pass_count ))
echo -ne " ✅ "
else
echo -ne " ❌ "
(( ++fail_count ))
fi
echo -ne "\033]9;${count};${test_count}\033\\"
echo "$f"
$js_program "$test_root" "${test_files[@]}"
if [ "$result" != "PASS" ]; then
if [ -z "$result" ]; then
echo -e " \033[31;1mNo output. Did you forget 'console.log(\"PASS\");'?\033[0m"
else
readarray -t split_result <<< "$result";
echo -e " \033[31;1mOutput:\033[0m "
for (( i = 0; i < ${#split_result[@]}; i++ )); do
echo " ${split_result[i]}"
done
fi
fi
(( ++count ))
done
echo -e "\033]9;-1\033\\"
pass_color=""
fail_color=""
color_off="\033[0m"
exit_code=0
if (( pass_count > 0 )); then
pass_color="\033[32;1m"
fi
if (( fail_count > 0 )); then
fail_color="\033[31;1m"
exit_code=1
fi
echo
echo -e "Ran $count tests. Passed: ${pass_color}${pass_count}${color_off}, Failed: ${fail_color}${fail_count}${color_off}"
exit $exit_code
exit $!