hardlinks.test 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. #! /bin/sh
  2. # Copyright (C) 2002 by Martin Pool <mbp@samba.org>
  3. # This program is distributable under the terms of the GNU GPL (see
  4. # COPYING).
  5. # Test rsync handling of hardlinks. By default, rsync does not detect
  6. # hard links and they get sent as separate files. If you specify -H,
  7. # then hard links are detected and linked together on the receiver.
  8. . "$suitedir/rsync.fns"
  9. SSH="$scratchdir/src/support/lsh"
  10. outfile="$scratchdir/rsync.out"
  11. # Build some hardlinks
  12. fromdir="$scratchdir/from"
  13. todir="$scratchdir/to"
  14. # TODO: Need to test whether hardlinks are possible on this OS/filesystem
  15. mkdir "$fromdir"
  16. name1="$fromdir/name1"
  17. name2="$fromdir/name2"
  18. name3="$fromdir/name3"
  19. name4="$fromdir/name4"
  20. echo "This is the file" > "$name1"
  21. ln "$name1" "$name2" || test_skipped "Can't create hardlink"
  22. ln "$name2" "$name3" || fail "Can't create hardlink"
  23. cp "$name2" "$name4" || fail "Can't copy file"
  24. cat $srcdir/*.c >"$fromdir/text"
  25. checkit "$RSYNC -aHivv '$fromdir/' '$todir/'" "$fromdir" "$todir"
  26. echo "extra extra" >>"$todir/name1"
  27. checkit "$RSYNC -aHivv --no-whole-file '$fromdir/' '$todir/'" "$fromdir" "$todir"
  28. # Add a new link in a new subdirectory to test that we don't try to link
  29. # the files before the directory gets created. We also create a bunch of
  30. # extra files to ensure that an incremental-recursion transfer works across
  31. # distant files.
  32. makepath "$fromdir/subdir/down/deep"
  33. files=''
  34. for 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
  35. 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
  36. files="$files $x$y"
  37. done
  38. done
  39. (cd "$fromdir/subdir"; touch $files)
  40. ln "$name1" "$fromdir/subdir/down/deep/new-file"
  41. rm "$todir/text"
  42. checkit "$RSYNC -aHivve '$SSH' --rsync-path='$RSYNC' '$fromdir/' localhost:'$todir/'" "$fromdir" "$todir"
  43. # Do some duplicate copies using --link-dest and --copy-dest to test that
  44. # we hard-link all locally-inherited items.
  45. checkit "$RSYNC -aHivv --link-dest='$todir' '$fromdir/' '$chkdir/'" "$todir" "$chkdir"
  46. rm -rf "$chkdir"
  47. checkit "$RSYNC -aHivv --copy-dest='$todir' '$fromdir/' '$chkdir/'" "$fromdir" "$chkdir"
  48. # Create a hard link that has only one part in the hierarchy.
  49. echo "This is another file" >"$fromdir/solo"
  50. ln "$fromdir/solo" "$chkdir/solo" || fail "Can't create hardlink"
  51. # Make sure that the checksum data doesn't slide due to an HLINK_BUMP() change.
  52. $RSYNC -aHivc "$fromdir/" "$chkdir/" | tee "$outfile"
  53. grep solo "$outfile" && test_fail "Erroneous copy of solo file occurred!"
  54. # Make sure there's nothing wrong with sending a single file with -H
  55. # enabled (this has broken twice so far, so we need this test).
  56. rm -rf "$todir"
  57. $RSYNC -aHivv "$name1" "$todir/"
  58. diff $diffopt "$name1" "$todir" || test_fail "solo copy of name1 failed"
  59. # The script would have aborted on error, so getting here means we've won.
  60. exit 0