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
10 # Print $1 bytes from stdin to stdout.
12 # This could be written as "head -c $1", but IRIX "head" does not
13 # support the -c option.
19 my $nread = sysread(STDIN, $s, $len);
20 die "cannot read: $!" unless defined($nread);
37 file5_data
='an inline file.
38 we should see it later.'
45 test_expect_success
'setup: have pipes?' '
59 test_expect_success
'empty stream succeeds' '
60 git fast-import </dev/null
63 cat >input
<<INPUT_END
80 commit refs/heads/master
82 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
94 An annotated tag without a tagger
100 An annotated tag that annotates a blob.
104 test_expect_success \
105 'A: create pack from stdin' \
106 'git fast-import --export-marks=marks.out <input &&
107 git whatchanged master'
108 test_expect_success \
110 'for p in .git/objects/pack/*.pack;do git verify-pack $p||exit;done'
113 author $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
114 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
118 test_expect_success \
120 'git cat-file commit master | sed 1d >actual &&
121 test_cmp expect actual'
128 test_expect_success \
130 'git cat-file -p master^{tree} | sed "s/ [0-9a-f]* / /" >actual &&
131 test_cmp expect actual'
133 echo "$file2_data" >expect
134 test_expect_success \
136 'git cat-file blob master:file2 >actual && test_cmp expect actual'
138 echo "$file3_data" >expect
139 test_expect_success \
141 'git cat-file blob master:file3 >actual && test_cmp expect actual'
143 printf "$file4_data" >expect
144 test_expect_success \
146 'git cat-file blob master:file4 >actual && test_cmp expect actual'
149 object $(git rev-parse refs/heads/master)
153 An annotated tag without a tagger
155 test_expect_success
'A: verify tag/series-A' '
156 git cat-file tag tags/series-A >actual &&
157 test_cmp expect actual
161 object $(git rev-parse refs/heads/master:file3)
165 An annotated tag that annotates a blob.
167 test_expect_success
'A: verify tag/series-A-blob' '
168 git cat-file tag tags/series-A-blob >actual &&
169 test_cmp expect actual
173 :2 `git rev-parse --verify master:file2`
174 :3 `git rev-parse --verify master:file3`
175 :4 `git rev-parse --verify master:file4`
176 :5 `git rev-parse --verify master^0`
178 test_expect_success \
179 'A: verify marks output' \
180 'test_cmp expect marks.out'
182 test_expect_success \
183 'A: verify marks import' \
185 --import-marks=marks.out \
186 --export-marks=marks.new \
188 test_cmp expect marks.new'
191 new_blob
=$
(echo testing | git hash-object
--stdin)
192 cat >input
<<INPUT_END
194 from $(git rev-parse refs/heads/master:file3)
205 commit refs/heads/new_blob
209 #pretend we got sha1 from fast-import
220 object $(git rev-parse refs/heads/master:file3)
232 test_expect_success \
233 'A: tag blob by sha1' \
234 'git fast-import <input &&
235 git cat-file tag tags/series-A-blob-2 >actual &&
236 git cat-file tag tags/series-A-blob-3 >>actual &&
237 test_cmp expect actual'
240 cat >input
<<INPUT_END
241 commit refs/heads/verify--import-marks
242 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
248 M 755 :2 copy-of-file2
251 test_expect_success \
252 'A: verify marks import does not crash' \
253 'git fast-import --import-marks=marks.out <input &&
254 git whatchanged verify--import-marks'
255 test_expect_success \
257 'for p in .git/objects/pack/*.pack;do git verify-pack $p||exit;done'
259 :000000 100755 0000000000000000000000000000000000000000 7123f7f44e39be127c5eb701e5968176ee9d78b1 A copy-of-file2
261 git diff-tree
-M -r master verify--import-marks
>actual
262 test_expect_success \
264 'compare_diff_raw expect actual &&
265 test `git rev-parse --verify master:file2` \
266 = `git rev-parse --verify verify--import-marks:copy-of-file2`'
269 mt
=$
(git hash-object
--stdin < /dev
/null
)
274 cat >input.commit
<<EOF
275 commit refs/heads/verify--dump-marks
276 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
278 test the sparse array dumping routines with exponentially growing marks
286 while test "$i" -lt 27; do
287 cat >>input.blob
<<EOF
298 echo "M 100644 :$l l$i" >>input.commit
299 echo "M 100644 :$m m$i" >>input.commit
300 echo "M 100644 :$n n$i" >>input.commit
302 echo ":$l $mt" >>marks.exp
303 echo ":$m $mt" >>marks.exp
304 echo ":$n $mt" >>marks.exp
306 printf "100644 blob $mt\tl$i\n" >>tree.exp
307 printf "100644 blob $mt\tm$i\n" >>tree.exp
308 printf "100644 blob $mt\tn$i\n" >>tree.exp
317 sort tree.exp
> tree.exp_s
319 test_expect_success
'A: export marks with large values' '
320 cat input.blob input.commit | git fast-import --export-marks=marks.large &&
321 git ls-tree refs/heads/verify--dump-marks >tree.out &&
322 test_cmp tree.exp_s tree.out &&
323 test_cmp marks.exp marks.large'
330 cat >input
<<INPUT_END
331 commit refs/heads/branch
333 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
338 from refs/heads/master
339 M 755 0000000000000000000000000000000000000001 zero1
342 test_expect_success
'B: fail on invalid blob sha1' '
343 test_must_fail git fast-import <input
345 rm -f .git
/objects
/pack_
* .git
/objects
/index_
*
347 cat >input
<<INPUT_END
348 commit .badbranchname
349 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
354 from refs/heads/master
357 test_expect_success
'B: fail on invalid branch name ".badbranchname"' '
358 test_must_fail git fast-import <input
360 rm -f .git
/objects
/pack_
* .git
/objects
/index_
*
362 cat >input
<<INPUT_END
363 commit bad[branch]name
364 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
369 from refs/heads/master
372 test_expect_success
'B: fail on invalid branch name "bad[branch]name"' '
373 test_must_fail git fast-import <input
375 rm -f .git
/objects
/pack_
* .git
/objects
/index_
*
377 cat >input
<<INPUT_END
379 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
384 from refs/heads/master
387 test_expect_success \
388 'B: accept branch name "TEMP_TAG"' \
389 'git fast-import <input &&
390 test -f .git/TEMP_TAG &&
391 test `git rev-parse master` = `git rev-parse TEMP_TAG^`'
394 git gc
2>/dev
/null
>/dev
/null
395 git prune
2>/dev
/null
>/dev
/null
397 cat >input
<<INPUT_END
398 commit refs/heads/empty-committer-1
399 committer <> $GIT_COMMITTER_DATE
404 test_expect_success
'B: accept empty committer' '
405 git fast-import <input &&
410 git update-ref
-d refs
/heads
/empty-committer-1 || true
412 git gc
2>/dev
/null
>/dev
/null
413 git prune
2>/dev
/null
>/dev
/null
415 cat >input
<<INPUT_END
416 commit refs/heads/empty-committer-2
417 committer <a@b.com> $GIT_COMMITTER_DATE
422 test_expect_success
'B: accept and fixup committer with no name' '
423 git fast-import <input &&
428 git update-ref
-d refs
/heads
/empty-committer-2 || true
430 git gc
2>/dev
/null
>/dev
/null
431 git prune
2>/dev
/null
>/dev
/null
433 cat >input
<<INPUT_END
434 commit refs/heads/invalid-committer
435 committer Name email> $GIT_COMMITTER_DATE
440 test_expect_success
'B: fail on invalid committer (1)' '
441 test_must_fail git fast-import <input
443 git update-ref
-d refs
/heads
/invalid-committer || true
445 cat >input
<<INPUT_END
446 commit refs/heads/invalid-committer
447 committer Name <e<mail> $GIT_COMMITTER_DATE
452 test_expect_success
'B: fail on invalid committer (2)' '
453 test_must_fail git fast-import <input
455 git update-ref
-d refs
/heads
/invalid-committer || true
457 cat >input
<<INPUT_END
458 commit refs/heads/invalid-committer
459 committer Name <email>> $GIT_COMMITTER_DATE
464 test_expect_success
'B: fail on invalid committer (3)' '
465 test_must_fail git fast-import <input
467 git update-ref
-d refs
/heads
/invalid-committer || true
469 cat >input
<<INPUT_END
470 commit refs/heads/invalid-committer
471 committer Name <email $GIT_COMMITTER_DATE
476 test_expect_success
'B: fail on invalid committer (4)' '
477 test_must_fail git fast-import <input
479 git update-ref
-d refs
/heads
/invalid-committer || true
481 cat >input
<<INPUT_END
482 commit refs/heads/invalid-committer
483 committer Name<email> $GIT_COMMITTER_DATE
488 test_expect_success
'B: fail on invalid committer (5)' '
489 test_must_fail git fast-import <input
491 git update-ref
-d refs
/heads
/invalid-committer || true
497 newf
=`echo hi newf | git hash-object -w --stdin`
498 oldf
=`git rev-parse --verify master:file2`
500 cat >input
<<INPUT_END
501 commit refs/heads/branch
502 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
507 from refs/heads/master
508 M 644 $oldf file2/oldf
509 M 755 $newf file2/newf
513 test_expect_success \
514 'C: incremental import create pack from stdin' \
515 'git fast-import <input &&
516 git whatchanged branch'
517 test_expect_success \
519 'for p in .git/objects/pack/*.pack;do git verify-pack $p||exit;done'
520 test_expect_success \
521 'C: validate reuse existing blob' \
522 'test $newf = `git rev-parse --verify branch:file2/newf` &&
523 test $oldf = `git rev-parse --verify branch:file2/oldf`'
526 parent `git rev-parse --verify master^0`
527 author $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
528 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
532 test_expect_success \
534 'git cat-file commit branch | sed 1d >actual &&
535 test_cmp expect actual'
538 :000000 100755 0000000000000000000000000000000000000000 f1fb5da718392694d0076d677d6d0e364c79b0bc A file2/newf
539 :100644 100644 7123f7f44e39be127c5eb701e5968176ee9d78b1 7123f7f44e39be127c5eb701e5968176ee9d78b1 R100 file2 file2/oldf
540 :100644 000000 0d92e9f3374ae2947c23aa477cbc68ce598135f1 0000000000000000000000000000000000000000 D file3
542 git diff-tree
-M -r master branch
>actual
543 test_expect_success \
544 'C: validate rename result' \
545 'compare_diff_raw expect actual'
552 cat >input
<<INPUT_END
553 commit refs/heads/branch
554 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
559 from refs/heads/branch^0
560 M 644 inline newdir/interesting
565 M 755 inline newdir/exec.sh
571 test_expect_success \
572 'D: inline data in commit' \
573 'git fast-import <input &&
574 git whatchanged branch'
575 test_expect_success \
577 'for p in .git/objects/pack/*.pack;do git verify-pack $p||exit;done'
580 :000000 100755 0000000000000000000000000000000000000000 35a59026a33beac1569b1c7f66f3090ce9c09afc A newdir/exec.sh
581 :000000 100644 0000000000000000000000000000000000000000 046d0371e9220107917db0d0e030628de8a1de9b A newdir/interesting
583 git diff-tree
-M -r branch^ branch
>actual
584 test_expect_success \
585 'D: validate new files added' \
586 'compare_diff_raw expect actual'
588 echo "$file5_data" >expect
589 test_expect_success \
591 'git cat-file blob branch:newdir/interesting >actual &&
592 test_cmp expect actual'
594 echo "$file6_data" >expect
595 test_expect_success \
597 'git cat-file blob branch:newdir/exec.sh >actual &&
598 test_cmp expect actual'
604 cat >input
<<INPUT_END
605 commit refs/heads/branch
606 author $GIT_AUTHOR_NAME <$GIT_AUTHOR_EMAIL> Tue Feb 6 11:22:18 2007 -0500
607 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> Tue Feb 6 12:35:02 2007 -0500
612 from refs/heads/branch^0
615 test_expect_success
'E: rfc2822 date, --date-format=raw' '
616 test_must_fail git fast-import --date-format=raw <input
618 test_expect_success \
619 'E: rfc2822 date, --date-format=rfc2822' \
620 'git fast-import --date-format=rfc2822 <input'
621 test_expect_success \
623 'for p in .git/objects/pack/*.pack;do git verify-pack $p||exit;done'
626 author $GIT_AUTHOR_NAME <$GIT_AUTHOR_EMAIL> 1170778938 -0500
627 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1170783302 -0500
631 test_expect_success \
633 'git cat-file commit branch | sed 1,2d >actual &&
634 test_cmp expect actual'
640 old_branch
=`git rev-parse --verify branch^0`
642 cat >input
<<INPUT_END
643 commit refs/heads/branch
644 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
646 losing things already?
649 from refs/heads/branch~1
651 reset refs/heads/other
652 from refs/heads/branch
655 test_expect_success \
656 'F: non-fast-forward update skips' \
657 'if git fast-import <input
659 echo BAD gfi did not fail
662 if test $old_branch = `git rev-parse --verify branch^0`
664 : branch unaffected and failure returned
667 echo BAD gfi changed branch $old_branch
672 test_expect_success \
674 'for p in .git/objects/pack/*.pack;do git verify-pack $p||exit;done'
677 tree `git rev-parse branch~1^{tree}`
678 parent `git rev-parse branch~1`
679 author $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
680 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
682 losing things already?
684 test_expect_success \
685 'F: verify other commit' \
686 'git cat-file commit other >actual &&
687 test_cmp expect actual'
693 old_branch
=`git rev-parse --verify branch^0`
695 cat >input
<<INPUT_END
696 commit refs/heads/branch
697 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
699 losing things already?
702 from refs/heads/branch~1
705 test_expect_success \
706 'G: non-fast-forward update forced' \
707 'git fast-import --force <input'
708 test_expect_success \
710 'for p in .git/objects/pack/*.pack;do git verify-pack $p||exit;done'
711 test_expect_success \
712 'G: branch changed, but logged' \
713 'test $old_branch != `git rev-parse --verify branch^0` &&
714 test $old_branch = `git rev-parse --verify branch@{1}`'
721 cat >input
<<INPUT_END
723 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
728 from refs/heads/branch^0
729 M 644 inline i-will-die
731 this file will never exist.
735 M 644 inline h/e/l/lo
741 test_expect_success \
742 'H: deletall, add 1' \
743 'git fast-import <input &&
745 test_expect_success \
747 'for p in .git/objects/pack/*.pack;do git verify-pack $p||exit;done'
750 :100755 000000 f1fb5da718392694d0076d677d6d0e364c79b0bc 0000000000000000000000000000000000000000 D file2/newf
751 :100644 000000 7123f7f44e39be127c5eb701e5968176ee9d78b1 0000000000000000000000000000000000000000 D file2/oldf
752 :100755 000000 85df50785d62d3b05ab03d9cbf7e4a0b49449730 0000000000000000000000000000000000000000 D file4
753 :100644 100644 fcf778cda181eaa1cbc9e9ce3a2e15ee9f9fe791 fcf778cda181eaa1cbc9e9ce3a2e15ee9f9fe791 R100 newdir/interesting h/e/l/lo
754 :100755 000000 e74b7d465e52746be2b4bae983670711e6e66657 0000000000000000000000000000000000000000 D newdir/exec.sh
756 git diff-tree
-M -r H^ H
>actual
757 test_expect_success \
758 'H: validate old files removed, new files added' \
759 'compare_diff_raw expect actual'
761 echo "$file5_data" >expect
762 test_expect_success \
764 'git cat-file blob H:h/e/l/lo >actual &&
765 test_cmp expect actual'
771 cat >input
<<INPUT_END
772 commit refs/heads/export-boundary
773 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
775 we have a border. its only 40 characters wide.
778 from refs/heads/branch
781 test_expect_success \
782 'I: export-pack-edges' \
783 'git fast-import --export-pack-edges=edges.list <input'
786 .git/objects/pack/pack-.pack: `git rev-parse --verify export-boundary`
788 test_expect_success \
789 'I: verify edge list' \
790 'sed -e s/pack-.*pack/pack-.pack/ edges.list >actual &&
791 test_cmp expect actual'
797 cat >input
<<INPUT_END
799 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
804 from refs/heads/branch
809 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
815 test_expect_success \
816 'J: reset existing branch creates empty commit' \
817 'git fast-import <input'
818 test_expect_success \
819 'J: branch has 1 commit, empty tree' \
820 'test 1 = `git rev-list J | wc -l` &&
821 test 0 = `git ls-tree J | wc -l`'
827 cat >input
<<INPUT_END
829 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
834 from refs/heads/branch
837 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
842 from refs/heads/branch^1
845 test_expect_success \
846 'K: reinit branch with from' \
847 'git fast-import <input'
848 test_expect_success \
849 'K: verify K^1 = branch^1' \
850 'test `git rev-parse --verify branch^1` \
851 = `git rev-parse --verify K^1`'
857 cat >input
<<INPUT_END
871 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
881 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
891 cat >expect
<<EXPECT_END
892 :100644 100644 4268632... 55d3a52... M b.
893 :040000 040000 0ae5cac... 443c768... M b
894 :100644 100644 4268632... 55d3a52... M ba
897 test_expect_success \
898 'L: verify internal tree sorting' \
899 'git fast-import <input &&
900 git diff-tree --abbrev --raw L^ L >output &&
901 test_cmp expect output'
903 cat >input
<<INPUT_END
911 committer C O Mitter <committer@example.com> 1112912473 -0700
920 committer C O Mitter <committer@example.com> 1112912473 -0700
934 test_expect_success \
935 'L: nested tree copy does not corrupt deltas' \
936 'git fast-import <input &&
937 git ls-tree L2 g/b/ >tmp &&
938 cat tmp | cut -f 2 >actual &&
939 test_cmp expect actual &&
940 git fsck `git rev-parse L2`'
942 git update-ref
-d refs
/heads
/L2
949 cat >input
<<INPUT_END
951 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
956 from refs/heads/branch^0
957 R file2/newf file2/n.e.w.f
962 :100755 100755 f1fb5da718392694d0076d677d6d0e364c79b0bc f1fb5da718392694d0076d677d6d0e364c79b0bc R100 file2/newf file2/n.e.w.f
964 test_expect_success \
965 'M: rename file in same subdirectory' \
966 'git fast-import <input &&
967 git diff-tree -M -r M1^ M1 >actual &&
968 compare_diff_raw expect actual'
970 cat >input
<<INPUT_END
972 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
977 from refs/heads/branch^0
978 R file2/newf i/am/new/to/you
983 :100755 100755 f1fb5da718392694d0076d677d6d0e364c79b0bc f1fb5da718392694d0076d677d6d0e364c79b0bc R100 file2/newf i/am/new/to/you
985 test_expect_success \
986 'M: rename file to new subdirectory' \
987 'git fast-import <input &&
988 git diff-tree -M -r M2^ M2 >actual &&
989 compare_diff_raw expect actual'
991 cat >input
<<INPUT_END
993 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1004 :100755 100755 f1fb5da718392694d0076d677d6d0e364c79b0bc f1fb5da718392694d0076d677d6d0e364c79b0bc R100 i/am/new/to/you other/sub/am/new/to/you
1006 test_expect_success \
1007 'M: rename subdirectory to new subdirectory' \
1008 'git fast-import <input &&
1009 git diff-tree -M -r M3^ M3 >actual &&
1010 compare_diff_raw expect actual'
1017 cat >input
<<INPUT_END
1018 commit refs/heads/N1
1019 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1024 from refs/heads/branch^0
1025 C file2/newf file2/n.e.w.f
1030 :100755 100755 f1fb5da718392694d0076d677d6d0e364c79b0bc f1fb5da718392694d0076d677d6d0e364c79b0bc C100 file2/newf file2/n.e.w.f
1032 test_expect_success \
1033 'N: copy file in same subdirectory' \
1034 'git fast-import <input &&
1035 git diff-tree -C --find-copies-harder -r N1^ N1 >actual &&
1036 compare_diff_raw expect actual'
1038 cat >input
<<INPUT_END
1039 commit refs/heads/N2
1040 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1042 clean directory copy
1045 from refs/heads/branch^0
1048 commit refs/heads/N2
1049 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1051 modify directory copy
1054 M 644 inline file3/file5
1062 :100644 100644 fcf778cda181eaa1cbc9e9ce3a2e15ee9f9fe791 fcf778cda181eaa1cbc9e9ce3a2e15ee9f9fe791 C100 newdir/interesting file3/file5
1063 :100755 100755 f1fb5da718392694d0076d677d6d0e364c79b0bc f1fb5da718392694d0076d677d6d0e364c79b0bc C100 file2/newf file3/newf
1064 :100644 100644 7123f7f44e39be127c5eb701e5968176ee9d78b1 7123f7f44e39be127c5eb701e5968176ee9d78b1 C100 file2/oldf file3/oldf
1066 test_expect_success \
1067 'N: copy then modify subdirectory' \
1068 'git fast-import <input &&
1069 git diff-tree -C --find-copies-harder -r N2^^ N2 >actual &&
1070 compare_diff_raw expect actual'
1072 cat >input
<<INPUT_END
1073 commit refs/heads/N3
1074 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1076 dirty directory copy
1079 from refs/heads/branch^0
1080 M 644 inline file2/file5
1090 test_expect_success \
1091 'N: copy dirty subdirectory' \
1092 'git fast-import <input &&
1093 test `git rev-parse N2^{tree}` = `git rev-parse N3^{tree}`'
1095 test_expect_success \
1096 'N: copy directory by id' \
1097 'cat >expect <<-\EOF &&
1098 :100755 100755 f1fb5da718392694d0076d677d6d0e364c79b0bc f1fb5da718392694d0076d677d6d0e364c79b0bc C100 file2/newf file3/newf
1099 :100644 100644 7123f7f44e39be127c5eb701e5968176ee9d78b1 7123f7f44e39be127c5eb701e5968176ee9d78b1 C100 file2/oldf file3/oldf
1101 subdir=$(git rev-parse refs/heads/branch^0:file2) &&
1102 cat >input <<-INPUT_END &&
1103 commit refs/heads/N4
1104 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1109 from refs/heads/branch^0
1110 M 040000 $subdir file3
1112 git fast-import <input &&
1113 git diff-tree -C --find-copies-harder -r N4^ N4 >actual &&
1114 compare_diff_raw expect actual'
1116 test_expect_success PIPE
'N: read and copy directory' '
1118 :100755 100755 f1fb5da718392694d0076d677d6d0e364c79b0bc f1fb5da718392694d0076d677d6d0e364c79b0bc C100 file2/newf file3/newf
1119 :100644 100644 7123f7f44e39be127c5eb701e5968176ee9d78b1 7123f7f44e39be127c5eb701e5968176ee9d78b1 C100 file2/oldf file3/oldf
1121 git update-ref -d refs/heads/N4 &&
1127 commit refs/heads/N4
1128 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1130 copy by tree hash, part 2
1133 from refs/heads/branch^0
1136 read mode type tree filename &&
1137 echo "M 040000 $tree file3"
1139 git fast-import --cat-blob-fd=3 3>backflow &&
1140 git diff-tree -C --find-copies-harder -r N4^ N4 >actual &&
1141 compare_diff_raw expect actual
1144 test_expect_success PIPE
'N: empty directory reads as missing' '
1145 cat <<-\EOF >expect &&
1147 :000000 100644 OBJNAME OBJNAME A unrelated
1149 echo "missing src" >expect.response &&
1150 git update-ref -d refs/heads/read-empty &&
1156 commit refs/heads/read-empty
1157 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1159 read "empty" (missing) directory
1162 M 100644 inline src/greeting
1166 C src/greeting dst1/non-greeting
1167 C src/greeting unrelated
1168 # leave behind "empty" src directory
1173 printf "%s\n" "$line" >response &&
1179 git fast-import --cat-blob-fd=3 3>backflow &&
1180 test_cmp expect.response response &&
1181 git rev-list read-empty |
1182 git diff-tree -r --root --stdin |
1183 sed "s/$_x40/OBJNAME/g" >actual &&
1184 test_cmp expect actual
1187 test_expect_success \
1188 'N: copy root directory by tree hash' \
1189 'cat >expect <<-\EOF &&
1190 :100755 000000 f1fb5da718392694d0076d677d6d0e364c79b0bc 0000000000000000000000000000000000000000 D file3/newf
1191 :100644 000000 7123f7f44e39be127c5eb701e5968176ee9d78b1 0000000000000000000000000000000000000000 D file3/oldf
1193 root=$(git rev-parse refs/heads/branch^0^{tree}) &&
1194 cat >input <<-INPUT_END &&
1195 commit refs/heads/N6
1196 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1198 copy root directory by tree hash
1201 from refs/heads/branch^0
1204 git fast-import <input &&
1205 git diff-tree -C --find-copies-harder -r N4 N6 >actual &&
1206 compare_diff_raw expect actual'
1208 test_expect_success \
1209 'N: delete directory by copying' \
1210 'cat >expect <<-\EOF &&
1212 :100644 000000 OBJID OBJID D foo/bar/qux
1214 :000000 100644 OBJID OBJID A foo/bar/baz
1215 :000000 100644 OBJID OBJID A foo/bar/qux
1217 empty_tree=$(git mktree </dev/null) &&
1218 cat >input <<-INPUT_END &&
1219 commit refs/heads/N-delete
1220 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1222 collect data to be deleted
1226 M 100644 inline foo/bar/baz
1230 C "foo/bar/baz" "foo/bar/qux"
1231 C "foo/bar/baz" "foo/bar/quux/1"
1232 C "foo/bar/baz" "foo/bar/quuux"
1233 M 040000 $empty_tree foo/bar/quux
1234 M 040000 $empty_tree foo/bar/quuux
1236 commit refs/heads/N-delete
1237 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1242 M 040000 $empty_tree foo/bar/qux
1244 git fast-import <input &&
1245 git rev-list N-delete |
1246 git diff-tree -r --stdin --root --always |
1247 sed -e "s/$_x40/OBJID/g" >actual &&
1248 test_cmp expect actual'
1250 test_expect_success \
1251 'N: modify copied tree' \
1252 'cat >expect <<-\EOF &&
1253 :100644 100644 fcf778cda181eaa1cbc9e9ce3a2e15ee9f9fe791 fcf778cda181eaa1cbc9e9ce3a2e15ee9f9fe791 C100 newdir/interesting file3/file5
1254 :100755 100755 f1fb5da718392694d0076d677d6d0e364c79b0bc f1fb5da718392694d0076d677d6d0e364c79b0bc C100 file2/newf file3/newf
1255 :100644 100644 7123f7f44e39be127c5eb701e5968176ee9d78b1 7123f7f44e39be127c5eb701e5968176ee9d78b1 C100 file2/oldf file3/oldf
1257 subdir=$(git rev-parse refs/heads/branch^0:file2) &&
1258 cat >input <<-INPUT_END &&
1259 commit refs/heads/N5
1260 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1265 from refs/heads/branch^0
1266 M 040000 $subdir file3
1268 commit refs/heads/N5
1269 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1271 modify directory copy
1274 M 644 inline file3/file5
1279 git fast-import <input &&
1280 git diff-tree -C --find-copies-harder -r N5^^ N5 >actual &&
1281 compare_diff_raw expect actual'
1283 test_expect_success \
1284 'N: reject foo/ syntax' \
1285 'subdir=$(git rev-parse refs/heads/branch^0:file2) &&
1286 test_must_fail git fast-import <<-INPUT_END
1287 commit refs/heads/N5B
1288 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1290 copy with invalid syntax
1293 from refs/heads/branch^0
1294 M 040000 $subdir file3/
1297 test_expect_success \
1298 'N: copy to root by id and modify' \
1299 'echo "hello, world" >expect.foo &&
1300 echo hello >expect.bar &&
1301 git fast-import <<-SETUP_END &&
1302 commit refs/heads/N7
1303 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1309 M 644 inline foo/bar
1315 tree=$(git rev-parse --verify N7:) &&
1316 git fast-import <<-INPUT_END &&
1317 commit refs/heads/N8
1318 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1320 copy to root by id and modify
1324 M 644 inline foo/foo
1329 git show N8:foo/foo >actual.foo &&
1330 git show N8:foo/bar >actual.bar &&
1331 test_cmp expect.foo actual.foo &&
1332 test_cmp expect.bar actual.bar'
1334 test_expect_success \
1335 'N: extract subtree' \
1336 'branch=$(git rev-parse --verify refs/heads/branch^{tree}) &&
1337 cat >input <<-INPUT_END &&
1338 commit refs/heads/N9
1339 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1341 extract subtree branch:newdir
1347 git fast-import <input &&
1348 git diff --exit-code branch:newdir N9'
1350 test_expect_success \
1351 'N: modify subtree, extract it, and modify again' \
1352 'echo hello >expect.baz &&
1353 echo hello, world >expect.qux &&
1354 git fast-import <<-SETUP_END &&
1355 commit refs/heads/N10
1356 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1362 M 644 inline foo/bar/baz
1368 tree=$(git rev-parse --verify N10:) &&
1369 git fast-import <<-INPUT_END &&
1370 commit refs/heads/N11
1371 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1373 copy to root by id and modify
1377 M 100644 inline foo/bar/qux
1382 C "bar/qux" "bar/quux"
1384 git show N11:bar/baz >actual.baz &&
1385 git show N11:bar/qux >actual.qux &&
1386 git show N11:bar/quux >actual.quux &&
1387 test_cmp expect.baz actual.baz &&
1388 test_cmp expect.qux actual.qux &&
1389 test_cmp expect.qux actual.quux'
1395 cat >input
<<INPUT_END
1397 commit refs/heads/O1
1398 # -- ignore all of this text
1399 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1400 # $GIT_COMMITTER_NAME has inserted here for his benefit.
1402 dirty directory copy
1405 # don't forget the import blank line!
1407 # yes, we started from our usual base of branch^0.
1409 from refs/heads/branch^0
1410 # and we need to reuse file2/file5 from N3 above.
1411 M 644 inline file2/file5
1412 # otherwise the tree will be different
1417 # don't forget to copy file2 to file3
1420 # or to delete file5 from file2.
1426 test_expect_success \
1427 'O: comments are all skipped' \
1428 'git fast-import <input &&
1429 test `git rev-parse N3` = `git rev-parse O1`'
1431 cat >input
<<INPUT_END
1432 commit refs/heads/O2
1433 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1435 dirty directory copy
1437 from refs/heads/branch^0
1438 M 644 inline file2/file5
1447 test_expect_success \
1448 'O: blank lines not necessary after data commands' \
1449 'git fast-import <input &&
1450 test `git rev-parse N3` = `git rev-parse O2`'
1452 test_expect_success \
1453 'O: repack before next test' \
1456 cat >input
<<INPUT_END
1457 commit refs/heads/O3
1458 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1462 commit refs/heads/O3
1463 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1468 commit refs/heads/O3
1470 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1475 commit refs/heads/O3
1476 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1480 reset refs/tags/O3-2nd
1482 reset refs/tags/O3-3rd
1486 cat >expect
<<INPUT_END
1492 test_expect_success \
1493 'O: blank lines not necessary after other commands' \
1494 'git fast-import <input &&
1495 test 8 = `find .git/objects/pack -type f | wc -l` &&
1496 test `git rev-parse refs/tags/O3-2nd` = `git rev-parse O3^` &&
1497 git log --reverse --pretty=oneline O3 | sed s/^.*z// >actual &&
1498 test_cmp expect actual'
1500 cat >input
<<INPUT_END
1501 commit refs/heads/O4
1502 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1506 commit refs/heads/O4
1507 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1511 progress Two commits down, 2 to go!
1512 commit refs/heads/O4
1513 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1517 progress Three commits down, 1 to go!
1518 commit refs/heads/O4
1519 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1525 test_expect_success \
1526 'O: progress outputs as requested by input' \
1527 'git fast-import <input >actual &&
1528 grep "progress " <input >expect &&
1529 test_cmp expect actual'
1532 ### series P (gitlinks)
1535 cat >input
<<INPUT_END
1541 reset refs/heads/sub
1542 commit refs/heads/sub
1544 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1557 commit refs/heads/subuse1
1559 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1562 from refs/heads/master
1563 M 100644 :3 .gitmodules
1572 commit refs/heads/sub
1574 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1580 commit refs/heads/subuse1
1582 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1590 test_expect_success \
1591 'P: supermodule & submodule mix' \
1592 'git fast-import <input &&
1593 git checkout subuse1 &&
1594 rm -rf sub && mkdir sub && (cd sub &&
1596 git fetch --update-head-ok .. refs/heads/sub:refs/heads/master &&
1597 git checkout master) &&
1598 git submodule init &&
1599 git submodule update'
1601 SUBLAST
=$
(git rev-parse
--verify sub
)
1602 SUBPREV
=$
(git rev-parse
--verify sub^
)
1604 cat >input
<<INPUT_END
1613 commit refs/heads/subuse2
1615 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1618 from refs/heads/master
1619 M 100644 :1 .gitmodules
1620 M 160000 $SUBPREV sub
1622 commit refs/heads/subuse2
1624 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1628 M 160000 $SUBLAST sub
1632 test_expect_success \
1633 'P: verbatim SHA gitlinks' \
1634 'git branch -D sub &&
1635 git gc && git prune &&
1636 git fast-import <input &&
1637 test $(git rev-parse --verify subuse2) = $(git rev-parse --verify subuse1)'
1640 cat >input
<<INPUT_END
1641 commit refs/heads/subuse3
1643 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1648 from refs/heads/subuse2
1656 test_expect_success
'P: fail on inline gitlink' '
1657 test_must_fail git fast-import <input'
1660 cat >input
<<INPUT_END
1667 commit refs/heads/subuse3
1669 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1674 from refs/heads/subuse2
1679 test_expect_success
'P: fail on blob mark in gitlink' '
1680 test_must_fail git fast-import <input'
1683 ### series Q (notes)
1686 note1_data
="The first note for the first commit"
1687 note2_data
="The first note for the second commit"
1688 note3_data
="The first note for the third commit"
1689 note1b_data
="The second note for the first commit"
1690 note1c_data
="The third note for the first commit"
1691 note2b_data
="The second note for the second commit"
1694 cat >input
<<INPUT_END
1701 commit refs/heads/notes-test
1703 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1714 commit refs/heads/notes-test
1716 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1723 commit refs/heads/notes-test
1725 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1752 commit refs/notes/foobar
1754 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1766 commit refs/notes/foobar
1768 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1778 commit refs/notes/foobar2
1780 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1790 commit refs/notes/foobar
1792 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1805 test_expect_success \
1807 'git fast-import <input &&
1808 git whatchanged notes-test'
1809 test_expect_success \
1811 'for p in .git/objects/pack/*.pack;do git verify-pack $p||exit;done'
1813 commit1
=$
(git rev-parse notes-test~
2)
1814 commit2
=$
(git rev-parse notes-test^
)
1815 commit3
=$
(git rev-parse notes-test
)
1818 author $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1819 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1823 test_expect_success \
1824 'Q: verify first commit' \
1825 'git cat-file commit notes-test~2 | sed 1d >actual &&
1826 test_cmp expect actual'
1830 author $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1831 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1835 test_expect_success \
1836 'Q: verify second commit' \
1837 'git cat-file commit notes-test^ | sed 1d >actual &&
1838 test_cmp expect actual'
1842 author $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1843 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1847 test_expect_success \
1848 'Q: verify third commit' \
1849 'git cat-file commit notes-test | sed 1d >actual &&
1850 test_cmp expect actual'
1853 author $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1854 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1858 test_expect_success \
1859 'Q: verify first notes commit' \
1860 'git cat-file commit refs/notes/foobar~2 | sed 1d >actual &&
1861 test_cmp expect actual'
1863 cat >expect.unsorted
<<EOF
1864 100644 blob $commit1
1865 100644 blob $commit2
1866 100644 blob $commit3
1868 cat expect.unsorted |
sort >expect
1869 test_expect_success \
1870 'Q: verify first notes tree' \
1871 'git cat-file -p refs/notes/foobar~2^{tree} | sed "s/ [0-9a-f]* / /" >actual &&
1872 test_cmp expect actual'
1874 echo "$note1_data" >expect
1875 test_expect_success \
1876 'Q: verify first note for first commit' \
1877 'git cat-file blob refs/notes/foobar~2:$commit1 >actual && test_cmp expect actual'
1879 echo "$note2_data" >expect
1880 test_expect_success \
1881 'Q: verify first note for second commit' \
1882 'git cat-file blob refs/notes/foobar~2:$commit2 >actual && test_cmp expect actual'
1884 echo "$note3_data" >expect
1885 test_expect_success \
1886 'Q: verify first note for third commit' \
1887 'git cat-file blob refs/notes/foobar~2:$commit3 >actual && test_cmp expect actual'
1890 parent `git rev-parse --verify refs/notes/foobar~2`
1891 author $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1892 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1896 test_expect_success \
1897 'Q: verify second notes commit' \
1898 'git cat-file commit refs/notes/foobar^ | sed 1d >actual &&
1899 test_cmp expect actual'
1901 cat >expect.unsorted
<<EOF
1902 100644 blob $commit1
1903 100644 blob $commit2
1904 100644 blob $commit3
1906 cat expect.unsorted |
sort >expect
1907 test_expect_success \
1908 'Q: verify second notes tree' \
1909 'git cat-file -p refs/notes/foobar^^{tree} | sed "s/ [0-9a-f]* / /" >actual &&
1910 test_cmp expect actual'
1912 echo "$note1b_data" >expect
1913 test_expect_success \
1914 'Q: verify second note for first commit' \
1915 'git cat-file blob refs/notes/foobar^:$commit1 >actual && test_cmp expect actual'
1917 echo "$note2_data" >expect
1918 test_expect_success \
1919 'Q: verify first note for second commit' \
1920 'git cat-file blob refs/notes/foobar^:$commit2 >actual && test_cmp expect actual'
1922 echo "$note3_data" >expect
1923 test_expect_success \
1924 'Q: verify first note for third commit' \
1925 'git cat-file blob refs/notes/foobar^:$commit3 >actual && test_cmp expect actual'
1928 author $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1929 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1933 test_expect_success \
1934 'Q: verify third notes commit' \
1935 'git cat-file commit refs/notes/foobar2 | sed 1d >actual &&
1936 test_cmp expect actual'
1938 cat >expect.unsorted
<<EOF
1939 100644 blob $commit1
1941 cat expect.unsorted |
sort >expect
1942 test_expect_success \
1943 'Q: verify third notes tree' \
1944 'git cat-file -p refs/notes/foobar2^{tree} | sed "s/ [0-9a-f]* / /" >actual &&
1945 test_cmp expect actual'
1947 echo "$note1c_data" >expect
1948 test_expect_success \
1949 'Q: verify third note for first commit' \
1950 'git cat-file blob refs/notes/foobar2:$commit1 >actual && test_cmp expect actual'
1953 parent `git rev-parse --verify refs/notes/foobar^`
1954 author $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1955 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1959 test_expect_success \
1960 'Q: verify fourth notes commit' \
1961 'git cat-file commit refs/notes/foobar | sed 1d >actual &&
1962 test_cmp expect actual'
1964 cat >expect.unsorted
<<EOF
1965 100644 blob $commit2
1967 cat expect.unsorted |
sort >expect
1968 test_expect_success \
1969 'Q: verify fourth notes tree' \
1970 'git cat-file -p refs/notes/foobar^{tree} | sed "s/ [0-9a-f]* / /" >actual &&
1971 test_cmp expect actual'
1973 echo "$note2b_data" >expect
1974 test_expect_success \
1975 'Q: verify second note for second commit' \
1976 'git cat-file blob refs/notes/foobar:$commit2 >actual && test_cmp expect actual'
1979 ### series R (feature and option)
1983 feature no-such-feature-exists
1986 test_expect_success
'R: abort on unsupported feature' '
1987 test_must_fail git fast-import <input
1991 feature date-format=now
1994 test_expect_success
'R: supported feature is accepted' '
1995 git fast-import <input
2002 feature date-format=now
2005 test_expect_success
'R: abort on receiving feature after data command' '
2006 test_must_fail git fast-import <input
2010 feature import-marks=git.marks
2011 feature import-marks=git2.marks
2014 test_expect_success
'R: only one import-marks feature allowed per stream' '
2015 test_must_fail git fast-import <input
2019 feature export-marks=git.marks
2027 test_expect_success \
2028 'R: export-marks feature results in a marks file being created' \
2029 'cat input | git fast-import &&
2032 test_expect_success \
2033 'R: export-marks options can be overriden by commandline options' \
2034 'cat input | git fast-import --export-marks=other.marks &&
2035 grep :1 other.marks'
2037 test_expect_success
'R: catch typo in marks file name' '
2038 test_must_fail git fast-import --import-marks=nonexistent.marks </dev/null &&
2039 echo "feature import-marks=nonexistent.marks" |
2040 test_must_fail git fast-import
2043 test_expect_success
'R: import and output marks can be the same file' '
2045 blob=$(echo hi | git hash-object --stdin) &&
2046 cat >expect <<-EOF &&
2050 git fast-import --export-marks=io.marks <<-\EOF &&
2057 git fast-import --import-marks=io.marks --export-marks=io.marks <<-\EOF &&
2064 test_cmp expect io.marks
2067 test_expect_success
'R: --import-marks=foo --output-marks=foo to create foo fails' '
2069 test_must_fail git fast-import --import-marks=io.marks --export-marks=io.marks <<-\EOF
2078 test_expect_success
'R: --import-marks-if-exists' '
2080 blob=$(echo hi | git hash-object --stdin) &&
2081 echo ":1 $blob" >expect &&
2082 git fast-import --import-marks-if-exists=io.marks --export-marks=io.marks <<-\EOF &&
2089 test_cmp expect io.marks
2092 test_expect_success
'R: feature import-marks-if-exists' '
2096 git fast-import --export-marks=io.marks <<-\EOF &&
2097 feature import-marks-if-exists=not_io.marks
2099 test_cmp expect io.marks &&
2101 blob=$(echo hi | git hash-object --stdin) &&
2103 echo ":1 $blob" >io.marks &&
2104 echo ":1 $blob" >expect &&
2105 echo ":2 $blob" >>expect &&
2107 git fast-import --export-marks=io.marks <<-\EOF &&
2108 feature import-marks-if-exists=io.marks
2115 test_cmp expect io.marks &&
2117 echo ":3 $blob" >>expect &&
2119 git fast-import --import-marks=io.marks \
2120 --export-marks=io.marks <<-\EOF &&
2121 feature import-marks-if-exists=not_io.marks
2128 test_cmp expect io.marks &&
2132 git fast-import --import-marks-if-exists=not_io.marks \
2133 --export-marks=io.marks <<-\EOF
2134 feature import-marks-if-exists=io.marks
2136 test_cmp expect io.marks
2140 feature import-marks=marks.out
2141 feature export-marks=marks.new
2144 test_expect_success \
2145 'R: import to output marks works without any content' \
2146 'cat input | git fast-import &&
2147 test_cmp marks.out marks.new'
2150 feature import-marks=nonexistent.marks
2151 feature export-marks=marks.new
2154 test_expect_success \
2155 'R: import marks prefers commandline marks file over the stream' \
2156 'cat input | git fast-import --import-marks=marks.out &&
2157 test_cmp marks.out marks.new'
2161 feature import-marks=nonexistent.marks
2162 feature export-marks=combined.marks
2165 test_expect_success
'R: multiple --import-marks= should be honoured' '
2166 head -n2 marks.out > one.marks &&
2167 tail -n +3 marks.out > two.marks &&
2168 git fast-import --import-marks=one.marks --import-marks=two.marks <input &&
2169 test_cmp marks.out combined.marks
2173 feature relative-marks
2174 feature import-marks=relative.in
2175 feature export-marks=relative.out
2178 test_expect_success
'R: feature relative-marks should be honoured' '
2179 mkdir -p .git/info/fast-import/ &&
2180 cp marks.new .git/info/fast-import/relative.in &&
2181 git fast-import <input &&
2182 test_cmp marks.new .git/info/fast-import/relative.out
2186 feature relative-marks
2187 feature import-marks=relative.in
2188 feature no-relative-marks
2189 feature export-marks=non-relative.out
2192 test_expect_success
'R: feature no-relative-marks should be honoured' '
2193 git fast-import <input &&
2194 test_cmp marks.new non-relative.out
2197 test_expect_success
'R: feature ls supported' '
2202 test_expect_success
'R: feature cat-blob supported' '
2203 echo "feature cat-blob" |
2207 test_expect_success
'R: cat-blob-fd must be a nonnegative integer' '
2208 test_must_fail git fast-import --cat-blob-fd=-1 </dev/null
2211 test_expect_success
'R: print old blob' '
2212 blob=$(echo "yes it can" | git hash-object -w --stdin) &&
2213 cat >expect <<-EOF &&
2218 echo "cat-blob $blob" |
2219 git fast-import --cat-blob-fd=6 6>actual &&
2220 test_cmp expect actual
2223 test_expect_success
'R: in-stream cat-blob-fd not respected' '
2224 echo hello >greeting &&
2225 blob=$(git hash-object -w greeting) &&
2226 cat >expect <<-EOF &&
2231 git fast-import --cat-blob-fd=3 3>actual.3 >actual.1 <<-EOF &&
2234 test_cmp expect actual.3 &&
2235 test_cmp empty actual.1 &&
2236 git fast-import 3>actual.3 >actual.1 <<-EOF &&
2237 option cat-blob-fd=3
2240 test_cmp empty actual.3 &&
2241 test_cmp expect actual.1
2244 test_expect_success
'R: print new blob' '
2245 blob=$(echo "yep yep yep" | git hash-object --stdin) &&
2246 cat >expect <<-EOF &&
2251 git fast-import --cat-blob-fd=6 6>actual <<-\EOF &&
2259 test_cmp expect actual
2262 test_expect_success
'R: print new blob by sha1' '
2263 blob=$(echo "a new blob named by sha1" | git hash-object --stdin) &&
2264 cat >expect <<-EOF &&
2266 a new blob named by sha1
2269 git fast-import --cat-blob-fd=6 6>actual <<-EOF &&
2272 a new blob named by sha1
2276 test_cmp expect actual
2279 test_expect_success
'setup: big file' '
2281 echo "the quick brown fox jumps over the lazy dog" >big &&
2284 cat big big big big >bigger &&
2285 cat bigger bigger bigger bigger >big ||
2291 test_expect_success
'R: print two blobs to stdout' '
2292 blob1=$(git hash-object big) &&
2293 blob1_len=$(wc -c <big) &&
2294 blob2=$(echo hello | git hash-object --stdin) &&
2296 echo ${blob1} blob $blob1_len &&
2306 cat <<-\END_PART1 &&
2323 git fast-import >actual &&
2324 test_cmp expect actual
2327 test_expect_success PIPE
'R: copy using cat-file' '
2328 expect_id=$(git hash-object big) &&
2329 expect_len=$(wc -c <big) &&
2330 echo $expect_id blob $expect_len >expect.response &&
2333 cat >frontend <<-\FRONTEND_END &&
2339 export GIT_COMMITTER_NAME GIT_COMMITTER_EMAIL GIT_COMMITTER_DATE &&
2352 read blob_id type size <&3 &&
2353 echo "$blob_id $type $size" >response &&
2354 head_c $size >blob <&3 &&
2358 commit refs/heads/copied
2359 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
2361 copy big file as file3
2369 git fast-import --cat-blob-fd=3 3>blobs &&
2370 git show copied:file3 >actual &&
2371 test_cmp expect.response response &&
2375 test_expect_success PIPE
'R: print blob mid-commit' '
2377 echo "A blob from _before_ the commit." >expect &&
2386 A blob from _before_ the commit.
2388 commit refs/heads/temporary
2389 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
2396 read blob_id type size <&3 &&
2397 head_c $size >actual <&3 &&
2402 git fast-import --cat-blob-fd=3 3>blobs &&
2403 test_cmp expect actual
2406 test_expect_success PIPE
'R: print staged blob within commit' '
2408 echo "A blob from _within_ the commit." >expect &&
2414 commit refs/heads/within
2415 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
2421 A blob from _within_ the commit.
2426 echo "A blob from _within_ the commit." |
2427 git hash-object --stdin
2429 echo "cat-blob $to_get" &&
2431 read blob_id type size <&3 &&
2432 head_c $size >actual <&3 &&
2437 git fast-import --cat-blob-fd=3 3>blobs &&
2438 test_cmp expect actual
2449 test_expect_success
'R: quiet option results in no stats being output' '
2450 cat input | git fast-import 2> output &&
2451 test_cmp empty output
2454 test_expect_success
'R: feature done means terminating "done" is mandatory' '
2455 echo feature done | test_must_fail git fast-import &&
2456 test_must_fail git fast-import --done </dev/null
2459 test_expect_success
'R: terminating "done" with trailing gibberish is ok' '
2460 git fast-import <<-\EOF &&
2465 git fast-import <<-\EOF
2467 more trailing gibberish
2471 test_expect_success
'R: terminating "done" within commit' '
2472 cat >expect <<-\EOF &&
2474 :000000 100644 OBJID OBJID A hello.c
2475 :000000 100644 OBJID OBJID A hello2.c
2477 git fast-import <<-EOF &&
2478 commit refs/heads/done-ends
2479 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
2481 Commit terminated by "done" command
2483 M 100644 inline hello.c
2490 git rev-list done-ends |
2491 git diff-tree -r --stdin --root --always |
2492 sed -e "s/$_x40/OBJID/g" >actual &&
2493 test_cmp expect actual
2497 option git non-existing-option
2500 test_expect_success
'R: die on unknown option' '
2501 test_must_fail git fast-import <input
2504 test_expect_success
'R: unknown commandline options are rejected' '\
2505 test_must_fail git fast-import --non-existing-option < /dev/null
2508 test_expect_success
'R: die on invalid option argument' '
2509 echo "option git active-branches=-5" |
2510 test_must_fail git fast-import &&
2511 echo "option git depth=" |
2512 test_must_fail git fast-import &&
2513 test_must_fail git fast-import --depth="5 elephants" </dev/null
2517 option non-existing-vcs non-existing-option
2520 test_expect_success
'R: ignore non-git options' '
2521 git fast-import <input
2525 ## R: very large blobs
2527 blobsize
=$
((2*1024*1024 + 53))
2528 test-genrandom bar
$blobsize >expect
2529 cat >input
<<INPUT_END
2530 commit refs/heads/big-file
2531 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
2540 cat >>input
<<INPUT_END
2547 test_expect_success \
2548 'R: blob bigger than threshold' \
2549 'test_create_repo R &&
2550 git --git-dir=R/.git fast-import --big-file-threshold=1 <input'
2551 test_expect_success \
2552 'R: verify created pack' \
2554 for p in R/.git/objects/pack/*.pack;
2556 git verify-pack -v $p >>verify || exit;
2558 test_expect_success \
2559 'R: verify written objects' \
2560 'git --git-dir=R/.git cat-file blob big-file:big1 >actual &&
2561 test_cmp expect actual &&
2562 a=$(git --git-dir=R/.git rev-parse big-file:big1) &&
2563 b=$(git --git-dir=R/.git rev-parse big-file:big2) &&
2565 test_expect_success \
2566 'R: blob appears only once' \
2567 'n=$(grep $a verify | wc -l) &&