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