Jos points out that test -L is still broken on Solaris. Now we try up
[rsync/rsync.git] / testsuite / rsync.fns
1 #! /bin/sh
2
3 # Copyright (C) 2001 by Martin Pool <mbp@samba.org>
4
5 # General-purpose test functions for rsync.
6
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.
10 #
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.
15
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.
19
20
21 TMP="$scratchdir"
22 FROM=${TMP}/from
23 TO=${TMP}/to
24 LOG=${TMP}/log
25 RSYNC="$rsync_bin"
26
27 # Berkley's nice.
28 PATH="$PATH:/usr/ucb"
29
30 runtest() {
31     echo $ECHO_N "Test $1: $ECHO_C"
32     if eval "$2"
33     then
34         echo "${ECHO_T} done."
35         return 0
36     else
37         echo "${ECHO_T} failed!"
38         return 1
39     fi
40 }
41
42 printmsg() {
43     echo "$1"
44 }
45
46
47 rsync_ls_lR() {
48     find "$@" -print | sort | xargs "$TOOLDIR/tls"
49 }
50
51 rsync_getgroups() { 
52     "$TOOLDIR/getgroups"
53 }
54
55
56 ####################
57 # Build test directories TO and FROM, with FROM full of files.
58
59 hands_setup() {
60     # Clean before creation
61     rm -rf $FROM
62     rm -rf $TO
63
64     [ -d $TMP ] || mkdir $TMP
65     [ -d $FROM ] || mkdir $FROM
66     [ -d $TO ] || mkdir $TO
67
68     # On some BSD systems, the umask affects the mode of created
69     # symlinks, even though the mode apparently has no effect on how
70     # the links behave in the future, and it cannot be changed using
71     # chmod!  rsync always sets its umask to 000 so that it can
72     # accurately recreate permissions, but this script is probably run
73     # with a different umask. 
74
75     # This causes a little problem that "ls -l" of the two will not be
76     # the same.  So, we need to set our umask before doing any creations.
77
78     # set up test data
79     touch ${FROM}/empty
80     mkdir ${FROM}/emptydir
81
82     # a hundred lines of text or so
83     rsync_ls_lR "${srcdir}" > ${FROM}/filelist
84
85     # This might fail on systems that don't have -n
86     echo $ECHO_N "This file has no trailing lf$ECHO_C" > ${FROM}/nolf
87     umask 0
88     ln -s nolf ${FROM}/nolf-symlink
89     umask 022
90
91     cat $srcdir/*.c > ${FROM}/text
92     mkdir ${FROM}/dir
93     cp ${FROM}/text ${FROM}/dir
94     mkdir ${FROM}/dir/subdir
95     mkdir ${FROM}/dir/subdir/subsubdir
96     ls -ltr /etc > ${FROM}/dir/subdir/subsubdir/etc-ltr-list
97     mkdir ${FROM}/dir/subdir/subsubdir2
98     ls -lt /bin > ${FROM}/dir/subdir/subsubdir2/bin-lt-list
99
100 #      echo testing head:
101 #      ls -lR ${srcdir} | head -10 || echo failed
102 }
103
104
105 hands_cleanup() {
106     rm -r "$TMP"
107 }
108
109
110
111
112 ####################
113 # Many machines do not have "mkdir -p", so we have to build up long paths.
114 # How boring.  
115 makepath () {
116     echo "        makepath $1"
117     p="$1"
118     (
119         # Absolut Unix.
120         if echo $p | grep '^/' >/dev/null
121         then
122             cd /
123         fi
124     
125         # This will break if $1 contains a space.
126         for c in `echo $p | tr '/' ' '`
127         do 
128             if [ -d "$c" ] || mkdir "$c" 
129             then
130                 cd "$c" || return $?
131             else
132                 echo "failed to create $c" >&2; return $?
133             fi
134         done
135     )
136 }
137
138
139
140 ###########################
141 # Run a test (in '$1') then compare directories $2 and $3 to see if
142 # there are any difference.  If there are, explain them.
143
144 # So normally basically $1 should be an rsync command, and $2 and $3
145 # the source and destination directories.  This is only good when you
146 # expect to transfer the whole directory exactly as is.  If some files
147 # should be excluded, you might need to use something else.
148
149 checkit() {
150     failed=
151
152     # We can just write everything to stdout/stderr, because the
153     # wrapper hides it unless there is a problem.
154
155     echo "Running: \"$1\""  
156     eval "$1" 
157     status=$?
158     if [ $status != 0 ]; then
159         failed="YES";
160     fi
161
162     echo "-------------"
163     echo "check how the files compare with diff:"
164     echo ""
165     for f in `cd "$2"; find . -type f -print `
166     do 
167         diff -c "$2"/"$f" "$3"/"$f" || failed=YES
168     done
169
170     echo "-------------"
171     echo "check how the directory listings compare with diff:"
172     echo ""
173     ( cd "$2" && rsync_ls_lR . ) > ${TMP}/ls-from 
174     ( cd "$3" && rsync_ls_lR . ) > ${TMP}/ls-to 
175     diff -c ${TMP}/ls-from ${TMP}/ls-to || failed=YES
176     if [ -z "${failed}" ] ; then
177         return 0
178     else
179         return 1
180     fi
181 }
182
183
184 # In fact, we need a more general feature of capturing all stderr/log files,
185 # and dumping them if something goes wrong.
186
187 checkforlogs() {
188   # skip it if we're under debian-test
189   if test -n "${Debian}" ; then return 0 ; fi
190
191   if [ -f $1 -a -s $1 ] ; then
192         echo "Failures have occurred.  $1 follows:" >&2
193         cat $1 >&2
194         exit 1
195   fi
196 }
197
198
199 build_rsyncd_conf() {
200     # Build an appropriate configuration file
201     conf="$scratchdir/test-rsyncd.conf"
202     echo "building configuration $conf"
203
204     port=2612
205     pidfile="$scratchdir/rsyncd.pid"
206     logfile="$scratchdir/rsyncd.log"
207
208     cat >$conf <<EOF
209 # rsyncd configuration file autogenerated by $0
210
211 pid file = $pidfile
212 use chroot = no
213 hosts allow = localhost, 127.0.0.1
214 log file = $logfile
215
216 # We don't know if this machine has "nobody" or "nogroup", so use the quasi-canonical
217 # values of (uint16_t) -2. 
218
219 uid = 65534
220 gid = 65534
221
222 [test-from]
223         path = $FROM
224         read only = yes
225
226 [test-to]
227         path = $TO
228         read only = no
229 EOF
230 }
231
232
233 build_symlinks() {
234     fromdir="$scratchdir/from"
235     todir="$scratchdir/to"
236     mkdir "$fromdir"
237     date >"$fromdir/referent"
238     ln -s referent "$fromdir/relative"
239     ln -s "$fromdir/referent" "$fromdir/absolute"
240     ln -s nonexistent "$fromdir/dangling"
241     ln -s "$srcdir/rsync.c" "$fromdir/unsafe"
242 }
243
244 test_fail() {
245     echo "$@" >&2
246     exit 1
247 }
248
249 test_skipped() {
250     echo "$@" >&2
251     echo "$@" > "$TMP/whyskipped"
252     exit 77
253 }
254
255 # It failed, but we expected that.  don't dump out error logs, 
256 # because most users won't want to see them.  But do leave
257 # the working directory around.
258 test_xfail() {
259     echo "$@" >&2
260     exit 78
261 }
262
263 # Determine what shell command will appropriately test for links.
264 ln -s foo "$scratchdir/testlink"
265 for cmd in test /bin/test /usr/bin/test /usr/ucb/bin/test /usr/ucb/test
266 do
267     for switch in -h -L
268     do
269         if $cmd $switch "$scratchdir/testlink" 2>/dev/null
270         then
271             # how nice
272             TEST_SYMLINK_CMD="$cmd $switch"
273             # i wonder if break 2 is portable?
274             break 2
275         fi
276    done
277 done
278
279
280 if [ "x$TEST_SYMLINK_CMD" = 'x' ]
281 then
282     test_fail "Couldn't determine how to test for symlinks"
283 else
284     echo "Testing for symlinks using '$TEST_SYMLINK_CMD'"
285 fi
286         
287
288 # Test whether something is a link, allowing for shell peculiarities
289 is_a_link() {
290     # note the variable contains the first option and therefore is not quoted
291     $TEST_SYMLINK_CMD "$1"
292 }
293
294
295 # We need to set the umask to be reproducible.  Note also that when we
296 # do some daemon tests as root, we will setuid() and therefore the
297 # directory has to be writable by the nobody user in some cases.  The
298 # best thing is probably to explicitly chmod those directories after
299 # creation.
300  
301 umask 022