3 # Copyright (c) 2007 Shawn Pearce
6 test_description
='test git fast-import utility'
8 .
"$TEST_DIRECTORY"/diff-lib.sh
;# test-lib chdir's into trash
11 for p
in .git
/objects
/pack
/*.pack
13 git verify-pack
"$@" "$p" ||
return
27 file5_data
='an inline file.
28 we should see it later.'
37 test_expect_success
'empty stream succeeds' '
38 git config fastimport.unpackLimit 0 &&
39 git fast-import </dev/null
42 test_expect_success
'truncated stream complains' '
43 echo "tag foo" | test_must_fail git fast-import
46 test_expect_success
'A: create pack from stdin' '
48 cat >input <<-INPUT_END &&
65 commit refs/heads/master
67 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
79 An annotated tag without a tagger
85 An annotated tag that annotates a blob.
89 git fast-import --export-marks=marks.out <input &&
90 git whatchanged master
93 test_expect_success
'A: verify pack' '
97 test_expect_success
'A: verify commit' '
99 author $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
100 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
104 git cat-file commit master | sed 1d >actual &&
105 test_cmp expect actual
108 test_expect_success
'A: verify tree' '
109 cat >expect <<-EOF &&
114 git cat-file -p master^{tree} | sed "s/ [0-9a-f]* / /" >actual &&
115 test_cmp expect actual
118 test_expect_success
'A: verify file2' '
119 echo "$file2_data" >expect &&
120 git cat-file blob master:file2 >actual &&
121 test_cmp expect actual
124 test_expect_success
'A: verify file3' '
125 echo "$file3_data" >expect &&
126 git cat-file blob master:file3 >actual &&
127 test_cmp expect actual
130 test_expect_success
'A: verify file4' '
131 printf "$file4_data" >expect &&
132 git cat-file blob master:file4 >actual &&
133 test_cmp expect actual
136 test_expect_success
'A: verify tag/series-A' '
137 cat >expect <<-EOF &&
138 object $(git rev-parse refs/heads/master)
142 An annotated tag without a tagger
144 git cat-file tag tags/series-A >actual &&
145 test_cmp expect actual
148 test_expect_success
'A: verify tag/series-A-blob' '
149 cat >expect <<-EOF &&
150 object $(git rev-parse refs/heads/master:file3)
154 An annotated tag that annotates a blob.
156 git cat-file tag tags/series-A-blob >actual &&
157 test_cmp expect actual
160 test_expect_success
'A: verify marks output' '
161 cat >expect <<-EOF &&
162 :2 $(git rev-parse --verify master:file2)
163 :3 $(git rev-parse --verify master:file3)
164 :4 $(git rev-parse --verify master:file4)
165 :5 $(git rev-parse --verify master^0)
167 test_cmp expect marks.out
170 test_expect_success
'A: verify marks import' '
172 --import-marks=marks.out \
173 --export-marks=marks.new \
175 test_cmp expect marks.new
178 test_expect_success
'A: tag blob by sha1' '
180 new_blob=$(echo testing | git hash-object --stdin) &&
181 cat >input <<-INPUT_END &&
183 from $(git rev-parse refs/heads/master:file3)
194 commit refs/heads/new_blob
198 #pretend we got sha1 from fast-import
208 cat >expect <<-EOF &&
209 object $(git rev-parse refs/heads/master:file3)
221 git fast-import <input &&
222 git cat-file tag tags/series-A-blob-2 >actual &&
223 git cat-file tag tags/series-A-blob-3 >>actual &&
224 test_cmp expect actual
227 test_expect_success
'A: verify marks import does not crash' '
229 cat >input <<-INPUT_END &&
230 commit refs/heads/verify--import-marks
231 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
237 M 755 :2 copy-of-file2
241 git fast-import --import-marks=marks.out <input &&
242 git whatchanged verify--import-marks
245 test_expect_success
'A: verify pack' '
249 test_expect_success
'A: verify diff' '
250 cat >expect <<-EOF &&
251 :000000 100755 0000000000000000000000000000000000000000 7123f7f44e39be127c5eb701e5968176ee9d78b1 A copy-of-file2
253 git diff-tree -M -r master verify--import-marks >actual &&
254 compare_diff_raw expect actual &&
255 test $(git rev-parse --verify master:file2) \
256 = $(git rev-parse --verify verify--import-marks:copy-of-file2)
259 test_expect_success
'A: export marks with large values' '
261 mt=$(git hash-object --stdin < /dev/null) &&
266 cat >input.commit <<-EOF &&
267 commit refs/heads/verify--dump-marks
268 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
270 test the sparse array dumping routines with exponentially growing marks
275 while test "$i" -lt 27
277 cat >>input.blob <<-EOF &&
288 echo "M 100644 :$l l$i" >>input.commit &&
289 echo "M 100644 :$m m$i" >>input.commit &&
290 echo "M 100644 :$n n$i" >>input.commit &&
292 echo ":$l $mt" >>marks.exp &&
293 echo ":$m $mt" >>marks.exp &&
294 echo ":$n $mt" >>marks.exp &&
296 printf "100644 blob $mt\tl$i\n" >>tree.exp &&
297 printf "100644 blob $mt\tm$i\n" >>tree.exp &&
298 printf "100644 blob $mt\tn$i\n" >>tree.exp &&
304 i=$((1 + $i)) || return 1
307 sort tree.exp > tree.exp_s &&
309 cat input.blob input.commit | git fast-import --export-marks=marks.large &&
310 git ls-tree refs/heads/verify--dump-marks >tree.out &&
311 test_cmp tree.exp_s tree.out &&
312 test_cmp marks.exp marks.large
319 test_expect_success
'B: fail on invalid blob sha1' '
321 cat >input <<-INPUT_END &&
322 commit refs/heads/branch
324 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
329 from refs/heads/master
330 M 755 0000000000000000000000000000000000000001 zero1
334 test_when_finished "rm -f .git/objects/pack_* .git/objects/index_*" &&
335 test_must_fail git fast-import <input
338 test_expect_success
'B: accept branch name "TEMP_TAG"' '
339 cat >input <<-INPUT_END &&
341 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
346 from refs/heads/master
350 test_when_finished "rm -f .git/TEMP_TAG
353 git fast-import <input &&
354 test -f .git/TEMP_TAG &&
355 test $(git rev-parse master) = $(git rev-parse TEMP_TAG^)
358 test_expect_success
'B: accept empty committer' '
359 cat >input <<-INPUT_END &&
360 commit refs/heads/empty-committer-1
361 committer <> $GIT_COMMITTER_DATE
367 test_when_finished "git update-ref -d refs/heads/empty-committer-1
370 git fast-import <input &&
376 test_expect_success
'B: accept and fixup committer with no name' '
377 cat >input <<-INPUT_END &&
378 commit refs/heads/empty-committer-2
379 committer <a@b.com> $GIT_COMMITTER_DATE
385 test_when_finished "git update-ref -d refs/heads/empty-committer-2
388 git fast-import <input &&
394 test_expect_success
'B: fail on invalid committer (1)' '
395 cat >input <<-INPUT_END &&
396 commit refs/heads/invalid-committer
397 committer Name email> $GIT_COMMITTER_DATE
403 test_when_finished "git update-ref -d refs/heads/invalid-committer" &&
404 test_must_fail git fast-import <input
407 test_expect_success
'B: fail on invalid committer (2)' '
408 cat >input <<-INPUT_END &&
409 commit refs/heads/invalid-committer
410 committer Name <e<mail> $GIT_COMMITTER_DATE
416 test_when_finished "git update-ref -d refs/heads/invalid-committer" &&
417 test_must_fail git fast-import <input
420 test_expect_success
'B: fail on invalid committer (3)' '
421 cat >input <<-INPUT_END &&
422 commit refs/heads/invalid-committer
423 committer Name <email>> $GIT_COMMITTER_DATE
429 test_when_finished "git update-ref -d refs/heads/invalid-committer" &&
430 test_must_fail git fast-import <input
433 test_expect_success
'B: fail on invalid committer (4)' '
434 cat >input <<-INPUT_END &&
435 commit refs/heads/invalid-committer
436 committer Name <email $GIT_COMMITTER_DATE
442 test_when_finished "git update-ref -d refs/heads/invalid-committer" &&
443 test_must_fail git fast-import <input
446 test_expect_success
'B: fail on invalid committer (5)' '
447 cat >input <<-INPUT_END &&
448 commit refs/heads/invalid-committer
449 committer Name<email> $GIT_COMMITTER_DATE
455 test_when_finished "git update-ref -d refs/heads/invalid-committer" &&
456 test_must_fail git fast-import <input
463 test_expect_success
'C: incremental import create pack from stdin' '
464 newf=$(echo hi newf | git hash-object -w --stdin) &&
465 oldf=$(git rev-parse --verify master:file2) &&
467 cat >input <<-INPUT_END &&
468 commit refs/heads/branch
469 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
474 from refs/heads/master
475 M 644 $oldf file2/oldf
476 M 755 $newf file2/newf
481 git fast-import <input &&
482 git whatchanged branch
485 test_expect_success
'C: verify pack' '
489 test_expect_success
'C: validate reuse existing blob' '
490 test $newf = $(git rev-parse --verify branch:file2/newf) &&
491 test $oldf = $(git rev-parse --verify branch:file2/oldf)
494 test_expect_success
'C: verify commit' '
495 cat >expect <<-EOF &&
496 parent $(git rev-parse --verify master^0)
497 author $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
498 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
503 git cat-file commit branch | sed 1d >actual &&
504 test_cmp expect actual
507 test_expect_success
'C: validate rename result' '
508 cat >expect <<-EOF &&
509 :000000 100755 0000000000000000000000000000000000000000 f1fb5da718392694d0076d677d6d0e364c79b0bc A file2/newf
510 :100644 100644 7123f7f44e39be127c5eb701e5968176ee9d78b1 7123f7f44e39be127c5eb701e5968176ee9d78b1 R100 file2 file2/oldf
511 :100644 000000 0d92e9f3374ae2947c23aa477cbc68ce598135f1 0000000000000000000000000000000000000000 D file3
513 git diff-tree -M -r master branch >actual &&
514 compare_diff_raw expect actual
521 test_expect_success
'D: inline data in commit' '
523 cat >input <<-INPUT_END &&
524 commit refs/heads/branch
525 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
530 from refs/heads/branch^0
531 M 644 inline newdir/interesting
536 M 755 inline newdir/exec.sh
543 git fast-import <input &&
544 git whatchanged branch
547 test_expect_success
'D: verify pack' '
551 test_expect_success
'D: validate new files added' '
552 cat >expect <<-EOF &&
553 :000000 100755 0000000000000000000000000000000000000000 e74b7d465e52746be2b4bae983670711e6e66657 A newdir/exec.sh
554 :000000 100644 0000000000000000000000000000000000000000 fcf778cda181eaa1cbc9e9ce3a2e15ee9f9fe791 A newdir/interesting
556 git diff-tree -M -r branch^ branch >actual &&
557 compare_diff_raw expect actual
560 test_expect_success
'D: verify file5' '
561 echo "$file5_data" >expect &&
562 git cat-file blob branch:newdir/interesting >actual &&
563 test_cmp expect actual
566 test_expect_success
'D: verify file6' '
567 echo "$file6_data" >expect &&
568 git cat-file blob branch:newdir/exec.sh >actual &&
569 test_cmp expect actual
576 test_expect_success
'E: rfc2822 date, --date-format=raw' '
577 cat >input <<-INPUT_END &&
578 commit refs/heads/branch
579 author $GIT_AUTHOR_NAME <$GIT_AUTHOR_EMAIL> Tue Feb 6 11:22:18 2007 -0500
580 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> Tue Feb 6 12:35:02 2007 -0500
585 from refs/heads/branch^0
589 test_must_fail git fast-import --date-format=raw <input
591 test_expect_success
'E: rfc2822 date, --date-format=rfc2822' '
592 git fast-import --date-format=rfc2822 <input
595 test_expect_success
'E: verify pack' '
599 test_expect_success
'E: verify commit' '
600 cat >expect <<-EOF &&
601 author $GIT_AUTHOR_NAME <$GIT_AUTHOR_EMAIL> 1170778938 -0500
602 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1170783302 -0500
606 git cat-file commit branch | sed 1,2d >actual &&
607 test_cmp expect actual
614 test_expect_success
'F: non-fast-forward update skips' '
615 old_branch=$(git rev-parse --verify branch^0) &&
617 cat >input <<-INPUT_END &&
618 commit refs/heads/branch
619 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
621 losing things already?
624 from refs/heads/branch~1
626 reset refs/heads/other
627 from refs/heads/branch
631 test_must_fail git fast-import <input &&
632 # branch must remain unaffected
633 test $old_branch = $(git rev-parse --verify branch^0)
636 test_expect_success
'F: verify pack' '
640 test_expect_success
'F: verify other commit' '
641 cat >expect <<-EOF &&
642 tree $(git rev-parse branch~1^{tree})
643 parent $(git rev-parse branch~1)
644 author $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
645 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
647 losing things already?
649 git cat-file commit other >actual &&
650 test_cmp expect actual
657 test_expect_success
'G: non-fast-forward update forced' '
658 old_branch=$(git rev-parse --verify branch^0) &&
660 cat >input <<-INPUT_END &&
661 commit refs/heads/branch
662 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
664 losing things already?
667 from refs/heads/branch~1
670 git fast-import --force <input
673 test_expect_success
'G: verify pack' '
677 test_expect_success
'G: branch changed, but logged' '
678 test $old_branch != $(git rev-parse --verify branch^0) &&
679 test $old_branch = $(git rev-parse --verify branch@{1})
686 test_expect_success
'H: deletall, add 1' '
688 cat >input <<-INPUT_END &&
690 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
695 from refs/heads/branch^0
696 M 644 inline i-will-die
698 this file will never exist.
702 M 644 inline h/e/l/lo
708 git fast-import <input &&
712 test_expect_success
'H: verify pack' '
716 test_expect_success
'H: validate old files removed, new files added' '
717 cat >expect <<-EOF &&
718 :100755 000000 f1fb5da718392694d0076d677d6d0e364c79b0bc 0000000000000000000000000000000000000000 D file2/newf
719 :100644 000000 7123f7f44e39be127c5eb701e5968176ee9d78b1 0000000000000000000000000000000000000000 D file2/oldf
720 :100755 000000 85df50785d62d3b05ab03d9cbf7e4a0b49449730 0000000000000000000000000000000000000000 D file4
721 :100644 100644 fcf778cda181eaa1cbc9e9ce3a2e15ee9f9fe791 fcf778cda181eaa1cbc9e9ce3a2e15ee9f9fe791 R100 newdir/interesting h/e/l/lo
722 :100755 000000 e74b7d465e52746be2b4bae983670711e6e66657 0000000000000000000000000000000000000000 D newdir/exec.sh
724 git diff-tree -M -r H^ H >actual &&
725 compare_diff_raw expect actual
728 test_expect_success
'H: verify file' '
729 echo "$file5_data" >expect &&
730 git cat-file blob H:h/e/l/lo >actual &&
731 test_cmp expect actual
738 test_expect_success
'I: export-pack-edges' '
739 cat >input <<-INPUT_END &&
740 commit refs/heads/export-boundary
741 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
743 we have a border. its only 40 characters wide.
746 from refs/heads/branch
749 git fast-import --export-pack-edges=edges.list <input
752 test_expect_success
'I: verify edge list' '
753 cat >expect <<-EOF &&
754 .git/objects/pack/pack-.pack: $(git rev-parse --verify export-boundary)
756 sed -e s/pack-.*pack/pack-.pack/ edges.list >actual &&
757 test_cmp expect actual
764 test_expect_success
'J: reset existing branch creates empty commit' '
765 cat >input <<-INPUT_END &&
767 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
772 from refs/heads/branch
777 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
783 git fast-import <input
785 test_expect_success
'J: branch has 1 commit, empty tree' '
786 test 1 = $(git rev-list J | wc -l) &&
787 test 0 = $(git ls-tree J | wc -l)
790 test_expect_success
'J: tag must fail on empty branch' '
791 cat >input <<-INPUT_END &&
797 Tag branch that was reset.
800 test_must_fail git fast-import <input
807 test_expect_success
'K: reinit branch with from' '
808 cat >input <<-INPUT_END &&
810 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
815 from refs/heads/branch
818 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
823 from refs/heads/branch^1
826 git fast-import <input
828 test_expect_success
'K: verify K^1 = branch^1' '
829 test $(git rev-parse --verify branch^1) \
830 = $(git rev-parse --verify K^1)
837 test_expect_success
'L: verify internal tree sorting' '
838 cat >input <<-INPUT_END &&
852 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
862 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
872 cat >expect <<-EXPECT_END &&
873 :100644 100644 4268632... 55d3a52... M b.
874 :040000 040000 0ae5cac... 443c768... M b
875 :100644 100644 4268632... 55d3a52... M ba
878 git fast-import <input &&
879 git diff-tree --abbrev --raw L^ L >output &&
880 test_cmp expect output
883 test_expect_success
'L: nested tree copy does not corrupt deltas' '
884 cat >input <<-INPUT_END &&
892 committer C O Mitter <committer@example.com> 1112912473 -0700
901 committer C O Mitter <committer@example.com> 1112912473 -0700
910 cat >expect <<-\EOF &&
915 test_when_finished "git update-ref -d refs/heads/L2" &&
916 git fast-import <input &&
917 git ls-tree L2 g/b/ >tmp &&
918 cat tmp | cut -f 2 >actual &&
919 test_cmp expect actual &&
920 git fsck $(git rev-parse L2)
927 test_expect_success
'M: rename file in same subdirectory' '
929 cat >input <<-INPUT_END &&
931 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
936 from refs/heads/branch^0
937 R file2/newf file2/n.e.w.f
941 cat >expect <<-EOF &&
942 :100755 100755 f1fb5da718392694d0076d677d6d0e364c79b0bc f1fb5da718392694d0076d677d6d0e364c79b0bc R100 file2/newf file2/n.e.w.f
944 git fast-import <input &&
945 git diff-tree -M -r M1^ M1 >actual &&
946 compare_diff_raw expect actual
949 test_expect_success
'M: rename file to new subdirectory' '
950 cat >input <<-INPUT_END &&
952 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
957 from refs/heads/branch^0
958 R file2/newf i/am/new/to/you
962 cat >expect <<-EOF &&
963 :100755 100755 f1fb5da718392694d0076d677d6d0e364c79b0bc f1fb5da718392694d0076d677d6d0e364c79b0bc R100 file2/newf i/am/new/to/you
965 git fast-import <input &&
966 git diff-tree -M -r M2^ M2 >actual &&
967 compare_diff_raw expect actual
970 test_expect_success
'M: rename subdirectory to new subdirectory' '
971 cat >input <<-INPUT_END &&
973 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
983 cat >expect <<-EOF &&
984 :100755 100755 f1fb5da718392694d0076d677d6d0e364c79b0bc f1fb5da718392694d0076d677d6d0e364c79b0bc R100 i/am/new/to/you other/sub/am/new/to/you
986 git fast-import <input &&
987 git diff-tree -M -r M3^ M3 >actual &&
988 compare_diff_raw expect actual
991 test_expect_success
'M: rename root to subdirectory' '
992 cat >input <<-INPUT_END &&
994 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1004 cat >expect <<-EOF &&
1005 :100644 100644 7123f7f44e39be127c5eb701e5968176ee9d78b1 7123f7f44e39be127c5eb701e5968176ee9d78b1 R100 file2/oldf sub/file2/oldf
1006 :100755 100755 85df50785d62d3b05ab03d9cbf7e4a0b49449730 85df50785d62d3b05ab03d9cbf7e4a0b49449730 R100 file4 sub/file4
1007 :100755 100755 f1fb5da718392694d0076d677d6d0e364c79b0bc f1fb5da718392694d0076d677d6d0e364c79b0bc R100 i/am/new/to/you sub/i/am/new/to/you
1008 :100755 100755 e74b7d465e52746be2b4bae983670711e6e66657 e74b7d465e52746be2b4bae983670711e6e66657 R100 newdir/exec.sh sub/newdir/exec.sh
1009 :100644 100644 fcf778cda181eaa1cbc9e9ce3a2e15ee9f9fe791 fcf778cda181eaa1cbc9e9ce3a2e15ee9f9fe791 R100 newdir/interesting sub/newdir/interesting
1011 git fast-import <input &&
1012 git diff-tree -M -r M4^ M4 >actual &&
1014 compare_diff_raw expect actual
1021 test_expect_success
'N: copy file in same subdirectory' '
1023 cat >input <<-INPUT_END &&
1024 commit refs/heads/N1
1025 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1030 from refs/heads/branch^0
1031 C file2/newf file2/n.e.w.f
1035 cat >expect <<-EOF &&
1036 :100755 100755 f1fb5da718392694d0076d677d6d0e364c79b0bc f1fb5da718392694d0076d677d6d0e364c79b0bc C100 file2/newf file2/n.e.w.f
1038 git fast-import <input &&
1039 git diff-tree -C --find-copies-harder -r N1^ N1 >actual &&
1040 compare_diff_raw expect actual
1043 test_expect_success
'N: copy then modify subdirectory' '
1044 cat >input <<-INPUT_END &&
1045 commit refs/heads/N2
1046 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1048 clean directory copy
1051 from refs/heads/branch^0
1054 commit refs/heads/N2
1055 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1057 modify directory copy
1060 M 644 inline file3/file5
1067 cat >expect <<-EOF &&
1068 :100644 100644 fcf778cda181eaa1cbc9e9ce3a2e15ee9f9fe791 fcf778cda181eaa1cbc9e9ce3a2e15ee9f9fe791 C100 newdir/interesting file3/file5
1069 :100755 100755 f1fb5da718392694d0076d677d6d0e364c79b0bc f1fb5da718392694d0076d677d6d0e364c79b0bc C100 file2/newf file3/newf
1070 :100644 100644 7123f7f44e39be127c5eb701e5968176ee9d78b1 7123f7f44e39be127c5eb701e5968176ee9d78b1 C100 file2/oldf file3/oldf
1072 git fast-import <input &&
1073 git diff-tree -C --find-copies-harder -r N2^^ N2 >actual &&
1074 compare_diff_raw expect actual
1077 test_expect_success
'N: copy dirty subdirectory' '
1078 cat >input <<-INPUT_END &&
1079 commit refs/heads/N3
1080 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1082 dirty directory copy
1085 from refs/heads/branch^0
1086 M 644 inline file2/file5
1096 git fast-import <input &&
1097 test $(git rev-parse N2^{tree}) = $(git rev-parse N3^{tree})
1100 test_expect_success
'N: copy directory by id' '
1101 cat >expect <<-\EOF &&
1102 :100755 100755 f1fb5da718392694d0076d677d6d0e364c79b0bc f1fb5da718392694d0076d677d6d0e364c79b0bc C100 file2/newf file3/newf
1103 :100644 100644 7123f7f44e39be127c5eb701e5968176ee9d78b1 7123f7f44e39be127c5eb701e5968176ee9d78b1 C100 file2/oldf file3/oldf
1105 subdir=$(git rev-parse refs/heads/branch^0:file2) &&
1106 cat >input <<-INPUT_END &&
1107 commit refs/heads/N4
1108 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1113 from refs/heads/branch^0
1114 M 040000 $subdir file3
1116 git fast-import <input &&
1117 git diff-tree -C --find-copies-harder -r N4^ N4 >actual &&
1118 compare_diff_raw expect actual
1121 test_expect_success PIPE
'N: read and copy directory' '
1122 cat >expect <<-\EOF &&
1123 :100755 100755 f1fb5da718392694d0076d677d6d0e364c79b0bc f1fb5da718392694d0076d677d6d0e364c79b0bc C100 file2/newf file3/newf
1124 :100644 100644 7123f7f44e39be127c5eb701e5968176ee9d78b1 7123f7f44e39be127c5eb701e5968176ee9d78b1 C100 file2/oldf file3/oldf
1126 git update-ref -d refs/heads/N4 &&
1132 commit refs/heads/N4
1133 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1135 copy by tree hash, part 2
1138 from refs/heads/branch^0
1141 read mode type tree filename &&
1142 echo "M 040000 $tree file3"
1144 git fast-import --cat-blob-fd=3 3>backflow &&
1145 git diff-tree -C --find-copies-harder -r N4^ N4 >actual &&
1146 compare_diff_raw expect actual
1149 test_expect_success PIPE
'N: empty directory reads as missing' '
1150 cat <<-\EOF >expect &&
1152 :000000 100644 OBJNAME OBJNAME A unrelated
1154 echo "missing src" >expect.response &&
1155 git update-ref -d refs/heads/read-empty &&
1161 commit refs/heads/read-empty
1162 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1164 read "empty" (missing) directory
1167 M 100644 inline src/greeting
1171 C src/greeting dst1/non-greeting
1172 C src/greeting unrelated
1173 # leave behind "empty" src directory
1178 printf "%s\n" "$line" >response &&
1184 git fast-import --cat-blob-fd=3 3>backflow &&
1185 test_cmp expect.response response &&
1186 git rev-list read-empty |
1187 git diff-tree -r --root --stdin |
1188 sed "s/$_x40/OBJNAME/g" >actual &&
1189 test_cmp expect actual
1192 test_expect_success
'N: copy root directory by tree hash' '
1193 cat >expect <<-\EOF &&
1194 :100755 000000 f1fb5da718392694d0076d677d6d0e364c79b0bc 0000000000000000000000000000000000000000 D file3/newf
1195 :100644 000000 7123f7f44e39be127c5eb701e5968176ee9d78b1 0000000000000000000000000000000000000000 D file3/oldf
1197 root=$(git rev-parse refs/heads/branch^0^{tree}) &&
1198 cat >input <<-INPUT_END &&
1199 commit refs/heads/N6
1200 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1202 copy root directory by tree hash
1205 from refs/heads/branch^0
1208 git fast-import <input &&
1209 git diff-tree -C --find-copies-harder -r N4 N6 >actual &&
1210 compare_diff_raw expect actual
1213 test_expect_success
'N: copy root by path' '
1214 cat >expect <<-\EOF &&
1215 :100755 100755 f1fb5da718392694d0076d677d6d0e364c79b0bc f1fb5da718392694d0076d677d6d0e364c79b0bc C100 file2/newf oldroot/file2/newf
1216 :100644 100644 7123f7f44e39be127c5eb701e5968176ee9d78b1 7123f7f44e39be127c5eb701e5968176ee9d78b1 C100 file2/oldf oldroot/file2/oldf
1217 :100755 100755 85df50785d62d3b05ab03d9cbf7e4a0b49449730 85df50785d62d3b05ab03d9cbf7e4a0b49449730 C100 file4 oldroot/file4
1218 :100755 100755 e74b7d465e52746be2b4bae983670711e6e66657 e74b7d465e52746be2b4bae983670711e6e66657 C100 newdir/exec.sh oldroot/newdir/exec.sh
1219 :100644 100644 fcf778cda181eaa1cbc9e9ce3a2e15ee9f9fe791 fcf778cda181eaa1cbc9e9ce3a2e15ee9f9fe791 C100 newdir/interesting oldroot/newdir/interesting
1221 cat >input <<-INPUT_END &&
1222 commit refs/heads/N-copy-root-path
1223 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1225 copy root directory by (empty) path
1228 from refs/heads/branch^0
1231 git fast-import <input &&
1232 git diff-tree -C --find-copies-harder -r branch N-copy-root-path >actual &&
1233 compare_diff_raw expect actual
1236 test_expect_success
'N: delete directory by copying' '
1237 cat >expect <<-\EOF &&
1239 :100644 000000 OBJID OBJID D foo/bar/qux
1241 :000000 100644 OBJID OBJID A foo/bar/baz
1242 :000000 100644 OBJID OBJID A foo/bar/qux
1244 empty_tree=$(git mktree </dev/null) &&
1245 cat >input <<-INPUT_END &&
1246 commit refs/heads/N-delete
1247 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1249 collect data to be deleted
1253 M 100644 inline foo/bar/baz
1257 C "foo/bar/baz" "foo/bar/qux"
1258 C "foo/bar/baz" "foo/bar/quux/1"
1259 C "foo/bar/baz" "foo/bar/quuux"
1260 M 040000 $empty_tree foo/bar/quux
1261 M 040000 $empty_tree foo/bar/quuux
1263 commit refs/heads/N-delete
1264 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1269 M 040000 $empty_tree foo/bar/qux
1271 git fast-import <input &&
1272 git rev-list N-delete |
1273 git diff-tree -r --stdin --root --always |
1274 sed -e "s/$_x40/OBJID/g" >actual &&
1275 test_cmp expect actual
1278 test_expect_success
'N: modify copied tree' '
1279 cat >expect <<-\EOF &&
1280 :100644 100644 fcf778cda181eaa1cbc9e9ce3a2e15ee9f9fe791 fcf778cda181eaa1cbc9e9ce3a2e15ee9f9fe791 C100 newdir/interesting file3/file5
1281 :100755 100755 f1fb5da718392694d0076d677d6d0e364c79b0bc f1fb5da718392694d0076d677d6d0e364c79b0bc C100 file2/newf file3/newf
1282 :100644 100644 7123f7f44e39be127c5eb701e5968176ee9d78b1 7123f7f44e39be127c5eb701e5968176ee9d78b1 C100 file2/oldf file3/oldf
1284 subdir=$(git rev-parse refs/heads/branch^0:file2) &&
1285 cat >input <<-INPUT_END &&
1286 commit refs/heads/N5
1287 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1292 from refs/heads/branch^0
1293 M 040000 $subdir file3
1295 commit refs/heads/N5
1296 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1298 modify directory copy
1301 M 644 inline file3/file5
1306 git fast-import <input &&
1307 git diff-tree -C --find-copies-harder -r N5^^ N5 >actual &&
1308 compare_diff_raw expect actual
1311 test_expect_success
'N: reject foo/ syntax' '
1312 subdir=$(git rev-parse refs/heads/branch^0:file2) &&
1313 test_must_fail git fast-import <<-INPUT_END
1314 commit refs/heads/N5B
1315 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1317 copy with invalid syntax
1320 from refs/heads/branch^0
1321 M 040000 $subdir file3/
1325 test_expect_success
'N: reject foo/ syntax in copy source' '
1326 test_must_fail git fast-import <<-INPUT_END
1327 commit refs/heads/N5C
1328 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1330 copy with invalid syntax
1333 from refs/heads/branch^0
1338 test_expect_success
'N: reject foo/ syntax in rename source' '
1339 test_must_fail git fast-import <<-INPUT_END
1340 commit refs/heads/N5D
1341 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1343 rename with invalid syntax
1346 from refs/heads/branch^0
1351 test_expect_success
'N: reject foo/ syntax in ls argument' '
1352 test_must_fail git fast-import <<-INPUT_END
1353 commit refs/heads/N5E
1354 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1356 copy with invalid syntax
1359 from refs/heads/branch^0
1364 test_expect_success
'N: copy to root by id and modify' '
1365 echo "hello, world" >expect.foo &&
1366 echo hello >expect.bar &&
1367 git fast-import <<-SETUP_END &&
1368 commit refs/heads/N7
1369 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1375 M 644 inline foo/bar
1381 tree=$(git rev-parse --verify N7:) &&
1382 git fast-import <<-INPUT_END &&
1383 commit refs/heads/N8
1384 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1386 copy to root by id and modify
1390 M 644 inline foo/foo
1395 git show N8:foo/foo >actual.foo &&
1396 git show N8:foo/bar >actual.bar &&
1397 test_cmp expect.foo actual.foo &&
1398 test_cmp expect.bar actual.bar
1401 test_expect_success
'N: extract subtree' '
1402 branch=$(git rev-parse --verify refs/heads/branch^{tree}) &&
1403 cat >input <<-INPUT_END &&
1404 commit refs/heads/N9
1405 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1407 extract subtree branch:newdir
1413 git fast-import <input &&
1414 git diff --exit-code branch:newdir N9
1417 test_expect_success
'N: modify subtree, extract it, and modify again' '
1418 echo hello >expect.baz &&
1419 echo hello, world >expect.qux &&
1420 git fast-import <<-SETUP_END &&
1421 commit refs/heads/N10
1422 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1428 M 644 inline foo/bar/baz
1434 tree=$(git rev-parse --verify N10:) &&
1435 git fast-import <<-INPUT_END &&
1436 commit refs/heads/N11
1437 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1439 copy to root by id and modify
1443 M 100644 inline foo/bar/qux
1448 C "bar/qux" "bar/quux"
1450 git show N11:bar/baz >actual.baz &&
1451 git show N11:bar/qux >actual.qux &&
1452 git show N11:bar/quux >actual.quux &&
1453 test_cmp expect.baz actual.baz &&
1454 test_cmp expect.qux actual.qux &&
1455 test_cmp expect.qux actual.quux'
1461 test_expect_success
'O: comments are all skipped' '
1462 cat >input <<-INPUT_END &&
1464 commit refs/heads/O1
1465 # -- ignore all of this text
1466 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1467 # $GIT_COMMITTER_NAME has inserted here for his benefit.
1469 dirty directory copy
1472 # do not forget the import blank line!
1474 # yes, we started from our usual base of branch^0.
1476 from refs/heads/branch^0
1477 # and we need to reuse file2/file5 from N3 above.
1478 M 644 inline file2/file5
1479 # otherwise the tree will be different
1484 # do not forget to copy file2 to file3
1487 # or to delete file5 from file2.
1493 git fast-import <input &&
1494 test $(git rev-parse N3) = $(git rev-parse O1)
1497 test_expect_success
'O: blank lines not necessary after data commands' '
1498 cat >input <<-INPUT_END &&
1499 commit refs/heads/O2
1500 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1502 dirty directory copy
1504 from refs/heads/branch^0
1505 M 644 inline file2/file5
1514 git fast-import <input &&
1515 test $(git rev-parse N3) = $(git rev-parse O2)
1518 test_expect_success
'O: repack before next test' '
1522 test_expect_success
'O: blank lines not necessary after other commands' '
1523 cat >input <<-INPUT_END &&
1524 commit refs/heads/O3
1525 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1529 commit refs/heads/O3
1530 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1535 commit refs/heads/O3
1537 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1542 commit refs/heads/O3
1543 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1547 reset refs/tags/O3-2nd
1549 reset refs/tags/O3-3rd
1553 cat >expect <<-INPUT_END &&
1560 git fast-import <input &&
1561 test 8 = $(find .git/objects/pack -type f | wc -l) &&
1562 test $(git rev-parse refs/tags/O3-2nd) = $(git rev-parse O3^) &&
1563 git log --reverse --pretty=oneline O3 | sed s/^.*z// >actual &&
1564 test_cmp expect actual
1567 test_expect_success
'O: progress outputs as requested by input' '
1568 cat >input <<-INPUT_END &&
1569 commit refs/heads/O4
1570 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1574 commit refs/heads/O4
1575 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1579 progress Two commits down, 2 to go!
1580 commit refs/heads/O4
1581 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1585 progress Three commits down, 1 to go!
1586 commit refs/heads/O4
1587 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1593 git fast-import <input >actual &&
1594 grep "progress " <input >expect &&
1595 test_cmp expect actual
1599 ### series P (gitlinks)
1602 test_expect_success
'P: superproject & submodule mix' '
1603 cat >input <<-INPUT_END &&
1609 reset refs/heads/sub
1610 commit refs/heads/sub
1612 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1625 commit refs/heads/subuse1
1627 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1630 from refs/heads/master
1631 M 100644 :3 .gitmodules
1640 commit refs/heads/sub
1642 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1648 commit refs/heads/subuse1
1650 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1658 git fast-import <input &&
1659 git checkout subuse1 &&
1665 git fetch --update-head-ok .. refs/heads/sub:refs/heads/master &&
1668 git submodule init &&
1669 git submodule update
1672 test_expect_success
'P: verbatim SHA gitlinks' '
1673 SUBLAST=$(git rev-parse --verify sub) &&
1674 SUBPREV=$(git rev-parse --verify sub^) &&
1676 cat >input <<-INPUT_END &&
1685 commit refs/heads/subuse2
1687 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1690 from refs/heads/master
1691 M 100644 :1 .gitmodules
1692 M 160000 $SUBPREV sub
1694 commit refs/heads/subuse2
1696 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1700 M 160000 $SUBLAST sub
1704 git branch -D sub &&
1707 git fast-import <input &&
1708 test $(git rev-parse --verify subuse2) = $(git rev-parse --verify subuse1)
1711 test_expect_success
'P: fail on inline gitlink' '
1713 cat >input <<-INPUT_END &&
1714 commit refs/heads/subuse3
1716 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1721 from refs/heads/subuse2
1729 test_must_fail git fast-import <input
1732 test_expect_success
'P: fail on blob mark in gitlink' '
1734 cat >input <<-INPUT_END &&
1741 commit refs/heads/subuse3
1743 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1748 from refs/heads/subuse2
1753 test_must_fail git fast-import <input
1757 ### series Q (notes)
1760 test_expect_success
'Q: commit notes' '
1761 note1_data="The first note for the first commit" &&
1762 note2_data="The first note for the second commit" &&
1763 note3_data="The first note for the third commit" &&
1764 note1b_data="The second note for the first commit" &&
1765 note1c_data="The third note for the first commit" &&
1766 note2b_data="The second note for the second commit" &&
1769 cat >input <<-INPUT_END &&
1776 commit refs/heads/notes-test
1778 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1789 commit refs/heads/notes-test
1791 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1798 commit refs/heads/notes-test
1800 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1827 commit refs/notes/foobar
1829 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1841 commit refs/notes/foobar
1843 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1853 commit refs/notes/foobar2
1855 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1865 commit refs/notes/foobar
1867 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1880 git fast-import <input &&
1881 git whatchanged notes-test
1884 test_expect_success
'Q: verify pack' '
1888 test_expect_success
'Q: verify first commit' '
1889 commit1=$(git rev-parse notes-test~2) &&
1890 commit2=$(git rev-parse notes-test^) &&
1891 commit3=$(git rev-parse notes-test) &&
1893 cat >expect <<-EOF &&
1894 author $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1895 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1899 git cat-file commit notes-test~2 | sed 1d >actual &&
1900 test_cmp expect actual
1903 test_expect_success
'Q: verify second commit' '
1904 cat >expect <<-EOF &&
1906 author $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1907 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1911 git cat-file commit notes-test^ | sed 1d >actual &&
1912 test_cmp expect actual
1915 test_expect_success
'Q: verify third commit' '
1916 cat >expect <<-EOF &&
1918 author $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1919 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1923 git cat-file commit notes-test | sed 1d >actual &&
1924 test_cmp expect actual
1927 test_expect_success
'Q: verify first notes commit' '
1928 cat >expect <<-EOF &&
1929 author $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1930 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1934 git cat-file commit refs/notes/foobar~2 | sed 1d >actual &&
1935 test_cmp expect actual
1938 test_expect_success
'Q: verify first notes tree' '
1939 cat >expect.unsorted <<-EOF &&
1940 100644 blob $commit1
1941 100644 blob $commit2
1942 100644 blob $commit3
1944 cat expect.unsorted | sort >expect &&
1945 git cat-file -p refs/notes/foobar~2^{tree} | sed "s/ [0-9a-f]* / /" >actual &&
1946 test_cmp expect actual
1949 test_expect_success
'Q: verify first note for first commit' '
1950 echo "$note1_data" >expect &&
1951 git cat-file blob refs/notes/foobar~2:$commit1 >actual &&
1952 test_cmp expect actual
1955 test_expect_success
'Q: verify first note for second commit' '
1956 echo "$note2_data" >expect &&
1957 git cat-file blob refs/notes/foobar~2:$commit2 >actual &&
1958 test_cmp expect actual
1961 test_expect_success
'Q: verify first note for third commit' '
1962 echo "$note3_data" >expect &&
1963 git cat-file blob refs/notes/foobar~2:$commit3 >actual &&
1964 test_cmp expect actual
1967 test_expect_success
'Q: verify second notes commit' '
1968 cat >expect <<-EOF &&
1969 parent $(git rev-parse --verify refs/notes/foobar~2)
1970 author $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1971 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1975 git cat-file commit refs/notes/foobar^ | sed 1d >actual &&
1976 test_cmp expect actual
1979 test_expect_success
'Q: verify second notes tree' '
1980 cat >expect.unsorted <<-EOF &&
1981 100644 blob $commit1
1982 100644 blob $commit2
1983 100644 blob $commit3
1985 cat expect.unsorted | sort >expect &&
1986 git cat-file -p refs/notes/foobar^^{tree} | sed "s/ [0-9a-f]* / /" >actual &&
1987 test_cmp expect actual
1990 test_expect_success
'Q: verify second note for first commit' '
1991 echo "$note1b_data" >expect &&
1992 git cat-file blob refs/notes/foobar^:$commit1 >actual &&
1993 test_cmp expect actual
1996 test_expect_success
'Q: verify first note for second commit' '
1997 echo "$note2_data" >expect &&
1998 git cat-file blob refs/notes/foobar^:$commit2 >actual &&
1999 test_cmp expect actual
2002 test_expect_success
'Q: verify first note for third commit' '
2003 echo "$note3_data" >expect &&
2004 git cat-file blob refs/notes/foobar^:$commit3 >actual &&
2005 test_cmp expect actual
2008 test_expect_success
'Q: verify third notes commit' '
2009 cat >expect <<-EOF &&
2010 author $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
2011 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
2015 git cat-file commit refs/notes/foobar2 | sed 1d >actual &&
2016 test_cmp expect actual
2019 test_expect_success
'Q: verify third notes tree' '
2020 cat >expect.unsorted <<-EOF &&
2021 100644 blob $commit1
2023 cat expect.unsorted | sort >expect &&
2024 git cat-file -p refs/notes/foobar2^{tree} | sed "s/ [0-9a-f]* / /" >actual &&
2025 test_cmp expect actual
2028 test_expect_success
'Q: verify third note for first commit' '
2029 echo "$note1c_data" >expect &&
2030 git cat-file blob refs/notes/foobar2:$commit1 >actual &&
2031 test_cmp expect actual
2034 test_expect_success
'Q: verify fourth notes commit' '
2035 cat >expect <<-EOF &&
2036 parent $(git rev-parse --verify refs/notes/foobar^)
2037 author $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
2038 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
2042 git cat-file commit refs/notes/foobar | sed 1d >actual &&
2043 test_cmp expect actual
2046 test_expect_success
'Q: verify fourth notes tree' '
2047 cat >expect.unsorted <<-EOF &&
2048 100644 blob $commit2
2050 cat expect.unsorted | sort >expect &&
2051 git cat-file -p refs/notes/foobar^{tree} | sed "s/ [0-9a-f]* / /" >actual &&
2052 test_cmp expect actual
2055 test_expect_success
'Q: verify second note for second commit' '
2056 echo "$note2b_data" >expect &&
2057 git cat-file blob refs/notes/foobar:$commit2 >actual &&
2058 test_cmp expect actual
2061 test_expect_success
'Q: deny note on empty branch' '
2062 cat >input <<-EOF &&
2065 commit refs/heads/note-Q0
2066 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
2068 Note for an empty branch.
2071 N inline refs/heads/Q0
2076 test_must_fail git fast-import <input
2079 ### series R (feature and option)
2082 test_expect_success
'R: abort on unsupported feature' '
2083 cat >input <<-EOF &&
2084 feature no-such-feature-exists
2087 test_must_fail git fast-import <input
2090 test_expect_success
'R: supported feature is accepted' '
2091 cat >input <<-EOF &&
2092 feature date-format=now
2095 git fast-import <input
2098 test_expect_success
'R: abort on receiving feature after data command' '
2099 cat >input <<-EOF &&
2103 feature date-format=now
2106 test_must_fail git fast-import <input
2109 test_expect_success
'R: only one import-marks feature allowed per stream' '
2110 cat >input <<-EOF &&
2111 feature import-marks=git.marks
2112 feature import-marks=git2.marks
2115 test_must_fail git fast-import <input
2118 test_expect_success
'R: export-marks feature results in a marks file being created' '
2119 cat >input <<-EOF &&
2120 feature export-marks=git.marks
2128 cat input | git fast-import &&
2132 test_expect_success
'R: export-marks options can be overridden by commandline options' '
2133 cat input | git fast-import --export-marks=other.marks &&
2137 test_expect_success
'R: catch typo in marks file name' '
2138 test_must_fail git fast-import --import-marks=nonexistent.marks </dev/null &&
2139 echo "feature import-marks=nonexistent.marks" |
2140 test_must_fail git fast-import
2143 test_expect_success
'R: import and output marks can be the same file' '
2145 blob=$(echo hi | git hash-object --stdin) &&
2146 cat >expect <<-EOF &&
2150 git fast-import --export-marks=io.marks <<-\EOF &&
2157 git fast-import --import-marks=io.marks --export-marks=io.marks <<-\EOF &&
2164 test_cmp expect io.marks
2167 test_expect_success
'R: --import-marks=foo --output-marks=foo to create foo fails' '
2169 test_must_fail git fast-import --import-marks=io.marks --export-marks=io.marks <<-\EOF
2178 test_expect_success
'R: --import-marks-if-exists' '
2180 blob=$(echo hi | git hash-object --stdin) &&
2181 echo ":1 $blob" >expect &&
2182 git fast-import --import-marks-if-exists=io.marks --export-marks=io.marks <<-\EOF &&
2189 test_cmp expect io.marks
2192 test_expect_success
'R: feature import-marks-if-exists' '
2196 git fast-import --export-marks=io.marks <<-\EOF &&
2197 feature import-marks-if-exists=not_io.marks
2199 test_cmp expect io.marks &&
2201 blob=$(echo hi | git hash-object --stdin) &&
2203 echo ":1 $blob" >io.marks &&
2204 echo ":1 $blob" >expect &&
2205 echo ":2 $blob" >>expect &&
2207 git fast-import --export-marks=io.marks <<-\EOF &&
2208 feature import-marks-if-exists=io.marks
2215 test_cmp expect io.marks &&
2217 echo ":3 $blob" >>expect &&
2219 git fast-import --import-marks=io.marks \
2220 --export-marks=io.marks <<-\EOF &&
2221 feature import-marks-if-exists=not_io.marks
2228 test_cmp expect io.marks &&
2232 git fast-import --import-marks-if-exists=not_io.marks \
2233 --export-marks=io.marks <<-\EOF &&
2234 feature import-marks-if-exists=io.marks
2236 test_cmp expect io.marks
2239 test_expect_success
'R: import to output marks works without any content' '
2240 cat >input <<-EOF &&
2241 feature import-marks=marks.out
2242 feature export-marks=marks.new
2245 cat input | git fast-import &&
2246 test_cmp marks.out marks.new
2249 test_expect_success
'R: import marks prefers commandline marks file over the stream' '
2250 cat >input <<-EOF &&
2251 feature import-marks=nonexistent.marks
2252 feature export-marks=marks.new
2255 cat input | git fast-import --import-marks=marks.out &&
2256 test_cmp marks.out marks.new
2260 test_expect_success
'R: multiple --import-marks= should be honoured' '
2261 cat >input <<-EOF &&
2262 feature import-marks=nonexistent.marks
2263 feature export-marks=combined.marks
2266 head -n2 marks.out > one.marks &&
2267 tail -n +3 marks.out > two.marks &&
2268 git fast-import --import-marks=one.marks --import-marks=two.marks <input &&
2269 test_cmp marks.out combined.marks
2272 test_expect_success
'R: feature relative-marks should be honoured' '
2273 cat >input <<-EOF &&
2274 feature relative-marks
2275 feature import-marks=relative.in
2276 feature export-marks=relative.out
2279 mkdir -p .git/info/fast-import/ &&
2280 cp marks.new .git/info/fast-import/relative.in &&
2281 git fast-import <input &&
2282 test_cmp marks.new .git/info/fast-import/relative.out
2285 test_expect_success
'R: feature no-relative-marks should be honoured' '
2286 cat >input <<-EOF &&
2287 feature relative-marks
2288 feature import-marks=relative.in
2289 feature no-relative-marks
2290 feature export-marks=non-relative.out
2293 git fast-import <input &&
2294 test_cmp marks.new non-relative.out
2297 test_expect_success
'R: feature ls supported' '
2302 test_expect_success
'R: feature cat-blob supported' '
2303 echo "feature cat-blob" |
2307 test_expect_success
'R: cat-blob-fd must be a nonnegative integer' '
2308 test_must_fail git fast-import --cat-blob-fd=-1 </dev/null
2311 test_expect_success
!MINGW
'R: print old blob' '
2312 blob=$(echo "yes it can" | git hash-object -w --stdin) &&
2313 cat >expect <<-EOF &&
2318 echo "cat-blob $blob" |
2319 git fast-import --cat-blob-fd=6 6>actual &&
2320 test_cmp expect actual
2323 test_expect_success
!MINGW
'R: in-stream cat-blob-fd not respected' '
2324 echo hello >greeting &&
2325 blob=$(git hash-object -w greeting) &&
2326 cat >expect <<-EOF &&
2331 git fast-import --cat-blob-fd=3 3>actual.3 >actual.1 <<-EOF &&
2334 test_cmp expect actual.3 &&
2335 test_must_be_empty actual.1 &&
2336 git fast-import 3>actual.3 >actual.1 <<-EOF &&
2337 option cat-blob-fd=3
2340 test_must_be_empty actual.3 &&
2341 test_cmp expect actual.1
2344 test_expect_success
!MINGW
'R: print mark for new blob' '
2345 echo "effluentish" | git hash-object --stdin >expect &&
2346 git fast-import --cat-blob-fd=6 6>actual <<-\EOF &&
2354 test_cmp expect actual
2357 test_expect_success
!MINGW
'R: print new blob' '
2358 blob=$(echo "yep yep yep" | git hash-object --stdin) &&
2359 cat >expect <<-EOF &&
2364 git fast-import --cat-blob-fd=6 6>actual <<-\EOF &&
2372 test_cmp expect actual
2375 test_expect_success
!MINGW
'R: print new blob by sha1' '
2376 blob=$(echo "a new blob named by sha1" | git hash-object --stdin) &&
2377 cat >expect <<-EOF &&
2379 a new blob named by sha1
2382 git fast-import --cat-blob-fd=6 6>actual <<-EOF &&
2385 a new blob named by sha1
2389 test_cmp expect actual
2392 test_expect_success
'setup: big file' '
2394 echo "the quick brown fox jumps over the lazy dog" >big &&
2397 cat big big big big >bigger &&
2398 cat bigger bigger bigger bigger >big ||
2404 test_expect_success
'R: print two blobs to stdout' '
2405 blob1=$(git hash-object big) &&
2406 blob1_len=$(wc -c <big) &&
2407 blob2=$(echo hello | git hash-object --stdin) &&
2409 echo ${blob1} blob $blob1_len &&
2419 cat <<-\END_PART1 &&
2436 git fast-import >actual &&
2437 test_cmp expect actual
2440 test_expect_success PIPE
'R: copy using cat-file' '
2441 expect_id=$(git hash-object big) &&
2442 expect_len=$(wc -c <big) &&
2443 echo $expect_id blob $expect_len >expect.response &&
2446 cat >frontend <<-\FRONTEND_END &&
2452 export GIT_COMMITTER_NAME GIT_COMMITTER_EMAIL GIT_COMMITTER_DATE &&
2465 read blob_id type size <&3 &&
2466 echo "$blob_id $type $size" >response &&
2467 test_copy_bytes $size >blob <&3 &&
2471 commit refs/heads/copied
2472 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
2474 copy big file as file3
2482 git fast-import --cat-blob-fd=3 3>blobs &&
2483 git show copied:file3 >actual &&
2484 test_cmp expect.response response &&
2488 test_expect_success PIPE
'R: print blob mid-commit' '
2490 echo "A blob from _before_ the commit." >expect &&
2499 A blob from _before_ the commit.
2501 commit refs/heads/temporary
2502 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
2509 read blob_id type size <&3 &&
2510 test_copy_bytes $size >actual <&3 &&
2515 git fast-import --cat-blob-fd=3 3>blobs &&
2516 test_cmp expect actual
2519 test_expect_success PIPE
'R: print staged blob within commit' '
2521 echo "A blob from _within_ the commit." >expect &&
2527 commit refs/heads/within
2528 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
2534 A blob from _within_ the commit.
2539 echo "A blob from _within_ the commit." |
2540 git hash-object --stdin
2542 echo "cat-blob $to_get" &&
2544 read blob_id type size <&3 &&
2545 test_copy_bytes $size >actual <&3 &&
2550 git fast-import --cat-blob-fd=3 3>blobs &&
2551 test_cmp expect actual
2554 test_expect_success
'R: quiet option results in no stats being output' '
2555 cat >input <<-EOF &&
2563 cat input | git fast-import 2> output &&
2564 test_must_be_empty output
2567 test_expect_success
'R: feature done means terminating "done" is mandatory' '
2568 echo feature done | test_must_fail git fast-import &&
2569 test_must_fail git fast-import --done </dev/null
2572 test_expect_success
'R: terminating "done" with trailing gibberish is ok' '
2573 git fast-import <<-\EOF &&
2578 git fast-import <<-\EOF
2580 more trailing gibberish
2584 test_expect_success
'R: terminating "done" within commit' '
2585 cat >expect <<-\EOF &&
2587 :000000 100644 OBJID OBJID A hello.c
2588 :000000 100644 OBJID OBJID A hello2.c
2590 git fast-import <<-EOF &&
2591 commit refs/heads/done-ends
2592 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
2594 Commit terminated by "done" command
2596 M 100644 inline hello.c
2603 git rev-list done-ends |
2604 git diff-tree -r --stdin --root --always |
2605 sed -e "s/$_x40/OBJID/g" >actual &&
2606 test_cmp expect actual
2609 test_expect_success
'R: die on unknown option' '
2610 cat >input <<-EOF &&
2611 option git non-existing-option
2614 test_must_fail git fast-import <input
2617 test_expect_success
'R: unknown commandline options are rejected' '\
2618 test_must_fail git fast-import --non-existing-option < /dev/null
2621 test_expect_success
'R: die on invalid option argument' '
2622 echo "option git active-branches=-5" |
2623 test_must_fail git fast-import &&
2624 echo "option git depth=" |
2625 test_must_fail git fast-import &&
2626 test_must_fail git fast-import --depth="5 elephants" </dev/null
2629 test_expect_success
'R: ignore non-git options' '
2630 cat >input <<-EOF &&
2631 option non-existing-vcs non-existing-option
2634 git fast-import <input
2637 test_expect_success
'R: corrupt lines do not mess marks file' '
2639 blob=$(echo hi | git hash-object --stdin) &&
2640 cat >expect <<-EOF &&
2641 :3 0000000000000000000000000000000000000000
2645 cp expect io.marks &&
2646 test_must_fail git fast-import --import-marks=io.marks --export-marks=io.marks <<-\EOF &&
2649 test_cmp expect io.marks
2653 ## R: very large blobs
2655 test_expect_success
'R: blob bigger than threshold' '
2656 blobsize=$((2*1024*1024 + 53)) &&
2657 test-genrandom bar $blobsize >expect &&
2658 cat >input <<-INPUT_END &&
2659 commit refs/heads/big-file
2660 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
2668 cat expect >>input &&
2669 cat >>input <<-INPUT_END &&
2673 cat expect >>input &&
2676 test_create_repo R &&
2677 git --git-dir=R/.git config fastimport.unpackLimit 0 &&
2678 git --git-dir=R/.git fast-import --big-file-threshold=1 <input
2681 test_expect_success
'R: verify created pack' '
2684 verify_packs -v > ../verify
2688 test_expect_success
'R: verify written objects' '
2689 git --git-dir=R/.git cat-file blob big-file:big1 >actual &&
2690 test_cmp_bin expect actual &&
2691 a=$(git --git-dir=R/.git rev-parse big-file:big1) &&
2692 b=$(git --git-dir=R/.git rev-parse big-file:big2) &&
2696 test_expect_success
'R: blob appears only once' '
2697 n=$(grep $a verify | wc -l) &&
2705 # Make sure missing spaces and EOLs after mark references
2714 # commit marks: 301, 302, 303, 304
2715 # blob marks: 403, 404, resp.
2718 # The error message when a space is missing not at the
2719 # end of the line is:
2721 # Missing space after ..
2723 # or when extra characters come after the mark at the end
2728 # or when the dataref is neither "inline " or a known SHA1,
2730 # Invalid dataref ..
2732 test_expect_success
'S: initialize for S tests' '
2735 cat >input <<-INPUT_END &&
2738 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
2742 M 100644 inline hello.c
2749 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
2754 M 100644 inline hello.c
2772 git fast-import --export-marks=marks <input
2776 # filemodify, three datarefs
2778 test_expect_success
'S: filemodify with garbage after mark must fail' '
2779 test_must_fail git fast-import --import-marks=marks <<-EOF 2>err &&
2781 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
2785 M 100644 :403x hello.c
2788 test_i18ngrep "space after mark" err
2791 # inline is misspelled; fast-import thinks it is some unknown dataref
2792 test_expect_success
'S: filemodify with garbage after inline must fail' '
2793 test_must_fail git fast-import --import-marks=marks <<-EOF 2>err &&
2795 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
2799 M 100644 inlineX hello.c
2805 test_i18ngrep "nvalid dataref" err
2808 test_expect_success
'S: filemodify with garbage after sha1 must fail' '
2809 sha1=$(grep :403 marks | cut -d\ -f2) &&
2810 test_must_fail git fast-import --import-marks=marks <<-EOF 2>err &&
2812 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
2816 M 100644 ${sha1}x hello.c
2819 test_i18ngrep "space after SHA1" err
2823 # notemodify, three ways to say dataref
2825 test_expect_success
'S: notemodify with garabge after mark dataref must fail' '
2826 test_must_fail git fast-import --import-marks=marks <<-EOF 2>err &&
2828 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
2830 commit S note dataref markref
2835 test_i18ngrep "space after mark" err
2838 test_expect_success
'S: notemodify with garbage after inline dataref must fail' '
2839 test_must_fail git fast-import --import-marks=marks <<-EOF 2>err &&
2841 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
2843 commit S note dataref inline
2851 test_i18ngrep "nvalid dataref" err
2854 test_expect_success
'S: notemodify with garbage after sha1 dataref must fail' '
2855 sha1=$(grep :202 marks | cut -d\ -f2) &&
2856 test_must_fail git fast-import --import-marks=marks <<-EOF 2>err &&
2858 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
2860 commit S note dataref sha1
2865 test_i18ngrep "space after SHA1" err
2869 # notemodify, mark in commit-ish
2871 test_expect_success
'S: notemodify with garbage after mark commit-ish must fail' '
2872 test_must_fail git fast-import --import-marks=marks <<-EOF 2>err &&
2873 commit refs/heads/Snotes
2874 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
2876 commit S note commit-ish
2881 test_i18ngrep "after mark" err
2887 test_expect_success
'S: from with garbage after mark must fail' '
2889 git fast-import --import-marks=marks --export-marks=marks <<-EOF 2>err &&
2890 commit refs/heads/S2
2892 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
2897 M 100644 :403 hello.c
2901 # go create the commit, need it for merge test
2902 git fast-import --import-marks=marks --export-marks=marks <<-EOF &&
2903 commit refs/heads/S2
2905 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
2910 M 100644 :403 hello.c
2913 # now evaluate the error
2915 test_i18ngrep "after mark" err
2922 test_expect_success
'S: merge with garbage after mark must fail' '
2923 test_must_fail git fast-import --import-marks=marks <<-EOF 2>err &&
2926 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
2932 M 100644 :403 hello.c
2935 test_i18ngrep "after mark" err
2941 test_expect_success
'S: tag with garbage after mark must fail' '
2942 test_must_fail git fast-import --import-marks=marks <<-EOF 2>err &&
2945 tagger $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
2951 test_i18ngrep "after mark" err
2957 test_expect_success
'S: cat-blob with garbage after mark must fail' '
2958 test_must_fail git fast-import --import-marks=marks <<-EOF 2>err &&
2962 test_i18ngrep "after mark" err
2968 test_expect_success
'S: ls with garbage after mark must fail' '
2969 test_must_fail git fast-import --import-marks=marks <<-EOF 2>err &&
2973 test_i18ngrep "space after mark" err
2976 test_expect_success
'S: ls with garbage after sha1 must fail' '
2977 sha1=$(grep :302 marks | cut -d\ -f2) &&
2978 test_must_fail git fast-import --import-marks=marks <<-EOF 2>err &&
2982 test_i18ngrep "space after tree-ish" err
2988 # Setup is carried over from series S.
2990 test_expect_success
'T: ls root tree' '
2991 sed -e "s/Z\$//" >expect <<-EOF &&
2992 040000 tree $(git rev-parse S^{tree}) Z
2994 sha1=$(git rev-parse --verify S) &&
2995 git fast-import --import-marks=marks <<-EOF >actual &&
2998 test_cmp expect actual
3001 test_expect_success
'T: delete branch' '
3002 git branch to-delete &&
3003 git fast-import <<-EOF &&
3004 reset refs/heads/to-delete
3005 from 0000000000000000000000000000000000000000
3007 test_must_fail git rev-parse --verify refs/heads/to-delete
3010 test_expect_success
'T: empty reset doesnt delete branch' '
3011 git branch not-to-delete &&
3012 git fast-import <<-EOF &&
3013 reset refs/heads/not-to-delete
3016 git rev-parse --verify refs/heads/not-to-delete
3020 ### series U (filedelete)
3023 test_expect_success
'U: initialize for U tests' '
3024 cat >input <<-INPUT_END &&
3026 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
3030 M 100644 inline hello.c
3034 M 100644 inline good/night.txt
3038 M 100644 inline good/bye.txt
3045 git fast-import <input
3048 test_expect_success
'U: filedelete file succeeds' '
3049 cat >input <<-INPUT_END &&
3051 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
3053 delete good/night.txt
3060 git fast-import <input
3063 test_expect_success
'U: validate file delete result' '
3064 cat >expect <<-EOF &&
3065 :100644 000000 2907ebb4bf85d91bf0716bb3bd8a68ef48d6da76 0000000000000000000000000000000000000000 D good/night.txt
3068 git diff-tree -M -r U^1 U >actual &&
3070 compare_diff_raw expect actual
3073 test_expect_success
'U: filedelete directory succeeds' '
3074 cat >input <<-INPUT_END &&
3076 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
3085 git fast-import <input
3088 test_expect_success
'U: validate directory delete result' '
3089 cat >expect <<-EOF &&
3090 :100644 000000 69cb75792f55123d8389c156b0b41c2ff00ed507 0000000000000000000000000000000000000000 D good/bye.txt
3093 git diff-tree -M -r U^1 U >actual &&
3095 compare_diff_raw expect actual
3098 test_expect_success
'U: filedelete root succeeds' '
3099 cat >input <<-INPUT_END &&
3101 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
3110 git fast-import <input
3113 test_expect_success
'U: validate root delete result' '
3114 cat >expect <<-EOF &&
3115 :100644 000000 c18147dc648481eeb65dc5e66628429a64843327 0000000000000000000000000000000000000000 D hello.c
3118 git diff-tree -M -r U^1 U >actual &&
3120 compare_diff_raw expect actual