aboutsummaryrefslogtreecommitdiffstats
path: root/test/socket/test_tcp.rb
blob: 65100cf360c822236dc03c1f50b6f49e61fbd6fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
begin
  require "socket"
  require "test/unit"
rescue LoadError
end


class TestTCPSocket < Test::Unit::TestCase
  def test_recvfrom # [ruby-dev:24705]
    svr = TCPServer.new("localhost", 0)
    Thread.new {
      s = svr.accept
      s.print("x"*0x1000)
    }
    addr = svr.addr
    s = TCPSocket.open(addr[2], addr[1])
    Thread.new {
      Thread.pass
      ObjectSpace.each_object(String) {|s|
        s.replace "a" if s.length == 0x10000
      }
    }
    assert_raise(RuntimeError) {
      open("/tmp/n", "w"){|f| f.puts(data = s.recvfrom(0x10000))}
    }
  end
end if defined?(TCPSocket)