Browse Source
Previously, our URL canonicalization didn't do much of anything. Now it actually escapes and collapses slashes. This is mostly a cut & paste of escape_url from git-svn. This is closer to how SVN 1.7's canonicalization behaves. Doing it with 1.6 lets us chase down some problems caused by more effective canonicalization without having to deal with all the other 1.7 issues on top of that. * Remote URLs have to be canonicalized otherwise Git::SVN->find_existing_remote will think they're different. * The SVN remote is now written to the git config canonicalized. That should be ok. Adjust a test to account for that. [ew: commit title] Signed-off-by: Eric Wong <normalperson@yhbt.net>maint
Michael G. Schwern
12 years ago
committed by
Eric Wong
4 changed files with 48 additions and 5 deletions
@ -0,0 +1,26 @@
@@ -0,0 +1,26 @@
|
||||
#!/usr/bin/env perl |
||||
|
||||
# Test our own home rolled URL canonicalizer. Test the private one |
||||
# directly because we can't predict what the SVN API is doing to do. |
||||
|
||||
use strict; |
||||
use warnings; |
||||
|
||||
use Test::More 'no_plan'; |
||||
|
||||
use Git::SVN::Utils; |
||||
my $canonicalize_url = \&Git::SVN::Utils::_canonicalize_url_ourselves; |
||||
|
||||
my %tests = ( |
||||
"http://x.com" => "http://x.com", |
||||
"http://x.com/" => "http://x.com", |
||||
"http://x.com/foo/bar" => "http://x.com/foo/bar", |
||||
"http://x.com//foo//bar//" => "http://x.com/foo/bar", |
||||
"http://x.com/ /%/" => "http://x.com/%20%20/%25", |
||||
); |
||||
|
||||
for my $arg (keys %tests) { |
||||
my $want = $tests{$arg}; |
||||
|
||||
is $canonicalize_url->($arg), $want, "canonicalize_url('$arg') => $want"; |
||||
} |
Loading…
Reference in new issue