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