Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
hg-git
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
This instance will be upgraded to Heptapod 17.9.0 final on 2025-04-04 between 14:00 and 15:00 UTC+2
Show more breadcrumbs
mercurial
hg-git
Commits
1189e52b
Commit
1189e52b
authored
13 years ago
by
Jason R. Coombs
Browse files
Options
Downloads
Patches
Plain Diff
Strip trailing slash for heroku-style URLs. Fixes
#31
. Includes a regression test for the fix.
parent
7e6fc0ef
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
hggit/git_handler.py
+4
-0
4 additions, 0 deletions
hggit/git_handler.py
tests/test-url-parsing.py
+22
-0
22 additions, 0 deletions
tests/test-url-parsing.py
tests/test-url-parsing.py.out
+14
-0
14 additions, 0 deletions
tests/test-url-parsing.py.out
with
40 additions
and
0 deletions
hggit/git_handler.py
+
4
−
0
View file @
1189e52b
...
...
@@ -1110,6 +1110,10 @@
host
,
port
,
sepr
,
path
=
res
[
'
host
'
],
res
[
'
port
'
],
res
[
'
sepr
'
],
res
[
'
path
'
]
if
sepr
==
'
/
'
:
path
=
'
/
'
+
path
# strip trailing slash for heroku-style URLs
# ssh+git://git@heroku.com:project.git/
if
sepr
==
'
:
'
and
path
.
endswith
(
'
.git/
'
):
path
=
path
.
rstrip
(
'
/
'
)
if
port
:
client
.
port
=
port
...
...
This diff is collapsed.
Click to expand it.
tests/test-url-parsing.py
+
22
−
0
View file @
1189e52b
...
...
@@ -40,6 +40,26 @@
client
,
path
=
self
.
handler
.
get_transport_and_path
(
url
)
self
.
assertEquals
(
path
,
'
webjam.git
'
)
self
.
assertEquals
(
client
.
host
,
'
git@heroku.com
'
)
# also test that it works even if heroku isn't in the name
url
=
"
git+ssh://git@compatible.com:webjam.git
"
client
,
path
=
self
.
handler
.
get_transport_and_path
(
url
)
self
.
assertEquals
(
path
,
'
webjam.git
'
)
self
.
assertEquals
(
client
.
host
,
'
git@compatible.com
'
)
def
test_ssh_heroku_style_with_trailing_slash
(
self
):
# some versions of mercurial add a trailing slash even if
# the user didn't supply one.
url
=
"
git+ssh://git@heroku.com:webjam.git/
"
client
,
path
=
self
.
handler
.
get_transport_and_path
(
url
)
self
.
assertEquals
(
path
,
'
webjam.git
'
)
self
.
assertEquals
(
client
.
host
,
'
git@heroku.com
'
)
def
test_heroku_style_with_port
(
self
):
url
=
"
git+ssh://git@heroku.com:999:webjam.git
"
client
,
path
=
self
.
handler
.
get_transport_and_path
(
url
)
self
.
assertEquals
(
path
,
'
webjam.git
'
)
self
.
assertEquals
(
client
.
host
,
'
git@heroku.com
'
)
self
.
assertEquals
(
client
.
port
,
'
999
'
)
def
test_gitdaemon_style
(
self
):
url
=
"
git://github.com/webjam/webjam.git
"
...
...
@@ -72,6 +92,8 @@
for
test
in
[
'
test_ssh_github_style_slash
'
,
'
test_ssh_github_style_colon
'
,
'
test_ssh_heroku_style
'
,
'
test_ssh_heroku_style_with_trailing_slash
'
,
'
test_heroku_style_with_port
'
,
'
test_gitdaemon_style
'
,
'
test_ssh_github_style_slash_with_port
'
,
'
test_gitdaemon_style_with_port
'
]:
...
...
This diff is collapsed.
Click to expand it.
tests/test-url-parsing.py.out
+
14
−
0
View file @
1189e52b
...
...
@@ -10,6 +10,20 @@
webjam.git
% expect 'git@heroku.com'
git@heroku.com
% expect 'webjam.git'
webjam.git
% expect 'git@compatible.com'
git@compatible.com
% expect 'webjam.git'
webjam.git
% expect 'git@heroku.com'
git@heroku.com
% expect 'webjam.git'
webjam.git
% expect 'git@heroku.com'
git@heroku.com
% expect '999'
999
% expect '/webjam/webjam.git'
/webjam/webjam.git
% expect 'github.com'
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment