aboutsummaryrefslogtreecommitdiff
path: root/testsuite/testing.sh
blob: b7c85c227ba009c1c0399e9015d7ae16a4c1159b (plain)
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
# Simple test harness infrastructurei for BusyBox
#
# Copyright 2005 by Rob Landley
#
# License is GPLv2, see LICENSE in the busybox tarball for full license text.

# The "testing" function uses one environment variable:
#	COMMAND = command to execute
#
# The function takes five arguments:
#	$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
# 

verbose=0
debug=0
force=0
for x in "$@" ; do
	case "$x" in
	-v|--verbose)  verbose=1; shift;;
	-d|--debug)    debug=1; shift;;
	-f|--force)    force=1; shift;;
	--)            break;;
	-*)            echo "Unknown option '$x'"; exit 1;;
	*)             break;;
	esac
done

if [ -n "$VERBOSE" ] ; then
	verbose=1
fi
if [ -n "$DEBUG" ] ; then
	debug=1
fi

export FAILCOUNT=0

# Helper functions

config_is_set ()
{
  local uc_what=$(echo ${1?} | tr a-z A-Z)
  grep -q "^[ 	]*CONFIG_${uc_what}" ${bindir:-..}/.config || \
    grep -q "^[ 	]*BB_CONFIG_${uc_what}" ${bindir:-..}/.config
  return $?
}

# The testing function

testing()
{
  if [ $# -ne 5 ]
  then
    echo "Test $1 has the wrong number of arguments" >&2
    exit
  fi

  if [ "$debug" = "1" ] ; then
    set -x
  fi

  if [ -n "$_BB_CONFIG_DEP" ] && [ "${force}" = "0" ]
  then
    if ! config_is_set "$_BB_CONFIG_DEP"
    then
      echo "SKIPPED: $1"
      return 0
    fi
  fi

  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
	((FAILCOUNT++))
	echo "FAIL: $1"
	if [ "$verbose" = "1" ]
	then
		diff -u expected actual
	fi
  else
	echo "PASS: $1"
  fi
  rm -f input expected actual

  if [ "$debug" = "1" ] ; then
    set +x
  fi

  return $RETVAL
}