Rob Landley | 1689075 | 2005-09-02 00:41:53 +0000 | [diff] [blame] | 1 | # Simple test harness infrastructurei for BusyBox |
| 2 | # |
| 3 | # Copyright 2005 by Rob Landley |
| 4 | # |
| 5 | # License is GPLv2, see LICENSE in the busybox tarball for full license text. |
| 6 | |
Denis Vlasenko | 687a26f | 2008-05-02 21:46:30 +0000 | [diff] [blame] | 7 | # This file defines two functions, "testing" and "optional" |
| 8 | # and a couple more... |
Rob Landley | 48c6157 | 2005-11-07 08:50:53 +0000 | [diff] [blame] | 9 | |
Rob Landley | 48c6157 | 2005-11-07 08:50:53 +0000 | [diff] [blame] | 10 | # The following environment variables may be set to enable optional behavior |
| 11 | # in "testing": |
| 12 | # VERBOSE - Print the diff -u of each failed test case. |
| 13 | # DEBUG - Enable command tracing. |
Denis Vlasenko | 687a26f | 2008-05-02 21:46:30 +0000 | [diff] [blame] | 14 | # SKIP - do not perform this test (this is set by "optional") |
Rob Landley | 48c6157 | 2005-11-07 08:50:53 +0000 | [diff] [blame] | 15 | # |
| 16 | # The "testing" function takes five arguments: |
Denis Vlasenko | 687a26f | 2008-05-02 21:46:30 +0000 | [diff] [blame] | 17 | # $1) Test description |
| 18 | # $2) Command(s) to run. May have pipes, redirects, etc |
| 19 | # $3) Expected result on stdout |
| 20 | # $4) Data to be written to file "input" |
| 21 | # $5) Data to be written to stdin |
Rob Landley | 1689075 | 2005-09-02 00:41:53 +0000 | [diff] [blame] | 22 | # |
Denis Vlasenko | 687a26f | 2008-05-02 21:46:30 +0000 | [diff] [blame] | 23 | # The exit value of testing is the exit value of $2 it ran. |
Rob Landley | 1689075 | 2005-09-02 00:41:53 +0000 | [diff] [blame] | 24 | # |
| 25 | # The environment variable "FAILCOUNT" contains a cumulative total of the |
Rob Landley | 48c6157 | 2005-11-07 08:50:53 +0000 | [diff] [blame] | 26 | # number of failed tests. |
Rob Landley | 1689075 | 2005-09-02 00:41:53 +0000 | [diff] [blame] | 27 | |
Rob Landley | 48c6157 | 2005-11-07 08:50:53 +0000 | [diff] [blame] | 28 | # The "optional" function is used to skip certain tests, ala: |
Denis Vlasenko | 687a26f | 2008-05-02 21:46:30 +0000 | [diff] [blame] | 29 | # optional CONFIG_FEATURE_THINGY |
Rob Landley | 48c6157 | 2005-11-07 08:50:53 +0000 | [diff] [blame] | 30 | # |
| 31 | # The "optional" function checks the environment variable "OPTIONFLAGS", |
| 32 | # which is either empty (in which case it always clears SKIP) or |
| 33 | # else contains a colon-separated list of features (in which case the function |
| 34 | # clears SKIP if the flag was found, or sets it to 1 if the flag was not found). |
Rob Landley | 1689075 | 2005-09-02 00:41:53 +0000 | [diff] [blame] | 35 | |
| 36 | export FAILCOUNT=0 |
Rob Landley | 48c6157 | 2005-11-07 08:50:53 +0000 | [diff] [blame] | 37 | export SKIP= |
Rob Landley | 1689075 | 2005-09-02 00:41:53 +0000 | [diff] [blame] | 38 | |
Bernhard Reutner-Fischer | b47a74f | 2005-09-23 15:44:46 +0000 | [diff] [blame] | 39 | # Helper functions |
| 40 | |
Rob Landley | cd82c3c | 2006-06-15 20:07:57 +0000 | [diff] [blame] | 41 | optional() |
Bernhard Reutner-Fischer | b47a74f | 2005-09-23 15:44:46 +0000 | [diff] [blame] | 42 | { |
Denis Vlasenko | 687a26f | 2008-05-02 21:46:30 +0000 | [diff] [blame] | 43 | option=`echo ":$OPTIONFLAGS:" | grep ":$1:"` |
Rob Landley | 48c6157 | 2005-11-07 08:50:53 +0000 | [diff] [blame] | 44 | # Not set? |
Rob Landley | 006fa2d | 2006-02-16 09:00:57 +0000 | [diff] [blame] | 45 | if [ -z "$1" ] || [ -z "$OPTIONFLAGS" ] || [ ${#option} -ne 0 ] |
Rob Landley | 48c6157 | 2005-11-07 08:50:53 +0000 | [diff] [blame] | 46 | then |
Denis Vlasenko | 687a26f | 2008-05-02 21:46:30 +0000 | [diff] [blame] | 47 | SKIP= |
Rob Landley | 48c6157 | 2005-11-07 08:50:53 +0000 | [diff] [blame] | 48 | return |
| 49 | fi |
| 50 | SKIP=1 |
Bernhard Reutner-Fischer | b47a74f | 2005-09-23 15:44:46 +0000 | [diff] [blame] | 51 | } |
| 52 | |
Rob Landley | 1689075 | 2005-09-02 00:41:53 +0000 | [diff] [blame] | 53 | # The testing function |
| 54 | |
Denis Vlasenko | cd0df46 | 2007-06-05 22:29:14 +0000 | [diff] [blame] | 55 | testing() |
Rob Landley | 1689075 | 2005-09-02 00:41:53 +0000 | [diff] [blame] | 56 | { |
Rob Landley | 4bb1b04 | 2006-03-16 15:20:45 +0000 | [diff] [blame] | 57 | NAME="$1" |
Denis Vlasenko | 81e97a1 | 2008-05-15 22:43:48 +0000 | [diff] [blame] | 58 | [ -n "$1" ] || NAME="$2" |
Rob Landley | 4bb1b04 | 2006-03-16 15:20:45 +0000 | [diff] [blame] | 59 | |
Rob Landley | 1689075 | 2005-09-02 00:41:53 +0000 | [diff] [blame] | 60 | if [ $# -ne 5 ] |
| 61 | then |
Denis Vlasenko | 4e1e720 | 2007-11-26 05:38:20 +0000 | [diff] [blame] | 62 | echo "Test $NAME has wrong number of arguments (must be 5) ($# $*)" >&2 |
Denis Vlasenko | 81e97a1 | 2008-05-15 22:43:48 +0000 | [diff] [blame] | 63 | exit 1 |
Rob Landley | 1689075 | 2005-09-02 00:41:53 +0000 | [diff] [blame] | 64 | fi |
| 65 | |
Denis Vlasenko | 81e97a1 | 2008-05-15 22:43:48 +0000 | [diff] [blame] | 66 | [ -z "$DEBUG" ] || set -x |
Mike Frysinger | 3f91d7a | 2005-09-24 00:52:58 +0000 | [diff] [blame] | 67 | |
Rob Landley | 48c6157 | 2005-11-07 08:50:53 +0000 | [diff] [blame] | 68 | if [ -n "$SKIP" ] |
Bernhard Reutner-Fischer | b47a74f | 2005-09-23 15:44:46 +0000 | [diff] [blame] | 69 | then |
Rob Landley | 4bb1b04 | 2006-03-16 15:20:45 +0000 | [diff] [blame] | 70 | echo "SKIPPED: $NAME" |
Rob Landley | 48c6157 | 2005-11-07 08:50:53 +0000 | [diff] [blame] | 71 | return 0 |
Bernhard Reutner-Fischer | b47a74f | 2005-09-23 15:44:46 +0000 | [diff] [blame] | 72 | fi |
| 73 | |
Denis Vlasenko | 687a26f | 2008-05-02 21:46:30 +0000 | [diff] [blame] | 74 | $ECHO -ne "$3" > expected |
| 75 | $ECHO -ne "$4" > input |
Rob Landley | 67d5b8b | 2006-05-02 21:39:04 +0000 | [diff] [blame] | 76 | [ -z "$VERBOSE" ] || echo "echo '$5' | $2" |
Denis Vlasenko | 687a26f | 2008-05-02 21:46:30 +0000 | [diff] [blame] | 77 | $ECHO -ne "$5" | eval "$2" > actual |
Rob Landley | 1689075 | 2005-09-02 00:41:53 +0000 | [diff] [blame] | 78 | RETVAL=$? |
| 79 | |
Denis Vlasenko | 81e97a1 | 2008-05-15 22:43:48 +0000 | [diff] [blame] | 80 | if cmp expected actual >/dev/null 2>/dev/null |
Rob Landley | 1689075 | 2005-09-02 00:41:53 +0000 | [diff] [blame] | 81 | then |
Denis Vlasenko | 81e97a1 | 2008-05-15 22:43:48 +0000 | [diff] [blame] | 82 | echo "PASS: $NAME" |
| 83 | else |
Denis Vlasenko | 2dea01c | 2008-05-02 09:39:09 +0000 | [diff] [blame] | 84 | FAILCOUNT=$(($FAILCOUNT + 1)) |
Rob Landley | 4bb1b04 | 2006-03-16 15:20:45 +0000 | [diff] [blame] | 85 | echo "FAIL: $NAME" |
Denis Vlasenko | 81e97a1 | 2008-05-15 22:43:48 +0000 | [diff] [blame] | 86 | [ -z "$VERBOSE" ] || diff -u expected actual |
Rob Landley | 1689075 | 2005-09-02 00:41:53 +0000 | [diff] [blame] | 87 | fi |
| 88 | rm -f input expected actual |
| 89 | |
Denis Vlasenko | 81e97a1 | 2008-05-15 22:43:48 +0000 | [diff] [blame] | 90 | [ -z "$DEBUG" ] || set +x |
Mike Frysinger | 3f91d7a | 2005-09-24 00:52:58 +0000 | [diff] [blame] | 91 | |
Rob Landley | 1689075 | 2005-09-02 00:41:53 +0000 | [diff] [blame] | 92 | return $RETVAL |
| 93 | } |
Rob Landley | 3a32475 | 2006-03-09 22:04:33 +0000 | [diff] [blame] | 94 | |
| 95 | # Recursively grab an executable and all the libraries needed to run it. |
| 96 | # Source paths beginning with / will be copied into destpath, otherwise |
| 97 | # the file is assumed to already be there and only its library dependencies |
| 98 | # are copied. |
| 99 | |
Denis Vlasenko | cd0df46 | 2007-06-05 22:29:14 +0000 | [diff] [blame] | 100 | mkchroot() |
Rob Landley | 3a32475 | 2006-03-09 22:04:33 +0000 | [diff] [blame] | 101 | { |
| 102 | [ $# -lt 2 ] && return |
| 103 | |
Denis Vlasenko | 687a26f | 2008-05-02 21:46:30 +0000 | [diff] [blame] | 104 | $ECHO -n . |
Rob Landley | 4bb1b04 | 2006-03-16 15:20:45 +0000 | [diff] [blame] | 105 | |
Rob Landley | 3a32475 | 2006-03-09 22:04:33 +0000 | [diff] [blame] | 106 | dest=$1 |
| 107 | shift |
| 108 | for i in "$@" |
| 109 | do |
Denis Vlasenko | 2dea01c | 2008-05-02 09:39:09 +0000 | [diff] [blame] | 110 | #bashism: [ "${i:0:1}" == "/" ] || i=$(which $i) |
| 111 | i=$(which $i) # no-op for /bin/prog |
Rob Landley | 6bc1063 | 2006-03-18 03:01:57 +0000 | [diff] [blame] | 112 | [ -f "$dest/$i" ] && continue |
| 113 | if [ -e "$i" ] |
Rob Landley | 3a32475 | 2006-03-09 22:04:33 +0000 | [diff] [blame] | 114 | then |
Rob Landley | 3a32475 | 2006-03-09 22:04:33 +0000 | [diff] [blame] | 115 | d=`echo "$i" | grep -o '.*/'` && |
| 116 | mkdir -p "$dest/$d" && |
| 117 | cat "$i" > "$dest/$i" && |
| 118 | chmod +x "$dest/$i" |
Rob Landley | 6bc1063 | 2006-03-18 03:01:57 +0000 | [diff] [blame] | 119 | else |
| 120 | echo "Not found: $i" |
Rob Landley | 3a32475 | 2006-03-09 22:04:33 +0000 | [diff] [blame] | 121 | fi |
| 122 | mkchroot "$dest" $(ldd "$i" | egrep -o '/.* ') |
| 123 | done |
| 124 | } |
Rob Landley | 4bb1b04 | 2006-03-16 15:20:45 +0000 | [diff] [blame] | 125 | |
| 126 | # Set up a chroot environment and run commands within it. |
| 127 | # Needed commands listed on command line |
| 128 | # Script fed to stdin. |
| 129 | |
Denis Vlasenko | cd0df46 | 2007-06-05 22:29:14 +0000 | [diff] [blame] | 130 | dochroot() |
Rob Landley | 4bb1b04 | 2006-03-16 15:20:45 +0000 | [diff] [blame] | 131 | { |
| 132 | mkdir tmpdir4chroot |
| 133 | mount -t ramfs tmpdir4chroot tmpdir4chroot |
| 134 | mkdir -p tmpdir4chroot/{etc,sys,proc,tmp,dev} |
| 135 | cp -L testing.sh tmpdir4chroot |
| 136 | |
| 137 | # Copy utilities from command line arguments |
| 138 | |
Denis Vlasenko | 687a26f | 2008-05-02 21:46:30 +0000 | [diff] [blame] | 139 | $ECHO -n "Setup chroot" |
Rob Landley | 4bb1b04 | 2006-03-16 15:20:45 +0000 | [diff] [blame] | 140 | mkchroot tmpdir4chroot $* |
| 141 | echo |
| 142 | |
| 143 | mknod tmpdir4chroot/dev/tty c 5 0 |
| 144 | mknod tmpdir4chroot/dev/null c 1 3 |
| 145 | mknod tmpdir4chroot/dev/zero c 1 5 |
| 146 | |
| 147 | # Copy script from stdin |
| 148 | |
| 149 | cat > tmpdir4chroot/test.sh |
| 150 | chmod +x tmpdir4chroot/test.sh |
| 151 | chroot tmpdir4chroot /test.sh |
| 152 | umount -l tmpdir4chroot |
| 153 | rmdir tmpdir4chroot |
| 154 | } |