3 # Copyright (C) 2001, 2002 by Martin Pool <mbp@samba.org>
4 # Copyright (C) 2003-2022 Wayne Davison
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License version
8 # 2 as published by the Free Software Foundation.
10 # This program is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 # Lesser General Public License for more details.
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 # -------------------------------------------------------------------------
21 # rsync top-level test script -- this invokes all the other more
22 # detailed tests in order. This script can either be called by `make
23 # check' or `make installcheck'. `check' runs against the copies of
24 # the program and other files in the build directory, and
25 # `installcheck' against the installed copy of the program.
27 # It can also be called on a single test file using a run like this:
29 # preserve_scratch=yes whichtests=itemize.test ./runtests.sh
31 # In either case we need to also be able to find the source directory,
32 # since we read test scripts and possibly other information from
35 # Whenever possible, informational messages are written to stdout and
36 # error messages to stderr. They're separated out by the build farm
39 # According to the GNU autoconf manual, the only valid place to set up
40 # directory locations is through Make, since users are allowed to (try
41 # to) change their mind on the Make command line. So, Make has to
42 # pass in all the values we need.
44 # For other configured settings we read ./config.sh, which tells us
45 # about shell commands on this machine and similar things.
47 # rsync_bin gives the location of the rsync binary. This is either
48 # builddir/rsync if we're testing an uninstalled copy, or
49 # install_prefix/bin/rsync if we're testing an installed copy. On the
50 # build farm rsync will be installed, but into a scratch /usr.
52 # srcdir gives the location of the source tree, which lets us find the
53 # build scripts. At the moment we assume we are invoked from the
56 # This script must be invoked from the build directory.
58 # A scratch directory, 'testtmp', is used in the build directory to
59 # hold per-test subdirectories.
61 # This script also uses the $loglevel environment variable. 1 is the
62 # default value, and 10 the most verbose. You can set this from the
63 # Make command line. It's also set by the build farm to give more
64 # detail for failing builds.
66 # -------------------------------------------------------------------------
68 # NOTES FOR TEST CASES:
70 # Each test case runs in its own shell.
72 # Exit codes from tests:
75 # 2 error in starting tests
76 # 77 this test skipped (random value unlikely to happen by chance, same as
79 # HOWEVER, the overall exit code to the farm is different: we return
80 # the *number of tests that failed*, so that it will show up nicely in
81 # the overall summary.
83 # rsync.fns contains some general setup functions and definitions.
85 # -------------------------------------------------------------------------
87 # NOTES ON PORTABILITY:
89 # Both this script and the Makefile have to be pretty conservative
90 # about which Unix features they use.
92 # We cannot count on Make exporting variables to commands, unless
93 # they're explicitly given on the command line.
95 # Also, we can't count on 'cp -a' or 'mkdir -p', although they're
96 # pretty handy (see function makepath for the latter).
98 # I think some of the GNU documentation suggests that we shouldn't
99 # rely on shell functions. However, the Bash manual seems to say that
100 # they're in POSIX 1003.2, and since the build farm relies on them
101 # they're probably working on most machines we really care about.
103 # You cannot use "function foo {" syntax, but must instead say "foo()
104 # {", or it breaks on FreeBSD.
106 # BSD machines tend not to have "head" or "seq".
108 # You cannot do "export VAR=VALUE" all on one line; the export must be
109 # separate from the assignment. (SCO SysV)
111 # Don't rely on grep -q, as that doesn't work everywhere -- just redirect
112 # stdout to /dev/null to keep it quiet.
114 # -------------------------------------------------------------------------
118 # We need a good protection against tests that hang indefinitely.
119 # Perhaps some combination of starting them in the background, wait,
122 # Perhaps we need a common way to cleanup tests. At the moment just
123 # clobbering the directory when we're done should be enough.
125 # If any of the targets fail, then (GNU?) Make returns 2, instead of
126 # the return code from the failing command. This is fine, but it
127 # means that the build farm just shows "2" for failed tests, not the
128 # number of tests that actually failed. For more details we might
129 # need to grovel through the log files to find a line saying how many
141 if [ -d /usr
/xpg
4/bin
]; then
142 PATH
="/usr/xpg4/bin/:$PATH"
146 if [ "x$loglevel" != x
] && [ "$loglevel" -gt 8 ]; then
148 # If it doesn't work the first time, don't keep trying.
149 RUNSHFLAGS
="$RUNSHFLAGS -x"
154 if test x
"$TOOLDIR" = x
; then
158 if test x
"$srcdir" = x ||
test x
"$srcdir" = x.
; then
161 if test x
"$rsync_bin" = x
; then
162 rsync_bin
="$TOOLDIR/rsync"
165 # This allows the user to specify extra rsync options -- use carefully!
166 RSYNC
="$rsync_bin $*"
167 #RSYNC="valgrind $rsync_bin $*"
170 if grep -E '^#define HAVE_LUTIMES 1' config.h
>/dev
/null
; then
171 TLS_ARGS
="$TLS_ARGS -l"
173 if grep -E '#undef CHOWN_MODIFIES_SYMLINK' config.h
>/dev
/null
; then
174 TLS_ARGS
="$TLS_ARGS -L"
177 export POSIXLY_CORRECT TOOLDIR srcdir RSYNC TLS_ARGS
179 echo "============================================================"
180 echo "$0 running in $TOOLDIR"
181 echo " rsync_bin=$RSYNC"
182 echo " srcdir=$srcdir"
183 echo " TLS_ARGS=$TLS_ARGS"
185 if [ -f /usr
/bin
/whoami
]; then
186 testuser
=`/usr/bin/whoami`
187 elif [ -f /usr
/ucb
/whoami
]; then
188 testuser
=`/usr/ucb/whoami`
189 elif [ -f /bin
/whoami
]; then
190 testuser
=`/bin/whoami`
192 testuser
=`id -un 2>/dev/null || echo ${LOGNAME:-${USERNAME:-${USER:-'UNKNOWN'}}}`
195 echo " testuser=$testuser"
196 echo " os=`uname -a`"
198 # It must be "yes", not just nonnull
199 if [ "x$preserve_scratch" = xyes
]; then
200 echo " preserve_scratch=yes"
202 echo " preserve_scratch=no"
205 # Check if setacl/setfacl is around and if it supports the -k or -s option.
206 if setacl
-k u
::7,g
::5,o
:5 testsuite
2>/dev
/null
; then
207 setfacl_nodef
='setacl -k'
208 elif setfacl
--help 2>&1 |
grep ' -k,\|\[-[a-z]*k' >/dev
/null
; then
209 setfacl_nodef
='setfacl -k'
210 elif setfacl
-s u
::7,g
::5,o
:5 testsuite
2>/dev
/null
; then
211 setfacl_nodef
='setfacl -s u::7,g::5,o:5'
213 # The "true" command runs successfully, but does nothing.
219 if [ ! -f "$rsync_bin" ]; then
220 echo "rsync_bin $rsync_bin is not a file" >&2
224 if [ ! -d "$srcdir" ]; then
225 echo "srcdir $srcdir is not a directory" >&2
229 expect_skipped
="${RSYNC_EXPECT_SKIPPED-IGNORE}"
236 # Directory that holds the other test subdirs. We create separate dirs
237 # inside for each test case, so that they can be left behind in case of
238 # failure to aid investigation. We don't remove the testtmp subdir at
239 # the end so that it can be configured as a symlink to a filesystem that
240 # has ACLs and xattr support enabled (if desired).
241 scratchbase
="${scratchbase:-$TOOLDIR}"/testtmp
242 echo " scratchbase=$scratchbase"
243 [ -d "$scratchbase" ] || mkdir
"$scratchbase"
245 suitedir
="$srcdir/testsuite"
248 export scratchdir suitedir TESTRUN_TIMEOUT
251 [ -d "$scratchdir" ] && chmod -R u
+rwX
"$scratchdir" && rm -rf "$scratchdir"
253 # Get rid of default ACLs and dir-setgid to avoid confusing some tests.
254 $setfacl_nodef "$scratchdir" 2>/dev
/null || true
255 chmod g-s
"$scratchdir"
257 /*) ln -s "$srcdir" "$scratchdir/src" ;;
258 *) ln -s "$TOOLDIR/$srcdir" "$scratchdir/src" ;;
263 maybe_discard_scratch
() {
264 [ x
"$preserve_scratch" != xyes
] && [ -d "$scratchdir" ] && rm -rf "$scratchdir"
268 if [ "x$whichtests" = x
]; then
275 for testscript
in $suitedir/$whichtests; do
276 testbase
=`echo $testscript | sed -e 's!.*/!!' -e 's/.test\$//'`
277 scratchdir
="$scratchbase/$testbase"
281 case "$testscript" in
282 *hardlinks
*) TESTRUN_TIMEOUT
=600 ;;
283 *) TESTRUN_TIMEOUT
=300 ;;
287 "$TOOLDIR/"testrun
$RUNSHFLAGS "$testscript" >"$scratchdir/test.log" 2>&1
291 if [ "x$always_log" = xyes
] ||
( [ $result != 0 ] && [ $result != 77 ] && [ $result != 78 ] )
293 echo "----- $testbase log follows"
294 cat "$scratchdir/test.log"
295 echo "----- $testbase log ends"
296 if [ -f "$scratchdir/rsyncd.log" ]; then
297 echo "----- $testbase rsyncd.log follows"
298 cat "$scratchdir/rsyncd.log"
299 echo "----- $testbase rsyncd.log ends"
305 echo "PASS $testbase"
306 passed
=`expr $passed + 1`
307 maybe_discard_scratch
310 # backticks will fill the whole file onto one line, which is a feature
311 whyskipped
=`cat "$scratchdir/whyskipped"`
312 echo "SKIP $testbase ($whyskipped)"
313 skipped_list
="$skipped_list,$testbase"
314 skipped
=`expr $skipped + 1`
315 maybe_discard_scratch
318 # It failed, but we expected that. don't dump out error logs,
319 # because most users won't want to see them. But do leave
320 # the working directory around.
321 echo "XFAIL $testbase"
322 failed
=`expr $failed + 1`
325 echo "FAIL $testbase"
326 failed
=`expr $failed + 1`
327 if [ "x$nopersist" = xyes
]; then
333 echo '------------------------------------------------------------'
334 echo "----- overall results:"
335 echo " $passed passed"
336 [ "$failed" -gt 0 ] && echo " $failed failed"
337 [ "$skipped" -gt 0 ] && echo " $skipped skipped"
338 [ "$missing" -gt 0 ] && echo " $missing missing"
339 if [ "$full_run" = yes ] && [ "$expect_skipped" != IGNORE
]; then
340 skipped_list
=`echo "$skipped_list" | sed 's/^,//'`
341 echo "----- skipped results:"
342 echo " expected: $expect_skipped"
343 echo " got: $skipped_list"
348 echo '------------------------------------------------------------'
350 # OK, so expr exits with 0 if the result is neither null nor zero; and
351 # 1 if the expression is null or zero. This is the opposite of what
352 # we want, and if we just call expr then this script will always fail,
355 result
=`expr $failed + $missing || true`
356 if [ "$result" = 0 ] && [ "$skipped_list" != "$expect_skipped" ]; then
359 echo "overall result is $result"