Factor out common logic of unchanged_attrs and itemize into report_ATTR
[rsync/rsync.git] / testsuite / exclude.test
CommitLineData
ff570659
WD
1#! /bin/sh
2
b62fd393 3# Copyright (C) 2003, 2004, 2005 by Wayne Davison <wayned@samba.org>
ff570659 4
c8d19f90 5# This program is distributable under the terms of the GNU GPL (see
ff570659
WD
6# COPYING).
7
d048c2f2 8# Test rsync handling of exclude/include directives.
ff570659
WD
9
10# Test some of the more obscure wildcard handling of exclude/include
11# processing.
12
7892e5ac 13. "$suitedir/rsync.fns"
ff570659 14
43a9d0e7 15CVSIGNORE='*.junk'
2b7dab68 16export CVSIGNORE
43a9d0e7 17
ff570659
WD
18# Build some files/dirs/links to copy
19
ff570659 20makepath "$fromdir/foo/down/to/you"
0314302e 21makepath "$fromdir/foo/sub"
ff570659 22makepath "$fromdir/bar/down/to/foo/too"
408aa7b2 23makepath "$fromdir/bar/down/to/bar/baz"
ff570659 24makepath "$fromdir/mid/for/foo/and/that/is/who"
90d5b12e
WD
25makepath "$fromdir/new/keep/this"
26makepath "$fromdir/new/lose/this"
bb558f67 27cat >"$fromdir/.filt" <<EOF
e7966626 28exclude down
bb558f67 29: .filt-temp
e7966626 30clear
bb558f67 31- .filt
201a2fe5
WD
32- *.bak
33- *.old
201a2fe5 34EOF
0314302e 35echo filtered-1 >"$fromdir/foo/file1"
ff570659 36echo removed >"$fromdir/foo/file2"
43a9d0e7 37echo cvsout >"$fromdir/foo/file2.old"
bb558f67
WD
38cat >"$fromdir/foo/.filt" <<EOF
39include .filt
0314302e 40- /file1
201a2fe5 41EOF
0314302e 42echo not-filtered-1 >"$fromdir/foo/sub/file1"
bb558f67 43cat >"$fromdir/bar/.filt" <<EOF
201a2fe5 44- home-cvs-exclude
bb558f67 45dir-merge .filt2
201a2fe5
WD
46+ to
47EOF
ead751c6 48echo cvsout >"$fromdir/bar/down/to/home-cvs-exclude"
bb558f67
WD
49cat >"$fromdir/bar/down/to/.filt2" <<EOF
50- .filt2
201a2fe5 51EOF
bb558f67 52cat >"$fromdir/bar/down/to/foo/.filt2" <<EOF
408aa7b2
WD
53+ *.junk
54EOF
ff570659 55echo keeper >"$fromdir/bar/down/to/foo/file1"
43a9d0e7 56echo cvsout >"$fromdir/bar/down/to/foo/file1.bak"
ff570659
WD
57echo gone >"$fromdir/bar/down/to/foo/file3"
58echo lost >"$fromdir/bar/down/to/foo/file4"
bb558f67 59echo weird >"$fromdir/bar/down/to/foo/+ file3"
408aa7b2 60echo cvsout-but-filtin >"$fromdir/bar/down/to/foo/file4.junk"
ff570659 61echo smashed >"$fromdir/bar/down/to/foo/to"
bb558f67 62cat >"$fromdir/bar/down/to/bar/.filt2" <<EOF
408aa7b2 63- *.deep
201a2fe5 64EOF
408aa7b2 65echo filtout >"$fromdir/bar/down/to/bar/baz/file5.deep"
201a2fe5 66# This one should be ineffectual
bb558f67 67cat >"$fromdir/mid/.filt2" <<EOF
201a2fe5
WD
68- extra
69EOF
43a9d0e7
WD
70echo cvsout >"$fromdir/mid/one-in-one-out"
71echo one-in-one-out >"$fromdir/mid/.cvsignore"
72echo cvsin >"$fromdir/mid/one-for-all"
bb558f67 73cat >"$fromdir/mid/.filt" <<EOF
201a2fe5
WD
74:C
75EOF
ead751c6 76echo cvsin >"$fromdir/mid/for/one-in-one-out"
ff570659
WD
77echo expunged >"$fromdir/mid/for/foo/extra"
78echo retained >"$fromdir/mid/for/foo/keep"
ff570659 79
f1dd0f27 80# Setup our test exclude/include files.
ff570659 81
ff570659
WD
82excl="$scratchdir/exclude-from"
83cat >"$excl" <<EOF
201a2fe5 84!
ff570659
WD
85# If the second line of these two lines does anything, it's a bug.
86+ **/bar
87- /bar
88# This should match against the whole path, not just the name.
89+ foo**too
0314302e
WD
90# These should float at the end of the path.
91+ foo/s?b/
ff570659 92- foo/*/
90d5b12e
WD
93# Test how /** differs from /***
94- new/keep/**
95- new/lose/***
ff570659
WD
96# Test some normal excludes. Competing lines are paired.
97+ t[o]/
98- to
99+ file4
100- file[2-9]
101- /mid/for/foo/extra
102EOF
103
f1dd0f27
WD
104cat >"$scratchdir/.cvsignore" <<EOF
105home-cvs-exclude
106EOF
107
d048c2f2
WD
108# Start with a check of --prune-empty-dirs:
109$RSYNC -av -f -_foo/too/ -f -_foo/down/ -f -_foo/and/ -f -_new/ "$fromdir/" "$chkdir/"
7918f244 110checkit "$RSYNC -av --prune-empty-dirs '$fromdir/' '$todir/'" "$chkdir" "$todir"
d048c2f2 111rm -rf "$todir"
337a1a86 112
d048c2f2
WD
113# Add a directory symlink.
114ln -s too "$fromdir/bar/down/to/foo/sym"
ff570659 115
d048c2f2 116# Create chkdir with what we expect to be excluded.
7918f244 117checkit "$RSYNC -avv '$fromdir/' '$chkdir/'" "$fromdir" "$chkdir"
337a1a86 118sleep 1 # Ensures that the rm commands will tweak the directory times.
ff570659 119rm -r "$chkdir"/foo/down
093acc5d 120rm -r "$chkdir"/mid/for/foo/and
90d5b12e
WD
121rm -r "$chkdir"/new/keep/this
122rm -r "$chkdir"/new/lose
ff570659 123rm "$chkdir"/foo/file[235-9]
093acc5d 124rm "$chkdir"/bar/down/to/foo/to "$chkdir"/bar/down/to/foo/file[235-9]
ff570659
WD
125rm "$chkdir"/mid/for/foo/extra
126
337a1a86
WD
127# Un-tweak the directory times in our first (weak) exclude test (though
128# it's a good test of the --existing option).
129$RSYNC -av --existing --include='*/' --exclude='*' "$fromdir/" "$chkdir/"
ff570659 130
337a1a86 131# Now, test if rsync excludes the same files.
ff570659 132
7918f244
WD
133checkit "$RSYNC -avv --exclude-from='$excl' \
134 --delete-during '$fromdir/' '$todir/'" "$chkdir" "$todir"
ff570659 135
43a9d0e7
WD
136# Modify the chk dir by removing cvs-ignored files and then tweaking the dir times.
137
138rm "$chkdir"/foo/*.old
139rm "$chkdir"/bar/down/to/foo/*.bak
140rm "$chkdir"/bar/down/to/foo/*.junk
141rm "$chkdir"/bar/down/to/home-cvs-exclude
142rm "$chkdir"/mid/one-in-one-out
143
e7966626 144$RSYNC -av --existing --filter='exclude,! */' "$fromdir/" "$chkdir/"
43a9d0e7
WD
145
146# Now, test if rsync excludes the same files, this time with --cvs-exclude
147# and --delete-excluded.
148
7918f244
WD
149checkit "$RSYNC -avvC --filter='merge $excl' --delete-excluded \
150 --delete-during '$fromdir/' '$todir/'" "$chkdir" "$todir"
201a2fe5
WD
151
152# Modify the chk dir for our merge-exclude test and then tweak the dir times.
153
201a2fe5 154rm "$chkdir"/foo/file1
408aa7b2 155rm "$chkdir"/bar/down/to/bar/baz/*.deep
844810d6
WD
156cp_touch "$fromdir"/bar/down/to/foo/*.junk "$chkdir"/bar/down/to/foo
157cp_touch "$fromdir"/bar/down/to/foo/to "$chkdir"/bar/down/to/foo
201a2fe5 158
bb558f67 159$RSYNC -av --existing -f 'show .filt*' -f 'hide,! */' --del "$fromdir/" "$todir/"
408aa7b2
WD
160
161echo retained >"$todir"/bar/down/to/bar/baz/nodel.deep
844810d6 162cp_touch "$todir"/bar/down/to/bar/baz/nodel.deep "$chkdir"/bar/down/to/bar/baz
408aa7b2 163
346402dd 164$RSYNC -av --existing --filter='-! */' "$fromdir/" "$chkdir/"
201a2fe5
WD
165
166# Now, test if rsync excludes the same files, this time with a merge-exclude
167# file.
168
7918f244 169checkit "sed '/!/d' '$excl' |
bb558f67 170 $RSYNC -avv -f dir-merge_.filt -f merge_- \
7918f244 171 --delete-during '$fromdir/' '$todir/'" "$chkdir" "$todir"
408aa7b2 172
bb558f67 173# Remove the files that will be deleted.
408aa7b2 174
bb558f67
WD
175rm "$chkdir"/.filt
176rm "$chkdir"/bar/.filt
177rm "$chkdir"/bar/down/to/.filt2
178rm "$chkdir"/bar/down/to/foo/.filt2
179rm "$chkdir"/bar/down/to/bar/.filt2
180rm "$chkdir"/mid/.filt
408aa7b2 181
a3e1363a 182$RSYNC -av --protocol=28 --existing --include='*/' --exclude='*' "$fromdir/" "$chkdir/"
408aa7b2 183
bb558f67
WD
184# Now, try the prior command with --delete-before and some side-specific
185# rules.
408aa7b2 186
7918f244 187checkit "sed '/!/d' '$excl' |
bb558f67 188 $RSYNC -avv -f :s_.filt -f .s_- -f P_nodel.deep \
7918f244 189 --delete-before '$fromdir/' '$todir/'" "$chkdir" "$todir"
43a9d0e7 190
bb558f67
WD
191# Next, we'll test some rule-restricted filter files.
192
193cat >"$fromdir/bar/down/.excl" <<EOF
194file3
195EOF
196cat >"$fromdir/bar/down/to/foo/.excl" <<EOF
197+ file3
198*.bak
199EOF
200$RSYNC -av --del "$fromdir/" "$chkdir/"
201rm "$chkdir/bar/down/to/foo/file1.bak"
202rm "$chkdir/bar/down/to/foo/file3"
203rm "$chkdir/bar/down/to/foo/+ file3"
9a338344 204$RSYNC -av --existing --filter='-! */' "$fromdir/" "$chkdir/"
bb558f67
WD
205$RSYNC -av --delete-excluded --exclude='*' "$fromdir/" "$todir/"
206
207checkit "$RSYNC -avv -f dir-merge,-_.excl \
7918f244 208 '$fromdir/' '$todir/'" "$chkdir" "$todir"
bb558f67 209
4209f079
WD
210relative_opts='--relative --chmod=Du+w --copy-unsafe-links'
211$RSYNC -av $relative_opts "$fromdir/foo" "$chkdir/"
50cf2567 212rm -rf "$chkdir$fromdir/foo/down"
4209f079 213$RSYNC -av $relative_opts --existing --filter='-! */' "$fromdir/foo" "$chkdir/"
50cf2567 214
7918f244
WD
215checkit "$RSYNC -avv $relative_opts --exclude='$fromdir/foo/down' \
216 '$fromdir/foo' '$todir'" "$chkdir$fromdir/foo" "$todir$fromdir/foo"
50cf2567 217
05118158 218# The script would have aborted on error, so getting here means we've won.
ff570659 219exit 0