More test case work:
[rsync/rsync.git] / runtests.sh
1 #! /bin/sh
2
3 # Copyright (C) 2001 by Martin Pool <mbp@samba.org>
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU Lesser General Public License version
7 # 2.1 as published by the Free Software Foundation.
8 #
9 # This program is distributed in the hope that it will be useful, but
10 # WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Lesser General Public License for more details.
13
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this program; if not, write to the Free Software
16 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18
19 # rsync top-level test script -- this invokes all the other more
20 # detailed tests in order.  This script can either be called by `make
21 # check' or `make installcheck'.  `check' runs against the copies of
22 # the program and other files in the build directory, and
23 # `installcheck' against the installed copy of the program.  
24
25 # In either case we need to also be able to find the source directory,
26 # since we read test scripts and possibly other information from
27 # there.
28
29 # Whenever possible, informational messages are written to stdout and
30 # error messages to stderr.  They're separated out by the build farm
31 # display scripts.
32
33 # According to the GNU autoconf manual, the only valid place to set up
34 # directory locations is through Make, since users are allowed to (try
35 # to) change their mind on the Make command line.  So, Make has to
36 # pass in all the values we need.
37
38 # For other configured settings we read ./config.sh, which tells us
39 # about shell commands on this machine and similar things.
40
41 # rsync_bin gives the location of the rsync binary.  This is either
42 # builddir/rsync if we're testing an uninstalled copy, or
43 # install_prefix/bin/rsync if we're testing an installed copy.  On the
44 # build farm rsync will be installed, but into a scratch /usr.
45
46 # srcdir gives the location of the source tree, which lets us find the
47 # build scripts.  At the moment we assume we are invoked from the
48 # source directory.
49
50 # This script must be invoked from the build directory.  
51
52 # A scratch directory, 'testtmp', is created in the build directory to
53 # hold working files.
54
55 # This script also uses the $loglevel environment variable.  1 is the
56 # default value, and 10 the most verbose.  You can set this from the
57 # Make command line.  It's also set by the build farm to give more
58 # detail for failing builds.
59
60
61 # NOTES FOR TEST CASES:
62
63 # Each test case runs in its own shell. 
64
65 # Exit codes: (passed back to build farm):
66
67 #    1  tests failed
68 #    2  error in starting tests
69 #   77  this test skipped (random value unlikely to happen by chance, same as
70 #       automake)
71
72 # rsync.fns contains some general setup functions and definitions.
73
74
75 # NOTES ON PORTABILITY:
76
77 # Both this script and the Makefile have to be pretty conservative
78 # about which Unix features they use.
79
80 # We cannot count on Make exporting variables to commands, unless
81 # they're explicitly given on the command line.
82
83 # Also, we can't count on 'cp -a' or 'mkdir -p', although they're
84 # pretty handy.
85
86 # Eventually we would like to not count on shell functions.
87
88
89 set -e
90
91 . "./shconfig"
92
93 RUNSHFLAGS='-e'
94
95 if [ -n "$loglevel" ] && [ "$loglevel" -gt 8 ]
96 then
97     RUNSHFLAGS="$RUNSHFLAGS -x"
98     set -x
99 fi
100
101 echo "============================================================"
102 echo "$0 running in `pwd`"
103 echo "    rsync_bin=$rsync_bin"
104 echo "    srcdir=$srcdir"
105
106 if ! test -f $rsync_bin
107 then
108     echo "rsync_bin $rsync_bin is not a file" >&2
109     exit 2
110 fi
111
112 if ! test -d $srcdir
113 then
114     echo "srcdir $srcdir is not a directory" >&2
115     exit 2
116 fi
117
118
119 export rsync_bin
120
121 skipped=0
122 missing=0
123 passed=0
124 failed=0
125
126 scratchdir=./testtmp
127 [ -d "$scratchdir" ] && rm -r "$scratchdir"
128 mkdir "$scratchdir"
129
130 echo "    scratchdir=$scratchdir"
131 suitedir="$srcdir/testsuite"
132
133 export scratchdir suitedir
134
135 for testbase in rsync-hello hands ssh-basic
136 do
137     testscript="$suitedir/$testbase.test"
138     if test \! -f "$testscript" 
139     then
140         echo "$testscript does not exist" >&2
141         missing=`expr $missing + 1`
142         continue
143     fi
144
145     echo "------------------------------------------------------------"
146     echo "----- $testbase running"
147
148     if sh $RUNSHFLAGS "$testscript"
149     then
150         echo "----- $testbase completed succesfully"
151         passed=`expr $passed + 1`
152     else 
153         case $? in
154         77)
155             echo "----- $testbase skipped"
156             skipped=`expr $skipped + 1`
157             ;;
158         *)
159             echo "----- $testbase failed!"
160             failed=`expr $failed + 1`
161         esac
162     fi
163 done
164
165 echo '------------------------------------------------------------'
166 echo "----- overall results:"
167 echo "      $passed passed"
168 echo "      $failed failed"
169 echo "      $skipped skipped"
170 echo "      $missing missing"
171 echo '------------------------------------------------------------'
172
173 if test $failed -gt 0
174 then
175     exit 1
176 else
177     exit 0
178 fi