3 # Copyright (c) 2007 Johannes E. Schindelin
6 test_description
='git fast-export'
9 test_expect_success
'setup' '
11 echo break it > file0 &&
14 echo Wohlauf > file &&
17 git commit -m initial &&
18 echo die Luft > file &&
19 echo geht frisch > file2 &&
22 git commit -m second &&
25 git commit -m third file2 &&
28 git checkout -b wer HEAD^ &&
31 git commit -m sitzt file2 &&
33 git tag -a -m valentin muss &&
34 git merge -s ours master
38 test_expect_success
'fast-export | fast-import' '
40 MASTER=$(git rev-parse --verify master) &&
41 REIN=$(git rev-parse --verify rein) &&
42 WER=$(git rev-parse --verify wer) &&
43 MUSS=$(git rev-parse --verify muss) &&
45 git --git-dir=new/.git init &&
46 git fast-export --all |
49 test $MASTER = $(git rev-parse --verify refs/heads/master) &&
50 test $REIN = $(git rev-parse --verify refs/tags/rein) &&
51 test $WER = $(git rev-parse --verify refs/heads/wer) &&
52 test $MUSS = $(git rev-parse --verify refs/tags/muss))
56 test_expect_success
'fast-export master~2..master' '
58 git fast-export master~2..master |
59 sed "s/master/partial/" |
62 test $MASTER != $(git rev-parse --verify refs/heads/partial) &&
63 git diff --exit-code master partial &&
64 git diff --exit-code master^ partial^ &&
65 test_must_fail git rev-parse partial~2)
69 test_expect_success
'iso-8859-1' '
71 git config i18n.commitencoding ISO8859-1 &&
72 # use author and committer name in ISO-8859-1 to match it.
73 . "$TEST_DIRECTORY"/t3901-8859-1.txt &&
76 git commit -s -m den file &&
77 git fast-export wer^..wer |
81 git cat-file commit i18n | grep "Áéí óú")
84 test_expect_success
'import/export-marks' '
86 git checkout -b marks master &&
87 git fast-export --export-marks=tmp-marks HEAD &&
89 test_line_count = 3 tmp-marks &&
91 git fast-export --import-marks=tmp-marks\
92 --export-marks=tmp-marks HEAD |
97 git commit -m "last commit" file &&
99 git fast-export --import-marks=tmp-marks \
100 --export-marks=tmp-marks HEAD |
104 test_line_count = 4 tmp-marks
108 cat > signed-tag-import
<< EOF
110 from $(git rev-parse HEAD)
111 tagger C O Mitter <committer@example.com> 1112911993 -0700
114 -----BEGIN PGP SIGNATURE-----
115 Version: GnuPG v1.4.5 (GNU/Linux)
117 fakedsignaturefakedsignaturefakedsignaturefakedsignaturfakedsign
118 aturefakedsignaturefake=
120 -----END PGP SIGNATURE-----
123 test_expect_success
'set up faked signed tag' '
125 cat signed-tag-import | git fast-import
129 test_expect_success
'signed-tags=abort' '
131 test_must_fail git fast-export --signed-tags=abort sign-your-name
135 test_expect_success
'signed-tags=verbatim' '
137 git fast-export --signed-tags=verbatim sign-your-name > output &&
142 test_expect_success
'signed-tags=strip' '
144 git fast-export --signed-tags=strip sign-your-name > output &&
149 test_expect_success
'signed-tags=warn-strip' '
150 git fast-export --signed-tags=warn-strip sign-your-name >output 2>err &&
155 test_expect_success
'setup submodule' '
157 git checkout -f master &&
162 echo test file > file &&
164 git commit -m sub_initial
166 git submodule add "`pwd`/sub" sub &&
167 git commit -m initial &&
171 echo more data >> file &&
173 git commit -m sub_second
180 test_expect_success
'submodule fast-export | fast-import' '
182 SUBENT1=$(git ls-tree master^ sub) &&
183 SUBENT2=$(git ls-tree master sub) &&
186 git --git-dir=new/.git init &&
187 git fast-export --signed-tags=strip --all |
190 test "$SUBENT1" = "$(git ls-tree refs/heads/master^ sub)" &&
191 test "$SUBENT2" = "$(git ls-tree refs/heads/master sub)" &&
192 git checkout master &&
193 git submodule init &&
194 git submodule update &&
195 cmp sub/file ../sub/file)
199 GIT_AUTHOR_NAME
='A U Thor'; export GIT_AUTHOR_NAME
200 GIT_COMMITTER_NAME
='C O Mitter'; export GIT_COMMITTER_NAME
202 test_expect_success
'setup copies' '
204 git config --unset i18n.commitencoding &&
205 git checkout -b copy rein &&
207 git commit -m move1 &&
211 git mv file2 file5 &&
212 git commit -m copy1 &&
216 git commit -m copy2 &&
218 echo more text >> file6 &&
219 echo even more text >> file6 &&
221 git commit -m modify &&
224 echo test >> file7 &&
226 git commit -m copy_modify
230 test_expect_success
'fast-export -C -C | fast-import' '
232 ENTRY=$(git rev-parse --verify copy) &&
235 git --git-dir=new/.git init &&
236 git fast-export -C -C --signed-tags=strip --all > output &&
237 grep "^C file6 file7\$" output &&
241 test $ENTRY = $(git rev-parse --verify refs/heads/copy))
245 test_expect_success
'fast-export | fast-import when master is tagged' '
247 git tag -m msg last &&
248 git fast-export -C -C --signed-tags=strip --all > output &&
249 test $(grep -c "^tag " output) = 3
253 cat > tag-content
<< EOF
254 object $(git rev-parse HEAD)
259 test_expect_success
'cope with tagger-less tags' '
261 TAG=$(git hash-object -t tag -w tag-content) &&
262 git update-ref refs/tags/sonnenschein $TAG &&
263 git fast-export -C -C --signed-tags=strip --all > output &&
264 test $(grep -c "^tag " output) = 4 &&
265 ! grep "Unspecified Tagger" output &&
266 git fast-export -C -C --signed-tags=strip --all \
267 --fake-missing-tagger > output &&
268 test $(grep -c "^tag " output) = 4 &&
269 grep "Unspecified Tagger" output
273 test_expect_success
'setup for limiting exports by PATH' '
274 mkdir limit-by-paths &&
280 git commit -m "First file" &&
283 git commit -m "Second file" &&
284 git tag -a -m msg mytag &&
285 echo morefoo >> bar &&
287 git commit -m "Change to second file"
291 cat > limit-by-paths
/expected
<< EOF
297 reset refs/tags/mytag
298 commit refs/tags/mytag
300 author A U Thor <author@example.com> 1112912713 -0700
301 committer C O Mitter <committer@example.com> 1112912713 -0700
308 test_expect_success
'dropping tag of filtered out object' '
311 git fast-export --tag-of-filtered-object=drop mytag -- there > output &&
312 test_cmp expected output
316 cat >> limit-by-paths
/expected
<< EOF
319 tagger C O Mitter <committer@example.com> 1112912713 -0700
325 test_expect_success
'rewriting tag of filtered out object' '
328 git fast-export --tag-of-filtered-object=rewrite mytag -- there > output &&
329 test_cmp expected output
333 cat > limit-by-paths
/expected
<< EOF
344 reset refs/heads/master
345 commit refs/heads/master
347 author A U Thor <author@example.com> 1112912713 -0700
348 committer C O Mitter <committer@example.com> 1112912713 -0700
356 test_expect_failure
'no exact-ref revisions included' '
359 git fast-export master~2..master~1 > output &&
360 test_cmp expected output
364 test_expect_success
'path limiting with import-marks does not lose unmodified files' '
365 git checkout -b simple marks~2 &&
366 git fast-export --export-marks=marks simple -- file > /dev/null &&
367 echo more content >> file &&
369 git commit -mnext file &&
370 git fast-export --import-marks=marks simple -- file file0 | grep file0
373 test_expect_success
'full-tree re-shows unmodified files' '
374 git checkout -f simple &&
375 test $(git fast-export --full-tree simple | grep -c file0) -eq 3
378 test_expect_success
'set-up a few more tags for tag export tests' '
379 git checkout -f master &&
380 HEAD_TREE=`git show -s --pretty=raw HEAD | grep tree | sed "s/tree //"` &&
381 git tag tree_tag -m "tagging a tree" $HEAD_TREE &&
382 git tag -a tree_tag-obj -m "tagging a tree" $HEAD_TREE &&
383 git tag tag-obj_tag -m "tagging a tag" tree_tag-obj &&
384 git tag -a tag-obj_tag-obj -m "tagging a tag" tree_tag-obj
387 test_expect_success
'tree_tag' '
389 (cd result && git init) &&
390 git fast-export tree_tag > fe-stream &&
391 (cd result && git fast-import < ../fe-stream)
394 # NEEDSWORK: not just check return status, but validate the output
395 test_expect_success
'tree_tag-obj' 'git fast-export tree_tag-obj'
396 test_expect_success
'tag-obj_tag' 'git fast-export tag-obj_tag'
397 test_expect_success
'tag-obj_tag-obj' 'git fast-export tag-obj_tag-obj'
399 test_expect_success
'directory becomes symlink' '
400 git init dirtosymlink &&
406 echo hello > foo/world &&
407 echo hello > bar/world &&
408 git add foo/world bar/world &&
409 git commit -q -mone &&
411 test_ln_s_add bar foo &&
416 git fast-export master -- foo |
417 (cd ../result && git fast-import --quiet)
419 (cd result && git show master:foo)
422 test_expect_success
'fast-export quotes pathnames' '
423 git init crazy-paths &&
425 blob=`echo foo | git hash-object -w --stdin` &&
426 git update-index --add \
427 --cacheinfo 100644 $blob "$(printf "path with\\nnewline")" \
428 --cacheinfo 100644 $blob "path with \"quote\"" \
429 --cacheinfo 100644 $blob "path with \\backslash" \
430 --cacheinfo 100644 $blob "path with space" &&
431 git commit -m addition &&
432 git ls-files -z -s | perl -0pe "s{\\t}{$&subdir/}" >index &&
433 git read-tree --empty &&
434 git update-index -z --index-info <index &&
435 git commit -m rename &&
436 git read-tree --empty &&
437 git commit -m deletion &&
438 git fast-export -M HEAD >export.out &&
439 git rev-list HEAD >expect &&
442 git fast-import <../export.out &&
443 git rev-list HEAD >actual &&
444 test_cmp ../expect actual
448 test_expect_success
'test bidirectionality' '
451 git init marks-test &&
452 git fast-export --export-marks=marks-cur --import-marks=marks-cur --branches | \
453 git --git-dir=marks-test/.git fast-import --export-marks=marks-new --import-marks=marks-new &&
456 echo Wohlauf > file &&
457 git commit -a -m "back in time") &&
458 git --git-dir=marks-test/.git fast-export --export-marks=marks-new --import-marks=marks-new --branches | \
459 git fast-import --export-marks=marks-cur --import-marks=marks-cur
462 cat > expected
<< EOF
468 commit refs/heads/master
470 author A U Thor <author@example.com> 1112912773 -0700
471 committer C O Mitter <committer@example.com> 1112912773 -0700
479 test_expect_success
'avoid uninteresting refs' '
481 git fast-export --import-marks=tmp-marks \
482 --export-marks=tmp-marks master > /dev/null &&
484 git branch uninteresting &&
486 git commit -a -m bump &&
487 git fast-export --import-marks=tmp-marks \
488 --export-marks=tmp-marks ^uninteresting ^v1.0 master > actual &&
489 test_cmp expected actual
492 cat > expected
<< EOF
493 reset refs/heads/master
498 test_expect_success
'refs are updated even if no commits need to be exported' '
500 git fast-export --import-marks=tmp-marks \
501 --export-marks=tmp-marks master > /dev/null &&
502 git fast-export --import-marks=tmp-marks \
503 --export-marks=tmp-marks master > actual &&
504 test_cmp expected actual
507 test_expect_success
'use refspec' '
508 git fast-export --refspec refs/heads/master:refs/heads/foobar master | \
509 grep "^commit " | sort | uniq > actual &&
510 echo "commit refs/heads/foobar" > expected &&
511 test_cmp expected actual
514 test_expect_success
'delete refspec' '
515 git branch to-delete &&
516 git fast-export --refspec :refs/heads/to-delete to-delete ^to-delete > actual &&
517 cat > expected <<-EOF &&
518 reset refs/heads/to-delete
519 from 0000000000000000000000000000000000000000
522 test_cmp expected actual