remote-helpers: test: simplify remote URLs
[git/mingw.git] / contrib / remote-helpers / test-hg.sh
blobc54adb6fee27c1c7be0ea764f7cb73309adfbc30
1 #!/bin/sh
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-lib.sh
13 if ! test_have_prereq PYTHON; then
14 skip_all='skipping remote-hg tests; python not available'
15 test_done
18 if ! python -c 'import mercurial'; then
19 skip_all='skipping remote-hg tests; mercurial not available'
20 test_done
23 check () {
25 cd $1 &&
26 git log --format='%s' -1 &&
27 git symbolic-ref HEAD
28 ) > actual &&
30 echo $2 &&
31 echo "refs/heads/$3"
32 ) > expected &&
33 test_cmp expected actual
36 setup () {
38 echo "[ui]"
39 echo "username = H G Wells <wells@example.com>"
40 ) >> "$HOME"/.hgrc
43 setup
45 test_expect_success 'cloning' '
46 test_when_finished "rm -rf gitrepo*" &&
49 hg init hgrepo &&
50 cd hgrepo &&
51 echo zero > content &&
52 hg add content &&
53 hg commit -m zero
54 ) &&
56 git clone "hg::hgrepo" gitrepo &&
57 check gitrepo zero master
60 test_expect_success 'cloning with branches' '
61 test_when_finished "rm -rf gitrepo*" &&
64 cd hgrepo &&
65 hg branch next &&
66 echo next > content &&
67 hg commit -m next
68 ) &&
70 git clone "hg::hgrepo" gitrepo &&
71 check gitrepo next next &&
73 (cd hgrepo && hg checkout default) &&
75 git clone "hg::hgrepo" gitrepo2 &&
76 check gitrepo2 zero master
79 test_expect_success 'cloning with bookmarks' '
80 test_when_finished "rm -rf gitrepo*" &&
83 cd hgrepo &&
84 hg bookmark feature-a &&
85 echo feature-a > content &&
86 hg commit -m feature-a
87 ) &&
89 git clone "hg::hgrepo" gitrepo &&
90 check gitrepo feature-a feature-a
93 test_expect_success 'cloning with detached head' '
94 test_when_finished "rm -rf gitrepo*" &&
97 cd hgrepo &&
98 hg update -r 0
99 ) &&
101 git clone "hg::hgrepo" gitrepo &&
102 check gitrepo zero master
105 test_expect_success 'update bookmark' '
106 test_when_finished "rm -rf gitrepo*" &&
109 cd hgrepo &&
110 hg bookmark devel
111 ) &&
114 git clone "hg::hgrepo" gitrepo &&
115 cd gitrepo &&
116 git checkout --quiet devel &&
117 echo devel > content &&
118 git commit -a -m devel &&
119 git push --quiet
120 ) &&
122 hg -R hgrepo bookmarks | egrep "devel[ ]+3:"
125 # cleanup previous stuff
126 rm -rf hgrepo
128 author_test () {
129 echo $1 >> content &&
130 hg commit -u "$2" -m "add $1" &&
131 echo "$3" >> ../expected
134 test_expect_success 'authors' '
135 test_when_finished "rm -rf hgrepo gitrepo" &&
138 hg init hgrepo &&
139 cd hgrepo &&
141 touch content &&
142 hg add content &&
144 > ../expected &&
145 author_test alpha "" "H G Wells <wells@example.com>" &&
146 author_test beta "test" "test <unknown>" &&
147 author_test beta "test <test@example.com> (comment)" "test <test@example.com>" &&
148 author_test gamma "<test@example.com>" "Unknown <test@example.com>" &&
149 author_test delta "name<test@example.com>" "name <test@example.com>" &&
150 author_test epsilon "name <test@example.com" "name <test@example.com>" &&
151 author_test zeta " test " "test <unknown>" &&
152 author_test eta "test < test@example.com >" "test <test@example.com>" &&
153 author_test theta "test >test@example.com>" "test <test@example.com>" &&
154 author_test iota "test < test <at> example <dot> com>" "test <unknown>" &&
155 author_test kappa "test@example.com" "Unknown <test@example.com>"
156 ) &&
158 git clone "hg::hgrepo" gitrepo &&
159 git --git-dir=gitrepo/.git log --reverse --format="%an <%ae>" > actual &&
161 test_cmp expected actual
164 test_done