Skip to content

Commit 5268f9e

Browse files
author
Eric Wong
committed
svn: assume URLs from the command-line are URI-encoded
And then unescape them when writing to $GIT_CONFIG. SVN has different rules for repository URLs (usually the root) and for paths within that repository (below the HTTP layer). Thus, for the request URI path at the HTTP level, the URI needs to be encoded. However, in the body of the HTTP request (the with underlying SVN XML protocol), those paths should not be URI-encoded[1]. For non-HTTP(S) requests, SVN appears to be more flexible and will except weird characters in the URL as well as URI-encoded ones. Since users are used to using URLs being entirely URI-encoded, git svn will now attempt to unescape the path portion of URLs while leaving the actual repository URL untouched. This change will be reflected in newly-created $GIT_CONFIG files only. This allows users to switch between svn(+ssh)://, file:// and http(s):// urls without changing the fetch/branches/tags config keys. This won't affect existing imports at all (since things didn't work before this commit anyways), and will allow users to force escaping into repository paths that look like they're escaped (but are not). Thanks to Mike Smullin for the original bug report and Björn Steinbrink for summarizing it into testable cases for me. [1] Except when committing copies/renames, see commit 29633bb Signed-off-by: Eric Wong <[email protected]>
1 parent 61f36a7 commit 5268f9e

File tree

2 files changed

+54
-0
lines changed

2 files changed

+54
-0
lines changed

git-svn.perl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1222,6 +1222,7 @@ sub complete_url_ls_init {
12221222
}
12231223
command_oneline('config', $k, $gs->{url}) unless $orig_url;
12241224
my $remote_path = "$gs->{path}/$repo_path";
1225+
$remote_path =~ s{%([0-9A-F]{2})}{chr hex($1)}ieg;
12251226
$remote_path =~ s#/+#/#g;
12261227
$remote_path =~ s#^/##g;
12271228
$remote_path .= "/*" if $remote_path !~ /\*/;
@@ -1892,6 +1893,7 @@ sub init_remote_config {
18921893
command_noisy('config',
18931894
"svn-remote.$self->{repo_id}.url", $url);
18941895
$self->{path} =~ s{^/}{};
1896+
$self->{path} =~ s{%([0-9A-F]{2})}{chr hex($1)}ieg;
18951897
command_noisy('config', '--add',
18961898
"svn-remote.$self->{repo_id}.fetch",
18971899
"$self->{path}:".$self->refname);

t/t9120-git-svn-clone-with-percent-escapes.sh

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ test_expect_success 'setup svnrepo' '
1010
mkdir project project/trunk project/branches project/tags &&
1111
echo foo > project/trunk/foo &&
1212
svn_cmd import -m "$test_description" project "$svnrepo/pr ject" &&
13+
svn_cmd cp -m "branch" "$svnrepo/pr ject/trunk" \
14+
"$svnrepo/pr ject/branches/b" &&
15+
svn_cmd cp -m "tag" "$svnrepo/pr ject/trunk" \
16+
"$svnrepo/pr ject/tags/v1" &&
1317
rm -rf project &&
1418
start_httpd
1519
'
@@ -21,6 +25,54 @@ test_expect_success 'test clone with percent escapes' '
2125
cd ..
2226
'
2327

28+
# SVN works either way, so should we...
29+
30+
test_expect_success 'svn checkout with percent escapes' '
31+
svn_cmd checkout "$svnrepo/pr%20ject" svn.percent &&
32+
svn_cmd checkout "$svnrepo/pr%20ject/trunk" svn.percent.trunk
33+
'
34+
35+
test_expect_success 'svn checkout with space' '
36+
svn_cmd checkout "$svnrepo/pr ject" svn.space &&
37+
svn_cmd checkout "$svnrepo/pr ject/trunk" svn.space.trunk
38+
'
39+
40+
test_expect_success 'test clone trunk with percent escapes and minimize-url' '
41+
git svn clone --minimize-url "$svnrepo/pr%20ject/trunk" minimize &&
42+
(
43+
cd minimize &&
44+
git rev-parse refs/${remotes_git_svn}
45+
)
46+
'
47+
48+
test_expect_success 'test clone trunk with percent escapes' '
49+
git svn clone "$svnrepo/pr%20ject/trunk" trunk &&
50+
(
51+
cd trunk &&
52+
git rev-parse refs/${remotes_git_svn}
53+
)
54+
'
55+
56+
test_expect_success 'test clone --stdlayout with percent escapes' '
57+
git svn clone --stdlayout "$svnrepo/pr%20ject" percent &&
58+
(
59+
cd percent &&
60+
git rev-parse refs/remotes/trunk^0 &&
61+
git rev-parse refs/remotes/b^0 &&
62+
git rev-parse refs/remotes/tags/v1^0
63+
)
64+
'
65+
66+
test_expect_success 'test clone -s with unescaped space' '
67+
git svn clone -s "$svnrepo/pr ject" space &&
68+
(
69+
cd space &&
70+
git rev-parse refs/remotes/trunk^0 &&
71+
git rev-parse refs/remotes/b^0 &&
72+
git rev-parse refs/remotes/tags/v1^0
73+
)
74+
'
75+
2476
stop_httpd
2577

2678
test_done

0 commit comments

Comments
 (0)