X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/05118158f4f59a5f512e5bab640f253332a6e181..22558cdd7e827f3e838e0e1f50f9fb15ec3369e4:/testsuite/exclude.test diff --git a/testsuite/exclude.test b/testsuite/exclude.test index 798819ae..61688611 100644 --- a/testsuite/exclude.test +++ b/testsuite/exclude.test @@ -10,33 +10,77 @@ # Test some of the more obscure wildcard handling of exclude/include # processing. -. $srcdir/testsuite/rsync.fns +. "$suitedir/rsync.fns" set -x -# Build some files/dirs/links to copy +HOME="$scratchdir" +CVSIGNORE='*.junk' +export HOME CVSIGNORE -fromdir="$scratchdir/from" -todir="$scratchdir/to" -chkdir="$scratchdir/chk" +# Build some files/dirs/links to copy makepath "$fromdir/foo/down/to/you" makepath "$fromdir/bar/down/to/foo/too" +makepath "$fromdir/bar/down/to/bar/baz" makepath "$fromdir/mid/for/foo/and/that/is/who" +cat >"$fromdir/.excl" <"$fromdir/foo/file1" echo removed >"$fromdir/foo/file2" +echo cvsout >"$fromdir/foo/file2.old" +cat >"$fromdir/foo/.excl" <"$fromdir/bar/.excl" <"$fromdir/bar/down/to/home-cvs-exclude" +cat >"$fromdir/bar/down/to/.excl2" <"$fromdir/bar/down/to/foo/.excl2" <"$fromdir/bar/down/to/foo/file1" +echo cvsout >"$fromdir/bar/down/to/foo/file1.bak" echo gone >"$fromdir/bar/down/to/foo/file3" echo lost >"$fromdir/bar/down/to/foo/file4" +echo cvsout-but-filtin >"$fromdir/bar/down/to/foo/file4.junk" echo smashed >"$fromdir/bar/down/to/foo/to" +cat >"$fromdir/bar/down/to/bar/.excl2" <"$fromdir/bar/down/to/bar/baz/file5.deep" +# This one should be ineffectual +cat >"$fromdir/mid/.excl2" <"$fromdir/mid/one-in-one-out" +echo one-in-one-out >"$fromdir/mid/.cvsignore" +echo cvsin >"$fromdir/mid/one-for-all" +cat >"$fromdir/mid/.excl" <"$fromdir/mid/for/one-in-one-out" echo expunged >"$fromdir/mid/for/foo/extra" echo retained >"$fromdir/mid/for/foo/keep" ln -s too "$fromdir/bar/down/to/foo/sym" -# Setup our test exclude/include file. +# Setup our test exclude/include files. excl="$scratchdir/exclude-from" cat >"$excl" <"$excl" <"$scratchdir/.cvsignore" <"$todir"/bar/down/to/bar/baz/nodel.deep +cp -p "$todir"/bar/down/to/bar/baz/nodel.deep "$chkdir"/bar/down/to/bar/baz + +$RSYNC -av --existing --filter='-! */' "$fromdir/" "$chkdir/" + +# Now, test if rsync excludes the same files, this time with a merge-exclude +# file. + +checkit "sed '/!/d' \"$excl\" | + $RSYNC -avv -f dir-merge_.excl -f merge_- \ + --delete-during \"$fromdir/\" \"$todir/\"" "$chkdir" "$todir" + +# Remove the files that --delete-excluded will delete. + +rm "$chkdir"/.excl +rm "$chkdir"/bar/.excl +rm "$chkdir"/bar/down/to/.excl2 +rm "$chkdir"/bar/down/to/foo/.excl2 +rm "$chkdir"/bar/down/to/bar/.excl2 +rm "$chkdir"/mid/.excl +rm "$chkdir"/bar/down/to/bar/baz/nodel.deep + +$RSYNC -av --existing --filter='-! */' "$fromdir/" "$chkdir/" + +# Finally, try the prior command with --delete-before and --delete-excluded. + +checkit "sed '/!/d' \"$excl\" | + $RSYNC -avv -f :_.excl -f ._- --delete-excluded \ + --delete-before \"$fromdir/\" \"$todir/\"" "$chkdir" "$todir" # The script would have aborted on error, so getting here means we've won. exit 0