1#!/bin/sh
2#
3# Copyright (c) 2007 Shawn Pearce
4#
5
6test_description='test git fast-import utility'
7. ./test-lib.sh
8. "$TEST_DIRECTORY"/diff-lib.sh ;# test-lib chdir's into trash
9
10file2_data='file2
11second line of EOF'
12
13file3_data='EOF
14in 3rd file
15 END'
16
17file4_data=abcd
18file4_len=4
19
20file5_data='an inline file.
21 we should see it later.'
22
23file6_data='#!/bin/sh
24echo "$@"'
25
26###
27### series A
28###
29
30test_tick
31cat >input <<INPUT_END
32blob
33mark :2
34data <<EOF
35$file2_data
36EOF
37
38blob
39mark :3
40data <<END
41$file3_data
42END
43
44blob
45mark :4
46data $file4_len
47$file4_data
48commit refs/heads/master
49mark :5
50committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
51data <<COMMIT
52initial
53COMMIT
54
55M 644 :2 file2
56M 644 :3 file3
57M 755 :4 file4
58
59tag series-A
60from :5
61data <<EOF
62An annotated tag without a tagger
63EOF
64
65INPUT_END
66test_expect_success \
67 'A: create pack from stdin' \
68 'git fast-import --export-marks=marks.out <input &&
69 git whatchanged master'
70test_expect_success \
71 'A: verify pack' \
72 'for p in .git/objects/pack/*.pack;do git verify-pack $p||exit;done'
73
74cat >expect <<EOF
75author $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
76committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
77
78initial
79EOF
80test_expect_success \
81 'A: verify commit' \
82 'git cat-file commit master | sed 1d >actual &&
83 test_cmp expect actual'
84
85cat >expect <<EOF
86100644 blob file2
87100644 blob file3
88100755 blob file4
89EOF
90test_expect_success \
91 'A: verify tree' \
92 'git cat-file -p master^{tree} | sed "s/ [0-9a-f]* / /" >actual &&
93 test_cmp expect actual'
94
95echo "$file2_data" >expect
96test_expect_success \
97 'A: verify file2' \
98 'git cat-file blob master:file2 >actual && test_cmp expect actual'
99
100echo "$file3_data" >expect
101test_expect_success \
102 'A: verify file3' \
103 'git cat-file blob master:file3 >actual && test_cmp expect actual'
104
105printf "$file4_data" >expect
106test_expect_success \
107 'A: verify file4' \
108 'git cat-file blob master:file4 >actual && test_cmp expect actual'
109
110cat >expect <<EOF
111object $(git rev-parse refs/heads/master)
112type commit
113tag series-A
114
115An annotated tag without a tagger
116EOF
117test_expect_success 'A: verify tag/series-A' '
118 git cat-file tag tags/series-A >actual &&
119 test_cmp expect actual
120'
121
122cat >expect <<EOF
123:2 `git rev-parse --verify master:file2`
124:3 `git rev-parse --verify master:file3`
125:4 `git rev-parse --verify master:file4`
126:5 `git rev-parse --verify master^0`
127EOF
128test_expect_success \
129 'A: verify marks output' \
130 'test_cmp expect marks.out'
131
132test_expect_success \
133 'A: verify marks import' \
134 'git fast-import \
135 --import-marks=marks.out \
136 --export-marks=marks.new \
137 </dev/null &&
138 test_cmp expect marks.new'
139
140test_tick
141cat >input <<INPUT_END
142commit refs/heads/verify--import-marks
143committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
144data <<COMMIT
145recreate from :5
146COMMIT
147
148from :5
149M 755 :2 copy-of-file2
150
151INPUT_END
152test_expect_success \
153 'A: verify marks import does not crash' \
154 'git fast-import --import-marks=marks.out <input &&
155 git whatchanged verify--import-marks'
156test_expect_success \
157 'A: verify pack' \
158 'for p in .git/objects/pack/*.pack;do git verify-pack $p||exit;done'
159cat >expect <<EOF
160:000000 100755 0000000000000000000000000000000000000000 7123f7f44e39be127c5eb701e5968176ee9d78b1 A copy-of-file2
161EOF
162git diff-tree -M -r master verify--import-marks >actual
163test_expect_success \
164 'A: verify diff' \
165 'compare_diff_raw expect actual &&
166 test `git rev-parse --verify master:file2` \
167 = `git rev-parse --verify verify--import-marks:copy-of-file2`'
168
169###
170### series B
171###
172
173test_tick
174cat >input <<INPUT_END
175commit refs/heads/branch
176mark :1
177committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
178data <<COMMIT
179corrupt
180COMMIT
181
182from refs/heads/master
183M 755 0000000000000000000000000000000000000001 zero1
184
185INPUT_END
186test_expect_success 'B: fail on invalid blob sha1' '
187 test_must_fail git fast-import <input
188'
189rm -f .git/objects/pack_* .git/objects/index_*
190
191cat >input <<INPUT_END
192commit .badbranchname
193committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
194data <<COMMIT
195corrupt
196COMMIT
197
198from refs/heads/master
199
200INPUT_END
201test_expect_success 'B: fail on invalid branch name ".badbranchname"' '
202 test_must_fail git fast-import <input
203'
204rm -f .git/objects/pack_* .git/objects/index_*
205
206cat >input <<INPUT_END
207commit bad[branch]name
208committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
209data <<COMMIT
210corrupt
211COMMIT
212
213from refs/heads/master
214
215INPUT_END
216test_expect_success 'B: fail on invalid branch name "bad[branch]name"' '
217 test_must_fail git fast-import <input
218'
219rm -f .git/objects/pack_* .git/objects/index_*
220
221cat >input <<INPUT_END
222commit TEMP_TAG
223committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
224data <<COMMIT
225tag base
226COMMIT
227
228from refs/heads/master
229
230INPUT_END
231test_expect_success \
232 'B: accept branch name "TEMP_TAG"' \
233 'git fast-import <input &&
234 test -f .git/TEMP_TAG &&
235 test `git rev-parse master` = `git rev-parse TEMP_TAG^`'
236rm -f .git/TEMP_TAG
237
238###
239### series C
240###
241
242newf=`echo hi newf | git hash-object -w --stdin`
243oldf=`git rev-parse --verify master:file2`
244test_tick
245cat >input <<INPUT_END
246commit refs/heads/branch
247committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
248data <<COMMIT
249second
250COMMIT
251
252from refs/heads/master
253M 644 $oldf file2/oldf
254M 755 $newf file2/newf
255D file3
256
257INPUT_END
258test_expect_success \
259 'C: incremental import create pack from stdin' \
260 'git fast-import <input &&
261 git whatchanged branch'
262test_expect_success \
263 'C: verify pack' \
264 'for p in .git/objects/pack/*.pack;do git verify-pack $p||exit;done'
265test_expect_success \
266 'C: validate reuse existing blob' \
267 'test $newf = `git rev-parse --verify branch:file2/newf`
268 test $oldf = `git rev-parse --verify branch:file2/oldf`'
269
270cat >expect <<EOF
271parent `git rev-parse --verify master^0`
272author $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
273committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
274
275second
276EOF
277test_expect_success \
278 'C: verify commit' \
279 'git cat-file commit branch | sed 1d >actual &&
280 test_cmp expect actual'
281
282cat >expect <<EOF
283:000000 100755 0000000000000000000000000000000000000000 f1fb5da718392694d0076d677d6d0e364c79b0bc A file2/newf
284:100644 100644 7123f7f44e39be127c5eb701e5968176ee9d78b1 7123f7f44e39be127c5eb701e5968176ee9d78b1 R100 file2 file2/oldf
285:100644 000000 0d92e9f3374ae2947c23aa477cbc68ce598135f1 0000000000000000000000000000000000000000 D file3
286EOF
287git diff-tree -M -r master branch >actual
288test_expect_success \
289 'C: validate rename result' \
290 'compare_diff_raw expect actual'
291
292###
293### series D
294###
295
296test_tick
297cat >input <<INPUT_END
298commit refs/heads/branch
299committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
300data <<COMMIT
301third
302COMMIT
303
304from refs/heads/branch^0
305M 644 inline newdir/interesting
306data <<EOF
307$file5_data
308EOF
309
310M 755 inline newdir/exec.sh
311data <<EOF
312$file6_data
313EOF
314
315INPUT_END
316test_expect_success \
317 'D: inline data in commit' \
318 'git fast-import <input &&
319 git whatchanged branch'
320test_expect_success \
321 'D: verify pack' \
322 'for p in .git/objects/pack/*.pack;do git verify-pack $p||exit;done'
323
324cat >expect <<EOF
325:000000 100755 0000000000000000000000000000000000000000 35a59026a33beac1569b1c7f66f3090ce9c09afc A newdir/exec.sh
326:000000 100644 0000000000000000000000000000000000000000 046d0371e9220107917db0d0e030628de8a1de9b A newdir/interesting
327EOF
328git diff-tree -M -r branch^ branch >actual
329test_expect_success \
330 'D: validate new files added' \
331 'compare_diff_raw expect actual'
332
333echo "$file5_data" >expect
334test_expect_success \
335 'D: verify file5' \
336 'git cat-file blob branch:newdir/interesting >actual &&
337 test_cmp expect actual'
338
339echo "$file6_data" >expect
340test_expect_success \
341 'D: verify file6' \
342 'git cat-file blob branch:newdir/exec.sh >actual &&
343 test_cmp expect actual'
344
345###
346### series E
347###
348
349cat >input <<INPUT_END
350commit refs/heads/branch
351author $GIT_AUTHOR_NAME <$GIT_AUTHOR_EMAIL> Tue Feb 6 11:22:18 2007 -0500
352committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> Tue Feb 6 12:35:02 2007 -0500
353data <<COMMIT
354RFC 2822 type date
355COMMIT
356
357from refs/heads/branch^0
358
359INPUT_END
360test_expect_success 'E: rfc2822 date, --date-format=raw' '
361 test_must_fail git fast-import --date-format=raw <input
362'
363test_expect_success \
364 'E: rfc2822 date, --date-format=rfc2822' \
365 'git fast-import --date-format=rfc2822 <input'
366test_expect_success \
367 'E: verify pack' \
368 'for p in .git/objects/pack/*.pack;do git verify-pack $p||exit;done'
369
370cat >expect <<EOF
371author $GIT_AUTHOR_NAME <$GIT_AUTHOR_EMAIL> 1170778938 -0500
372committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1170783302 -0500
373
374RFC 2822 type date
375EOF
376test_expect_success \
377 'E: verify commit' \
378 'git cat-file commit branch | sed 1,2d >actual &&
379 test_cmp expect actual'
380
381###
382### series F
383###
384
385old_branch=`git rev-parse --verify branch^0`
386test_tick
387cat >input <<INPUT_END
388commit refs/heads/branch
389committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
390data <<COMMIT
391losing things already?
392COMMIT
393
394from refs/heads/branch~1
395
396reset refs/heads/other
397from refs/heads/branch
398
399INPUT_END
400test_expect_success \
401 'F: non-fast-forward update skips' \
402 'if git fast-import <input
403 then
404 echo BAD gfi did not fail
405 return 1
406 else
407 if test $old_branch = `git rev-parse --verify branch^0`
408 then
409 : branch unaffected and failure returned
410 return 0
411 else
412 echo BAD gfi changed branch $old_branch
413 return 1
414 fi
415 fi
416 '
417test_expect_success \
418 'F: verify pack' \
419 'for p in .git/objects/pack/*.pack;do git verify-pack $p||exit;done'
420
421cat >expect <<EOF
422tree `git rev-parse branch~1^{tree}`
423parent `git rev-parse branch~1`
424author $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
425committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
426
427losing things already?
428EOF
429test_expect_success \
430 'F: verify other commit' \
431 'git cat-file commit other >actual &&
432 test_cmp expect actual'
433
434###
435### series G
436###
437
438old_branch=`git rev-parse --verify branch^0`
439test_tick
440cat >input <<INPUT_END
441commit refs/heads/branch
442committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
443data <<COMMIT
444losing things already?
445COMMIT
446
447from refs/heads/branch~1
448
449INPUT_END
450test_expect_success \
451 'G: non-fast-forward update forced' \
452 'git fast-import --force <input'
453test_expect_success \
454 'G: verify pack' \
455 'for p in .git/objects/pack/*.pack;do git verify-pack $p||exit;done'
456test_expect_success \
457 'G: branch changed, but logged' \
458 'test $old_branch != `git rev-parse --verify branch^0` &&
459 test $old_branch = `git rev-parse --verify branch@{1}`'
460
461###
462### series H
463###
464
465test_tick
466cat >input <<INPUT_END
467commit refs/heads/H
468committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
469data <<COMMIT
470third
471COMMIT
472
473from refs/heads/branch^0
474M 644 inline i-will-die
475data <<EOF
476this file will never exist.
477EOF
478
479deleteall
480M 644 inline h/e/l/lo
481data <<EOF
482$file5_data
483EOF
484
485INPUT_END
486test_expect_success \
487 'H: deletall, add 1' \
488 'git fast-import <input &&
489 git whatchanged H'
490test_expect_success \
491 'H: verify pack' \
492 'for p in .git/objects/pack/*.pack;do git verify-pack $p||exit;done'
493
494cat >expect <<EOF
495:100755 000000 f1fb5da718392694d0076d677d6d0e364c79b0bc 0000000000000000000000000000000000000000 D file2/newf
496:100644 000000 7123f7f44e39be127c5eb701e5968176ee9d78b1 0000000000000000000000000000000000000000 D file2/oldf
497:100755 000000 85df50785d62d3b05ab03d9cbf7e4a0b49449730 0000000000000000000000000000000000000000 D file4
498:100644 100644 fcf778cda181eaa1cbc9e9ce3a2e15ee9f9fe791 fcf778cda181eaa1cbc9e9ce3a2e15ee9f9fe791 R100 newdir/interesting h/e/l/lo
499:100755 000000 e74b7d465e52746be2b4bae983670711e6e66657 0000000000000000000000000000000000000000 D newdir/exec.sh
500EOF
501git diff-tree -M -r H^ H >actual
502test_expect_success \
503 'H: validate old files removed, new files added' \
504 'compare_diff_raw expect actual'
505
506echo "$file5_data" >expect
507test_expect_success \
508 'H: verify file' \
509 'git cat-file blob H:h/e/l/lo >actual &&
510 test_cmp expect actual'
511
512###
513### series I
514###
515
516cat >input <<INPUT_END
517commit refs/heads/export-boundary
518committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
519data <<COMMIT
520we have a border. its only 40 characters wide.
521COMMIT
522
523from refs/heads/branch
524
525INPUT_END
526test_expect_success \
527 'I: export-pack-edges' \
528 'git fast-import --export-pack-edges=edges.list <input'
529
530cat >expect <<EOF
531.git/objects/pack/pack-.pack: `git rev-parse --verify export-boundary`
532EOF
533test_expect_success \
534 'I: verify edge list' \
535 'sed -e s/pack-.*pack/pack-.pack/ edges.list >actual &&
536 test_cmp expect actual'
537
538###
539### series J
540###
541
542cat >input <<INPUT_END
543commit refs/heads/J
544committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
545data <<COMMIT
546create J
547COMMIT
548
549from refs/heads/branch
550
551reset refs/heads/J
552
553commit refs/heads/J
554committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
555data <<COMMIT
556initialize J
557COMMIT
558
559INPUT_END
560test_expect_success \
561 'J: reset existing branch creates empty commit' \
562 'git fast-import <input'
563test_expect_success \
564 'J: branch has 1 commit, empty tree' \
565 'test 1 = `git rev-list J | wc -l` &&
566 test 0 = `git ls-tree J | wc -l`'
567
568###
569### series K
570###
571
572cat >input <<INPUT_END
573commit refs/heads/K
574committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
575data <<COMMIT
576create K
577COMMIT
578
579from refs/heads/branch
580
581commit refs/heads/K
582committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
583data <<COMMIT
584redo K
585COMMIT
586
587from refs/heads/branch^1
588
589INPUT_END
590test_expect_success \
591 'K: reinit branch with from' \
592 'git fast-import <input'
593test_expect_success \
594 'K: verify K^1 = branch^1' \
595 'test `git rev-parse --verify branch^1` \
596 = `git rev-parse --verify K^1`'
597
598###
599### series L
600###
601
602cat >input <<INPUT_END
603blob
604mark :1
605data <<EOF
606some data
607EOF
608
609blob
610mark :2
611data <<EOF
612other data
613EOF
614
615commit refs/heads/L
616committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
617data <<COMMIT
618create L
619COMMIT
620
621M 644 :1 b.
622M 644 :1 b/other
623M 644 :1 ba
624
625commit refs/heads/L
626committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
627data <<COMMIT
628update L
629COMMIT
630
631M 644 :2 b.
632M 644 :2 b/other
633M 644 :2 ba
634INPUT_END
635
636cat >expect <<EXPECT_END
637:100644 100644 4268632... 55d3a52... M b.
638:040000 040000 0ae5cac... 443c768... M b
639:100644 100644 4268632... 55d3a52... M ba
640EXPECT_END
641
642test_expect_success \
643 'L: verify internal tree sorting' \
644 'git fast-import <input &&
645 git diff-tree --abbrev --raw L^ L >output &&
646 test_cmp expect output'
647
648###
649### series M
650###
651
652test_tick
653cat >input <<INPUT_END
654commit refs/heads/M1
655committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
656data <<COMMIT
657file rename
658COMMIT
659
660from refs/heads/branch^0
661R file2/newf file2/n.e.w.f
662
663INPUT_END
664
665cat >expect <<EOF
666:100755 100755 f1fb5da718392694d0076d677d6d0e364c79b0bc f1fb5da718392694d0076d677d6d0e364c79b0bc R100 file2/newf file2/n.e.w.f
667EOF
668test_expect_success \
669 'M: rename file in same subdirectory' \
670 'git fast-import <input &&
671 git diff-tree -M -r M1^ M1 >actual &&
672 compare_diff_raw expect actual'
673
674cat >input <<INPUT_END
675commit refs/heads/M2
676committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
677data <<COMMIT
678file rename
679COMMIT
680
681from refs/heads/branch^0
682R file2/newf i/am/new/to/you
683
684INPUT_END
685
686cat >expect <<EOF
687:100755 100755 f1fb5da718392694d0076d677d6d0e364c79b0bc f1fb5da718392694d0076d677d6d0e364c79b0bc R100 file2/newf i/am/new/to/you
688EOF
689test_expect_success \
690 'M: rename file to new subdirectory' \
691 'git fast-import <input &&
692 git diff-tree -M -r M2^ M2 >actual &&
693 compare_diff_raw expect actual'
694
695cat >input <<INPUT_END
696commit refs/heads/M3
697committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
698data <<COMMIT
699file rename
700COMMIT
701
702from refs/heads/M2^0
703R i other/sub
704
705INPUT_END
706
707cat >expect <<EOF
708:100755 100755 f1fb5da718392694d0076d677d6d0e364c79b0bc f1fb5da718392694d0076d677d6d0e364c79b0bc R100 i/am/new/to/you other/sub/am/new/to/you
709EOF
710test_expect_success \
711 'M: rename subdirectory to new subdirectory' \
712 'git fast-import <input &&
713 git diff-tree -M -r M3^ M3 >actual &&
714 compare_diff_raw expect actual'
715
716###
717### series N
718###
719
720test_tick
721cat >input <<INPUT_END
722commit refs/heads/N1
723committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
724data <<COMMIT
725file copy
726COMMIT
727
728from refs/heads/branch^0
729C file2/newf file2/n.e.w.f
730
731INPUT_END
732
733cat >expect <<EOF
734:100755 100755 f1fb5da718392694d0076d677d6d0e364c79b0bc f1fb5da718392694d0076d677d6d0e364c79b0bc C100 file2/newf file2/n.e.w.f
735EOF
736test_expect_success \
737 'N: copy file in same subdirectory' \
738 'git fast-import <input &&
739 git diff-tree -C --find-copies-harder -r N1^ N1 >actual &&
740 compare_diff_raw expect actual'
741
742cat >input <<INPUT_END
743commit refs/heads/N2
744committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
745data <<COMMIT
746clean directory copy
747COMMIT
748
749from refs/heads/branch^0
750C file2 file3
751
752commit refs/heads/N2
753committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
754data <<COMMIT
755modify directory copy
756COMMIT
757
758M 644 inline file3/file5
759data <<EOF
760$file5_data
761EOF
762
763INPUT_END
764
765cat >expect <<EOF
766:100644 100644 fcf778cda181eaa1cbc9e9ce3a2e15ee9f9fe791 fcf778cda181eaa1cbc9e9ce3a2e15ee9f9fe791 C100 newdir/interesting file3/file5
767:100755 100755 f1fb5da718392694d0076d677d6d0e364c79b0bc f1fb5da718392694d0076d677d6d0e364c79b0bc C100 file2/newf file3/newf
768:100644 100644 7123f7f44e39be127c5eb701e5968176ee9d78b1 7123f7f44e39be127c5eb701e5968176ee9d78b1 C100 file2/oldf file3/oldf
769EOF
770test_expect_success \
771 'N: copy then modify subdirectory' \
772 'git fast-import <input &&
773 git diff-tree -C --find-copies-harder -r N2^^ N2 >actual &&
774 compare_diff_raw expect actual'
775
776cat >input <<INPUT_END
777commit refs/heads/N3
778committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
779data <<COMMIT
780dirty directory copy
781COMMIT
782
783from refs/heads/branch^0
784M 644 inline file2/file5
785data <<EOF
786$file5_data
787EOF
788
789C file2 file3
790D file2/file5
791
792INPUT_END
793
794test_expect_success \
795 'N: copy dirty subdirectory' \
796 'git fast-import <input &&
797 test `git rev-parse N2^{tree}` = `git rev-parse N3^{tree}`'
798
799###
800### series O
801###
802
803cat >input <<INPUT_END
804#we will
805commit refs/heads/O1
806# -- ignore all of this text
807committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
808# $GIT_COMMITTER_NAME has inserted here for his benefit.
809data <<COMMIT
810dirty directory copy
811COMMIT
812
813# don't forget the import blank line!
814#
815# yes, we started from our usual base of branch^0.
816# i like branch^0.
817from refs/heads/branch^0
818# and we need to reuse file2/file5 from N3 above.
819M 644 inline file2/file5
820# otherwise the tree will be different
821data <<EOF
822$file5_data
823EOF
824
825# don't forget to copy file2 to file3
826C file2 file3
827#
828# or to delete file5 from file2.
829D file2/file5
830# are we done yet?
831
832INPUT_END
833
834test_expect_success \
835 'O: comments are all skipped' \
836 'git fast-import <input &&
837 test `git rev-parse N3` = `git rev-parse O1`'
838
839cat >input <<INPUT_END
840commit refs/heads/O2
841committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
842data <<COMMIT
843dirty directory copy
844COMMIT
845from refs/heads/branch^0
846M 644 inline file2/file5
847data <<EOF
848$file5_data
849EOF
850C file2 file3
851D file2/file5
852
853INPUT_END
854
855test_expect_success \
856 'O: blank lines not necessary after data commands' \
857 'git fast-import <input &&
858 test `git rev-parse N3` = `git rev-parse O2`'
859
860test_expect_success \
861 'O: repack before next test' \
862 'git repack -a -d'
863
864cat >input <<INPUT_END
865commit refs/heads/O3
866committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
867data <<COMMIT
868zstring
869COMMIT
870commit refs/heads/O3
871committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
872data <<COMMIT
873zof
874COMMIT
875checkpoint
876commit refs/heads/O3
877mark :5
878committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
879data <<COMMIT
880zempty
881COMMIT
882checkpoint
883commit refs/heads/O3
884committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
885data <<COMMIT
886zcommits
887COMMIT
888reset refs/tags/O3-2nd
889from :5
890reset refs/tags/O3-3rd
891from :5
892INPUT_END
893
894cat >expect <<INPUT_END
895string
896of
897empty
898commits
899INPUT_END
900test_expect_success \
901 'O: blank lines not necessary after other commands' \
902 'git fast-import <input &&
903 test 8 = `find .git/objects/pack -type f | wc -l` &&
904 test `git rev-parse refs/tags/O3-2nd` = `git rev-parse O3^` &&
905 git log --reverse --pretty=oneline O3 | sed s/^.*z// >actual &&
906 test_cmp expect actual'
907
908cat >input <<INPUT_END
909commit refs/heads/O4
910committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
911data <<COMMIT
912zstring
913COMMIT
914commit refs/heads/O4
915committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
916data <<COMMIT
917zof
918COMMIT
919progress Two commits down, 2 to go!
920commit refs/heads/O4
921committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
922data <<COMMIT
923zempty
924COMMIT
925progress Three commits down, 1 to go!
926commit refs/heads/O4
927committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
928data <<COMMIT
929zcommits
930COMMIT
931progress I'm done!
932INPUT_END
933test_expect_success \
934 'O: progress outputs as requested by input' \
935 'git fast-import <input >actual &&
936 grep "progress " <input >expect &&
937 test_cmp expect actual'
938
939###
940### series P (gitlinks)
941###
942
943cat >input <<INPUT_END
944blob
945mark :1
946data 10
947test file
948
949reset refs/heads/sub
950commit refs/heads/sub
951mark :2
952committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
953data 12
954sub_initial
955M 100644 :1 file
956
957blob
958mark :3
959data <<DATAEND
960[submodule "sub"]
961 path = sub
962 url = "`pwd`/sub"
963DATAEND
964
965commit refs/heads/subuse1
966mark :4
967committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
968data 8
969initial
970from refs/heads/master
971M 100644 :3 .gitmodules
972M 160000 :2 sub
973
974blob
975mark :5
976data 20
977test file
978more data
979
980commit refs/heads/sub
981mark :6
982committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
983data 11
984sub_second
985from :2
986M 100644 :5 file
987
988commit refs/heads/subuse1
989mark :7
990committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
991data 7
992second
993from :4
994M 160000 :6 sub
995
996INPUT_END
997
998test_expect_success \
999 'P: supermodule & submodule mix' \
1000 'git fast-import <input &&
1001 git checkout subuse1 &&
1002 rm -rf sub && mkdir sub && cd sub &&
1003 git init &&
1004 git fetch --update-head-ok .. refs/heads/sub:refs/heads/master &&
1005 git checkout master &&
1006 cd .. &&
1007 git submodule init &&
1008 git submodule update'
1009
1010SUBLAST=$(git rev-parse --verify sub)
1011SUBPREV=$(git rev-parse --verify sub^)
1012
1013cat >input <<INPUT_END
1014blob
1015mark :1
1016data <<DATAEND
1017[submodule "sub"]
1018 path = sub
1019 url = "`pwd`/sub"
1020DATAEND
1021
1022commit refs/heads/subuse2
1023mark :2
1024committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1025data 8
1026initial
1027from refs/heads/master
1028M 100644 :1 .gitmodules
1029M 160000 $SUBPREV sub
1030
1031commit refs/heads/subuse2
1032mark :3
1033committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1034data 7
1035second
1036from :2
1037M 160000 $SUBLAST sub
1038
1039INPUT_END
1040
1041test_expect_success \
1042 'P: verbatim SHA gitlinks' \
1043 'git branch -D sub &&
1044 git gc && git prune &&
1045 git fast-import <input &&
1046 test $(git rev-parse --verify subuse2) = $(git rev-parse --verify subuse1)'
1047
1048test_tick
1049cat >input <<INPUT_END
1050commit refs/heads/subuse3
1051mark :1
1052committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1053data <<COMMIT
1054corrupt
1055COMMIT
1056
1057from refs/heads/subuse2
1058M 160000 inline sub
1059data <<DATA
1060$SUBPREV
1061DATA
1062
1063INPUT_END
1064
1065test_expect_success 'P: fail on inline gitlink' '
1066 test_must_fail git fast-import <input'
1067
1068test_tick
1069cat >input <<INPUT_END
1070blob
1071mark :1
1072data <<DATA
1073$SUBPREV
1074DATA
1075
1076commit refs/heads/subuse3
1077mark :2
1078committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1079data <<COMMIT
1080corrupt
1081COMMIT
1082
1083from refs/heads/subuse2
1084M 160000 :1 sub
1085
1086INPUT_END
1087
1088test_expect_success 'P: fail on blob mark in gitlink' '
1089 test_must_fail git fast-import <input'
1090
1091###
1092### series Q (notes)
1093###
1094
1095note1_data="The first note for the first commit"
1096note2_data="The first note for the second commit"
1097note3_data="The first note for the third commit"
1098note1b_data="The second note for the first commit"
1099note1c_data="The third note for the first commit"
1100note2b_data="The second note for the second commit"
1101
1102test_tick
1103cat >input <<INPUT_END
1104blob
1105mark :2
1106data <<EOF
1107$file2_data
1108EOF
1109
1110commit refs/heads/notes-test
1111mark :3
1112committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1113data <<COMMIT
1114first (:3)
1115COMMIT
1116
1117M 644 :2 file2
1118
1119blob
1120mark :4
1121data $file4_len
1122$file4_data
1123commit refs/heads/notes-test
1124mark :5
1125committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1126data <<COMMIT
1127second (:5)
1128COMMIT
1129
1130M 644 :4 file4
1131
1132commit refs/heads/notes-test
1133mark :6
1134committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1135data <<COMMIT
1136third (:6)
1137COMMIT
1138
1139M 644 inline file5
1140data <<EOF
1141$file5_data
1142EOF
1143
1144M 755 inline file6
1145data <<EOF
1146$file6_data
1147EOF
1148
1149blob
1150mark :7
1151data <<EOF
1152$note1_data
1153EOF
1154
1155blob
1156mark :8
1157data <<EOF
1158$note2_data
1159EOF
1160
1161commit refs/notes/foobar
1162mark :9
1163committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1164data <<COMMIT
1165notes (:9)
1166COMMIT
1167
1168N :7 :3
1169N :8 :5
1170N inline :6
1171data <<EOF
1172$note3_data
1173EOF
1174
1175commit refs/notes/foobar
1176mark :10
1177committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1178data <<COMMIT
1179notes (:10)
1180COMMIT
1181
1182N inline :3
1183data <<EOF
1184$note1b_data
1185EOF
1186
1187commit refs/notes/foobar2
1188mark :11
1189committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1190data <<COMMIT
1191notes (:11)
1192COMMIT
1193
1194N inline :3
1195data <<EOF
1196$note1c_data
1197EOF
1198
1199commit refs/notes/foobar
1200mark :12
1201committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1202data <<COMMIT
1203notes (:12)
1204COMMIT
1205
1206deleteall
1207N inline :5
1208data <<EOF
1209$note2b_data
1210EOF
1211
1212INPUT_END
1213
1214test_expect_success \
1215 'Q: commit notes' \
1216 'git fast-import <input &&
1217 git whatchanged notes-test'
1218test_expect_success \
1219 'Q: verify pack' \
1220 'for p in .git/objects/pack/*.pack;do git verify-pack $p||exit;done'
1221
1222commit1=$(git rev-parse notes-test~2)
1223commit2=$(git rev-parse notes-test^)
1224commit3=$(git rev-parse notes-test)
1225
1226cat >expect <<EOF
1227author $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1228committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1229
1230first (:3)
1231EOF
1232test_expect_success \
1233 'Q: verify first commit' \
1234 'git cat-file commit notes-test~2 | sed 1d >actual &&
1235 test_cmp expect actual'
1236
1237cat >expect <<EOF
1238parent $commit1
1239author $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1240committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1241
1242second (:5)
1243EOF
1244test_expect_success \
1245 'Q: verify second commit' \
1246 'git cat-file commit notes-test^ | sed 1d >actual &&
1247 test_cmp expect actual'
1248
1249cat >expect <<EOF
1250parent $commit2
1251author $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1252committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1253
1254third (:6)
1255EOF
1256test_expect_success \
1257 'Q: verify third commit' \
1258 'git cat-file commit notes-test | sed 1d >actual &&
1259 test_cmp expect actual'
1260
1261cat >expect <<EOF
1262author $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1263committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1264
1265notes (:9)
1266EOF
1267test_expect_success \
1268 'Q: verify first notes commit' \
1269 'git cat-file commit refs/notes/foobar~2 | sed 1d >actual &&
1270 test_cmp expect actual'
1271
1272cat >expect.unsorted <<EOF
1273100644 blob $commit1
1274100644 blob $commit2
1275100644 blob $commit3
1276EOF
1277cat expect.unsorted | sort >expect
1278test_expect_success \
1279 'Q: verify first notes tree' \
1280 'git cat-file -p refs/notes/foobar~2^{tree} | sed "s/ [0-9a-f]* / /" >actual &&
1281 test_cmp expect actual'
1282
1283echo "$note1_data" >expect
1284test_expect_success \
1285 'Q: verify first note for first commit' \
1286 'git cat-file blob refs/notes/foobar~2:$commit1 >actual && test_cmp expect actual'
1287
1288echo "$note2_data" >expect
1289test_expect_success \
1290 'Q: verify first note for second commit' \
1291 'git cat-file blob refs/notes/foobar~2:$commit2 >actual && test_cmp expect actual'
1292
1293echo "$note3_data" >expect
1294test_expect_success \
1295 'Q: verify first note for third commit' \
1296 'git cat-file blob refs/notes/foobar~2:$commit3 >actual && test_cmp expect actual'
1297
1298cat >expect <<EOF
1299parent `git rev-parse --verify refs/notes/foobar~2`
1300author $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1301committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1302
1303notes (:10)
1304EOF
1305test_expect_success \
1306 'Q: verify second notes commit' \
1307 'git cat-file commit refs/notes/foobar^ | sed 1d >actual &&
1308 test_cmp expect actual'
1309
1310cat >expect.unsorted <<EOF
1311100644 blob $commit1
1312100644 blob $commit2
1313100644 blob $commit3
1314EOF
1315cat expect.unsorted | sort >expect
1316test_expect_success \
1317 'Q: verify second notes tree' \
1318 'git cat-file -p refs/notes/foobar^^{tree} | sed "s/ [0-9a-f]* / /" >actual &&
1319 test_cmp expect actual'
1320
1321echo "$note1b_data" >expect
1322test_expect_success \
1323 'Q: verify second note for first commit' \
1324 'git cat-file blob refs/notes/foobar^:$commit1 >actual && test_cmp expect actual'
1325
1326echo "$note2_data" >expect
1327test_expect_success \
1328 'Q: verify first note for second commit' \
1329 'git cat-file blob refs/notes/foobar^:$commit2 >actual && test_cmp expect actual'
1330
1331echo "$note3_data" >expect
1332test_expect_success \
1333 'Q: verify first note for third commit' \
1334 'git cat-file blob refs/notes/foobar^:$commit3 >actual && test_cmp expect actual'
1335
1336cat >expect <<EOF
1337author $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1338committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1339
1340notes (:11)
1341EOF
1342test_expect_success \
1343 'Q: verify third notes commit' \
1344 'git cat-file commit refs/notes/foobar2 | sed 1d >actual &&
1345 test_cmp expect actual'
1346
1347cat >expect.unsorted <<EOF
1348100644 blob $commit1
1349EOF
1350cat expect.unsorted | sort >expect
1351test_expect_success \
1352 'Q: verify third notes tree' \
1353 'git cat-file -p refs/notes/foobar2^{tree} | sed "s/ [0-9a-f]* / /" >actual &&
1354 test_cmp expect actual'
1355
1356echo "$note1c_data" >expect
1357test_expect_success \
1358 'Q: verify third note for first commit' \
1359 'git cat-file blob refs/notes/foobar2:$commit1 >actual && test_cmp expect actual'
1360
1361cat >expect <<EOF
1362parent `git rev-parse --verify refs/notes/foobar^`
1363author $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1364committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1365
1366notes (:12)
1367EOF
1368test_expect_success \
1369 'Q: verify fourth notes commit' \
1370 'git cat-file commit refs/notes/foobar | sed 1d >actual &&
1371 test_cmp expect actual'
1372
1373cat >expect.unsorted <<EOF
1374100644 blob $commit2
1375EOF
1376cat expect.unsorted | sort >expect
1377test_expect_success \
1378 'Q: verify fourth notes tree' \
1379 'git cat-file -p refs/notes/foobar^{tree} | sed "s/ [0-9a-f]* / /" >actual &&
1380 test_cmp expect actual'
1381
1382echo "$note2b_data" >expect
1383test_expect_success \
1384 'Q: verify second note for second commit' \
1385 'git cat-file blob refs/notes/foobar:$commit2 >actual && test_cmp expect actual'
1386
1387###
1388### series R (feature and option)
1389###
1390
1391cat >input <<EOF
1392feature no-such-feature-exists
1393EOF
1394
1395test_expect_success 'R: abort on unsupported feature' '
1396 test_must_fail git fast-import <input
1397'
1398
1399cat >input <<EOF
1400feature date-format=now
1401EOF
1402
1403test_expect_success 'R: supported feature is accepted' '
1404 git fast-import <input
1405'
1406
1407cat >input << EOF
1408blob
1409data 3
1410hi
1411feature date-format=now
1412EOF
1413
1414test_expect_success 'R: abort on receiving feature after data command' '
1415 test_must_fail git fast-import <input
1416'
1417
1418cat >input << EOF
1419feature import-marks=git.marks
1420feature import-marks=git2.marks
1421EOF
1422
1423test_expect_success 'R: only one import-marks feature allowed per stream' '
1424 test_must_fail git fast-import <input
1425'
1426
1427cat >input << EOF
1428feature export-marks=git.marks
1429blob
1430mark :1
1431data 3
1432hi
1433
1434EOF
1435
1436test_expect_success \
1437 'R: export-marks feature results in a marks file being created' \
1438 'cat input | git fast-import &&
1439 grep :1 git.marks'
1440
1441test_expect_success \
1442 'R: export-marks options can be overriden by commandline options' \
1443 'cat input | git fast-import --export-marks=other.marks &&
1444 grep :1 other.marks'
1445
1446cat >input << EOF
1447feature import-marks=marks.out
1448feature export-marks=marks.new
1449EOF
1450
1451test_expect_success \
1452 'R: import to output marks works without any content' \
1453 'cat input | git fast-import &&
1454 test_cmp marks.out marks.new'
1455
1456cat >input <<EOF
1457feature import-marks=nonexistant.marks
1458feature export-marks=marks.new
1459EOF
1460
1461test_expect_success \
1462 'R: import marks prefers commandline marks file over the stream' \
1463 'cat input | git fast-import --import-marks=marks.out &&
1464 test_cmp marks.out marks.new'
1465
1466
1467cat >input <<EOF
1468feature import-marks=nonexistant.marks
1469feature export-marks=combined.marks
1470EOF
1471
1472test_expect_success 'R: multiple --import-marks= should be honoured' '
1473 head -n2 marks.out > one.marks &&
1474 tail -n +3 marks.out > two.marks &&
1475 git fast-import --import-marks=one.marks --import-marks=two.marks <input &&
1476 test_cmp marks.out combined.marks
1477'
1478
1479cat >input <<EOF
1480feature relative-marks
1481feature import-marks=relative.in
1482feature export-marks=relative.out
1483EOF
1484
1485test_expect_success 'R: feature relative-marks should be honoured' '
1486 mkdir -p .git/info/fast-import/ &&
1487 cp marks.new .git/info/fast-import/relative.in &&
1488 git fast-import <input &&
1489 test_cmp marks.new .git/info/fast-import/relative.out
1490'
1491
1492cat >input <<EOF
1493feature relative-marks
1494feature import-marks=relative.in
1495feature no-relative-marks
1496feature export-marks=non-relative.out
1497EOF
1498
1499test_expect_success 'R: feature no-relative-marks should be honoured' '
1500 git fast-import <input &&
1501 test_cmp marks.new non-relative.out
1502'
1503
1504cat >input << EOF
1505option git quiet
1506blob
1507data 3
1508hi
1509
1510EOF
1511
1512touch empty
1513
1514test_expect_success 'R: quiet option results in no stats being output' '
1515 cat input | git fast-import 2> output &&
1516 test_cmp empty output
1517'
1518
1519cat >input <<EOF
1520option git non-existing-option
1521EOF
1522
1523test_expect_success 'R: die on unknown option' '
1524 test_must_fail git fast-import <input
1525'
1526
1527test_expect_success 'R: unknown commandline options are rejected' '\
1528 test_must_fail git fast-import --non-existing-option < /dev/null
1529'
1530
1531cat >input <<EOF
1532option non-existing-vcs non-existing-option
1533EOF
1534
1535test_expect_success 'R: ignore non-git options' '
1536 git fast-import <input
1537'
1538
1539##
1540## R: very large blobs
1541##
1542blobsize=$((2*1024*1024 + 53))
1543test-genrandom bar $blobsize >expect
1544cat >input <<INPUT_END
1545commit refs/heads/big-file
1546committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
1547data <<COMMIT
1548R - big file
1549COMMIT
1550
1551M 644 inline big1
1552data $blobsize
1553INPUT_END
1554cat expect >>input
1555cat >>input <<INPUT_END
1556M 644 inline big2
1557data $blobsize
1558INPUT_END
1559cat expect >>input
1560echo >>input
1561
1562test_expect_success \
1563 'R: blob bigger than threshold' \
1564 'test_create_repo R &&
1565 git --git-dir=R/.git fast-import --big-file-threshold=1 <input'
1566test_expect_success \
1567 'R: verify created pack' \
1568 ': >verify &&
1569 for p in R/.git/objects/pack/*.pack;
1570 do
1571 git verify-pack -v $p >>verify || exit;
1572 done'
1573test_expect_success \
1574 'R: verify written objects' \
1575 'git --git-dir=R/.git cat-file blob big-file:big1 >actual &&
1576 test_cmp expect actual &&
1577 a=$(git --git-dir=R/.git rev-parse big-file:big1) &&
1578 b=$(git --git-dir=R/.git rev-parse big-file:big2) &&
1579 test $a = $b'
1580test_expect_success \
1581 'R: blob appears only once' \
1582 'n=$(grep $a verify | wc -l) &&
1583 test 1 = $n'
1584
1585test_done