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