Improved the SUBPROTOCOL_VERSION code a little, and bumped the value
[rsync/rsync.git] / testsuite / devices.test
CommitLineData
355b8bcd
MP
1#! /bin/sh
2
3# Copyright (C) 2002 by Martin Pool <mbp@samba.org>
4
5# This program is distributable under the terms of the GNU GPL (see
6# COPYING).
7
8# Test rsync handling of devices. This can only run if you're root.
9
b0e9bafc 10. "$suitedir/rsync.fns"
355b8bcd 11
9ac35913
WD
12chkfile="$scratchdir/rsync.chk"
13outfile="$scratchdir/rsync.out"
14
355b8bcd
MP
15# Build some hardlinks
16
f5450e79
WD
17case `id -u` in
18'') ;; # If "id" failed, try to continue...
648859bd
WD
190) ;;
20*) if [ -f /usr/bin/fakeroot ]; then
bb21ecac 21 echo "Let's try re-running the script under fakeroot..."
8f5b554f 22 exec /usr/bin/fakeroot /bin/sh $RUNSHFLAGS "$0"
648859bd
WD
23 fi
24 test_skipped "Rsync won't copy devices unless we're root"
25 ;;
f5450e79
WD
26esac
27
355b8bcd
MP
28# TODO: Need to test whether hardlinks are possible on this OS/filesystem
29
30mkdir "$fromdir"
9ac35913 31mkdir "$todir"
f09dc86a
WD
32mknod "$fromdir/char" c 41 67 || test_skipped "Can't create char device node unless root"
33mknod "$fromdir/char2" c 42 68 || test_skipped "Can't create char device node unless root"
34mknod "$fromdir/char3" c 42 69 || test_skipped "Can't create char device node unless root"
7a176e87 35mknod "$fromdir/block" b 42 69 || test_skipped "Can't create block device node unless root"
ab264c9e
S
36mknod "$fromdir/block2" b 42 73 || test_skipped "Can't create block device node unless root"
37mknod "$fromdir/block3" b 105 73 || test_skipped "Can't create block device node unless root"
9ac35913 38ln "$fromdir/block3" "$fromdir/block2.5" || echo "Skipping hard-linked device test..."
fdb6716c 39mkfifo "$fromdir/fifo" || test_skipped "Can't run mkfifo"
9ac35913
WD
40touch -r "$fromdir/block" "$fromdir/block2"
41
42$RSYNC -ai "$fromdir/block" "$todir/block2" \
43 | tee "$outfile"
44cat <<EOT >"$chkfile"
1c3344a1 45cD+++++++++ block
9ac35913
WD
46EOT
47diff $diffopt "$chkfile" "$outfile" || test_fail "test 1 failed"
48
49$RSYNC -ai "$fromdir/block2" "$todir/block" \
50 | tee "$outfile"
51cat <<EOT >"$chkfile"
1c3344a1 52cD+++++++++ block2
9ac35913
WD
53EOT
54diff $diffopt "$chkfile" "$outfile" || test_fail "test 2 failed"
55
56sleep 1
57
58$RSYNC -Di "$fromdir/block3" "$todir/block" \
59 | tee "$outfile"
60cat <<EOT >"$chkfile"
1c3344a1 61cD..T...... block3
9ac35913
WD
62EOT
63diff $diffopt "$chkfile" "$outfile" || test_fail "test 3 failed"
64
65$RSYNC -aiHvv "$fromdir/" "$todir/" \
66 | tee "$outfile"
67filter_outfile
68cat <<EOT >"$chkfile"
1c3344a1
WD
69.d..t...... ./
70cD..t...... block
71cD block2
72cD+++++++++ block3
73hD+++++++++ block2.5 => block3
74cD+++++++++ char
75cD+++++++++ char2
76cD+++++++++ char3
77cS+++++++++ fifo
9ac35913
WD
78EOT
79if test ! -b "$fromdir/block2.5"; then
80 sed -e '/block2\.5/d' \
81 <"$chkfile" >"$chkfile.new"
82 mv "$chkfile.new" "$chkfile"
83fi
84diff $diffopt "$chkfile" "$outfile" || test_fail "test 4 failed"
355b8bcd 85
9ac35913
WD
86echo "check how the directory listings compare with diff:"
87echo ""
88( cd "$fromdir" && rsync_ls_lR . ) > "$tmpdir/ls-from"
89( cd "$todir" && rsync_ls_lR . ) > "$tmpdir/ls-to"
90diff $diffopt "$tmpdir/ls-from" "$tmpdir/ls-to"
355b8bcd 91
083f75ee
WD
92if test -b "$fromdir/block2.5"; then
93 set -x
94 $RSYNC -aii --link-dest="$todir" "$fromdir/" "$chkdir/" \
95 | tee "$outfile"
96 cat <<EOT >"$chkfile"
1c3344a1
WD
97cd ./
98hD block
99hD block2
100hD block2.5
101hD block3
102hD char
103hD char2
104hD char3
105hS fifo
083f75ee
WD
106EOT
107 diff $diffopt "$chkfile" "$outfile" || test_fail "test 4 failed"
108fi
109
05118158 110# The script would have aborted on error, so getting here means we've won.
355b8bcd 111exit 0