Switch to upper-case in the {debug,info}_verbosity arrays.
[rsync/rsync.git] / testsuite / hardlinks.test
CommitLineData
b7815375
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
4bde45f6
WD
8# Test rsync handling of hardlinks. By default, rsync does not detect
9# hard links and they get sent as separate files. If you specify -H,
10# then hard links are detected and linked together on the receiver.
b7815375 11
e920830e 12. "$suitedir/rsync.fns"
b7815375 13
e717fa4d 14SSH="$scratchdir/src/support/lsh"
34a2b391 15
accf8d12
WD
16outfile="$scratchdir/rsync.out"
17
b7815375
MP
18# Build some hardlinks
19
20fromdir="$scratchdir/from"
21todir="$scratchdir/to"
22
23# TODO: Need to test whether hardlinks are possible on this OS/filesystem
24
25mkdir "$fromdir"
26name1="$fromdir/name1"
27name2="$fromdir/name2"
28name3="$fromdir/name3"
29name4="$fromdir/name4"
30echo "This is the file" > "$name1"
31ln "$name1" "$name2" || fail "Can't create hardlink"
32ln "$name2" "$name3" || fail "Can't create hardlink"
33cp "$name2" "$name4" || fail "Can't copy file"
ee887d98
WD
34cat $srcdir/*.c >"$fromdir/text"
35
0c096e29 36checkit "$RSYNC -aHivv --debug=hlink5 '$fromdir/' '$todir/'" "$fromdir" "$todir"
ee887d98
WD
37
38echo "extra extra" >>"$todir/name1"
39
0c096e29 40checkit "$RSYNC -aHivv --debug=hlink5 --no-whole-file '$fromdir/' '$todir/'" "$fromdir" "$todir"
ee887d98 41
de8252f6 42# Add a new link in a new subdirectory to test that we don't try to link
3f2d8d68
WD
43# the files before the directory gets created. We also create a bunch of
44# extra files to ensure that an incremental-recursion transfer works across
45# distant files.
46makepath "$fromdir/subdir/down/deep"
47
48files=''
34a2b391
WD
49for x in a b c d e f g h i j k l m n o p q r s t u v w x y z 0 1 2 3 4 5 6 7 8 9; do
50 for y in a b c d e f g h i j k l m n o p q r s t u v w x y z 0 1 2 3 4 5 6 7 8 9; do
3f2d8d68
WD
51 files="$files $x$y"
52 done
53done
54(cd "$fromdir/subdir"; touch $files)
55
56ln "$name1" "$fromdir/subdir/down/deep/new-file"
ee887d98 57rm "$todir/text"
b7815375 58
0c096e29 59checkit "$RSYNC -aHivve '$SSH' --debug=hlink5 --rsync-path='$RSYNC' '$fromdir/' localhost:'$todir/'" "$fromdir" "$todir"
7a6e294f 60
de8252f6
WD
61# Do some duplicate copies using --link-dest and --copy-dest to test that
62# we hard-link all locally-inherited items.
0c096e29 63checkit "$RSYNC -aHivv --debug=hlink5 --link-dest='$todir' '$fromdir/' '$chkdir/'" "$todir" "$chkdir"
de8252f6
WD
64
65rm -rf "$chkdir"
0c096e29 66checkit "$RSYNC -aHivv --debug=hlink5 --copy-dest='$todir' '$fromdir/' '$chkdir/'" "$fromdir" "$chkdir"
de8252f6 67
accf8d12
WD
68# Create a hard link that has only one part in the hierarchy.
69echo "This is another file" >"$fromdir/solo"
70ln "$fromdir/solo" "$chkdir/solo" || fail "Can't create hardlink"
71
72# Make sure that the checksum data doesn't slide due to an HLINK_BUMP() change.
0c096e29 73$RSYNC -aHivc --debug=hlink5 "$fromdir/" "$chkdir/" | tee "$outfile"
accf8d12
WD
74grep solo "$outfile" && test_fail "Erroneous copy of solo file occurred!"
75
7a6e294f 76# Make sure there's nothing wrong with sending a single file with -H
2e42adb3 77# enabled (this has broken twice so far, so we need this test).
ee887d98 78rm -rf "$todir"
0c096e29 79$RSYNC -aHivv --debug=hlink5 "$name1" "$todir/"
2e42adb3 80diff $diffopt "$name1" "$todir" || test_fail "solo copy of name1 failed"
b7815375 81
05118158 82# The script would have aborted on error, so getting here means we've won.
b7815375 83exit 0