i18n: commit: mark parseopt strings for translation
[git/jnareb-git.git] / t / t9120-git-svn-clone-with-percent-escapes.sh
blob1d92c05035f8fe68885a6338ceca4307f19e8663
1 #!/bin/sh
3 # Copyright (c) 2008 Kevin Ballard
6 test_description='git svn clone with percent escapes'
7 . ./lib-git-svn.sh
9 test_expect_success 'setup svnrepo' '
10 mkdir project project/trunk project/branches project/tags &&
11 echo foo > project/trunk/foo &&
12 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" &&
17 rm -rf project &&
18 start_httpd
21 test_expect_success 'test clone with percent escapes' '
22 git svn clone "$svnrepo/pr%20ject" clone &&
24 cd clone &&
25 git rev-parse refs/${remotes_git_svn}
29 # SVN works either way, so should we...
31 test_expect_success 'svn checkout with percent escapes' '
32 svn_cmd checkout "$svnrepo/pr%20ject" svn.percent &&
33 svn_cmd checkout "$svnrepo/pr%20ject/trunk" svn.percent.trunk
36 test_expect_success 'svn checkout with space' '
37 svn_cmd checkout "$svnrepo/pr ject" svn.space &&
38 svn_cmd checkout "$svnrepo/pr ject/trunk" svn.space.trunk
41 test_expect_success 'test clone trunk with percent escapes and minimize-url' '
42 git svn clone --minimize-url "$svnrepo/pr%20ject/trunk" minimize &&
44 cd minimize &&
45 git rev-parse refs/${remotes_git_svn}
49 test_expect_success 'test clone trunk with percent escapes' '
50 git svn clone "$svnrepo/pr%20ject/trunk" trunk &&
52 cd trunk &&
53 git rev-parse refs/${remotes_git_svn}
57 test_expect_success 'test clone --stdlayout with percent escapes' '
58 git svn clone --stdlayout "$svnrepo/pr%20ject" percent &&
60 cd percent &&
61 git rev-parse refs/remotes/trunk^0 &&
62 git rev-parse refs/remotes/b^0 &&
63 git rev-parse refs/remotes/tags/v1^0
67 test_expect_success 'test clone -s with unescaped space' '
68 git svn clone -s "$svnrepo/pr ject" space &&
70 cd space &&
71 git rev-parse refs/remotes/trunk^0 &&
72 git rev-parse refs/remotes/b^0 &&
73 git rev-parse refs/remotes/tags/v1^0
77 stop_httpd
79 test_done