urchin/urchin

144 lines
3.1 KiB
Plaintext
Raw Normal View History

#!/bin/bash
2012-10-04 11:24:03 +00:00
2012-10-11 18:50:03 +00:00
fullpath() {
(
cd "$1"
pwd
)
}
2012-10-11 00:43:13 +00:00
indent() {
level="$1"
printf "%$((2 * ${level}))s"
}
2012-10-04 11:29:34 +00:00
recurse() {
potential_test="$1"
2012-10-11 00:43:13 +00:00
indent_level="$2"
2012-10-10 18:40:49 +00:00
2012-10-10 18:43:41 +00:00
[ "$potential_test" = 'setup_dir' ] && return
[ "$potential_test" = 'teardown_dir' ] && return
[ "$potential_test" = 'setup' ] && return
[ "$potential_test" = 'teardown' ] && return
2012-10-10 18:40:49 +00:00
2012-10-11 05:15:48 +00:00
echo > "$stdout_file"
2012-10-11 00:31:18 +00:00
2012-10-04 11:29:34 +00:00
if [ -d "$potential_test" ]
then
(
2012-10-11 00:43:13 +00:00
indent $indent_level
echo " ${potential_test}"
2012-10-04 11:29:34 +00:00
cd "$potential_test"
[ -f setup_dir ] && [ -x setup_dir ] && ./setup_dir >> "$stdout_file"
2012-10-08 14:16:49 +00:00
for test in *
2012-10-11 00:31:18 +00:00
do
[ -f setup ] && [ -x setup ] && ./setup >> "$stdout_file"
2012-10-11 00:43:13 +00:00
# $2 instead of $indent_level so it doesn't clash
recurse "${test}" $(( $2 + 1 ))
[ -f teardown ] && [ -x teardown ] && ./teardown >> "$stdout_file"
2012-10-08 12:50:48 +00:00
done
[ -f teardown_dir ] && [ -x teardown_dir ] && ./teardown_dir >> "$stdout_file"
2012-10-11 05:17:20 +00:00
echo
2012-10-04 11:29:34 +00:00
)
2012-10-08 12:59:14 +00:00
elif [ -x "$potential_test" ]
2012-10-04 11:29:34 +00:00
then
2012-10-10 18:25:44 +00:00
[ -f setup ] && [ -x setup ] && ./setup >> "$stdout_file"
2012-10-10 19:47:21 +00:00
2012-10-10 18:25:44 +00:00
# Run the test
./"$potential_test" > "$stdout_file" 2>&1
2012-10-10 18:40:49 +00:00
exit_code="$?"
2012-10-10 19:47:21 +00:00
[ -f teardown ] && [ -x teardown ] && ./teardown >> "$stdout_file"
2012-10-10 18:25:44 +00:00
2012-10-11 00:43:13 +00:00
indent $indent_level
2012-10-10 18:40:49 +00:00
if [ "$exit_code" = '0' ]
2012-10-04 11:29:34 +00:00
then
2012-10-10 18:25:44 +00:00
# On success, print a '✓'
printf '\033[32m✓ \033[0m'
echo "${potential_test}"
2012-10-11 18:50:03 +00:00
echo "${potential_test} passed" >> "$logfile"
2012-10-04 11:29:34 +00:00
else
2012-10-10 18:25:44 +00:00
# On fail, print a red '✗'
printf '\033[31m✗ \033[0m'
echo "${potential_test}"
2012-10-11 18:50:03 +00:00
echo "${potential_test} failed" >> "$logfile"
cat "$stdout_file"
2012-10-04 11:29:34 +00:00
fi
rm "$stdout_file"
2012-10-04 11:29:34 +00:00
fi
}
2012-10-04 16:43:49 +00:00
2012-10-11 05:46:02 +00:00
USAGE="usage: $0 <test directory>"
2012-10-11 06:21:05 +00:00
urchin_help() {
2012-10-11 05:52:29 +00:00
echo
echo "$USAGE"
echo
echo '-f Force urchin to run on directories not named "test".'
echo '-h This help'
echo
echo '--xsd Output xUnit XML schema for an integration server.'
echo
echo 'Go to http://www.urchin.sh for documentation on writing tests.'
echo
2012-10-11 06:21:05 +00:00
}
2012-10-11 05:46:02 +00:00
2012-10-11 06:21:05 +00:00
urchin_go() {
2012-10-08 14:43:14 +00:00
echo Running tests
2012-10-11 05:10:43 +00:00
2012-10-11 18:50:03 +00:00
echo > "$logfile"
2012-10-11 00:43:13 +00:00
recurse "$1" 0
2012-10-11 05:10:43 +00:00
2012-10-08 14:43:14 +00:00
echo Done
2012-10-11 18:50:03 +00:00
echo $(grep -e 'passed$' "$logfile"|wc -l) tests passed.
echo $(grep -e 'failed$' "$logfile"|wc -l) tests failed.
2012-10-11 06:21:05 +00:00
}
urchin_molly_guard() {
2012-10-11 05:46:02 +00:00
echo
echo 'The directory on which you are running urchin is not'
echo 'called "test", so I am not running in case that'
echo 'was an accident. Use the -f flag if you really want'
echo 'to run urchin on that directory.'
echo
exit 1
2012-10-11 06:21:05 +00:00
}
FORCE=false
while [ $# -gt 0 ]
do
case "$1" in
-f) FORCE=true;;
-h|--help) urchin_help
exit 0;;
2012-10-11 06:21:05 +00:00
# --xsd) action=testsuite;;
# --) shift; break;;
-*) urchin_help 1>&2
2012-10-11 06:21:05 +00:00
exit 1;;
*) break;;
esac
shift
done
2012-10-11 06:34:20 +00:00
# Constants
2012-10-11 18:50:03 +00:00
logfile=$(fullpath "$1")/.urchin.log
stdout_file=$(fullpath "$1")/.urchin_stdout
2012-10-11 06:34:20 +00:00
2012-10-11 06:21:05 +00:00
# Verify argument for main stuff
2012-10-11 19:47:08 +00:00
if [ "$#" != '1' ] && [ ! -d "$1" ]
then
echo "$USAGE"
exit 1
fi
2012-10-11 06:21:05 +00:00
# Run or present the Molly guard.
2012-10-11 18:50:03 +00:00
if echo "$(basename "$(fullpath "$1")")" | grep test || $FORCE
2012-10-11 06:21:05 +00:00
then
urchin_go "$1"
else
urchin_molly_guard
2012-10-08 14:43:14 +00:00
fi