3 # Copyright (c) 2012 Felipe Contreras
5 # Base commands from hg-git tests:
6 # https://bitbucket.org/durin42/hg-git/src
9 test_description
='Test remote-hg'
11 test -n "$TEST_DIRECTORY" || TEST_DIRECTORY
=${0%/*}/..
/..
/t
12 .
"$TEST_DIRECTORY"/test-lib.sh
14 if ! test_have_prereq PYTHON
16 skip_all
='skipping remote-hg tests; python not available'
20 if ! python
-c 'import mercurial'
22 skip_all
='skipping remote-hg tests; mercurial not available'
28 git
--git-dir=$1/.git log
--format='%s' -1 $2 >actual
29 test_cmp expected actual
36 hg
-R $1 log
-r $2 --template '{desc}\n' >actual
&&
37 test_cmp expected actual
39 hg
-R $1 branches
>out
&&
48 hg
-R $1 log
-r "bookmark('$2')" --template '{desc}\n' >actual
&&
49 test_cmp expected actual
51 hg
-R $1 bookmarks
>out
&&
57 expected_ret
=$1 ret
=0 ref_ret
=0
60 git push origin
"$@" 2>error
64 while IFS
=':' read branch kind
68 grep "^ \* \[new branch\] *${branch} -> ${branch}$" error || ref_ret
=1
71 grep "^ ! \[rejected\] *${branch} -> ${branch} (non-fast-forward)$" error || ref_ret
=1
74 grep "^ ! \[rejected\] *${branch} -> ${branch} (fetch first)$" error || ref_ret
=1
77 grep "^ + [a-f0-9]*\.\.\.[a-f0-9]* *${branch} -> ${branch} (forced update)$" error || ref_ret
=1
80 grep "^ [a-f0-9]*\.\.[a-f0-9]* *${branch} -> ${branch}$" error || ref_ret
=1
83 test $ref_ret -ne 0 && echo "match for '$branch' failed" && break
86 if test $expected_ret -ne $ret ||
test $ref_ret -ne 0
97 echo "username = H G Wells <wells@example.com>"
102 GIT_AUTHOR_DATE
="2007-01-01 00:00:00 +0230" &&
103 GIT_COMMITTER_DATE
="$GIT_AUTHOR_DATE" &&
104 export GIT_COMMITTER_DATE GIT_AUTHOR_DATE
109 test_expect_success
'cloning' '
110 test_when_finished "rm -rf gitrepo*" &&
115 echo zero >content &&
120 git clone "hg::hgrepo" gitrepo &&
121 check gitrepo HEAD zero
124 test_expect_success
'cloning with branches' '
125 test_when_finished "rm -rf gitrepo*" &&
130 echo next >content &&
134 git clone "hg::hgrepo" gitrepo &&
135 check gitrepo origin/branches/next next
138 test_expect_success
'cloning with bookmarks' '
139 test_when_finished "rm -rf gitrepo*" &&
143 hg checkout default &&
144 hg bookmark feature-a &&
145 echo feature-a >content &&
146 hg commit -m feature-a
149 git clone "hg::hgrepo" gitrepo &&
150 check gitrepo origin/feature-a feature-a
153 test_expect_success
'update bookmark' '
154 test_when_finished "rm -rf gitrepo*" &&
162 git clone "hg::hgrepo" gitrepo &&
164 git checkout --quiet devel &&
165 echo devel >content &&
166 git commit -a -m devel &&
170 check_bookmark hgrepo devel devel
173 test_expect_success
'new bookmark' '
174 test_when_finished "rm -rf gitrepo*" &&
177 git clone "hg::hgrepo" gitrepo &&
179 git checkout --quiet -b feature-b &&
180 echo feature-b >content &&
181 git commit -a -m feature-b &&
182 git push --quiet origin feature-b
185 check_bookmark hgrepo feature-b feature-b
188 # cleanup previous stuff
193 hg commit
-u "$2" -m "add $1" &&
194 echo "$3" >>..
/expected
197 test_expect_success
'authors' '
198 test_when_finished "rm -rf hgrepo gitrepo" &&
208 author_test alpha "" "H G Wells <wells@example.com>" &&
209 author_test beta "beta" "beta <unknown>" &&
210 author_test gamma "gamma <test@example.com> (comment)" "gamma <test@example.com>" &&
211 author_test delta "<delta@example.com>" "Unknown <delta@example.com>" &&
212 author_test epsilon "epsilon<test@example.com>" "epsilon <test@example.com>" &&
213 author_test zeta "zeta <test@example.com" "zeta <test@example.com>" &&
214 author_test eta " eta " "eta <unknown>" &&
215 author_test theta "theta < test@example.com >" "theta <test@example.com>" &&
216 author_test iota "iota >test@example.com>" "iota <test@example.com>" &&
217 author_test kappa "kappa < test <at> example <dot> com>" "kappa <unknown>" &&
218 author_test lambda "lambda@example.com" "Unknown <lambda@example.com>" &&
219 author_test mu "mu.mu@example.com" "Unknown <mu.mu@example.com>"
222 git clone "hg::hgrepo" gitrepo &&
223 git --git-dir=gitrepo/.git log --reverse --format="%an <%ae>" >actual &&
225 test_cmp expected actual
228 test_expect_success
'strip' '
229 test_when_finished "rm -rf hgrepo gitrepo" &&
235 echo one >>content &&
239 echo two >>content &&
243 git clone "hg::hgrepo" gitrepo &&
249 echo three >>content &&
250 hg commit -m three &&
252 echo four >>content &&
259 git log --format="%s" origin/master >../actual
262 hg -R hgrepo log --template "{desc}\n" >expected &&
263 test_cmp actual expected
266 test_expect_success
'remote push with master bookmark' '
267 test_when_finished "rm -rf hgrepo gitrepo*" &&
272 echo zero >content &&
275 hg bookmark master &&
281 git clone "hg::hgrepo" gitrepo &&
284 git commit -a -m two &&
288 check_branch hgrepo default two
292 changeset
: 0:6e2126489d3d
294 user
: A U Thor
<author@example.com
>
295 date: Mon Jan
01 00:00:00 2007 +0230
300 test_expect_success
'remote push from master branch' '
301 test_when_finished "rm -rf hgrepo gitrepo*" &&
308 git remote add origin "hg::../hgrepo" &&
311 git commit -a -m one &&
312 git push origin master
315 hg -R hgrepo log >actual &&
317 test_cmp expected actual &&
319 check_branch hgrepo default one
322 GIT_REMOTE_HG_TEST_REMOTE
=1
323 export GIT_REMOTE_HG_TEST_REMOTE
325 test_expect_success
'remote cloning' '
326 test_when_finished "rm -rf gitrepo*" &&
331 echo zero >content &&
336 git clone "hg::hgrepo" gitrepo &&
337 check gitrepo HEAD zero
340 test_expect_success
'remote update bookmark' '
341 test_when_finished "rm -rf gitrepo*" &&
349 git clone "hg::hgrepo" gitrepo &&
351 git checkout --quiet devel &&
352 echo devel >content &&
353 git commit -a -m devel &&
357 check_bookmark hgrepo devel devel
360 test_expect_success
'remote new bookmark' '
361 test_when_finished "rm -rf gitrepo*" &&
364 git clone "hg::hgrepo" gitrepo &&
366 git checkout --quiet -b feature-b &&
367 echo feature-b >content &&
368 git commit -a -m feature-b &&
369 git push --quiet origin feature-b
372 check_bookmark hgrepo feature-b feature-b
375 test_expect_success
'remote push diverged' '
376 test_when_finished "rm -rf gitrepo*" &&
378 git clone "hg::hgrepo" gitrepo &&
382 hg checkout default &&
383 echo bump >content &&
389 echo diverge >content &&
390 git commit -a -m diverged &&
392 master:non-fast-forward
396 check_branch hgrepo default bump
399 test_expect_success
'remote update bookmark diverge' '
400 test_when_finished "rm -rf gitrepo*" &&
408 git clone "hg::hgrepo" gitrepo &&
412 echo "bump bookmark" >content &&
413 hg commit -m "bump bookmark"
418 git checkout --quiet diverge &&
419 echo diverge >content &&
420 git commit -a -m diverge &&
426 check_bookmark hgrepo diverge "bump bookmark"
429 test_expect_success
'remote new bookmark multiple branch head' '
430 test_when_finished "rm -rf gitrepo*" &&
433 git clone "hg::hgrepo" gitrepo &&
435 git checkout --quiet -b feature-c HEAD^ &&
436 echo feature-c >content &&
437 git commit -a -m feature-c &&
438 git push --quiet origin feature-c
441 check_bookmark hgrepo feature-c feature-c
444 # cleanup previous stuff
447 test_expect_success
'fetch special filenames' '
448 test_when_finished "rm -rf hgrepo gitrepo && LC_ALL=C" &&
457 echo test >> "æ rø" &&
459 echo test >> "ø~?" &&
461 hg commit -m add-utf-8 &&
462 echo test >> "æ rø" &&
463 hg commit -m test-utf-8 &&
465 hg mv "æ rø" "ø~?" &&
466 hg commit -m hg-mv-utf-8
470 git clone "hg::hgrepo" gitrepo &&
472 git -c core.quotepath=false ls-files > ../actual
474 echo "ø~?" > expected &&
475 test_cmp expected actual
478 test_expect_success
'push special filenames' '
479 test_when_finished "rm -rf hgrepo gitrepo && LC_ALL=C" &&
481 mkdir -p tmp && cd tmp &&
490 echo one >> content &&
496 git clone "hg::hgrepo" gitrepo &&
499 echo test >> "æ rø" &&
501 git commit -m utf-8 &&
508 hg manifest > ../actual
511 printf "content\næ rø\n" > expected &&
512 test_cmp expected actual
519 echo zero
>content
&&
522 hg bookmark bad_bmark1
&&
525 hg bookmark bad_bmark2
&&
526 hg bookmark good_bmark
&&
527 hg bookmark
-i good_bmark
&&
528 hg
-q branch good_branch
&&
529 echo "good branch" >content
&&
530 hg commit
-m "good branch" &&
531 hg
-q branch bad_branch
&&
532 echo "bad branch" >content
&&
533 hg commit
-m "bad branch"
536 git clone
"hg::hgrepo" gitrepo
&&
541 git commit
-q -a -m two
&&
543 git checkout
-q good_bmark
&&
544 echo three
>content
&&
545 git commit
-q -a -m three
&&
547 git checkout
-q bad_bmark1
&&
548 git
reset --hard HEAD^
&&
549 echo four
>content
&&
550 git commit
-q -a -m four
&&
552 git checkout
-q bad_bmark2
&&
553 git
reset --hard HEAD^
&&
554 echo five
>content
&&
555 git commit
-q -a -m five
&&
557 git checkout
-q -b new_bmark master
&&
559 git commit
-q -a -m six
&&
561 git checkout
-q branches
/good_branch
&&
562 echo seven
>content
&&
563 git commit
-q -a -m seven
&&
564 echo eight
>content
&&
565 git commit
-q -a -m eight
&&
567 git checkout
-q branches
/bad_branch
&&
568 git
reset --hard HEAD^
&&
569 echo nine
>content
&&
570 git commit
-q -a -m nine
&&
572 git checkout
-q -b branches
/new_branch master
&&
574 git commit
-q -a -m ten
578 test_expect_success
'remote big push' '
579 test_when_finished "rm -rf hgrepo gitrepo*" &&
586 check_push 1 --all <<-\EOF
591 branches/new_branch:new
592 bad_bmark1:non-fast-forward
593 bad_bmark2:non-fast-forward
594 branches/bad_branch:non-fast-forward
598 check_branch hgrepo default one &&
599 check_branch hgrepo good_branch "good branch" &&
600 check_branch hgrepo bad_branch "bad branch" &&
601 check_branch hgrepo new_branch '' &&
602 check_bookmark hgrepo good_bmark one &&
603 check_bookmark hgrepo bad_bmark1 one &&
604 check_bookmark hgrepo bad_bmark2 one &&
605 check_bookmark hgrepo new_bmark ''
608 test_expect_success
'remote big push fetch first' '
609 test_when_finished "rm -rf hgrepo gitrepo*" &&
614 echo zero >content &&
617 hg bookmark bad_bmark &&
618 hg bookmark good_bmark &&
619 hg bookmark -i good_bmark &&
620 hg -q branch good_branch &&
621 echo "good branch" >content &&
622 hg commit -m "good branch" &&
623 hg -q branch bad_branch &&
624 echo "bad branch" >content &&
625 hg commit -m "bad branch"
628 git clone "hg::hgrepo" gitrepo &&
632 hg bookmark -f bad_bmark &&
633 echo update_bmark >content &&
634 hg commit -m "update bmark"
640 git commit -q -a -m two &&
642 git checkout -q good_bmark &&
643 echo three >content &&
644 git commit -q -a -m three &&
646 git checkout -q bad_bmark &&
647 echo four >content &&
648 git commit -q -a -m four &&
650 git checkout -q branches/bad_branch &&
651 echo five >content &&
652 git commit -q -a -m five &&
654 check_push 1 --all <<-\EOF &&
657 bad_bmark:fetch-first
658 branches/bad_branch:festch-first
663 check_push 1 --all <<-\EOF
666 bad_bmark:non-fast-forward
667 branches/bad_branch:non-fast-forward
672 test_expect_failure
'remote big push force' '
673 test_when_finished "rm -rf hgrepo gitrepo*" &&
680 check_push 0 --force --all <<-\EOF
685 branches/new_branch:new
686 bad_bmark1:forced-update
687 bad_bmark2:forced-update
688 branches/bad_branch:forced-update
692 check_branch hgrepo default six &&
693 check_branch hgrepo good_branch eight &&
694 check_branch hgrepo bad_branch nine &&
695 check_branch hgrepo new_branch ten &&
696 check_bookmark hgrepo good_bmark three &&
697 check_bookmark hgrepo bad_bmark1 four &&
698 check_bookmark hgrepo bad_bmark2 five &&
699 check_bookmark hgrepo new_bmark six
702 test_expect_failure
'remote big push dry-run' '
703 test_when_finished "rm -rf hgrepo gitrepo*" &&
710 check_push 1 --dry-run --all <<-\EOF &&
715 branches/new_branch:new
716 bad_bmark1:non-fast-forward
717 bad_bmark2:non-fast-forward
718 branches/bad_branch:non-fast-forward
721 check_push 0 --dry-run master good_bmark new_bmark branches/good_branch branches/new_branch <<-\EOF
726 branches/new_branch:new
730 check_branch hgrepo default one &&
731 check_branch hgrepo good_branch "good branch" &&
732 check_branch hgrepo bad_branch "bad branch" &&
733 check_branch hgrepo new_branch '' &&
734 check_bookmark hgrepo good_bmark one &&
735 check_bookmark hgrepo bad_bmark1 one &&
736 check_bookmark hgrepo bad_bmark2 one &&
737 check_bookmark hgrepo new_bmark ''
740 test_expect_success
'remote double failed push' '
741 test_when_finished "rm -rf hgrepo gitrepo*" &&
746 echo zero >content &&
754 git clone "hg::hgrepo" gitrepo &&
756 git reset --hard HEAD^ &&
758 git commit -a -m two &&
759 test_expect_code 1 git push &&
760 test_expect_code 1 git push