2008-03-20 21:08:49 +01:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (c) 2008 Kevin Ballard
|
|
|
|
#
|
|
|
|
|
2008-09-08 12:02:08 +02:00
|
|
|
test_description='git svn clone with percent escapes'
|
2008-03-20 21:08:49 +01:00
|
|
|
. ./lib-git-svn.sh
|
|
|
|
|
2008-05-04 07:37:59 +02:00
|
|
|
test_expect_success 'setup svnrepo' '
|
2008-03-20 21:08:49 +01:00
|
|
|
mkdir project project/trunk project/branches project/tags &&
|
|
|
|
echo foo > project/trunk/foo &&
|
2008-05-04 07:37:59 +02:00
|
|
|
svn import -m "$test_description" project "$svnrepo/pr ject" &&
|
2008-03-20 21:08:49 +01:00
|
|
|
rm -rf project &&
|
|
|
|
start_httpd
|
2008-05-04 07:37:59 +02:00
|
|
|
'
|
2008-03-20 21:08:49 +01:00
|
|
|
|
|
|
|
if test "$SVN_HTTPD_PORT" = ""
|
|
|
|
then
|
|
|
|
test_expect_failure 'test clone with percent escapes - needs SVN_HTTPD_PORT set' 'false'
|
|
|
|
else
|
|
|
|
test_expect_success 'test clone with percent escapes' '
|
|
|
|
git svn clone "$svnrepo/pr%20ject" clone &&
|
|
|
|
cd clone &&
|
2008-09-08 12:02:05 +02:00
|
|
|
git rev-parse refs/${remotes_git_svn} &&
|
2008-03-20 21:08:49 +01:00
|
|
|
cd ..
|
|
|
|
'
|
|
|
|
fi
|
|
|
|
|
|
|
|
stop_httpd
|
|
|
|
|
|
|
|
test_done
|