3 # This program is distributable under the terms of the GNU GPL (see
6 # Test that rsync handles basic xattr preservation.
8 .
$srcdir/testsuite
/rsync.fns
10 $RSYNC --version |
grep ", xattrs" >/dev
/null || test_skipped
"Rsync is configured without xattr support"
12 case "`xattr 2>&1`" in
18 xattr
-s "$xnam" "$xval" "${@}"
30 setfattr
-n "$xnam" -v "$xval" "${@}"
39 makepath
"$fromdir/foo/bar"
40 echo now
>"$fromdir/file0"
41 echo something
>"$fromdir/file1"
42 echo else >"$fromdir/file2"
43 echo deep
>"$fromdir/foo/file3"
44 echo normal
>"$fromdir/file4"
45 echo deeper
>"$fromdir/foo/bar/file5"
47 makepath
"$chkdir/foo"
48 echo wow
>"$chkdir/file1"
49 cp_touch
"$fromdir/foo/file3" "$chkdir/foo"
51 files
='foo file0 file1 file2 foo/file3 file4 foo/bar/file5'
55 xset user.foo foo file0
2>/dev
/null || test_skipped
"Unable to set an xattr"
56 xset user.bar bar file0
58 xset user.short
'this is short' file1
59 xset user.long
'this is a long attribute that will be truncated in the initial data send' file1
60 xset user.good
'this is good' file1
61 xset user.nice
'this is nice' file1
63 xset user.foo foo file2
64 xset user.bar bar file2
65 xset user.long
'a long attribute for our new file that tests to ensure that this works' file2
67 xset user.dir1
'need to test directory xattrs too' foo
68 xset user.dir2
'another xattr' foo
69 xset user.dir3
'this is one last one for the moment' foo
71 xset user.foo
'new foo' foo
/file3 foo
/bar
/file5
72 xset user.bar
'new bar' foo
/file3 foo
/bar
/file5
73 xset user.long
'this is also a long attribute that will be truncated in the initial data send' foo
/file3 foo
/bar
/file5
74 xset
$RUSR.equal
'this long attribute should remain the same and not need to be transferred' foo
/file3 foo
/bar
/file5
76 xset user.short
'old short' "$chkdir/file1"
77 xset user.extra
'remove me' "$chkdir/file1"
79 xset user.foo
'old foo' "$chkdir/foo/file3"
80 xset
$RUSR.equal
'this long attribute should remain the same and not need to be transferred' "$chkdir/foo/file3"
82 xls
$files >"$scratchdir/xattrs.txt"
84 # OK, let's try a simple xattr copy.
85 checkit
"$RSYNC -avX --super . '$chkdir/'" "$fromdir" "$chkdir"
88 xls
$files |
diff $diffopt "$scratchdir/xattrs.txt" -
92 checkit
"$RSYNC -aiX --super --copy-dest=../chk . ../to" "$fromdir" "$todir"
95 xls
$files |
diff $diffopt "$scratchdir/xattrs.txt" -
100 xset user.nice
'this is nice, but different' file1
102 checkit
"$RSYNC -aiX --fake-super . ../chk" "$fromdir" "$chkdir"
105 xls
$files >"$scratchdir/xattrs.txt"
108 checkit
"$RSYNC -aiX --fake-super --link-dest=../chk . ../to" "$chkdir" "$todir"
111 xls
$files |
diff $diffopt "$scratchdir/xattrs.txt" -
113 sed -n -e '/\.\/file1$/d' -e '/^[^ ][^ ]* *[^ ][^ ]* *[^ ][^ ]* *1 /p' "$scratchdir/ls-to" >"$scratchdir/ls-diff"
114 if [ -s "$scratchdir/ls-diff" ]; then
115 echo "Missing hard links on:"
116 cat "$scratchdir/ls-diff"
121 rm -rf "$todir" "$chkdir"
123 $RSYNC -aX file1 file2
124 $RSYNC -aX file1 file2 ..
/chk
/
125 $RSYNC -aX --del ..
/chk
/ .
126 $RSYNC -aX file1 ..
/lnk
/
128 xls file1 file2
>"$scratchdir/xattrs.txt"
130 checkit
"$RSYNC -aiiX --copy-dest=../lnk . ../to" "$chkdir" "$todir"
133 xls file1 file2 |
diff $diffopt "$scratchdir/xattrs.txt" -
141 checkit
"$RSYNC -aiiX . ../to" "$chkdir" "$todir"
144 xls file1 file2 |
diff $diffopt "$scratchdir/xattrs.txt" -
146 # The script would have aborted on error, so getting here means we've won.