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