]> git.saurik.com Git - apt.git/blob - test/integration/run-tests
test: Get rid of debhelper rules.tiny example dep
[apt.git] / test / integration / run-tests
1 #!/bin/sh
2 set -e
3
4 TESTTORUN=''
5 while [ -n "$1" ]; do
6 if [ "$1" = "-q" ]; then
7 export MSGLEVEL=2
8 elif [ "$1" = "-v" ]; then
9 export MSGLEVEL=4
10 elif [ "$1" = '--color=no' ]; then
11 export MSGCOLOR='NO'
12 elif [ "$1" = '--color=yes' ]; then
13 export MSGCOLOR='YES'
14 elif [ "$1" = '--color' ]; then
15 export MSGCOLOR="$(echo "$2" | tr 'a-z' 'A-Z')"
16 shift
17 elif [ "$1" = '--level' ]; then
18 export MSGLEVEL=$2
19 shift
20 elif [ "$1" = '-j' ]; then
21 APT_TEST_JOBS=$2
22 shift
23 elif [ -x "$1" ]; then
24 TESTTORUN="$1"
25 else
26 echo >&2 "WARNING: Unknown parameter »$1« will be ignored"
27 fi
28 shift
29 done
30 export MSGLEVEL="${MSGLEVEL:-3}"
31
32 if [ "${MSGCOLOR:-YES}" = 'YES' ]; then
33 if [ ! -t 1 ]; then # but check that we output to a terminal
34 export MSGCOLOR='NO'
35 fi
36 fi
37 if [ "$MSGCOLOR" != 'NO' ]; then
38 CTEST='\033[1;32m'
39 CHIGH='\033[1;35m'
40 CRESET='\033[0m'
41 else
42 CTEST=''
43 CHIGH=''
44 CRESET=''
45 fi
46
47 if [ -n "$TESTTORUN" ]; then
48 # collecting the output of one test to have it together
49 OUTPUT="$(mktemp)"
50 CURRENTTRAP="rm -f \"$OUTPUT\"; $CURRENTTRAP"
51 trap "$CURRENTTRAP" 0 HUP INT QUIT ILL ABRT FPE SEGV PIPE TERM
52 {
53 if [ "$MSGLEVEL" -le 2 ]; then
54 printf "${CTEST}Testcase ${CHIGH}${TESTTORUN##*/}${CRESET}: "
55 else
56 printf "${CTEST}Run Testcase ${CHIGH}${TESTTORUN##*/}${CRESET}\n"
57 fi
58 if ! "$TESTTORUN"; then
59 FAIL='yes'
60 if [ "$MSGLEVEL" -le 2 ]; then
61 printf >&2 "\n${CHIGH}Running ${TESTTORUN##*/} -> FAILED${CRESET}"
62 else
63 echo >&2 "${CHIGH}Running ${TESTTORUN##*/} -> FAILED${CRESET}"
64 fi
65 fi
66 if [ "$MSGLEVEL" -le 2 ]; then
67 echo
68 fi
69 } >"$OUTPUT" 2>&1
70 # without we end up getting stepped output 'randomly'
71 stty sane
72 cat >&2 "$OUTPUT"
73 stty sane
74 if [ "$FAIL" = 'yes' ]; then
75 exit 1
76 else
77 exit 0
78 fi
79 fi
80
81 FAIL=0
82 PASS=0
83 ALL=0
84 FAILED_TESTS=""
85 DIR="$(readlink -f "$(dirname "$0")")"
86 cd "$DIR"
87 TESTLIST="$(find . -mindepth 1 -maxdepth 1 -regex '^\./test-[^/]*$' | sort)"
88 if [ -n "$APT_TEST_JOBS" ]; then
89 if [ "$MSGCOLOR" != 'NO' ]; then
90 export MSGCOLOR='ALWAYS'
91 fi
92 parallel=parallel
93 if command -v moreutils-parallel >/dev/null 2>&1; then
94 parallel=moreutils-parallel
95 fi
96 exec $parallel -j "$APT_TEST_JOBS" "./$(basename "$0")" -- $(echo "$TESTLIST")
97 fi
98 TOTAL="$(echo "$TESTLIST" | wc -l)"
99 for testcase in $TESTLIST; do
100 if [ "$MSGLEVEL" -le 2 ]; then
101 printf "($(($ALL+1))/${TOTAL}) ${CTEST}Testcase ${CHIGH}${testcase##*/}${CRESET}: "
102 else
103 printf "${CTEST}Run Testcase ($(($ALL+1))/${TOTAL}) ${CHIGH}${testcase##*/}${CRESET}\n"
104 fi
105 if ! ${testcase}; then
106 FAIL=$((FAIL+1))
107 FAILED_TESTS="$FAILED_TESTS ${testcase##*/}"
108 if [ "$MSGLEVEL" -le 2 ]; then
109 printf >&2 "\n${CHIGH}Running ${testcase##*/} -> FAILED${CRESET}"
110 else
111 echo >&2 "${CHIGH}Running ${testcase##*/} -> FAILED${CRESET}"
112 fi
113 else
114 PASS=$((PASS+1))
115 fi
116 ALL=$((ALL+1))
117 if [ "$MSGLEVEL" -le 2 ]; then
118 echo
119 fi
120 done
121
122 echo >&2 "Statistics: $ALL tests were run: $PASS successfully and $FAIL failed"
123 if [ -n "$FAILED_TESTS" ]; then
124 echo >&2 "Failed tests: $FAILED_TESTS"
125 else
126 echo >&2 'All tests seem to have been run successfully. What could possibly go wrong?'
127 fi
128 # ensure we don't overflow
129 exit $((FAIL <= 255 ? FAIL : 255))