summaryrefslogtreecommitdiff
path: root/trunk/test/socket/test_tcp.rb
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/test/socket/test_tcp.rb')
-rw-r--r--trunk/test/socket/test_tcp.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/trunk/test/socket/test_tcp.rb b/trunk/test/socket/test_tcp.rb
new file mode 100644
index 0000000000..3aa7be82c3
--- /dev/null
+++ b/trunk/test/socket/test_tcp.rb
@@ -0,0 +1,24 @@
+begin
+ require "socket"
+ require "test/unit"
+rescue LoadError
+end
+
+
+class TestTCPSocket < Test::Unit::TestCase
+ def test_recvfrom
+assert false, "TODO: doesn't work on mswin32/64" if /mswin/ =~ RUBY_PLATFORM
+ svr = TCPServer.new("localhost", 0)
+ th = Thread.new {
+ c = svr.accept
+ c.write "foo"
+ c.close
+ }
+ addr = svr.addr
+ sock = TCPSocket.open(addr[2], addr[1])
+ assert_equal(["foo", nil], sock.recvfrom(0x10000))
+ ensure
+ th.kill
+ th.join
+ end
+end if defined?(TCPSocket)