The --fake-super option conflicts with -XX (which copies internal
[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. $srcdir/testsuite/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 "${@}"
22 }
23 ;;
24*)
25 xset() {
26 xnam="$1"
27 xval="$2"
28 shift 2
29 setfattr -n "$xnam" -v "$xval" "${@}"
30 }
31 xls() {
32 getfattr -d "${@}"
33 }
34 ;;
35esac
36
37makepath "$fromdir/foo/bar"
38echo now >"$fromdir/file0"
39echo something >"$fromdir/file1"
40echo else >"$fromdir/file2"
41echo deep >"$fromdir/foo/file3"
42echo normal >"$fromdir/file4"
43echo deeper >"$fromdir/foo/bar/file5"
44
45makepath "$chkdir/foo"
46echo wow >"$chkdir/file1"
47cp -p "$fromdir/foo/file3" "$chkdir/foo"
48
49files='foo file0 file1 file2 foo/file3 file4 foo/bar/file5'
50
51cd "$fromdir"
52
53xset user.foo foo file0 2>/dev/null || test_skipped "Unable to set an xattr"
54xset user.bar bar file0
55
56xset user.short 'this is short' file1
57xset user.long 'this is a long attribute that will be truncated in the initial data send' file1
58xset user.good 'this is good' file1
59xset user.nice 'this is nice' file1
60
61xset user.foo foo file2
62xset user.bar bar file2
63xset user.long 'a long attribute for our new file that tests to ensure that this works' file2
64
65xset user.foo 'new foo' foo/file3 foo/bar/file5
66xset user.bar 'new bar' foo/file3 foo/bar/file5
67xset user.long 'this is also a long attribute that will be truncated in the initial data send' foo/file3 foo/bar/file5
68xset user.equal 'this long attribute should remain the same and not need to be transferred' foo/file3 foo/bar/file5
69
70xset user.short 'old short' "$chkdir/file1"
71xset user.extra 'remove me' "$chkdir/file1"
72
73xset user.foo 'old foo' "$chkdir/foo/file3"
74xset user.equal 'this long attribute should remain the same and not need to be transferred' "$chkdir/foo/file3"
75
76xls $files >"$scratchdir/xattrs.txt"
77
78# OK, let's try a simple xattr copy.
79checkit "$RSYNC -avX . '$chkdir/'" "$fromdir" "$chkdir"
80
81cd "$chkdir"
82xls $files | diff $diffopt "$scratchdir/xattrs.txt" -
83
84cd "$fromdir"
85
86checkit "$RSYNC -aiX --copy-dest=../chk . ../to" "$fromdir" "$todir"
87
88cd "$todir"
89xls $files | diff $diffopt "$scratchdir/xattrs.txt" -
90
91cd "$fromdir"
92xset user.nice 'this is nice, but different' file1
93
94xls $files >"$scratchdir/xattrs.txt"
95
96rm -rf "$todir"
97
98checkit "$RSYNC -aiX --link-dest=../chk . ../to" "$chkdir" "$todir"
99
100cd "$todir"
101xls $files | diff $diffopt "$scratchdir/xattrs.txt" -
102
103# The script would have aborted on error, so getting here means we've won.
104exit 0