Handle the itemizing of of the "." dir when it is newly created.
[rsync/rsync.git] / testsuite / itemize.test
1 #! /bin/sh
2
3 # Copyright (C) 2005 by Wayne Davison <wayned@samba.org>
4
5 # This program is distributable under the terms of the GNU GPL (see
6 # COPYING).
7
8 # Test the output of various copy commands to ensure itemized output
9 # and double-verbose output is correct.
10
11 . "$suitedir/rsync.fns"
12
13 lddir="$tmpdir/ld"
14
15 chkfile="$scratchdir/rsync.chk"
16 outfile="$scratchdir/rsync.out"
17
18 makepath "$fromdir/foo"
19 makepath "$fromdir/bar/baz"
20 cp -p "$srcdir/configure.in" "$fromdir/foo/config1"
21 cp -p "$srcdir/config.h.in" "$fromdir/foo/config2"
22 cp -p "$srcdir/rsync.h" "$fromdir/bar/baz/rsync"
23 chmod 600 "$fromdir"/foo/config? "$fromdir/bar/baz/rsync"
24 umask 0
25 ln -s ../bar/baz/rsync "$fromdir/foo/sym"
26 umask 022
27 ln "$fromdir/foo/config1" "$fromdir/foo/extra"
28
29 $RSYNC -iplr "$fromdir/" "$todir/" \
30     | tee "$outfile"
31 cat <<EOT >"$chkfile"
32 cd+++++++ ./
33 cd+++++++ bar/
34 cd+++++++ bar/baz/
35 >f+++++++ bar/baz/rsync
36 cd+++++++ foo/
37 >f+++++++ foo/config1
38 >f+++++++ foo/config2
39 >f+++++++ foo/extra
40 cL+++++++ foo/sym -> ../bar/baz/rsync
41 EOT
42 diff $diffopt "$chkfile" "$outfile" || test_fail "test 1 failed"
43
44 # Ensure there are no accidental directory-time problems.
45 $RSYNC -a -f '-! */' "$fromdir/" "$todir"
46
47 cp -p "$srcdir/configure.in" "$fromdir/foo/config2"
48 chmod 601 "$fromdir/foo/config2"
49 $RSYNC -iplrH "$fromdir/" "$todir/" \
50     | tee "$outfile"
51 cat <<EOT >"$chkfile"
52 >f..T.... bar/baz/rsync
53 >f..T.... foo/config1
54 >f.sTp... foo/config2
55 hf..T.... foo/extra => foo/config1
56 EOT
57 diff $diffopt "$chkfile" "$outfile" || test_fail "test 2 failed"
58
59 $RSYNC -a -f '-! */' "$fromdir/" "$todir"
60 sleep 1 # For directory mod below to ensure time difference
61 rm "$todir/foo/sym"
62 umask 0
63 ln -s ../bar/baz "$todir/foo/sym"
64 umask 022
65 cp -p "$srcdir/config.h.in" "$fromdir/foo/config2"
66 chmod 600 "$fromdir/foo/config2"
67 chmod 777 "$todir/bar/baz/rsync"
68
69 $RSYNC -iplrtc "$fromdir/" "$todir/" \
70     | tee "$outfile"
71 cat <<EOT >"$chkfile"
72 .f..tp... bar/baz/rsync
73 .d..t.... foo/
74 .f..t.... foo/config1
75 >fcstp... foo/config2
76 cL..T.... foo/sym -> ../bar/baz/rsync
77 EOT
78 diff $diffopt "$chkfile" "$outfile" || test_fail "test 3 failed"
79
80 cp -p "$srcdir/configure.in" "$fromdir/foo/config2"
81 chmod 600 "$fromdir/foo/config2"
82 # Lack of -t is for unchanged hard-link stress-test!
83 $RSYNC -vvplrH "$fromdir/" "$todir/" \
84     | tee "$outfile"
85 filter_outfile
86 cat <<EOT >"$chkfile"
87 bar/baz/rsync is uptodate
88 foo/config1 is uptodate
89 foo/config2
90 "foo/extra" is a hard link
91 foo/sym is uptodate
92 EOT
93 diff $diffopt "$chkfile" "$outfile" || test_fail "test 4 failed"
94
95 chmod 747 "$todir/bar/baz/rsync"
96 $RSYNC -a -f '-! */' "$fromdir/" "$todir"
97 $RSYNC -ivvplrtH "$fromdir/" "$todir/" \
98     | tee "$outfile"
99 filter_outfile
100 cat <<EOT >"$chkfile"
101 .d        ./
102 .d        bar/
103 .d        bar/baz/
104 .f...p... bar/baz/rsync
105 .d        foo/
106 .f        foo/config1
107 >f..t.... foo/config2
108 hf        foo/extra
109 .L        foo/sym -> ../bar/baz/rsync
110 EOT
111 diff $diffopt "$chkfile" "$outfile" || test_fail "test 5 failed"
112
113 chmod 757 "$todir/foo/config1"
114 touch "$todir/foo/config2"
115 $RSYNC -vplrtH "$fromdir/" "$todir/" \
116     | tee "$outfile"
117 filter_outfile
118 cat <<EOT >"$chkfile"
119 foo/config2
120 EOT
121 diff $diffopt "$chkfile" "$outfile" || test_fail "test 6 failed"
122
123 chmod 757 "$todir/foo/config1"
124 touch "$todir/foo/config2"
125 $RSYNC -iplrtH "$fromdir/" "$todir/" \
126     | tee "$outfile"
127 cat <<EOT >"$chkfile"
128 .f...p... foo/config1
129 >f..t.... foo/config2
130 EOT
131 diff $diffopt "$chkfile" "$outfile" || test_fail "test 7 failed"
132
133 mv "$todir" "$lddir"
134 $RSYNC -ivvplrtH --copy-dest=../ld "$fromdir/" "$todir/" \
135     | tee "$outfile"
136 filter_outfile
137 cat <<EOT >"$chkfile"
138 cd+++++++ ./
139 cd+++++++ bar/
140 cd+++++++ bar/baz/
141 cf        bar/baz/rsync
142 cd+++++++ foo/
143 cf        foo/config1
144 cf        foo/config2
145 hf        foo/extra => foo/config1
146 cL..T.... foo/sym -> ../bar/baz/rsync
147 EOT
148 diff $diffopt "$chkfile" "$outfile" || test_fail "test 8 failed"
149
150 rm -rf "$todir"
151 $RSYNC -iplrtH --copy-dest=../ld "$fromdir/" "$todir/" \
152     | tee "$outfile"
153 cat <<EOT >"$chkfile"
154 cd+++++++ ./
155 cd+++++++ bar/
156 cd+++++++ bar/baz/
157 cd+++++++ foo/
158 hf        foo/extra => foo/config1
159 EOT
160 diff $diffopt "$chkfile" "$outfile" || test_fail "test 9 failed"
161
162 rm -rf "$todir"
163 $RSYNC -vvplrtH --copy-dest="$lddir" "$fromdir/" "$todir/" \
164     | tee "$outfile"
165 filter_outfile
166 cat <<EOT >"$chkfile"
167 ./
168 bar/
169 bar/baz/
170 bar/baz/rsync is uptodate
171 foo/
172 foo/config1 is uptodate
173 foo/config2 is uptodate
174 "foo/extra" is a hard link
175 foo/extra => foo/config1
176 foo/sym is uptodate
177 EOT
178 diff $diffopt "$chkfile" "$outfile" || test_fail "test 10 failed"
179
180 rm -rf "$todir"
181 $RSYNC -ivvplrtH --link-dest="$lddir" "$fromdir/" "$todir/" \
182     | tee "$outfile"
183 filter_outfile
184 cat <<EOT >"$chkfile"
185 cd+++++++ ./
186 cd+++++++ bar/
187 cd+++++++ bar/baz/
188 hf        bar/baz/rsync
189 cd+++++++ foo/
190 hf        foo/config1
191 hf        foo/config2
192 hf        foo/extra => foo/config1
193 hL        foo/sym -> ../bar/baz/rsync
194 EOT
195 diff $diffopt "$chkfile" "$outfile" || test_fail "test 11 failed"
196
197 rm -rf "$todir"
198 $RSYNC -iplrtH --dry-run --link-dest=../ld "$fromdir/" "$todir/" \
199     | tee "$outfile"
200 cat <<EOT >"$chkfile"
201 cd+++++++ ./
202 cd+++++++ bar/
203 cd+++++++ bar/baz/
204 cd+++++++ foo/
205 EOT
206 diff $diffopt "$chkfile" "$outfile" || test_fail "test 12 failed"
207
208 rm -rf "$todir"
209 $RSYNC -iplrtH --link-dest=../ld "$fromdir/" "$todir/" \
210     | tee "$outfile"
211 cat <<EOT >"$chkfile"
212 cd+++++++ ./
213 cd+++++++ bar/
214 cd+++++++ bar/baz/
215 cd+++++++ foo/
216 EOT
217 diff $diffopt "$chkfile" "$outfile" || test_fail "test 12 failed"
218
219 rm -rf "$todir"
220 $RSYNC -vvplrtH --link-dest="$lddir" "$fromdir/" "$todir/" \
221     | tee "$outfile"
222 filter_outfile
223 cat <<EOT >"$chkfile"
224 ./
225 bar/
226 bar/baz/
227 bar/baz/rsync is uptodate
228 foo/
229 foo/config1 is uptodate
230 foo/config2 is uptodate
231 "foo/extra" is a hard link
232 foo/sym is uptodate
233 EOT
234 diff $diffopt "$chkfile" "$outfile" || test_fail "test 13 failed"
235
236 rm -rf "$todir"
237 $RSYNC -ivvplrtH --compare-dest="$lddir" "$fromdir/" "$todir/" \
238     | tee "$outfile"
239 filter_outfile
240 # TODO fix really-old problem when combining -H with --compare-dest:
241 # missing output for foo/extra hard-link (and it might not be updated)!
242 cat <<EOT >"$chkfile"
243 cd+++++++ ./
244 cd+++++++ bar/
245 cd+++++++ bar/baz/
246 .f        bar/baz/rsync
247 cd+++++++ foo/
248 .f        foo/config1
249 .f        foo/config2
250 .L        foo/sym -> ../bar/baz/rsync
251 EOT
252 diff $diffopt "$chkfile" "$outfile" || test_fail "test 14 failed"
253
254 rm -rf "$todir"
255 $RSYNC -iplrtH --compare-dest="$lddir" "$fromdir/" "$todir/" \
256     | tee "$outfile"
257 cat <<EOT >"$chkfile"
258 cd+++++++ ./
259 cd+++++++ bar/
260 cd+++++++ bar/baz/
261 cd+++++++ foo/
262 EOT
263 diff $diffopt "$chkfile" "$outfile" || test_fail "test 15 failed"
264
265 rm -rf "$todir"
266 $RSYNC -vvplrtH --compare-dest="$lddir" "$fromdir/" "$todir/" \
267     | tee "$outfile"
268 filter_outfile
269 cat <<EOT >"$chkfile"
270 ./
271 bar/
272 bar/baz/
273 bar/baz/rsync is uptodate
274 foo/
275 foo/config1 is uptodate
276 foo/config2 is uptodate
277 "foo/extra" is a hard link
278 foo/sym is uptodate
279 EOT
280 diff $diffopt "$chkfile" "$outfile" || test_fail "test 16 failed"
281
282 # The script would have aborted on error, so getting here means we've won.
283 exit 0