ruby/test/resolv/test_addr.rb
nobu 1ffbe07e17 resolv.rb: no encodings
* lib/resolv.rb (Resolv::Hosts#lazy_initialize): should not
  consider encodings in hosts file.  [ruby-core:59239] [Bug #9273]
* lib/resolv.rb (Resolv::Config.parse_resolv_conf): ditto.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44312 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2013-12-21 03:37:26 +00:00

28 lines
766 B
Ruby

require 'test/unit'
require 'resolv'
require 'socket'
class TestResolvAddr < Test::Unit::TestCase
def test_invalid_ipv4_address
assert_not_match(Resolv::IPv4::Regex, "1.2.3.256", "[ruby-core:29501]")
1000.times {|i|
if i < 256
assert_match(Resolv::IPv4::Regex, "#{i}.#{i}.#{i}.#{i}")
else
assert_not_match(Resolv::IPv4::Regex, "#{i}.#{i}.#{i}.#{i}")
end
}
end
def test_invalid_byte_comment
bug9273 = '[ruby-core:59239] [Bug #9273]'
Tempfile.open('resolv_test_addr_') do |tmpfile|
tmpfile.print("\xff\x00\x40")
tmpfile.close
hosts = Resolv::Hosts.new(tmpfile.path)
assert_nothing_raised(ArgumentError, bug9273) do
hosts.each_address("") {break}
end
end
end
end