f754d004ddbed24f126e248410672f6c669114b3
[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 . $suitedir/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.nonuser'
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_touch "$fromdir/foo/file3" "$chkdir/foo"
50
51 dirs='foo foo/bar'
52 files='file0 file1 file2 foo/file3 file4 foo/bar/file5'
53
54 uid_gid=`"$TOOLDIR/tls" "$fromdir/foo" | sed 's/^.* \([0-9][0-9]*\)\.\([0-9][0-9]*\) .*/\1:\2/'`
55
56 cd "$fromdir"
57
58 xset user.foo foo file0 2>/dev/null || test_skipped "Unable to set an xattr"
59 xset user.bar bar file0
60
61 xset user.short 'this is short' file1
62 xset user.long 'this is a long attribute that will be truncated in the initial data send' file1
63 xset user.good 'this is good' file1
64 xset user.nice 'this is nice' file1
65
66 xset user.foo foo file2
67 xset user.bar bar file2
68 xset user.long 'a long attribute for our new file that tests to ensure that this works' file2
69
70 xset user.dir1 'need to test directory xattrs too' foo
71 xset user.dir2 'another xattr' foo
72 xset user.dir3 'this is one last one for the moment' foo
73
74 xset user.foo 'new foo' foo/file3 foo/bar/file5
75 xset user.bar 'new bar' foo/file3 foo/bar/file5
76 xset user.long 'this is also a long attribute that will be truncated in the initial data send' foo/file3 foo/bar/file5
77 xset $RUSR.equal 'this long attribute should remain the same and not need to be transferred' foo/file3 foo/bar/file5
78
79 xset user.short 'old short' "$chkdir/file1"
80 xset user.extra 'remove me' "$chkdir/file1"
81
82 xset user.foo 'old foo' "$chkdir/foo/file3"
83 xset $RUSR.equal 'this long attribute should remain the same and not need to be transferred' "$chkdir/foo/file3"
84
85 xls $dirs $files >"$scratchdir/xattrs.txt"
86
87 # OK, let's try a simple xattr copy.
88 checkit "$RSYNC -avX --super . '$chkdir/'" "$fromdir" "$chkdir"
89
90 cd "$chkdir"
91 xls $dirs $files | diff $diffopt "$scratchdir/xattrs.txt" -
92
93 cd "$fromdir"
94
95 checkit "$RSYNC -aiX --super --copy-dest=../chk . ../to" "$fromdir" "$todir"
96
97 cd "$todir"
98 xls $dirs $files | diff $diffopt "$scratchdir/xattrs.txt" -
99
100 cd "$fromdir"
101 rm -rf "$todir"
102
103 xset user.nice 'this is nice, but different' file1
104
105 xls $dirs $files >"$scratchdir/xattrs.txt"
106
107 checkit "$RSYNC -aiX --fake-super --link-dest=../chk . ../to" "$chkdir" "$todir"
108
109 cd "$todir"
110 xls $dirs $files | diff $diffopt "$scratchdir/xattrs.txt" -
111
112 sed -n -e '/^[^ ][^ ]*  *[^ ][^ ]*  *[^ ][^ ]*  *1 /p' "$scratchdir/ls-to" >"$scratchdir/ls-diff-all"
113 fgrep -v './file1' "$scratchdir/ls-diff-all" >"$scratchdir/ls-diff" || :
114 if [ -s "$scratchdir/ls-diff" ]; then
115     echo "Missing hard links on:"
116     cat "$scratchdir/ls-diff"
117     exit 1
118 fi
119 if [ ! -s "$scratchdir/ls-diff-all" ]; then
120     echo "Too many hard links on file1!"
121     exit 1
122 fi
123
124 cd "$chkdir"
125 chmod go-rwx . $dirs $files
126
127 xset user.nice 'this is nice, but different' file1
128 xset user.rsync.%stat "40000 0,0 $uid_gid" $dirs
129 xset user.rsync.%stat "100000 0,0 $uid_gid" $files
130
131 xls $dirs $files >"$scratchdir/xattrs.txt"
132
133 cd "$fromdir"
134 rm -rf "$todir"
135
136 # When run by a non-root tester, this checks if no-user-perm files/dirs can be copied.
137 checkit "$RSYNC -aiX --fake-super --chmod=a= . ../to" "$chkdir" "$todir" # 2>"$scratchdir/errors.txt"
138
139 cd "$todir"
140 xls $dirs $files | diff $diffopt "$scratchdir/xattrs.txt" -
141
142 cd "$fromdir"
143 rm -rf "$todir" "$chkdir"
144
145 $RSYNC -aX file1 file2
146 $RSYNC -aX file1 file2 ../chk/
147 $RSYNC -aX --del ../chk/ .
148 $RSYNC -aX file1 ../lnk/
149
150 xls file1 file2 >"$scratchdir/xattrs.txt"
151
152 checkit "$RSYNC -aiiX --copy-dest=../lnk . ../to" "$chkdir" "$todir"
153
154 cd "$todir"
155 xls file1 file2 | diff $diffopt "$scratchdir/xattrs.txt" -
156
157 cd "$fromdir"
158 rm "$todir/file2"
159
160 echo extra >file1
161 $RSYNC -aX . ../chk/
162
163 checkit "$RSYNC -aiiX . ../to" "$chkdir" "$todir"
164
165 cd "$todir"
166 xls file1 file2 | diff $diffopt "$scratchdir/xattrs.txt" -
167
168 # The script would have aborted on error, so getting here means we've won.
169 exit 0