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_TCPSocket < Test::Unit::TestCase
|
2007-11-18 02:18:56 -05:00
|
|
|
def test_recvfrom
|
2004-12-06 03:15:56 -05:00
|
|
|
svr = TCPServer.new("localhost", 0)
|
2004-12-08 20:19:30 -05:00
|
|
|
th = Thread.new {
|
2004-12-07 13:26:12 -05:00
|
|
|
c = svr.accept
|
2008-07-23 10:25:32 -04:00
|
|
|
c.write "foo"
|
|
|
|
c.close
|
2004-12-06 03:15:56 -05:00
|
|
|
}
|
2004-12-07 18:35:18 -05:00
|
|
|
addr = svr.addr
|
2008-12-02 01:14:37 -05:00
|
|
|
sock = TCPSocket.open(addr[3], addr[1])
|
2008-07-23 10:25:32 -04:00
|
|
|
assert_equal(["foo", nil], sock.recvfrom(0x10000))
|
2004-12-08 20:19:30 -05:00
|
|
|
ensure
|
2008-12-02 01:02:23 -05:00
|
|
|
th.kill if th
|
|
|
|
th.join if th
|
2004-12-06 03:15:56 -05:00
|
|
|
end
|
2008-10-16 22:50:43 -04:00
|
|
|
|
|
|
|
def test_encoding
|
|
|
|
svr = TCPServer.new("localhost", 0)
|
|
|
|
th = Thread.new {
|
|
|
|
c = svr.accept
|
|
|
|
c.write "foo\r\n"
|
|
|
|
c.close
|
|
|
|
}
|
|
|
|
addr = svr.addr
|
2008-12-02 01:14:37 -05:00
|
|
|
sock = TCPSocket.open(addr[3], addr[1])
|
2008-10-16 22:50:43 -04:00
|
|
|
assert_equal(true, sock.binmode?)
|
|
|
|
s = sock.gets
|
|
|
|
assert_equal("foo\r\n", s)
|
|
|
|
assert_equal(Encoding.find("ASCII-8BIT"), s.encoding)
|
|
|
|
ensure
|
2008-12-02 01:02:23 -05:00
|
|
|
th.kill if th
|
|
|
|
th.join if th
|
2008-10-16 22:50:43 -04:00
|
|
|
sock.close if sock
|
|
|
|
end
|
2004-12-06 03:15:56 -05:00
|
|
|
end if defined?(TCPSocket)
|