3 # Copyright (C) 2001 by Martin Pool <mbp@samba.org>
5 # General-purpose test functions for rsync.
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License version
9 # 2 as published by the Free Software Foundation.
11 # This program is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 # Lesser General Public License for more details.
16 # You should have received a copy of the GNU Lesser General Public
17 # License along with this program; if not, write to the Free Software
18 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
30 if diff -u $srcdir/testsuite
/rsync.fns
$srcdir/testsuite
/rsync.fns
>/dev
/null
2>&1; then
37 echo $ECHO_N "Test $1: $ECHO_C"
40 echo "${ECHO_T} done."
43 echo "${ECHO_T} failed!"
54 find "$@" -print |
sort |
xargs "$TOOLDIR/tls"
63 # Build test directories TO and FROM, with FROM full of files.
66 # Clean before creation
70 [ -d $TMP ] || mkdir
$TMP
71 [ -d $FROM ] || mkdir
$FROM
72 [ -d $TO ] || mkdir
$TO
74 # On some BSD systems, the umask affects the mode of created
75 # symlinks, even though the mode apparently has no effect on how
76 # the links behave in the future, and it cannot be changed using
77 # chmod! rsync always sets its umask to 000 so that it can
78 # accurately recreate permissions, but this script is probably run
79 # with a different umask.
81 # This causes a little problem that "ls -l" of the two will not be
82 # the same. So, we need to set our umask before doing any creations.
86 mkdir
${FROM}/emptydir
88 # a hundred lines of text or so
89 rsync_ls_lR
"${srcdir}" > ${FROM}/filelist
91 # This might fail on systems that don't have -n
92 echo $ECHO_N "This file has no trailing lf$ECHO_C" > ${FROM}/nolf
94 ln -s nolf
${FROM}/nolf-symlink
97 cat $srcdir/*.c
> ${FROM}/text
99 cp ${FROM}/text
${FROM}/dir
100 mkdir
${FROM}/dir
/subdir
101 mkdir
${FROM}/dir
/subdir
/subsubdir
102 ls -ltr /etc
> ${FROM}/dir
/subdir
/subsubdir
/etc-ltr-list
103 mkdir
${FROM}/dir
/subdir
/subsubdir2
104 ls -lt /bin
> ${FROM}/dir
/subdir
/subsubdir
2/bin-lt-list
107 # ls -lR ${srcdir} | head -10 || echo failed
112 # Many machines do not have "mkdir -p", so we have to build up long paths.
119 if echo $p |
grep '^/' >/dev
/null
124 # This will break if $1 contains a space.
125 for c
in `echo $p | tr '/' ' '`
127 if [ -d "$c" ] || mkdir
"$c"
131 echo "failed to create $c" >&2; return $?
139 ###########################
140 # Run a test (in '$1') then compare directories $2 and $3 to see if
141 # there are any difference. If there are, explain them.
143 # So normally basically $1 should be an rsync command, and $2 and $3
144 # the source and destination directories. This is only good when you
145 # expect to transfer the whole directory exactly as is. If some files
146 # should be excluded, you might need to use something else.
151 # We can just write everything to stdout/stderr, because the
152 # wrapper hides it unless there is a problem.
154 echo "Running: \"$1\""
157 if [ $status != 0 ]; then
162 echo "check how the files compare with diff:"
164 for f
in `cd "$2"; find . -type f -print `
166 diff $diffopt "$2"/"$f" "$3"/"$f" || failed
=YES
170 echo "check how the directory listings compare with diff:"
172 ( cd "$2" && rsync_ls_lR .
) > ${TMP}/ls-from
173 ( cd "$3" && rsync_ls_lR .
) > ${TMP}/ls-to
174 diff $diffopt ${TMP}/ls-from
${TMP}/ls-to || failed
=YES
175 if [ -z "${failed}" ] ; then
183 build_rsyncd_conf
() {
184 # Build an appropriate configuration file
185 conf
="$scratchdir/test-rsyncd.conf"
186 echo "building configuration $conf"
189 pidfile
="$scratchdir/rsyncd.pid"
190 logfile
="$scratchdir/rsyncd.log"
193 # rsyncd configuration file autogenerated by $0
197 hosts allow = localhost, 127.0.0.1
215 fromdir
="$scratchdir/from"
216 todir
="$scratchdir/to"
218 date >"$fromdir/referent"
219 ln -s referent
"$fromdir/relative"
220 ln -s "$fromdir/referent" "$fromdir/absolute"
221 ln -s nonexistent
"$fromdir/dangling"
222 ln -s "$srcdir/rsync.c" "$fromdir/unsafe"
232 echo "$@" > "$TMP/whyskipped"
236 # It failed, but we expected that. don't dump out error logs,
237 # because most users won't want to see them. But do leave
238 # the working directory around.
244 # Determine what shell command will appropriately test for links.
245 ln -s foo
"$scratchdir/testlink"
246 for cmd
in test /bin
/test /usr
/bin
/test /usr
/ucb
/bin
/test /usr
/ucb
/test
250 if $cmd $switch "$scratchdir/testlink" 2>/dev
/null
253 TEST_SYMLINK_CMD
="$cmd $switch"
254 # i wonder if break 2 is portable?
259 # ok, now get rid of it
260 rm "$scratchdir/testlink"
263 if [ "x$TEST_SYMLINK_CMD" = 'x' ]
265 test_fail
"Couldn't determine how to test for symlinks"
267 echo "Testing for symlinks using '$TEST_SYMLINK_CMD'"
271 # Test whether something is a link, allowing for shell peculiarities
273 # note the variable contains the first option and therefore is not quoted
274 $TEST_SYMLINK_CMD "$1"
278 # We need to set the umask to be reproducible. Note also that when we
279 # do some daemon tests as root, we will setuid() and therefore the
280 # directory has to be writable by the nobody user in some cases. The
281 # best thing is probably to explicitly chmod those directories after