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