]> git.ipfire.org Git - thirdparty/git.git/blame - t/t9350-fast-export.sh
Merge branch 'jx/t5411-unique-filenames'
[thirdparty/git.git] / t / t9350-fast-export.sh
CommitLineData
f2dc849e
JS
1#!/bin/sh
2#
3# Copyright (c) 2007 Johannes E. Schindelin
4#
5
eaa2a6fc 6test_description='git fast-export'
a881baa2 7GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
334afbc7
JS
8export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
9
f2dc849e
JS
10. ./test-lib.sh
11
12test_expect_success 'setup' '
13
ebeec7db
EN
14 echo break it > file0 &&
15 git add file0 &&
16 test_tick &&
f2dc849e
JS
17 echo Wohlauf > file &&
18 git add file &&
19 test_tick &&
20 git commit -m initial &&
21 echo die Luft > file &&
22 echo geht frisch > file2 &&
23 git add file file2 &&
24 test_tick &&
25 git commit -m second &&
26 echo und > file2 &&
27 test_tick &&
28 git commit -m third file2 &&
29 test_tick &&
30 git tag rein &&
31 git checkout -b wer HEAD^ &&
a48fcd83 32 echo lange > file2 &&
f2dc849e
JS
33 test_tick &&
34 git commit -m sitzt file2 &&
35 test_tick &&
36 git tag -a -m valentin muss &&
a881baa2 37 git merge -s ours main
f2dc849e
JS
38
39'
40
41test_expect_success 'fast-export | fast-import' '
42
a881baa2 43 MAIN=$(git rev-parse --verify main) &&
f2dc849e
JS
44 REIN=$(git rev-parse --verify rein) &&
45 WER=$(git rev-parse --verify wer) &&
46 MUSS=$(git rev-parse --verify muss) &&
47 mkdir new &&
48 git --git-dir=new/.git init &&
a4d4e32a 49 git fast-export --all >actual &&
f2dc849e
JS
50 (cd new &&
51 git fast-import &&
a881baa2 52 test $MAIN = $(git rev-parse --verify refs/heads/main) &&
f2dc849e
JS
53 test $REIN = $(git rev-parse --verify refs/tags/rein) &&
54 test $WER = $(git rev-parse --verify refs/heads/wer) &&
a4d4e32a 55 test $MUSS = $(git rev-parse --verify refs/tags/muss)) <actual
f2dc849e
JS
56
57'
58
af2abd87
EN
59test_expect_success 'fast-export ^muss^{commit} muss' '
60 git fast-export --tag-of-filtered-object=rewrite ^muss^{commit} muss >actual &&
61 cat >expected <<-EOF &&
62 tag muss
63 from $(git rev-parse --verify muss^{commit})
64 $(git cat-file tag muss | grep tagger)
65 data 9
66 valentin
67
68 EOF
69 test_cmp expected actual
70'
71
a1638cfe
EN
72test_expect_success 'fast-export --mark-tags ^muss^{commit} muss' '
73 git fast-export --mark-tags --tag-of-filtered-object=rewrite ^muss^{commit} muss >actual &&
74 cat >expected <<-EOF &&
75 tag muss
76 mark :1
77 from $(git rev-parse --verify muss^{commit})
78 $(git cat-file tag muss | grep tagger)
79 data 9
80 valentin
81
82 EOF
83 test_cmp expected actual
84'
85
a881baa2 86test_expect_success 'fast-export main~2..main' '
f2dc849e 87
a881baa2
JS
88 git fast-export main~2..main >actual &&
89 sed "s/main/partial/" actual |
f2dc849e
JS
90 (cd new &&
91 git fast-import &&
a881baa2
JS
92 test $MAIN != $(git rev-parse --verify refs/heads/partial) &&
93 git diff --exit-code main partial &&
94 git diff --exit-code main^ partial^ &&
d492b31c 95 test_must_fail git rev-parse partial~2)
f2dc849e
JS
96
97'
98
a881baa2 99test_expect_success 'fast-export --reference-excluded-parents main~2..main' '
530ca19c 100
a881baa2
JS
101 git fast-export --reference-excluded-parents main~2..main >actual &&
102 grep commit.refs/heads/main actual >commit-count &&
530ca19c 103 test_line_count = 2 commit-count &&
a881baa2 104 sed "s/main/rewrite/" actual |
530ca19c
EN
105 (cd new &&
106 git fast-import &&
a881baa2 107 test $MAIN = $(git rev-parse --verify refs/heads/rewrite))
530ca19c
EN
108'
109
a965bb31
EN
110test_expect_success 'fast-export --show-original-ids' '
111
a881baa2 112 git fast-export --show-original-ids main >output &&
a965bb31 113 grep ^original-oid output| sed -e s/^original-oid.// | sort >actual &&
a881baa2 114 git rev-list --objects main muss >objects-and-names &&
a965bb31
EN
115 awk "{print \$1}" objects-and-names | sort >commits-trees-blobs &&
116 comm -23 actual commits-trees-blobs >unfound &&
117 test_must_be_empty unfound
118'
119
120test_expect_success 'fast-export --show-original-ids | git fast-import' '
121
a881baa2
JS
122 git fast-export --show-original-ids main muss | git fast-import --quiet &&
123 test $MAIN = $(git rev-parse --verify refs/heads/main) &&
a965bb31
EN
124 test $MUSS = $(git rev-parse --verify refs/tags/muss)
125'
126
e80001f8 127test_expect_success 'reencoding iso-8859-7' '
f2dc849e 128
32615ce7
EN
129 test_when_finished "git reset --hard HEAD~1" &&
130 test_config i18n.commitencoding iso-8859-7 &&
f2dc849e
JS
131 test_tick &&
132 echo rosten >file &&
32615ce7 133 git commit -s -F "$TEST_DIRECTORY/t9350/simple-iso-8859-7-commit-message.txt" file &&
e80001f8 134 git fast-export --reencode=yes wer^..wer >iso-8859-7.fi &&
32615ce7 135 sed "s/wer/i18n/" iso-8859-7.fi |
f2dc849e
JS
136 (cd new &&
137 git fast-import &&
831279d3 138 # The commit object, if not re-encoded, would be 200 bytes plus hash.
32615ce7
EN
139 # Removing the "encoding iso-8859-7\n" header drops 20 bytes.
140 # Re-encoding the Pi character from \xF0 (\360) in iso-8859-7
141 # to \xCF\x80 (\317\200) in UTF-8 adds a byte. Check for
142 # the expected size.
831279d3 143 test $(($(test_oid hexsz) + 181)) -eq "$(git cat-file -s i18n)" &&
32615ce7 144 # ...and for the expected translation of bytes.
a4d4e32a 145 git cat-file commit i18n >actual &&
32615ce7
EN
146 grep $(printf "\317\200") actual &&
147 # Also make sure the commit does not have the "encoding" header
148 ! grep ^encoding actual)
df6a7ff7 149'
32615ce7 150
e80001f8
EN
151test_expect_success 'aborting on iso-8859-7' '
152
153 test_when_finished "git reset --hard HEAD~1" &&
154 test_config i18n.commitencoding iso-8859-7 &&
155 echo rosten >file &&
156 git commit -s -F "$TEST_DIRECTORY/t9350/simple-iso-8859-7-commit-message.txt" file &&
157 test_must_fail git fast-export --reencode=abort wer^..wer >iso-8859-7.fi
158'
159
160test_expect_success 'preserving iso-8859-7' '
161
162 test_when_finished "git reset --hard HEAD~1" &&
163 test_config i18n.commitencoding iso-8859-7 &&
164 echo rosten >file &&
165 git commit -s -F "$TEST_DIRECTORY/t9350/simple-iso-8859-7-commit-message.txt" file &&
166 git fast-export --reencode=no wer^..wer >iso-8859-7.fi &&
167 sed "s/wer/i18n-no-recoding/" iso-8859-7.fi |
168 (cd new &&
169 git fast-import &&
831279d3 170 # The commit object, if not re-encoded, is 200 bytes plus hash.
e80001f8
EN
171 # Removing the "encoding iso-8859-7\n" header would drops 20
172 # bytes. Re-encoding the Pi character from \xF0 (\360) in
173 # iso-8859-7 to \xCF\x80 (\317\200) in UTF-8 adds a byte.
174 # Check for the expected size...
831279d3 175 test $(($(test_oid hexsz) + 200)) -eq "$(git cat-file -s i18n-no-recoding)" &&
e80001f8
EN
176 # ...as well as the expected byte.
177 git cat-file commit i18n-no-recoding >actual &&
178 grep $(printf "\360") actual &&
179 # Also make sure the commit has the "encoding" header
180 grep ^encoding actual)
181'
182
ccbfc96d
EN
183test_expect_success 'encoding preserved if reencoding fails' '
184
185 test_when_finished "git reset --hard HEAD~1" &&
186 test_config i18n.commitencoding iso-8859-7 &&
187 echo rosten >file &&
188 git commit -s -F "$TEST_DIRECTORY/t9350/broken-iso-8859-7-commit-message.txt" file &&
e80001f8 189 git fast-export --reencode=yes wer^..wer >iso-8859-7.fi &&
ccbfc96d
EN
190 sed "s/wer/i18n-invalid/" iso-8859-7.fi |
191 (cd new &&
192 git fast-import &&
193 git cat-file commit i18n-invalid >actual &&
194 # Make sure the commit still has the encoding header
195 grep ^encoding actual &&
196 # Verify that the commit has the expected size; i.e.
197 # that no bytes were re-encoded to a different encoding.
831279d3 198 test $(($(test_oid hexsz) + 212)) -eq "$(git cat-file -s i18n-invalid)" &&
ccbfc96d
EN
199 # ...and check for the original special bytes
200 grep $(printf "\360") actual &&
201 grep $(printf "\377") actual)
202'
203
df6a7ff7
PB
204test_expect_success 'import/export-marks' '
205
a881baa2 206 git checkout -b marks main &&
df6a7ff7
PB
207 git fast-export --export-marks=tmp-marks HEAD &&
208 test -s tmp-marks &&
3fb0459b 209 test_line_count = 3 tmp-marks &&
a4d4e32a
PK
210 git fast-export --import-marks=tmp-marks \
211 --export-marks=tmp-marks HEAD >actual &&
212 test $(grep ^commit actual | wc -l) -eq 0 &&
df6a7ff7
PB
213 echo change > file &&
214 git commit -m "last commit" file &&
a4d4e32a
PK
215 git fast-export --import-marks=tmp-marks \
216 --export-marks=tmp-marks HEAD >actual &&
217 test $(grep ^commit\ actual | wc -l) -eq 1 &&
3fb0459b 218 test_line_count = 4 tmp-marks
df6a7ff7 219
f2dc849e
JS
220'
221
222cat > signed-tag-import << EOF
223tag sign-your-name
224from $(git rev-parse HEAD)
225tagger C O Mitter <committer@example.com> 1112911993 -0700
226data 210
227A message for a sign
228-----BEGIN PGP SIGNATURE-----
229Version: GnuPG v1.4.5 (GNU/Linux)
230
231fakedsignaturefakedsignaturefakedsignaturefakedsignaturfakedsign
232aturefakedsignaturefake=
233=/59v
234-----END PGP SIGNATURE-----
235EOF
236
237test_expect_success 'set up faked signed tag' '
238
239 cat signed-tag-import | git fast-import
240
241'
242
243test_expect_success 'signed-tags=abort' '
244
d492b31c 245 test_must_fail git fast-export --signed-tags=abort sign-your-name
f2dc849e
JS
246
247'
248
ee4bc371 249test_expect_success 'signed-tags=verbatim' '
f2dc849e 250
ee4bc371 251 git fast-export --signed-tags=verbatim sign-your-name > output &&
f2dc849e
JS
252 grep PGP output
253
254'
255
256test_expect_success 'signed-tags=strip' '
257
258 git fast-export --signed-tags=strip sign-your-name > output &&
259 ! grep PGP output
260
261'
262
cd16c59b
JK
263test_expect_success 'signed-tags=warn-strip' '
264 git fast-export --signed-tags=warn-strip sign-your-name >output 2>err &&
265 ! grep PGP output &&
266 test -s err
267'
268
03db4525
AG
269test_expect_success 'setup submodule' '
270
a881baa2 271 git checkout -f main &&
03db4525 272 mkdir sub &&
4c367c6a
JH
273 (
274 cd sub &&
275 git init &&
276 echo test file > file &&
277 git add file &&
278 git commit -m sub_initial
279 ) &&
c7b793a1 280 git submodule add "$(pwd)/sub" sub &&
03db4525
AG
281 git commit -m initial &&
282 test_tick &&
4c367c6a
JH
283 (
284 cd sub &&
285 echo more data >> file &&
286 git add file &&
287 git commit -m sub_second
288 ) &&
03db4525
AG
289 git add sub &&
290 git commit -m second
291
292'
293
294test_expect_success 'submodule fast-export | fast-import' '
295
a881baa2
JS
296 SUBENT1=$(git ls-tree main^ sub) &&
297 SUBENT2=$(git ls-tree main sub) &&
03db4525
AG
298 rm -rf new &&
299 mkdir new &&
300 git --git-dir=new/.git init &&
a4d4e32a 301 git fast-export --signed-tags=strip --all >actual &&
03db4525
AG
302 (cd new &&
303 git fast-import &&
a881baa2
JS
304 test "$SUBENT1" = "$(git ls-tree refs/heads/main^ sub)" &&
305 test "$SUBENT2" = "$(git ls-tree refs/heads/main sub)" &&
306 git checkout main &&
03db4525
AG
307 git submodule init &&
308 git submodule update &&
a4d4e32a 309 cmp sub/file ../sub/file) <actual
03db4525
AG
310
311'
312
91e80b98
JH
313GIT_AUTHOR_NAME='A U Thor'; export GIT_AUTHOR_NAME
314GIT_COMMITTER_NAME='C O Mitter'; export GIT_COMMITTER_NAME
ae7c5dce
AG
315
316test_expect_success 'setup copies' '
317
ae7c5dce
AG
318 git checkout -b copy rein &&
319 git mv file file3 &&
320 git commit -m move1 &&
321 test_tick &&
322 cp file2 file4 &&
323 git add file4 &&
324 git mv file2 file5 &&
325 git commit -m copy1 &&
326 test_tick &&
327 cp file3 file6 &&
328 git add file6 &&
329 git commit -m copy2 &&
330 test_tick &&
331 echo more text >> file6 &&
332 echo even more text >> file6 &&
333 git add file6 &&
334 git commit -m modify &&
335 test_tick &&
336 cp file6 file7 &&
337 echo test >> file7 &&
338 git add file7 &&
339 git commit -m copy_modify
340
341'
342
343test_expect_success 'fast-export -C -C | fast-import' '
344
345 ENTRY=$(git rev-parse --verify copy) &&
346 rm -rf new &&
347 mkdir new &&
348 git --git-dir=new/.git init &&
349 git fast-export -C -C --signed-tags=strip --all > output &&
b3e8ca89 350 grep "^C file2 file4\$" output &&
ae7c5dce
AG
351 cat output |
352 (cd new &&
353 git fast-import &&
354 test $ENTRY = $(git rev-parse --verify refs/heads/copy))
355
356'
357
a881baa2 358test_expect_success 'fast-export | fast-import when main is tagged' '
283b9532
MV
359
360 git tag -m msg last &&
361 git fast-export -C -C --signed-tags=strip --all > output &&
362 test $(grep -c "^tag " output) = 3
363
364'
365
4e46a8d6
JS
366cat > tag-content << EOF
367object $(git rev-parse HEAD)
368type commit
369tag rosten
370EOF
371
372test_expect_success 'cope with tagger-less tags' '
373
374 TAG=$(git hash-object -t tag -w tag-content) &&
375 git update-ref refs/tags/sonnenschein $TAG &&
376 git fast-export -C -C --signed-tags=strip --all > output &&
377 test $(grep -c "^tag " output) = 4 &&
378 ! grep "Unspecified Tagger" output &&
379 git fast-export -C -C --signed-tags=strip --all \
380 --fake-missing-tagger > output &&
381 test $(grep -c "^tag " output) = 4 &&
382 grep "Unspecified Tagger" output
383
384'
385
25e0ca5d
EN
386test_expect_success 'setup for limiting exports by PATH' '
387 mkdir limit-by-paths &&
4c367c6a
JH
388 (
389 cd limit-by-paths &&
390 git init &&
391 echo hi > there &&
392 git add there &&
393 git commit -m "First file" &&
394 echo foo > bar &&
395 git add bar &&
396 git commit -m "Second file" &&
397 git tag -a -m msg mytag &&
398 echo morefoo >> bar &&
399 git add bar &&
400 git commit -m "Change to second file"
401 )
25e0ca5d
EN
402'
403
404cat > limit-by-paths/expected << EOF
405blob
406mark :1
407data 3
408hi
409
410reset refs/tags/mytag
411commit refs/tags/mytag
412mark :2
413author A U Thor <author@example.com> 1112912713 -0700
414committer C O Mitter <committer@example.com> 1112912713 -0700
415data 11
416First file
417M 100644 :1 there
418
419EOF
420
421test_expect_success 'dropping tag of filtered out object' '
4c367c6a 422(
25e0ca5d
EN
423 cd limit-by-paths &&
424 git fast-export --tag-of-filtered-object=drop mytag -- there > output &&
9ff10fc8 425 test_cmp expected output
4c367c6a 426)
25e0ca5d
EN
427'
428
429cat >> limit-by-paths/expected << EOF
430tag mytag
431from :2
432tagger C O Mitter <committer@example.com> 1112912713 -0700
433data 4
434msg
435
436EOF
437
438test_expect_success 'rewriting tag of filtered out object' '
4c367c6a 439(
25e0ca5d
EN
440 cd limit-by-paths &&
441 git fast-export --tag-of-filtered-object=rewrite mytag -- there > output &&
9ff10fc8 442 test_cmp expected output
4c367c6a 443)
25e0ca5d
EN
444'
445
1f30c904
EN
446test_expect_success 'rewrite tag predating pathspecs to nothing' '
447 test_create_repo rewrite_tag_predating_pathspecs &&
448 (
449 cd rewrite_tag_predating_pathspecs &&
450
451 test_commit initial &&
452
453 git tag -a -m "Some old tag" v0.0.0.0.0.0.1 &&
454
455 test_commit bar &&
456
457 git fast-export --tag-of-filtered-object=rewrite --all -- bar.t >output &&
458 grep from.$ZERO_OID output
459 )
460'
461
25e0ca5d
EN
462cat > limit-by-paths/expected << EOF
463blob
464mark :1
465data 4
466foo
467
468blob
469mark :2
470data 3
471hi
472
a881baa2
JS
473reset refs/heads/main
474commit refs/heads/main
25e0ca5d
EN
475mark :3
476author A U Thor <author@example.com> 1112912713 -0700
477committer C O Mitter <committer@example.com> 1112912713 -0700
478data 12
479Second file
480M 100644 :1 bar
481M 100644 :2 there
482
483EOF
484
485test_expect_failure 'no exact-ref revisions included' '
4c367c6a
JH
486 (
487 cd limit-by-paths &&
a881baa2 488 git fast-export main~2..main~1 > output &&
9ff10fc8 489 test_cmp expected output
4c367c6a 490 )
25e0ca5d
EN
491'
492
4087a02e
EN
493test_expect_success 'path limiting with import-marks does not lose unmodified files' '
494 git checkout -b simple marks~2 &&
495 git fast-export --export-marks=marks simple -- file > /dev/null &&
496 echo more content >> file &&
497 test_tick &&
498 git commit -mnext file &&
a4d4e32a
PK
499 git fast-export --import-marks=marks simple -- file file0 >actual &&
500 grep file0 actual
4087a02e
EN
501'
502
cd13762d
EN
503test_expect_success 'avoid corrupt stream with non-existent mark' '
504 test_create_repo avoid_non_existent_mark &&
505 (
506 cd avoid_non_existent_mark &&
507
508 test_commit important-path &&
509
510 test_commit ignored &&
511
512 git branch A &&
513 git branch B &&
514
515 echo foo >>important-path.t &&
516 git add important-path.t &&
517 test_commit more changes &&
518
519 git fast-export --all -- important-path.t | git fast-import --force
520 )
521'
522
7f40ab09
EN
523test_expect_success 'full-tree re-shows unmodified files' '
524 git checkout -f simple &&
a4d4e32a
PK
525 git fast-export --full-tree simple >actual &&
526 test $(grep -c file0 actual) -eq 3
7f40ab09
EN
527'
528
41a5c70f 529test_expect_success 'set-up a few more tags for tag export tests' '
a881baa2 530 git checkout -f main &&
c7b793a1 531 HEAD_TREE=$(git show -s --pretty=raw HEAD | grep tree | sed "s/tree //") &&
41a5c70f
EFL
532 git tag tree_tag -m "tagging a tree" $HEAD_TREE &&
533 git tag -a tree_tag-obj -m "tagging a tree" $HEAD_TREE &&
534 git tag tag-obj_tag -m "tagging a tag" tree_tag-obj &&
535 git tag -a tag-obj_tag-obj -m "tagging a tag" tree_tag-obj
536'
537
02c48cd6
EN
538test_expect_success 'tree_tag' '
539 mkdir result &&
540 (cd result && git init) &&
541 git fast-export tree_tag > fe-stream &&
542 (cd result && git fast-import < ../fe-stream)
543'
544
41a5c70f 545# NEEDSWORK: not just check return status, but validate the output
8d7d33c1 546# Note that these tests DO NOTHING other than print a warning that
7a40cf15 547# they are omitting the one tag we asked them to export (because the
8d7d33c1
EN
548# tags resolve to a tree). They exist just to make sure we do not
549# abort but instead just warn.
c0582c53 550test_expect_success 'tree_tag-obj' 'git fast-export tree_tag-obj'
1982467d
EFL
551test_expect_success 'tag-obj_tag' 'git fast-export tag-obj_tag'
552test_expect_success 'tag-obj_tag-obj' 'git fast-export tag-obj_tag-obj'
41a5c70f 553
8d7d33c1 554test_expect_success 'handling tags of blobs' '
a881baa2 555 git tag -a -m "Tag of a blob" blobtag $(git rev-parse main:file) &&
8d7d33c1
EN
556 git fast-export blobtag >actual &&
557 cat >expect <<-EOF &&
558 blob
559 mark :1
560 data 9
561 die Luft
562
563 tag blobtag
564 from :1
565 tagger $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
566 data 14
567 Tag of a blob
568
569 EOF
570 test_cmp expect actual
571'
572
941790d7 573test_expect_success 'handling nested tags' '
8d7d33c1
EN
574 git tag -a -m "This is a nested tag" nested muss &&
575 git fast-export --mark-tags nested >output &&
576 grep "^from $ZERO_OID$" output &&
577 grep "^tag nested$" output >tag_lines &&
578 test_line_count = 2 tag_lines
579'
580
889c6f0e 581test_expect_success 'directory becomes symlink' '
f15652d9
EN
582 git init dirtosymlink &&
583 git init result &&
584 (
585 cd dirtosymlink &&
586 mkdir foo &&
587 mkdir bar &&
588 echo hello > foo/world &&
589 echo hello > bar/world &&
590 git add foo/world bar/world &&
591 git commit -q -mone &&
592 git rm -r foo &&
889c6f0e 593 test_ln_s_add bar foo &&
f15652d9
EN
594 git commit -q -mtwo
595 ) &&
596 (
597 cd dirtosymlink &&
a881baa2 598 git fast-export main -- foo |
f15652d9
EN
599 (cd ../result && git fast-import --quiet)
600 ) &&
a881baa2 601 (cd result && git show main:foo)
f15652d9
EN
602'
603
6280dfdc
JK
604test_expect_success 'fast-export quotes pathnames' '
605 git init crazy-paths &&
e1d911dd 606 test_config -C crazy-paths core.protectNTFS false &&
6280dfdc 607 (cd crazy-paths &&
c7b793a1 608 blob=$(echo foo | git hash-object -w --stdin) &&
35edce20 609 git -c core.protectNTFS=false update-index --add \
6280dfdc
JK
610 --cacheinfo 100644 $blob "$(printf "path with\\nnewline")" \
611 --cacheinfo 100644 $blob "path with \"quote\"" \
612 --cacheinfo 100644 $blob "path with \\backslash" \
613 --cacheinfo 100644 $blob "path with space" &&
614 git commit -m addition &&
94221d22 615 git ls-files -z -s | perl -0pe "s{\\t}{$&subdir/}" >index &&
6280dfdc
JK
616 git read-tree --empty &&
617 git update-index -z --index-info <index &&
618 git commit -m rename &&
619 git read-tree --empty &&
620 git commit -m deletion &&
ff59f6da 621 git fast-export -M HEAD >export.out &&
6280dfdc
JK
622 git rev-list HEAD >expect &&
623 git init result &&
624 cd result &&
625 git fast-import <../export.out &&
626 git rev-list HEAD >actual &&
627 test_cmp ../expect actual
628 )
629'
630
5d3698ff 631test_expect_success 'test bidirectionality' '
5d3698ff 632 git init marks-test &&
208d6924
EN
633 git fast-export --export-marks=marks-cur --import-marks-if-exists=marks-cur --branches | \
634 git --git-dir=marks-test/.git fast-import --export-marks=marks-new --import-marks-if-exists=marks-new &&
5d3698ff
FC
635 (cd marks-test &&
636 git reset --hard &&
637 echo Wohlauf > file &&
638 git commit -a -m "back in time") &&
208d6924
EN
639 git --git-dir=marks-test/.git fast-export --export-marks=marks-new --import-marks-if-exists=marks-new --branches | \
640 git fast-import --export-marks=marks-cur --import-marks-if-exists=marks-cur
5d3698ff
FC
641'
642
49266e8a
FC
643cat > expected << EOF
644blob
645mark :13
646data 5
647bump
648
a881baa2 649commit refs/heads/main
49266e8a
FC
650mark :14
651author A U Thor <author@example.com> 1112912773 -0700
652committer C O Mitter <committer@example.com> 1112912773 -0700
653data 5
654bump
655from :12
656M 100644 :13 file
657
658EOF
659
660test_expect_success 'avoid uninteresting refs' '
661 > tmp-marks &&
662 git fast-export --import-marks=tmp-marks \
a881baa2 663 --export-marks=tmp-marks main > /dev/null &&
49266e8a
FC
664 git tag v1.0 &&
665 git branch uninteresting &&
666 echo bump > file &&
667 git commit -a -m bump &&
668 git fast-export --import-marks=tmp-marks \
a881baa2 669 --export-marks=tmp-marks ^uninteresting ^v1.0 main > actual &&
49266e8a
FC
670 test_cmp expected actual
671'
672
f28e7c90 673cat > expected << EOF
a881baa2 674reset refs/heads/main
f28e7c90
FC
675from :14
676
677EOF
678
679test_expect_success 'refs are updated even if no commits need to be exported' '
680 > tmp-marks &&
681 git fast-export --import-marks=tmp-marks \
a881baa2 682 --export-marks=tmp-marks main > /dev/null &&
f28e7c90 683 git fast-export --import-marks=tmp-marks \
a881baa2 684 --export-marks=tmp-marks main > actual &&
f28e7c90
FC
685 test_cmp expected actual
686'
687
03e9010c 688test_expect_success 'use refspec' '
a881baa2 689 git fast-export --refspec refs/heads/main:refs/heads/foobar main >actual2 &&
a4d4e32a 690 grep "^commit " actual2 | sort | uniq >actual &&
03e9010c
FC
691 echo "commit refs/heads/foobar" > expected &&
692 test_cmp expected actual
693'
694
fdf31b63 695test_expect_success 'delete ref because entire history excluded' '
60ed2643 696 git branch to-delete &&
fdf31b63
EN
697 git fast-export to-delete ^to-delete >actual &&
698 cat >expected <<-EOF &&
699 reset refs/heads/to-delete
831279d3 700 from $ZERO_OID
fdf31b63
EN
701
702 EOF
703 test_cmp expected actual
704'
705
706test_expect_success 'delete refspec' '
707 git fast-export --refspec :refs/heads/to-delete >actual &&
708 cat >expected <<-EOF &&
60ed2643 709 reset refs/heads/to-delete
831279d3 710 from $ZERO_OID
60ed2643
FC
711
712 EOF
713 test_cmp expected actual
714'
715
b3e8ca89
JT
716test_expect_success 'when using -C, do not declare copy when source of copy is also modified' '
717 test_create_repo src &&
718 echo a_line >src/file.txt &&
719 git -C src add file.txt &&
720 git -C src commit -m 1st_commit &&
721
722 cp src/file.txt src/file2.txt &&
723 echo another_line >>src/file.txt &&
724 git -C src add file.txt file2.txt &&
725 git -C src commit -m 2nd_commit &&
726
727 test_create_repo dst &&
a4d4e32a
PK
728 git -C src fast-export --all -C >actual &&
729 git -C dst fast-import <actual &&
b3e8ca89
JT
730 git -C src show >expected &&
731 git -C dst show >actual &&
732 test_cmp expected actual
733'
734
be011bbe
735test_expect_success 'merge commit gets exported with --import-marks' '
736 test_create_repo merging &&
737 (
738 cd merging &&
739 test_commit initial &&
740 git checkout -b topic &&
741 test_commit on-topic &&
a881baa2
JS
742 git checkout main &&
743 test_commit on-main &&
be011bbe
744 test_tick &&
745 git merge --no-ff -m Yeah topic &&
746
747 echo ":1 $(git rev-parse HEAD^^)" >marks &&
a881baa2 748 git fast-export --import-marks=marks main >out &&
be011bbe
749 grep Yeah out
750 )
751'
752
f2dc849e 753test_done