Improved the depth calculation in sanitize_path() so that it properly
[rsync/rsync.git] / testsuite / exclude.test
1 #! /bin/sh
2
3 # Copyright (C) 2003 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
15 set -x
16
17 HOME="$scratchdir"
18 CVSIGNORE='*.junk'
19 export HOME CVSIGNORE
20
21 # Build some files/dirs/links to copy
22
23 echo home-cvs-exclude >"$scratchdir"/.cvsignore
24 makepath "$fromdir/foo/down/to/you"
25 makepath "$fromdir/bar/down/to/foo/too"
26 makepath "$fromdir/mid/for/foo/and/that/is/who"
27 echo kept >"$fromdir/foo/file1"
28 echo removed >"$fromdir/foo/file2"
29 echo cvsout >"$fromdir/foo/file2.old"
30 echo cvsout >"$fromdir/bar/down/to/home-cvs-exclude"
31 echo keeper >"$fromdir/bar/down/to/foo/file1"
32 echo cvsout >"$fromdir/bar/down/to/foo/file1.bak"
33 echo gone >"$fromdir/bar/down/to/foo/file3"
34 echo lost >"$fromdir/bar/down/to/foo/file4"
35 echo cvsout >"$fromdir/bar/down/to/foo/file4.junk"
36 echo smashed >"$fromdir/bar/down/to/foo/to"
37 echo cvsout >"$fromdir/mid/one-in-one-out"
38 echo one-in-one-out >"$fromdir/mid/.cvsignore"
39 echo cvsin >"$fromdir/mid/one-for-all"
40 echo cvsin >"$fromdir/mid/for/one-in-one-out"
41 echo expunged >"$fromdir/mid/for/foo/extra"
42 echo retained >"$fromdir/mid/for/foo/keep"
43 ln -s too "$fromdir/bar/down/to/foo/sym"
44
45 # Setup our test exclude/include file.
46
47 excl="$scratchdir/exclude-from"
48 cat >"$excl" <<EOF
49 # If the second line of these two lines does anything, it's a bug.
50 + **/bar
51 - /bar
52 # This should match against the whole path, not just the name.
53 + foo**too
54 # This should float at the end of the path.
55 - foo/*/
56 # Test some normal excludes.  Competing lines are paired.
57 + t[o]/
58 - to
59 + file4
60 - file[2-9]
61 - /mid/for/foo/extra
62 EOF
63
64 # Create the chk dir with what we expect to be excluded
65
66 checkit "$RSYNC -avv \"$fromdir/\" \"$chkdir/\"" "$fromdir" "$chkdir"
67
68 sleep 1 # Ensures that the rm commands will tweak the directory times.
69
70 rm -r "$chkdir"/foo/down
71 rm -r "$chkdir"/mid/for/foo/and
72 rm "$chkdir"/foo/file[235-9]
73 rm "$chkdir"/bar/down/to/foo/to "$chkdir"/bar/down/to/foo/file[235-9]
74 rm "$chkdir"/mid/for/foo/extra
75
76 # Un-tweak the directory times in our first (weak) exclude test (though
77 # it's a good test of the --existing option).
78 $RSYNC -av --existing --include='*/' --exclude='*' "$fromdir/" "$chkdir/"
79
80 # Now, test if rsync excludes the same files.
81
82 checkit "$RSYNC -avv --exclude-from=$excl \"$fromdir/\" \"$todir/\"" "$chkdir" "$todir"
83
84 # Modify the chk dir by removing cvs-ignored files and then tweaking the dir times.
85
86 rm "$chkdir"/foo/*.old
87 rm "$chkdir"/bar/down/to/foo/*.bak
88 rm "$chkdir"/bar/down/to/foo/*.junk
89 rm "$chkdir"/bar/down/to/home-cvs-exclude
90 rm "$chkdir"/mid/one-in-one-out
91
92 $RSYNC -av --existing --include='*/' --exclude='*' "$fromdir/" "$chkdir/"
93
94 # Now, test if rsync excludes the same files, this time with --cvs-exclude
95 # and --delete-excluded.
96
97 checkit "$RSYNC -avvC --delete-excluded --exclude-from=$excl \
98     \"$fromdir/\" \"$todir/\"" "$chkdir" "$todir"
99
100 # The script would have aborted on error, so getting here means we've won.
101 exit 0