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
|
# framework common functions for use in test suites and test cases
#
# run a test and keep stats on success/failure.
# arguments: a command, possibly a shell function.
# return value: 0 on success, 1 on failure.
# side effects: increments global var NSUCC on success, NFAIL on failure.
#
run_testcase()
{
if "$@"; then
((NSUCC++))
return 0
else
((NFAIL++))
return 1
fi
}
#
# verbosely check that the test output matches the expected value.
# arguments: the test output, the expected value, and a description.
# return value: 0 on if test output equals expected value; 1 otherwise.
# side effects: prints a descriptive message.
#
asserteq()
{
typeset out="$1" expected="$2" desc="$3"
echo -n "out=$out $desc"
if [ "$out" = "$expected" ]; then
echo " - ok"
return 0
else
echo " expected=$expected - bad"
return 1
fi
}
#
# verbosely check that the test output doesn't match the reference value.
# return value: 1 on if test output equals expected value; 0 if not equal.
# side effects: prints descriptive message.
#
assertneq()
{
typeset out="$1" ref="$2" desc="$3"
echo -n "out=$out $desc"
if [ "$out" = "$ref" ]; then
echo " ref=$ref - bad"
return 1
else
echo " ref=$ref - ok"
return 0
fi
}
|