t9117: test specifying full url to git svn init -T
authorAdam Dinwoodie <adam@dinwoodie.org>
Wed, 16 Mar 2016 19:09:54 +0000 (19:09 +0000)
committerEric Wong <normalperson@yhbt.net>
Wed, 16 Mar 2016 19:24:37 +0000 (19:24 +0000)
According to the documentation, full URLs can be specified in the `-T`
argument to `git svn init`. However, the canonicalization of such
arguments squashes together consecutive "/"s, which unsurprisingly
breaks http://, svn://, etc URLs. Add a failing test case to provide
evidence of that.

On systems where Subversion provides svn_path_canonicalize but not
svn_dirent_canonicalize (Subversion 1.6 and earlier?), this test passes,
as svn_path_canonicalize doesn't mangle the consecutive "/"s.

[ew: fixed whitespace]

Signed-off-by: Adam Dinwoodie <adam@dinwoodie.org>
Signed-off-by: Eric Wong <normalperson@yhbt.net>
t/t9117-git-svn-init-clone.sh
index a66f43c6b1a2d9194f87a17e1758f24018cf8b1b..2ba003d4b061e5ab777e27feff3ad8fe1098cea3 100755 (executable)
@@ -119,4 +119,10 @@ test_expect_success 'clone with -s/-T/-b/-t and --prefix "" still works' '
        rm -f warning
        '
 
+test_expect_failure 'init with -T as a full url works' '
+       test ! -d project &&
+       git svn init -T "$svnrepo"/project/trunk project &&
+       rm -rf project
+       '
+
 test_done