Fixed the interaction of --fake-super with --link-dest & --xattrs.
[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
accf8d12
WD
14outfile="$scratchdir/rsync.out"
15
b7815375
MP
16# Build some hardlinks
17
18fromdir="$scratchdir/from"
19todir="$scratchdir/to"
20
21# TODO: Need to test whether hardlinks are possible on this OS/filesystem
22
23mkdir "$fromdir"
24name1="$fromdir/name1"
25name2="$fromdir/name2"
26name3="$fromdir/name3"
27name4="$fromdir/name4"
28echo "This is the file" > "$name1"
29ln "$name1" "$name2" || fail "Can't create hardlink"
30ln "$name2" "$name3" || fail "Can't create hardlink"
31cp "$name2" "$name4" || fail "Can't copy file"
ee887d98
WD
32cat $srcdir/*.c >"$fromdir/text"
33
7918f244 34checkit "$RSYNC -aHivv '$fromdir/' '$todir/'" "$fromdir" "$todir"
ee887d98
WD
35
36echo "extra extra" >>"$todir/name1"
37
7918f244 38checkit "$RSYNC -aHivv --no-whole-file '$fromdir/' '$todir/'" "$fromdir" "$todir"
ee887d98 39
de8252f6
WD
40# Add a new link in a new subdirectory to test that we don't try to link
41# the files before the directory gets created.
ee887d98
WD
42mkdir "$fromdir/subdir"
43ln "$name1" "$fromdir/subdir/new-file"
44rm "$todir/text"
b7815375 45
7918f244 46checkit "$RSYNC -aHivv '$fromdir/' '$todir/'" "$fromdir" "$todir"
7a6e294f 47
de8252f6
WD
48# Do some duplicate copies using --link-dest and --copy-dest to test that
49# we hard-link all locally-inherited items.
7918f244 50checkit "$RSYNC -aHivv --link-dest='$todir' '$fromdir/' '$chkdir/'" "$todir" "$chkdir"
de8252f6
WD
51
52rm -rf "$chkdir"
7918f244 53checkit "$RSYNC -aHivv --copy-dest='$todir' '$fromdir/' '$chkdir/'" "$fromdir" "$chkdir"
de8252f6 54
accf8d12
WD
55# Create a hard link that has only one part in the hierarchy.
56echo "This is another file" >"$fromdir/solo"
57ln "$fromdir/solo" "$chkdir/solo" || fail "Can't create hardlink"
58
59# Make sure that the checksum data doesn't slide due to an HLINK_BUMP() change.
60$RSYNC -aHivc "$fromdir/" "$chkdir/" | tee "$outfile"
61grep solo "$outfile" && test_fail "Erroneous copy of solo file occurred!"
62
7a6e294f 63# Make sure there's nothing wrong with sending a single file with -H
2e42adb3 64# enabled (this has broken twice so far, so we need this test).
ee887d98 65rm -rf "$todir"
2e42adb3
WD
66$RSYNC -aHivv "$name1" "$todir/"
67diff $diffopt "$name1" "$todir" || test_fail "solo copy of name1 failed"
b7815375 68
05118158 69# The script would have aborted on error, so getting here means we've won.
b7815375 70exit 0