mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/uri/ftp.rb (URI::FTP#initialize): raise InvalidURIError if "//"
is not present [ruby-core:47344] [Bug #6945] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36852 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
ed491f2c86
commit
37cc18d54b
3 changed files with 10 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Thu Aug 30 09:21:01 2012 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
|
* lib/uri/ftp.rb (URI::FTP#initialize): raise InvalidURIError if "//"
|
||||||
|
is not present [ruby-core:47344] [Bug #6945]
|
||||||
|
|
||||||
Thu Aug 30 07:45:12 2012 Luis Lavena <luislavena@gmail.com>
|
Thu Aug 30 07:45:12 2012 Luis Lavena <luislavena@gmail.com>
|
||||||
|
|
||||||
* test/ruby/test_file_exhaustive.rb: fix test introduced in r36811 for
|
* test/ruby/test_file_exhaustive.rb: fix test introduced in r36811 for
|
||||||
|
|
|
@ -135,6 +135,7 @@ module URI
|
||||||
# +opaque+, +query+ and +fragment+, in that order.
|
# +opaque+, +query+ and +fragment+, in that order.
|
||||||
#
|
#
|
||||||
def initialize(*arg)
|
def initialize(*arg)
|
||||||
|
raise InvalidURIError unless arg[5]
|
||||||
arg[5] = arg[5].sub(/^\//,'').sub(/^%2F/,'/')
|
arg[5] = arg[5].sub(/^\//,'').sub(/^%2F/,'/')
|
||||||
super(*arg)
|
super(*arg)
|
||||||
@typecode = nil
|
@typecode = nil
|
||||||
|
|
|
@ -27,6 +27,10 @@ class TestFTP < Test::Unit::TestCase
|
||||||
assert_equal('pass', url.password)
|
assert_equal('pass', url.password)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_parse_invalid
|
||||||
|
assert_raise(InvalidURIError){URI.parse('ftp:example')}
|
||||||
|
end
|
||||||
|
|
||||||
def test_paths
|
def test_paths
|
||||||
# If you think what's below is wrong, please read RubyForge bug 2055,
|
# If you think what's below is wrong, please read RubyForge bug 2055,
|
||||||
# RFC 1738 section 3.2.2, and RFC 2396.
|
# RFC 1738 section 3.2.2, and RFC 2396.
|
||||||
|
|
Loading…
Reference in a new issue