Handle new PATCH-$name files, improved $last_touch code,
[rsync.git] / testsuite / xattrs.test
blobab022cdff670c2ba9da41789a08f3b3610a4bd01
1 #! /bin/sh
3 # This program is distributable under the terms of the GNU GPL (see
4 # COPYING).
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
13 *--list:*)
14 xset() {
15 xnam="$1"
16 xval="$2"
17 shift 2
18 xattr -s "$xnam" "$xval" "${@}"
20 xls() {
21 xattr -l "${@}"
25 xset() {
26 xnam="$1"
27 xval="$2"
28 shift 2
29 setfattr -n "$xnam" -v "$xval" "${@}"
31 xls() {
32 getfattr -d "${@}"
35 esac
37 makepath "$fromdir/foo"
38 echo now >"$fromdir/file0"
39 echo something >"$fromdir/file1"
40 echo else >"$fromdir/file2"
41 echo deep >"$fromdir/foo/file3"
42 echo normal >"$fromdir/file4"
44 makepath "$chkdir/foo"
45 echo wow >"$chkdir/file1"
46 cp -p "$fromdir/foo/file3" "$chkdir/foo"
48 files='foo file0 file1 file2 foo/file3 file4'
50 cd "$fromdir"
52 xset user.foo foo file0 2>/dev/null || test_skipped "Unable to set an xattr"
53 xset user.bar bar file0
55 xset user.short 'this is short' file1
56 xset user.long 'this is a long attribute that will be truncated in the initial data send' file1
57 xset user.good 'this is good' file1
58 xset user.nice 'this is nice' file1
60 xset user.foo foo file2
61 xset user.bar bar file2
62 xset user.long 'a long attribute for our new file that tests to ensure that this works' file2
64 xset user.foo 'new foo' foo/file3
65 xset user.bar 'new bar' foo/file3
66 xset user.long 'this is also a long attribute that will be truncated in the initial data send' foo/file3
67 xset user.equal 'this long attribute should remain the same and not need to be transferred' foo/file3
69 xset user.short 'old short' "$chkdir/file1"
70 xset user.extra 'remove me' "$chkdir/file1"
72 xset user.foo 'old foo' "$chkdir/foo/file3"
73 xset user.equal 'this long attribute should remain the same and not need to be transferred' "$chkdir/foo/file3"
75 xls $files >"$scratchdir/xattrs.txt"
77 # OK, let's try a simple xattr copy.
78 checkit "$RSYNC -avX . '$chkdir/'" "$fromdir" "$chkdir"
80 cd "$chkdir"
81 xls $files | diff $diffopt "$scratchdir/xattrs.txt" -
83 cd "$fromdir"
85 checkit "$RSYNC -aiX --copy-dest=../chk . ../to" "$fromdir" "$todir"
87 cd "$todir"
88 xls $files | diff $diffopt "$scratchdir/xattrs.txt" -
90 cd "$fromdir"
91 xset user.nice 'this is nice, but different' file1
93 xls $files >"$scratchdir/xattrs.txt"
95 rm -rf "$todir"
97 checkit "$RSYNC -aiX --link-dest=../chk . ../to" "$chkdir" "$todir"
99 cd "$todir"
100 xls $files | diff $diffopt "$scratchdir/xattrs.txt" -
102 # The script would have aborted on error, so getting here means we've won.
103 exit 0