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