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