1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
|
#!/bin/bash
# [r5]: roundup.5.html
# [r1t]: roundup-1-test.sh.html
# [r5t]: roundup-5-test.sh.html
#
# _(c) 2010 Blake Mizerany - MIT License_
#
# Spray **roundup** on your shells to eliminate weeds and bugs. If your shells
# survive **roundup**'s deathly toxic properties, they are considered
# roundup-ready.
#
# **roundup** reads shell scripts to form test plans. Each
# test plan is sourced into a sandbox where each test is executed.
#
# See [roundup-1-test.sh.html][r1t] or [roundup-5-test.sh.html][r5t] for example
# test plans.
#
# __Install__
#
# git clone http://github.com/bmizerany/roundup.git
# cd roundup
# make
# sudo make install
# # Alternatively, copy `roundup` wherever you like.
#
# __NOTE__: Because test plans are sourced into roundup, roundup prefixes its
# variable and function names with `roundup_` to avoid name collisions. See
# "Sandbox Test Runs" below for more insight.
# Usage and Prerequisites
# -----------------------
# Exit if any following command exits with a non-zero status.
set -e
# The current version is set during `make version`. Do not modify this line in
# anyway unless you know what you're doing.
ROUNDUP_VERSION="0.0.5"
export ROUNDUP_VERSION
# Usage is defined in a specific comment syntax. It is `grep`ed out of this file
# when needed (i.e. The Tomayko Method). See
# [shocco](http://rtomayko.heroku.com/shocco) for more detail.
#/ usage: roundup [--help|-h] [--version|-v] [plan ...]
roundup_usage() {
grep '^#/' <"$0" | cut -c4-
}
while test "$#" -gt 0
do
case "$1" in
--help|-h)
roundup_usage
exit 0
;;
--version|-v)
echo "roundup version $ROUNDUP_VERSION"
exit 0
;;
--color)
color=always
shift
;;
-)
echo >&2 "roundup: unknown switch $1"
exit 1
;;
*)
break
;;
esac
done
# Consider all scripts with names matching `*-test.sh` the plans to run unless
# otherwise specified as arguments.
if [ "$#" -gt "0" ]
then
roundup_plans="$@"
else
roundup_plans="$(ls *-test.sh)"
fi
: ${color:="auto"}
# Create a temporary storage place for test output to be retrieved for display
# after failing tests.
roundup_tmp=$(mktemp -d -t .roundup.XXX)
trap "rm -rf \"$roundup_tmp\"" EXIT INT
# __Tracing failures__
roundup_trace() {
# Delete the first two lines that represent roundups execution of the
# test function. They are useless to the user.
sed '1d' |
# Delete the last line which is the "set +x" of the error trap
sed '$d' |
# Replace the rc=$? of the error trap with an verbose string appended
# to the failing command trace line.
sed '$s/.*rc=/exit code /' |
# Trim the two left most `+` signs. They represent the depth at which
# roundup executed the function. They also, are useless and confusing.
sed 's/^++//' |
# Indent the output by 4 spaces to align under the test name in the
# summary.
sed 's/^/ /' |
# Highlight the last line in front of the exit code to bring notice to
# where the error occurred.
#
# The sed magic puts every line into the hold buffer first, then
# substitutes in the previous hold buffer content, prints that and starts
# with the next cycle. At the end the last line (in the hold buffer)
# is printed without substitution.
sed -n "x;1!{ \$s/\(.*\)/$mag\1$clr/; };1!p;\$x;\$p"
}
# __Other helpers__
# Track the test stats while outputting a real-time report. This takes input on
# **stdin**. Each input line must come in the format of:
#
# # The plan description to be displayed
# d <plan description>
#
# # A passing test
# p <test name>
#
# # A failed test
# f <test name>
roundup_summarize() {
set -e
# __Colors for output__
# Use colors if we are writing to a tty device.
if (test -t 1) || (test $color = always)
then
red=$(printf "\033[31m")
grn=$(printf "\033[32m")
mag=$(printf "\033[35m")
ylw=$(printf "\033[33m")
clr=$(printf "\033[m")
cols=$(tput cols)
fi
# Make these available to `roundup_trace`.
export red grn mag clr ylw
ntests=0
passed=0
skipped=0
failed=0
: ${cols:=10}
while read status name
do
case $status in
p)
ntests=$(expr $ntests + 1)
passed=$(expr $passed + 1)
printf " %-48s " "$name:"
printf "$grn[PASS]$clr\n"
;;
s)
ntests=$(expr $ntests + 1)
skipped=$(expr $skipped + 1)
printf " %-48s " "$name:"
printf "$ylw[SKIP]$clr\n"
;;
f)
ntests=$(expr $ntests + 1)
failed=$(expr $failed + 1)
printf " %-48s " "$name:"
printf "$red[FAIL]$clr\n"
roundup_trace < "$roundup_tmp/$name"
;;
d)
printf "%s\n" "$name"
;;
esac
done
# __Test Summary__
#
# Display the summary now that all tests are finished.
yes = | head -n 57 | tr -d '\n'
printf "\n"
printf "Tests: %3d | " $ntests
printf "Passed: %3d | " $passed
printf "Skipped: %3d | " $skipped
printf "Failed: %3d" $failed
printf "\n"
# Exit with an error if any tests failed
test $failed -eq 0 || exit 2
}
run_with_tracing()
{
local func="$1"
local tracefile="${2:-$roundup_tmp/$func}"
# Output `$func` trace to temporary file.
{
# redirect tracing output of `$func` into file.
{
set -xe
$func
} &>"$tracefile"
# disable tracing again. Its trace output goes to /dev/null.
set +x
} &>/dev/null
}
run()
{
local func="$1"
# Any number of things are possible in `$func`.
# Drop into an subshell to contain operations that may throw
# off `$func`; such as `cd`.
# Momentarily turn off auto-fail to give us access to the exit status
# in `$?` for capturing.
set +e
(
# exit subshell with return code of last failing command. This
# is needed to see the return code 253 on failed assumptions.
# But, only do this if the error handling is activated.
set -E
trap 'rc=$?; set +x; set -o | grep "errexit.*on" >/dev/null && exit $rc' ERR
run_with_tracing "$func"
)
# copy roundup_result from subshell above
roundup_result=$?
# Check if `$func` was successful, otherwise emit fail signal
if [ "$roundup_result" != 0 ]; then
# `$func` failed
printf "f $func\n"; continue
fi
}
# Sandbox Test Runs
# -----------------
# The above checks guarantee we have at least one test. We can now move through
# each specified test plan, determine its test plan, and administer each test
# listed in a isolated sandbox.
for roundup_p in $roundup_plans
do
# Create a sandbox, source the test plan, run the tests, then leave
# without a trace.
(
# Consider the description to be the `basename` of the plan minus the
# tailing -test.sh.
roundup_desc=$(basename "$roundup_p" -test.sh)
# Define functions for
# [roundup(5)][r5]
# A custom description is recommended, but optional. Use `describe` to
# set the description to something more meaningful.
# TODO: reimplement this.
describe() {
roundup_desc="$*"
}
# Helper to express an assumption for a given testcase. Example:
# it_runs_fine() {
# assume it_builds_fine
# assume test -f foo
# ./binary
# }
assume() {
if (echo "$1" | grep "^it_.*" >/dev/null)
then if [ "$(eval echo \${passed_$1})" == 1 ]
then return 0
else return 253
fi
else if eval "$@"
then return 0
else return 253
fi
fi
}
# Provide default `before` and `after` functions that run only `:`, a
# no-op. They may or may not be redefined by the test plan.
init() { :; }
before() { :; }
after() { :; }
cleanup() { :; }
# Seek test methods and aggregate their names, forming a test plan.
# This is done before populating the sandbox with tests to avoid odd
# conflicts.
# TODO: I want to do this with sed only. Please send a patch if you
# know a cleaner way.
roundup_plan=$(
grep "^it_.*()" $roundup_p |
sed "s/\(it_[a-zA-Z0-9_]*\).*$/\1/g"
)
# We have the test plan and are in our sandbox with [roundup(5)][r5]
# defined. Now we source the plan to bring its tests into scope.
. ./$roundup_p
# Output the description signal
printf "d %s" "$roundup_desc" | tr "\n" " "
printf "\n"
# Run `init` function of the current plan. THis will be done before any of
# the tests in the plan are executed.
# If `init` wasn't redefined, then this is `:`.
run "init"
for roundup_test_name in $roundup_plan
do
# Any number of things are possible in `before`, `after`, and the
# test. Drop into an subshell to contain operations that may throw
# off roundup; such as `cd`.
# Momentarily turn off auto-fail to give us access to the tests
# exit status in `$?` for capturing.
set +e
(
# exit subshell with return code of last failing command. This
# is needed to see the return code 253 on failed assumptions.
# But, only do this if the error handling is activated.
set -E
trap 'rc=$?; set +x; set -o | grep "errexit.*on" >/dev/null && exit $rc' ERR
trap "cleanup" INT
# If `before` wasn't redefined, then this is `:`.
run_with_tracing before "$roundup_tmp/$roundup_test_name"
# Momentarily turn off auto-fail to give us access to the tests
# exit status in `$?` for capturing.
set +e
(
# Define a helper to log stdout to the file stdout and stderr to the
# file stderr. This can be used like this:
# capture ls asdf
# grep "error" stderr
capture () {
{
"$@" 2>&1 1>&3 | tee -- $roundup_tmp/stderr | awk "{ print \"\033[31m\"\$0\"\033[m\"; }" 1>&2
return ${PIPESTATUS[0]};
} 3>&1 | tee -- $roundup_tmp/stdout
return ${PIPESTATUS[0]}
}
stdout () { echo -n "$roundup_tmp/stdout"; }
stderr () { echo -n "$roundup_tmp/stderr"; }
# Define a negating operator which triggers the error trap of the shell. The
# builtin ! will not.
function expectfail () { ! "$@"; }
# Set `-xe` before the test in the subshell. We want the
# test to fail fast to allow for more accurate output of
# where things went wrong but not in _our_ process because a
# failed test should not immediately fail roundup. Each
# tests trace output is saved in temporary storage.
set -xe
$roundup_test_name
) >"$roundup_tmp/$roundup_test_name" 2>&1
# We need to capture the exit status before returning the `set
# -e` mode. Returning with `set -e` before we capture the exit
# status will result in `$?` being set with `set`'s status
# instead.
roundup_result=$?
# If `after` wasn't redefined, then this runs `:`.
after
# Pass roundup return code outside of the subshell
exit $roundup_result
)
# copy roundup_result from subshell above
roundup_result=$?
# It's safe to return to normal operation.
set -e
# This is the final step of a test. Print its pass/fail signal
# and name.
if [ "$roundup_result" == 0 ]
then printf "p"; eval export passed_$roundup_test_name=1
elif [ "$roundup_result" == 253 ]
then printf "s"
else printf "f"
fi
printf " $roundup_test_name\n"
done
# Run `cleanup` function of the current plan.
# This function is guaranteed to run after the last test case.
# If `cleanup` wasn't redefined, then this is `:`.
run "cleanup"
)
done |
# All signals are piped to this for summary.
roundup_summarize
|