mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
d933fb2296
[ruby-core:45617] [Feature #6583] proposed Eric Hodel. * ext/socket/rubysocket.h (rsock_sys_fail_host_port): Declared. (rsock_sys_fail_path): Ditto. (rsock_sys_fail_sockaddr): Ditto. * ext/socket/udpsocket.c (udp_connect): Use rsock_sys_fail_host_port. (udp_bind): Ditto. (udp_send): Ditto. * ext/socket/init.c (rsock_init_sock): Specify a string for rb_sys_fail argument. (make_fd_nonblock): Ditto. (rsock_s_accept): Ditto. * ext/socket/ipsocket.c (init_inetsock_internal): Use rsock_sys_fail_host_port. * ext/socket/socket.c (rsock_sys_fail_host_port): Defined. (rsock_sys_fail_path): Ditto. (rsock_sys_fail_sockaddr): Ditto. (setup_domain_and_type): Use rsock_sys_fail_sockaddr. (sock_connect_nonblock): Ditto. (sock_bind): Ditto. (sock_gethostname): Specify a string for rb_sys_fail argument. (socket_s_ip_address_list): Ditto. * ext/socket/basicsocket.c (bsock_shutdown): Specify a string for rb_sys_fail argument. (bsock_setsockopt): Use rsock_sys_fail_path. (bsock_getsockopt): Ditto. (bsock_getpeereid): Refine the argument for rb_sys_fail. * ext/socket/unixsocket.c (rsock_init_unixsock): Use rsock_sys_fail_path. (unix_path): Ditto. (unix_send_io): Ditto. (unix_recv_io): Ditto. (unix_addr): Ditto. (unix_peeraddr): Ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40149 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
59 lines
1.4 KiB
Ruby
59 lines
1.4 KiB
Ruby
begin
|
|
require "socket"
|
|
require "test/unit"
|
|
rescue LoadError
|
|
end
|
|
|
|
|
|
class TestSocket_TCPSocket < Test::Unit::TestCase
|
|
def test_initialize_failure
|
|
s = TCPServer.new("localhost", nil)
|
|
server_port = s.addr[1]
|
|
|
|
c = TCPSocket.new("localhost", server_port)
|
|
client_port = c.addr[1]
|
|
|
|
begin
|
|
# TCPServer.new uses SO_REUSEADDR so we must create a failure on the
|
|
# local address.
|
|
TCPSocket.new("localhost", server_port, "localhost", client_port)
|
|
flunk "expected SystemCallError"
|
|
rescue SystemCallError => e
|
|
assert_match "for \"localhost\" port #{client_port}", e.message
|
|
end
|
|
end
|
|
|
|
def test_recvfrom
|
|
svr = TCPServer.new("localhost", 0)
|
|
th = Thread.new {
|
|
c = svr.accept
|
|
c.write "foo"
|
|
c.close
|
|
}
|
|
addr = svr.addr
|
|
sock = TCPSocket.open(addr[3], addr[1])
|
|
assert_equal(["foo", nil], sock.recvfrom(0x10000))
|
|
ensure
|
|
th.kill if th
|
|
th.join if th
|
|
end
|
|
|
|
def test_encoding
|
|
svr = TCPServer.new("localhost", 0)
|
|
th = Thread.new {
|
|
c = svr.accept
|
|
c.write "foo\r\n"
|
|
c.close
|
|
}
|
|
addr = svr.addr
|
|
sock = TCPSocket.open(addr[3], addr[1])
|
|
assert_equal(true, sock.binmode?)
|
|
s = sock.gets
|
|
assert_equal("foo\r\n", s)
|
|
assert_equal(Encoding.find("ASCII-8BIT"), s.encoding)
|
|
ensure
|
|
th.kill if th
|
|
th.join if th
|
|
sock.close if sock
|
|
end
|
|
end if defined?(TCPSocket)
|