3 # Copyright (c) 2007 Eric Wong
6 test_description
='git svn funky branch names'
9 # Abo-Uebernahme (Bug #994)
10 scary_uri
='Abo-Uebernahme%20%28Bug%20%23994%29'
11 scary_ref
='Abo-Uebernahme%20(Bug%20#994)'
13 test_expect_success
'setup svnrepo' '
14 mkdir project project/trunk project/branches project/tags &&
15 echo foo > project/trunk/foo &&
16 svn import -m "$test_description" project "$svnrepo/pr ject" &&
18 svn cp -m "fun" "$svnrepo/pr ject/trunk" \
19 "$svnrepo/pr ject/branches/fun plugin" &&
20 svn cp -m "more fun!" "$svnrepo/pr ject/branches/fun plugin" \
21 "$svnrepo/pr ject/branches/more fun plugin!" &&
22 svn cp -m "scary" "$svnrepo/pr ject/branches/fun plugin" \
23 "$svnrepo/pr ject/branches/$scary_uri" &&
27 test_expect_success
'test clone with funky branch names' '
28 git svn clone -s "$svnrepo/pr ject" project &&
30 git rev-parse "refs/remotes/fun%20plugin" &&
31 git rev-parse "refs/remotes/more%20fun%20plugin!" &&
32 git rev-parse "refs/remotes/$scary_ref" &&
36 test_expect_success
'test dcommit to funky branch' "
38 git reset --hard 'refs/remotes/more%20fun%20plugin!' &&
40 git commit -m 'hello' -- foo &&
45 test_expect_success
'test dcommit to scary branch' '
47 git reset --hard "refs/remotes/$scary_ref" &&
48 echo urls are scary >> foo &&
49 git commit -m "eep" -- foo &&