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