Fixed the interaction of --fake-super with --link-dest & --xattrs.
[rsync/rsync.git] / testsuite / xattrs.test
1 #! /bin/sh
2
3 # This program is distributable under the terms of the GNU GPL (see
4 # COPYING).
5
6 # Test that rsync handles basic xattr preservation.
7
8 . $srcdir/testsuite/rsync.fns
9
10 $RSYNC --version | grep ", xattrs" >/dev/null || test_skipped "Rsync is configured without xattr support"
11
12 case "`xattr 2>&1`" in
13 *--list:*)
14     xset() {
15         xnam="$1"
16         xval="$2"
17         shift 2
18         xattr -s "$xnam" "$xval" "${@}"
19     }
20     xls() {
21         xattr -l "${@}"
22     }
23     RUSR='rsync'
24     ;;
25 *)
26     xset() {
27         xnam="$1"
28         xval="$2"
29         shift 2
30         setfattr -n "$xnam" -v "$xval" "${@}"
31     }
32     xls() {
33         getfattr -d "${@}"
34     }
35     RUSR='user.rsync'
36     ;;
37 esac
38
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"
46
47 makepath "$chkdir/foo"
48 echo wow >"$chkdir/file1"
49 cp -p "$fromdir/foo/file3" "$chkdir/foo"
50
51 files='foo file0 file1 file2 foo/file3 file4 foo/bar/file5'
52
53 cd "$fromdir"
54
55 xset user.foo foo file0 2>/dev/null || test_skipped "Unable to set an xattr"
56 xset user.bar bar file0
57
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
62
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
66
67 xset user.foo 'new foo' foo/file3 foo/bar/file5
68 xset user.bar 'new bar' foo/file3 foo/bar/file5
69 xset user.long 'this is also a long attribute that will be truncated in the initial data send' foo/file3 foo/bar/file5
70 xset $RUSR.equal 'this long attribute should remain the same and not need to be transferred' foo/file3 foo/bar/file5
71 xset $RUSR.equal 'this short' foo/file3 foo/bar/file5
72
73 xset user.short 'old short' "$chkdir/file1"
74 xset user.extra 'remove me' "$chkdir/file1"
75
76 xset user.foo 'old foo' "$chkdir/foo/file3"
77 xset $RUSR.equal 'this long attribute should remain the same and not need to be transferred' "$chkdir/foo/file3"
78 xset $RUSR.equal 'this short' "$chkdir/foo/file3"
79
80 xls $files >"$scratchdir/xattrs.txt"
81
82 # OK, let's try a simple xattr copy.
83 checkit "$RSYNC -avX . '$chkdir/'" "$fromdir" "$chkdir"
84
85 cd "$chkdir"
86 xls $files | diff $diffopt "$scratchdir/xattrs.txt" -
87
88 cd "$fromdir"
89
90 checkit "$RSYNC -aiX --copy-dest=../chk . ../to" "$fromdir" "$todir"
91
92 cd "$todir"
93 xls $files | diff $diffopt "$scratchdir/xattrs.txt" -
94
95 cd "$fromdir"
96 xset user.nice 'this is nice, but different' file1
97
98 xls $files >"$scratchdir/xattrs.txt"
99
100 rm -rf "$todir"
101
102 checkit "$RSYNC -aiX --fake-super --link-dest=../chk . ../to" "$chkdir" "$todir"
103
104 cd "$todir"
105 xls $files | diff $diffopt "$scratchdir/xattrs.txt" -
106
107 sed -n -e '/\.\/file1$/d' -e '/^[^ ]* *[^ ]* *[^ ]* *1 /p' "$scratchdir/ls-to" >"$scratchdir/ls-diff"
108 if [ -s "$scratchdir/ls-diff" ]; then
109     echo "Missing hard links on:"
110     cat "$scratchdir/ls-diff"
111     exit 1
112 fi
113
114 # The script would have aborted on error, so getting here means we've won.
115 exit 0