ruby/test/socket/test_tcp.rb
yugui 9093d9906e merges r20442 from trunk into ruby_1_9_1.
* test/socket/test_tcp.rb (test_recvfrom): already can run on mswin32.

* test/socket/test_tcp.rb (test_recvfrom, test_encoding): use IP address instead
  of host name.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_1@20485 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-12-04 05:19:26 +00:00

42 lines
884 B
Ruby

begin
require "socket"
require "test/unit"
rescue LoadError
end
class TestTCPSocket < Test::Unit::TestCase
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)