2005-09-02 06:11:53 +05:30
|
|
|
# Simple test harness infrastructurei for BusyBox
|
|
|
|
#
|
|
|
|
# Copyright 2005 by Rob Landley
|
|
|
|
#
|
|
|
|
# License is GPLv2, see LICENSE in the busybox tarball for full license text.
|
|
|
|
|
2005-11-07 14:20:53 +05:30
|
|
|
# This file defines two functions, "testing" and "optionflag"
|
|
|
|
|
|
|
|
# The "testing" function must have the following environment variable set:
|
|
|
|
# COMMAND = command to execute
|
|
|
|
#
|
|
|
|
# The following environment variables may be set to enable optional behavior
|
|
|
|
# in "testing":
|
|
|
|
# VERBOSE - Print the diff -u of each failed test case.
|
|
|
|
# DEBUG - Enable command tracing.
|
|
|
|
# SKIP - do not perform this test (this is set by "optionflag")
|
2005-09-02 06:11:53 +05:30
|
|
|
#
|
2005-11-07 14:20:53 +05:30
|
|
|
# The "testing" function takes five arguments:
|
2005-09-02 06:11:53 +05:30
|
|
|
# $1) Description to display when running command
|
|
|
|
# $2) Command line arguments to command"
|
|
|
|
# $3) Expected result (on stdout)"
|
|
|
|
# $4) Data written to file "input"
|
|
|
|
# $5) Data written to stdin
|
|
|
|
#
|
|
|
|
# The exit value of testing is the exit value of the command it ran.
|
|
|
|
#
|
|
|
|
# The environment variable "FAILCOUNT" contains a cumulative total of the
|
2005-11-07 14:20:53 +05:30
|
|
|
# number of failed tests.
|
2005-09-02 06:11:53 +05:30
|
|
|
|
2005-11-07 14:20:53 +05:30
|
|
|
# The "optional" function is used to skip certain tests, ala:
|
|
|
|
# optionflag CONFIG_FEATURE_THINGY
|
|
|
|
#
|
|
|
|
# The "optional" function checks the environment variable "OPTIONFLAGS",
|
|
|
|
# which is either empty (in which case it always clears SKIP) or
|
|
|
|
# else contains a colon-separated list of features (in which case the function
|
|
|
|
# clears SKIP if the flag was found, or sets it to 1 if the flag was not found).
|
2005-09-02 06:11:53 +05:30
|
|
|
|
|
|
|
export FAILCOUNT=0
|
2005-11-07 14:20:53 +05:30
|
|
|
export SKIP=
|
2005-09-02 06:11:53 +05:30
|
|
|
|
2005-09-23 21:14:46 +05:30
|
|
|
# Helper functions
|
|
|
|
|
2005-11-07 14:20:53 +05:30
|
|
|
optional()
|
2005-09-23 21:14:46 +05:30
|
|
|
{
|
2005-11-07 14:20:53 +05:30
|
|
|
option="$OPTIONFLAGS" | egrep "(^|:)$1(:|\$)"
|
|
|
|
# Not set?
|
|
|
|
if [[ -z "$1" || -z "$OPTIONFLAGS" || ${#option} -ne 0 ]]
|
|
|
|
then
|
|
|
|
SKIP=""
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
SKIP=1
|
2005-09-23 21:14:46 +05:30
|
|
|
}
|
|
|
|
|
2005-09-02 06:11:53 +05:30
|
|
|
# The testing function
|
|
|
|
|
2005-10-06 18:18:03 +05:30
|
|
|
testing ()
|
2005-09-02 06:11:53 +05:30
|
|
|
{
|
|
|
|
if [ $# -ne 5 ]
|
|
|
|
then
|
|
|
|
echo "Test $1 has the wrong number of arguments" >&2
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2005-11-07 14:20:53 +05:30
|
|
|
if [ -n "$DEBUG" ] ; then
|
2005-09-24 06:22:58 +05:30
|
|
|
set -x
|
|
|
|
fi
|
|
|
|
|
2005-11-07 14:20:53 +05:30
|
|
|
if [ -n "$SKIP" ]
|
2005-09-23 21:14:46 +05:30
|
|
|
then
|
2005-11-07 14:20:53 +05:30
|
|
|
echo "SKIPPED: $1"
|
|
|
|
return 0
|
2005-09-23 21:14:46 +05:30
|
|
|
fi
|
|
|
|
|
2005-09-02 06:11:53 +05:30
|
|
|
echo -ne "$3" > expected
|
|
|
|
echo -ne "$4" > input
|
|
|
|
echo -n -e "$5" | eval "$COMMAND $2" > actual
|
|
|
|
RETVAL=$?
|
|
|
|
|
|
|
|
cmp expected actual > /dev/null
|
|
|
|
if [ $? -ne 0 ]
|
|
|
|
then
|
2005-11-07 14:20:53 +05:30
|
|
|
FAILCOUNT=$[$FAILCOUNT+1]
|
|
|
|
echo "FAIL: $1"
|
|
|
|
if [ -n "$VERBOSE" ]
|
|
|
|
then
|
|
|
|
diff -u expected actual
|
|
|
|
fi
|
2005-09-02 06:11:53 +05:30
|
|
|
else
|
2005-11-07 14:20:53 +05:30
|
|
|
echo "PASS: $1"
|
2005-09-02 06:11:53 +05:30
|
|
|
fi
|
|
|
|
rm -f input expected actual
|
|
|
|
|
2005-11-07 14:20:53 +05:30
|
|
|
if [ -n "$DEBUG" ]
|
|
|
|
then
|
2005-09-24 06:22:58 +05:30
|
|
|
set +x
|
|
|
|
fi
|
|
|
|
|
2005-09-02 06:11:53 +05:30
|
|
|
return $RETVAL
|
|
|
|
}
|