2004-12-06 03:15:56 -05:00
|
|
|
begin
|
|
|
|
require "socket"
|
|
|
|
require "test/unit"
|
|
|
|
rescue LoadError
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2009-02-10 23:17:57 -05:00
|
|
|
class TestSocket_UDPSocket < Test::Unit::TestCase
|
2009-01-01 10:15:31 -05:00
|
|
|
def test_open
|
|
|
|
assert_nothing_raised { UDPSocket.open {} }
|
|
|
|
assert_nothing_raised { UDPSocket.open(Socket::AF_INET) {} }
|
|
|
|
assert_nothing_raised { UDPSocket.open("AF_INET") {} }
|
2009-01-01 10:59:10 -05:00
|
|
|
assert_nothing_raised { UDPSocket.open(:AF_INET) {} }
|
2009-01-01 10:15:31 -05:00
|
|
|
end
|
|
|
|
|
2007-11-18 02:18:56 -05:00
|
|
|
def test_connect
|
2004-12-06 03:15:56 -05:00
|
|
|
s = UDPSocket.new
|
|
|
|
host = Object.new
|
2007-11-04 15:36:20 -05:00
|
|
|
class << host; self end.send(:define_method, :to_str) {
|
2004-12-06 03:15:56 -05:00
|
|
|
s.close
|
|
|
|
"127.0.0.1"
|
|
|
|
}
|
2007-11-18 02:18:56 -05:00
|
|
|
assert_raise(IOError, "[ruby-dev:25045]") {
|
2004-12-06 03:15:56 -05:00
|
|
|
s.connect(host, 1)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2007-11-18 02:18:56 -05:00
|
|
|
def test_bind
|
2004-12-06 03:15:56 -05:00
|
|
|
s = UDPSocket.new
|
|
|
|
host = Object.new
|
2007-11-04 15:36:20 -05:00
|
|
|
class << host; self end.send(:define_method, :to_str) {
|
2004-12-06 03:15:56 -05:00
|
|
|
s.close
|
|
|
|
"127.0.0.1"
|
|
|
|
}
|
2007-11-18 02:18:56 -05:00
|
|
|
assert_raise(IOError, "[ruby-dev:25057]") {
|
2004-12-06 03:15:56 -05:00
|
|
|
s.bind(host, 2000)
|
|
|
|
}
|
|
|
|
end
|
2013-04-05 22:39:44 -04:00
|
|
|
|
|
|
|
def test_bind_addrinuse
|
|
|
|
host = "127.0.0.1"
|
|
|
|
port = 2001
|
|
|
|
|
|
|
|
in_use = UDPSocket.new
|
|
|
|
in_use.bind(host, port)
|
|
|
|
|
|
|
|
s = UDPSocket.new
|
2013-04-08 16:27:01 -04:00
|
|
|
|
2013-04-05 22:39:44 -04:00
|
|
|
e = assert_raises(Errno::EADDRINUSE) do
|
|
|
|
s.bind(host, port)
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_match "bind(2) for \"#{host}\" port #{port}", e.message
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_send_too_long
|
|
|
|
u = UDPSocket.new
|
|
|
|
|
|
|
|
e = assert_raises Errno::EMSGSIZE do
|
|
|
|
u.send "\0" * 100_000, 0, "127.0.0.1", 7 # echo
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_match 'for "127.0.0.1" port 7', e.message
|
|
|
|
end
|
2004-12-06 03:15:56 -05:00
|
|
|
end if defined?(UDPSocket)
|