rubysl-socket 0.0.1 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (149) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +0 -1
  3. data/.travis.yml +7 -0
  4. data/README.md +2 -2
  5. data/Rakefile +0 -1
  6. data/lib/rubysl/socket.rb +2 -0
  7. data/lib/rubysl/socket/socket.rb +1210 -0
  8. data/lib/{rubysl-socket → rubysl/socket}/version.rb +1 -1
  9. data/lib/socket.rb +1 -0
  10. data/rubysl-socket.gemspec +17 -18
  11. data/spec/addrinfo/afamily_spec.rb +5 -0
  12. data/spec/addrinfo/bind_spec.rb +5 -0
  13. data/spec/addrinfo/canonname_spec.rb +5 -0
  14. data/spec/addrinfo/connect_from_spec.rb +5 -0
  15. data/spec/addrinfo/connect_spec.rb +5 -0
  16. data/spec/addrinfo/connect_to_spec.rb +5 -0
  17. data/spec/addrinfo/family_addrinfo_spec.rb +5 -0
  18. data/spec/addrinfo/foreach_spec.rb +5 -0
  19. data/spec/addrinfo/getaddrinfo_spec.rb +5 -0
  20. data/spec/addrinfo/getnameinfo_spec.rb +5 -0
  21. data/spec/addrinfo/inspect_sockaddr_spec.rb +5 -0
  22. data/spec/addrinfo/inspect_spec.rb +5 -0
  23. data/spec/addrinfo/ip_address_spec.rb +5 -0
  24. data/spec/addrinfo/ip_port_spec.rb +5 -0
  25. data/spec/addrinfo/ip_spec.rb +9 -0
  26. data/spec/addrinfo/ip_unpack_spec.rb +5 -0
  27. data/spec/addrinfo/ipv4_loopback_spec.rb +5 -0
  28. data/spec/addrinfo/ipv4_multicast_spec.rb +5 -0
  29. data/spec/addrinfo/ipv4_private_spec.rb +5 -0
  30. data/spec/addrinfo/ipv4_spec.rb +5 -0
  31. data/spec/addrinfo/ipv6_linklocal_spec.rb +5 -0
  32. data/spec/addrinfo/ipv6_loopback_spec.rb +5 -0
  33. data/spec/addrinfo/ipv6_mc_global_spec.rb +5 -0
  34. data/spec/addrinfo/ipv6_mc_linklocal_spec.rb +5 -0
  35. data/spec/addrinfo/ipv6_mc_nodelocal_spec.rb +5 -0
  36. data/spec/addrinfo/ipv6_mc_orglocal_spec.rb +5 -0
  37. data/spec/addrinfo/ipv6_mc_sitelocal_spec.rb +5 -0
  38. data/spec/addrinfo/ipv6_multicast_spec.rb +5 -0
  39. data/spec/addrinfo/ipv6_sitelocal_spec.rb +5 -0
  40. data/spec/addrinfo/ipv6_spec.rb +5 -0
  41. data/spec/addrinfo/ipv6_to_ipv4_spec.rb +5 -0
  42. data/spec/addrinfo/ipv6_unspecified_spec.rb +5 -0
  43. data/spec/addrinfo/ipv6_v4compat_spec.rb +5 -0
  44. data/spec/addrinfo/ipv6_v4mapped_spec.rb +5 -0
  45. data/spec/addrinfo/listen_spec.rb +5 -0
  46. data/spec/addrinfo/marshal_dump_spec.rb +5 -0
  47. data/spec/addrinfo/marshal_load_spec.rb +5 -0
  48. data/spec/addrinfo/pfamily_spec.rb +5 -0
  49. data/spec/addrinfo/protocol_spec.rb +5 -0
  50. data/spec/addrinfo/socktype_spec.rb +5 -0
  51. data/spec/addrinfo/tcp_spec.rb +5 -0
  52. data/spec/addrinfo/to_s_spec.rb +5 -0
  53. data/spec/addrinfo/to_sockaddr_spec.rb +5 -0
  54. data/spec/addrinfo/udp_spec.rb +5 -0
  55. data/spec/addrinfo/unix_path_spec.rb +5 -0
  56. data/spec/addrinfo/unix_spec.rb +9 -0
  57. data/spec/basicsocket/close_read_spec.rb +42 -0
  58. data/spec/basicsocket/close_write_spec.rb +42 -0
  59. data/spec/basicsocket/do_not_reverse_lookup_spec.rb +78 -0
  60. data/spec/basicsocket/for_fd_spec.rb +37 -0
  61. data/spec/basicsocket/getpeername_spec.rb +24 -0
  62. data/spec/basicsocket/getsockname_spec.rb +27 -0
  63. data/spec/basicsocket/getsockopt_spec.rb +54 -0
  64. data/spec/basicsocket/ioctl_spec.rb +22 -0
  65. data/spec/basicsocket/recv_nonblock_spec.rb +6 -0
  66. data/spec/basicsocket/recv_spec.rb +76 -0
  67. data/spec/basicsocket/send_spec.rb +81 -0
  68. data/spec/basicsocket/setsockopt_spec.rb +333 -0
  69. data/spec/basicsocket/shutdown_spec.rb +5 -0
  70. data/spec/constants/constants_spec.rb +63 -0
  71. data/spec/fixtures/classes.rb +174 -0
  72. data/spec/fixtures/send_io.txt +1 -0
  73. data/spec/ipsocket/addr_spec.rb +72 -0
  74. data/spec/ipsocket/getaddress_spec.rb +26 -0
  75. data/spec/ipsocket/peeraddr_spec.rb +79 -0
  76. data/spec/ipsocket/recvfrom_spec.rb +64 -0
  77. data/spec/option/int_spec.rb +27 -0
  78. data/spec/option/linger_spec.rb +52 -0
  79. data/spec/option/new_spec.rb +32 -0
  80. data/spec/shared/pack_sockaddr.rb +26 -0
  81. data/spec/shared/partially_closable_sockets.rb +13 -0
  82. data/spec/shared/recv_nonblock.rb +33 -0
  83. data/spec/shared/socketpair.rb +35 -0
  84. data/spec/socket/accept_nonblock_spec.rb +27 -0
  85. data/spec/socket/accept_spec.rb +1 -0
  86. data/spec/socket/bind_spec.rb +80 -0
  87. data/spec/socket/connect_nonblock_spec.rb +62 -0
  88. data/spec/socket/connect_spec.rb +1 -0
  89. data/spec/socket/for_fd_spec.rb +29 -0
  90. data/spec/socket/getaddrinfo_spec.rb +120 -0
  91. data/spec/socket/gethostbyaddr_spec.rb +1 -0
  92. data/spec/socket/gethostbyname_spec.rb +26 -0
  93. data/spec/socket/gethostname_spec.rb +9 -0
  94. data/spec/socket/getnameinfo_spec.rb +57 -0
  95. data/spec/socket/getservbyname_spec.rb +24 -0
  96. data/spec/socket/listen_spec.rb +21 -0
  97. data/spec/socket/new_spec.rb +109 -0
  98. data/spec/socket/pack_sockaddr_in_spec.rb +6 -0
  99. data/spec/socket/pack_sockaddr_un_spec.rb +6 -0
  100. data/spec/socket/pair_spec.rb +6 -0
  101. data/spec/socket/recvfrom_nonblock_spec.rb +1 -0
  102. data/spec/socket/recvfrom_spec.rb +1 -0
  103. data/spec/socket/sockaddr_in_spec.rb +6 -0
  104. data/spec/socket/sockaddr_un_spec.rb +6 -0
  105. data/spec/socket/socket_spec.rb +37 -0
  106. data/spec/socket/socketpair_spec.rb +6 -0
  107. data/spec/socket/sysaccept_spec.rb +1 -0
  108. data/spec/socket/unpack_sockaddr_in_spec.rb +16 -0
  109. data/spec/socket/unpack_sockaddr_un_spec.rb +2 -0
  110. data/spec/tcpserver/accept_nonblock_spec.rb +30 -0
  111. data/spec/tcpserver/accept_spec.rb +60 -0
  112. data/spec/tcpserver/gets_spec.rb +17 -0
  113. data/spec/tcpserver/listen_spec.rb +1 -0
  114. data/spec/tcpserver/new_spec.rb +88 -0
  115. data/spec/tcpserver/output_spec.rb +8 -0
  116. data/spec/tcpserver/readpartial_spec.rb +8 -0
  117. data/spec/tcpserver/sysaccept_spec.rb +1 -0
  118. data/spec/tcpsocket/gethostbyname_spec.rb +62 -0
  119. data/spec/tcpsocket/new_spec.rb +5 -0
  120. data/spec/tcpsocket/open_spec.rb +5 -0
  121. data/spec/tcpsocket/partially_closable_spec.rb +20 -0
  122. data/spec/tcpsocket/recv_nonblock_spec.rb +31 -0
  123. data/spec/tcpsocket/setsockopt_spec.rb +49 -0
  124. data/spec/tcpsocket/shared/new.rb +85 -0
  125. data/spec/udpsocket/bind_spec.rb +33 -0
  126. data/spec/udpsocket/connect_spec.rb +1 -0
  127. data/spec/udpsocket/new_spec.rb +1 -0
  128. data/spec/udpsocket/open_spec.rb +12 -0
  129. data/spec/udpsocket/recvfrom_nonblock_spec.rb +1 -0
  130. data/spec/udpsocket/send_spec.rb +57 -0
  131. data/spec/unixserver/accept_nonblock_spec.rb +33 -0
  132. data/spec/unixserver/accept_spec.rb +64 -0
  133. data/spec/unixserver/for_fd_spec.rb +32 -0
  134. data/spec/unixserver/new_spec.rb +5 -0
  135. data/spec/unixserver/open_spec.rb +25 -0
  136. data/spec/unixserver/shared/new.rb +23 -0
  137. data/spec/unixsocket/addr_spec.rb +37 -0
  138. data/spec/unixsocket/new_spec.rb +5 -0
  139. data/spec/unixsocket/open_spec.rb +26 -0
  140. data/spec/unixsocket/pair_spec.rb +38 -0
  141. data/spec/unixsocket/partially_closable_spec.rb +25 -0
  142. data/spec/unixsocket/path_spec.rb +29 -0
  143. data/spec/unixsocket/peeraddr_spec.rb +29 -0
  144. data/spec/unixsocket/recv_io_spec.rb +40 -0
  145. data/spec/unixsocket/recvfrom_spec.rb +48 -0
  146. data/spec/unixsocket/send_io_spec.rb +30 -0
  147. data/spec/unixsocket/shared/new.rb +25 -0
  148. metadata +328 -89
  149. data/lib/rubysl-socket.rb +0 -7
@@ -0,0 +1 @@
1
+ require File.expand_path('../../fixtures/classes', __FILE__)
@@ -0,0 +1,26 @@
1
+ # -*- encoding: US-ASCII -*-
2
+ require File.expand_path('../../fixtures/classes', __FILE__)
3
+
4
+ require 'socket'
5
+
6
+ describe "Socket#gethostbyname" do
7
+ it "returns broadcast address info for '<broadcast>'" do
8
+ addr = Socket.gethostbyname('<broadcast>').first;
9
+ ["broadcasthost", "255.255.255.255"].should include(addr)
10
+ end
11
+
12
+ it "returns broadcast address info for '<any>'" do
13
+ addr = Socket.gethostbyname('<any>').first;
14
+ addr.should == "0.0.0.0"
15
+ end
16
+
17
+ it "returns address list in pack format (IPv4)" do
18
+ laddr = Socket.gethostbyname('127.0.0.1')[3..-1];
19
+ laddr.should == ["\x7f\x00\x00\x01"]
20
+ end
21
+
22
+ it "returns address list in pack format (IPv6)" do
23
+ laddr = Socket.gethostbyname('::1')[3..-1]
24
+ laddr.should == ["\x00" * 15 + "\x01"]
25
+ end
26
+ end
@@ -0,0 +1,9 @@
1
+ require File.expand_path('../../fixtures/classes', __FILE__)
2
+
3
+ describe "Socket.gethostname" do
4
+ # This currently works in Unix and Windows. Edit the helper
5
+ # to add other platforms.
6
+ it "returns the host name" do
7
+ Socket.gethostname.should == hostname
8
+ end
9
+ end
@@ -0,0 +1,57 @@
1
+ require File.expand_path('../../fixtures/classes', __FILE__)
2
+
3
+ require 'socket'
4
+
5
+ describe "Socket.getnameinfo" do
6
+ before :all do
7
+ @reverse_lookup = BasicSocket.do_not_reverse_lookup
8
+ BasicSocket.do_not_reverse_lookup = true
9
+ end
10
+
11
+ after :all do
12
+ BasicSocket.do_not_reverse_lookup = @reverse_lookup
13
+ end
14
+
15
+ it "gets the name information and don't resolve it" do
16
+ sockaddr = Socket.sockaddr_in SocketSpecs.port, '127.0.0.1'
17
+ name_info = Socket.getnameinfo(sockaddr, Socket::NI_NUMERICHOST | Socket::NI_NUMERICSERV)
18
+ name_info.should == ['127.0.0.1', "#{SocketSpecs.port}"]
19
+ end
20
+
21
+ it "gets the name information and resolve the host" do
22
+ sockaddr = Socket.sockaddr_in SocketSpecs.port, '127.0.0.1'
23
+ name_info = Socket.getnameinfo(sockaddr, Socket::NI_NUMERICSERV)
24
+ name_info[0].should be_valid_DNS_name
25
+ name_info[1].should == SocketSpecs.port.to_s
26
+ end
27
+
28
+ it "gets the name information and resolves the service" do
29
+ sockaddr = Socket.sockaddr_in 80, '127.0.0.1'
30
+ name_info = Socket.getnameinfo(sockaddr)
31
+ name_info.size.should == 2
32
+ name_info[0].should be_valid_DNS_name
33
+ # see http://www.iana.org/assignments/port-numbers
34
+ name_info[1].should =~ /^(www|http|www-http)$/
35
+ end
36
+
37
+ it "gets a 3-element array and doesn't resolve hostname" do
38
+ name_info = Socket.getnameinfo(["AF_INET", SocketSpecs.port, '127.0.0.1'], Socket::NI_NUMERICHOST | Socket::NI_NUMERICSERV)
39
+ name_info.should == ['127.0.0.1', "#{SocketSpecs.port}"]
40
+ end
41
+
42
+ it "gets a 3-element array and resolves the service" do
43
+ name_info = Socket.getnameinfo ["AF_INET", 80, '127.0.0.1']
44
+ name_info[1].should =~ /^(www|http|www-http)$/
45
+ end
46
+
47
+ it "gets a 4-element array and doesn't resolve hostname" do
48
+ name_info = Socket.getnameinfo(["AF_INET", SocketSpecs.port, 'foo', '127.0.0.1'], Socket::NI_NUMERICHOST | Socket::NI_NUMERICSERV)
49
+ name_info.should == ['127.0.0.1', "#{SocketSpecs.port}"]
50
+ end
51
+
52
+ it "gets a 4-element array and resolves the service" do
53
+ name_info = Socket.getnameinfo ["AF_INET", 80, 'foo', '127.0.0.1']
54
+ name_info[1].should =~ /^(www|http|www-http)$/
55
+ end
56
+
57
+ end
@@ -0,0 +1,24 @@
1
+ require File.expand_path('../../../../spec_helper', __FILE__)
2
+ require File.expand_path('../../fixtures/classes', __FILE__)
3
+
4
+ describe "Socket#getservbyname" do
5
+ it "returns the port for service 'http'" do
6
+ Socket.getservbyname('http').should == 80
7
+ end
8
+
9
+ it "returns the port for service 'http' with protocol 'tcp'" do
10
+ Socket.getservbyname('http', 'tcp').should == 80
11
+ end
12
+
13
+ it "returns the port for service 'domain' with protocol 'udp'" do
14
+ Socket.getservbyname('domain', 'udp').should == 53
15
+ end
16
+
17
+ it "returns the port for service 'daytime'" do
18
+ Socket.getservbyname('daytime').should == 13
19
+ end
20
+
21
+ it "raises a SocketError when the service or port is invalid" do
22
+ lambda { Socket.getservbyname('invalid') }.should raise_error(SocketError)
23
+ end
24
+ end
@@ -0,0 +1,21 @@
1
+ require File.expand_path('../../fixtures/classes', __FILE__)
2
+
3
+ include Socket::Constants
4
+
5
+ describe "Socket#listen" do
6
+ before :each do
7
+ @socket = Socket.new(AF_INET, SOCK_STREAM, 0)
8
+ end
9
+
10
+ after :each do
11
+ @socket.closed?.should be_false
12
+ @socket.close
13
+ end
14
+
15
+ it "verifies we can listen for incoming connections" do
16
+ sockaddr = Socket.pack_sockaddr_in(SocketSpecs.port, "127.0.0.1")
17
+ @socket.setsockopt(Socket::SOL_SOCKET, Socket::SO_REUSEADDR, true)
18
+ @socket.bind(sockaddr)
19
+ @socket.listen(1).should == 0
20
+ end
21
+ end
@@ -0,0 +1,109 @@
1
+ require File.expand_path('../../fixtures/classes', __FILE__)
2
+
3
+ describe "Socket.new" do
4
+ before :each do
5
+ @socket = nil
6
+ end
7
+
8
+ after :each do
9
+ @socket.close if @socket and not @socket.closed?
10
+ end
11
+
12
+ describe "with a Socket::PF_INET family" do
13
+ it "creates a socket with a :DGRAM type specifier" do
14
+ @socket = Socket.new Socket::PF_INET, "SOCK_DGRAM", 0
15
+ @socket.should be_an_instance_of(Socket)
16
+ end
17
+
18
+ it "creates a socket with a Socket::PF_STREAM type specifier" do
19
+ @socket = Socket.new Socket::PF_INET, "SOCK_STREAM", 0
20
+ @socket.should be_an_instance_of(Socket)
21
+ end
22
+ end
23
+
24
+ describe "with a Socket::PF_UNIX family" do
25
+ it "creates a socket with a :DGRAM type specifier" do
26
+ @socket = Socket.new Socket::PF_UNIX, "SOCK_DGRAM", 0
27
+ @socket.should be_an_instance_of(Socket)
28
+ end
29
+
30
+ it "creates a socket with a :STREAM type specifier" do
31
+ @socket = Socket.new Socket::PF_UNIX, "SOCK_STREAM", 0
32
+ @socket.should be_an_instance_of(Socket)
33
+ end
34
+ end
35
+
36
+ it "calls #to_str to convert the family to a String" do
37
+ family = mock("socket new family")
38
+ family.should_receive(:to_str).and_return("PF_UNIX")
39
+ @socket = Socket.new family, "SOCK_STREAM", 0
40
+ @socket.should be_an_instance_of(Socket)
41
+ end
42
+
43
+ it "raises a TypeError if #to_str does not return a String" do
44
+ family = mock("socket new family")
45
+ family.should_receive(:to_str).and_return(1)
46
+ lambda { @socket = Socket.new family, "SOCK_STREAM", 0 }.should raise_error(TypeError)
47
+ end
48
+
49
+ ruby_version_is ""..."1.9" do
50
+ it "raises an Errno::EPROTONOSUPPORT if socket type is not a string or integer" do
51
+ lambda { Socket.new(Socket::PF_UNIX, :DGRAM, 0) }.should raise_error(Errno::EPROTONOSUPPORT)
52
+ end
53
+ end
54
+
55
+ ruby_version_is "1.9" do
56
+ it "raises a SocketError if given symbol is not a Socket constants reference" do
57
+ lambda { Socket.new(Socket::PF_UNIX, :NO_EXIST, 0) }.should raise_error(SocketError)
58
+ end
59
+
60
+ it "creates a socket with an :INET family specifier" do
61
+ @socket = Socket.new :INET, :STREAM
62
+ @socket.should be_an_instance_of(Socket)
63
+ end
64
+
65
+ it "creates a socket with an 'INET' family specifier" do
66
+ @socket = Socket.new "INET", :STREAM
67
+ @socket.should be_an_instance_of(Socket)
68
+ end
69
+
70
+ it "creates a socket with a :UNIX family specifier" do
71
+ @socket = Socket.new :UNIX, :STREAM
72
+ @socket.should be_an_instance_of(Socket)
73
+ end
74
+
75
+ it "creates a socket with a 'UNIX' family specifier" do
76
+ @socket = Socket.new "UNIX", :STREAM
77
+ @socket.should be_an_instance_of(Socket)
78
+ end
79
+
80
+ describe "with an :INET family" do
81
+ it "creates a socket with a :DGRAM type specifier" do
82
+ @socket = Socket.new :INET, :DGRAM
83
+ @socket.should be_an_instance_of(Socket)
84
+ end
85
+
86
+ it "creates a socket with a :STREAM type specifier" do
87
+ @socket = Socket.new :INET, :STREAM
88
+ @socket.should be_an_instance_of(Socket)
89
+ end
90
+ end
91
+
92
+ describe "with a :UNIX family" do
93
+ it "creates a socket with a :DGRAM type specifier" do
94
+ @socket = Socket.new :UNIX, :DGRAM
95
+ @socket.should be_an_instance_of(Socket)
96
+ end
97
+
98
+ it "creates a socket with a :STREAM type specifier" do
99
+ @socket = Socket.new :UNIX, :STREAM
100
+ @socket.should be_an_instance_of(Socket)
101
+ end
102
+ end
103
+
104
+ it "accepts an optional protocol parameter" do
105
+ @socket = Socket.new Socket::PF_UNIX, Socket::SOCK_DGRAM, 0
106
+ @socket.should be_an_instance_of(Socket)
107
+ end
108
+ end
109
+ end
@@ -0,0 +1,6 @@
1
+ require File.expand_path('../../fixtures/classes', __FILE__)
2
+ require File.expand_path('../../shared/pack_sockaddr', __FILE__)
3
+
4
+ describe "Socket#pack_sockaddr_in" do
5
+ it_behaves_like :socket_pack_sockaddr_in, :pack_sockaddr_in
6
+ end
@@ -0,0 +1,6 @@
1
+ require File.expand_path('../../fixtures/classes', __FILE__)
2
+ require File.expand_path('../../shared/pack_sockaddr', __FILE__)
3
+
4
+ describe "Socket#pack_sockaddr_un" do
5
+ it_behaves_like :socket_pack_sockaddr_un, :pack_sockaddr_un
6
+ end
@@ -0,0 +1,6 @@
1
+ require File.expand_path('../../fixtures/classes', __FILE__)
2
+ require File.expand_path('../../shared/socketpair', __FILE__)
3
+
4
+ describe "Socket#pair" do
5
+ it_behaves_like :socket_socketpair, :pair
6
+ end
@@ -0,0 +1 @@
1
+ require File.expand_path('../../fixtures/classes', __FILE__)
@@ -0,0 +1 @@
1
+ require File.expand_path('../../fixtures/classes', __FILE__)
@@ -0,0 +1,6 @@
1
+ require File.expand_path('../../fixtures/classes', __FILE__)
2
+ require File.expand_path('../../shared/pack_sockaddr', __FILE__)
3
+
4
+ describe "Socket#sockaddr_in" do
5
+ it_behaves_like :socket_pack_sockaddr_in, :sockaddr_in
6
+ end
@@ -0,0 +1,6 @@
1
+ require File.expand_path('../../fixtures/classes', __FILE__)
2
+ require File.expand_path('../../shared/pack_sockaddr', __FILE__)
3
+
4
+ describe "Socket#sockaddr_un" do
5
+ it_behaves_like :socket_pack_sockaddr_un, :sockaddr_un
6
+ end
@@ -0,0 +1,37 @@
1
+ require File.expand_path('../../fixtures/classes', __FILE__)
2
+
3
+ describe "Socket" do
4
+ it "inherits from BasicSocket and IO" do
5
+ Socket.superclass.should == BasicSocket
6
+ BasicSocket.superclass.should == IO
7
+ end
8
+ end
9
+
10
+ describe "The socket class hierarchy" do
11
+ it "has an IPSocket in parallel to Socket" do
12
+ Socket.ancestors.include?(IPSocket).should == false
13
+ IPSocket.ancestors.include?(Socket).should == false
14
+ IPSocket.superclass.should == BasicSocket
15
+ end
16
+
17
+ it "has TCPSocket and UDPSocket subclasses of IPSocket" do
18
+ TCPSocket.superclass.should == IPSocket
19
+ UDPSocket.superclass.should == IPSocket
20
+ end
21
+
22
+ not_supported_on :jruby, :windows do
23
+ it "has a UNIXSocket in parallel to Socket" do
24
+ Socket.ancestors.include?(UNIXSocket).should == false
25
+ UNIXSocket.ancestors.include?(Socket).should == false
26
+ UNIXSocket.superclass.should == BasicSocket
27
+ end
28
+ end
29
+ end
30
+
31
+ not_supported_on :jruby, :windows do
32
+ describe "Server class hierarchy" do
33
+ it "contains UNIXServer" do
34
+ UNIXServer.superclass.should == UNIXSocket
35
+ end
36
+ end
37
+ end
@@ -0,0 +1,6 @@
1
+ require File.expand_path('../../fixtures/classes', __FILE__)
2
+ require File.expand_path('../../shared/socketpair', __FILE__)
3
+
4
+ describe "Socket#socketpair" do
5
+ it_behaves_like :socket_socketpair, :socketpair
6
+ end
@@ -0,0 +1 @@
1
+ require File.expand_path('../../fixtures/classes', __FILE__)
@@ -0,0 +1,16 @@
1
+ require File.expand_path('../../fixtures/classes', __FILE__)
2
+ require 'socket'
3
+
4
+ describe "Socket#unpack_sockaddr_in" do
5
+
6
+ it "decodes the host name and port number of a packed sockaddr_in" do
7
+ sockaddr = Socket.sockaddr_in SocketSpecs.port, '127.0.0.1'
8
+ Socket.unpack_sockaddr_in(sockaddr).should == [SocketSpecs.port, '127.0.0.1']
9
+ end
10
+
11
+ it "raises an ArgumentError when the sin_family is not AF_INET" do
12
+ sockaddr = Socket.sockaddr_un '/tmp/x'
13
+ lambda { Socket.unpack_sockaddr_in sockaddr }.should raise_error(ArgumentError)
14
+ end
15
+
16
+ end
@@ -0,0 +1,2 @@
1
+ require File.expand_path('../../../../spec_helper', __FILE__)
2
+ require File.expand_path('../../fixtures/classes', __FILE__)
@@ -0,0 +1,30 @@
1
+ require File.expand_path('../../fixtures/classes', __FILE__)
2
+
3
+ describe "Socket::TCPServer.accept_nonblock" do
4
+ before :each do
5
+ @server = TCPServer.new("127.0.0.1", SocketSpecs.port)
6
+ end
7
+
8
+ after :each do
9
+ @server.close
10
+ end
11
+
12
+ it "accepts non blocking connections" do
13
+ @server.listen(5)
14
+ lambda { @server.accept_nonblock}.should raise_error(Errno::EAGAIN)
15
+
16
+ c = TCPSocket.new("127.0.0.1", SocketSpecs.port)
17
+ sleep 0.1
18
+ s = @server.accept_nonblock
19
+
20
+ # commenting while we get some input on the current JRuby situation
21
+ # port, address = Socket.unpack_sockaddr_in(s.getsockname)
22
+
23
+ # port.should == SocketSpecs.port
24
+ # address.should == "127.0.0.1"
25
+ s.should be_kind_of(TCPSocket)
26
+
27
+ c.close
28
+ s.close
29
+ end
30
+ end
@@ -0,0 +1,60 @@
1
+ require File.expand_path('../../fixtures/classes', __FILE__)
2
+
3
+
4
+ describe "TCPServer#accept" do
5
+ before :each do
6
+ @server = TCPServer.new("127.0.0.1", SocketSpecs.port)
7
+ end
8
+
9
+ after :each do
10
+ @server.close unless @server.closed?
11
+ end
12
+
13
+ it "accepts a connection and returns a TCPSocket" do
14
+ data = nil
15
+ t = Thread.new do
16
+ client = @server.accept
17
+ client.should be_kind_of(TCPSocket)
18
+ data = client.read(5)
19
+ client << "goodbye"
20
+ client.close
21
+ end
22
+ Thread.pass while t.status and t.status != "sleep"
23
+
24
+ socket = TCPSocket.new('127.0.0.1', SocketSpecs.port)
25
+ socket.write('hello')
26
+ socket.shutdown(1) # we are done with sending
27
+ socket.read.should == 'goodbye'
28
+ t.join
29
+ data.should == 'hello'
30
+ socket.close
31
+ end
32
+
33
+ it "can be interrupted by Thread#kill" do
34
+ t = Thread.new { @server.accept }
35
+
36
+ Thread.pass while t.status and t.status != "sleep"
37
+
38
+ # kill thread, ensure it dies in a reasonable amount of time
39
+ t.kill
40
+ a = 1
41
+ while a < 2000
42
+ break unless t.alive?
43
+ Thread.pass
44
+ sleep 0.2
45
+ a += 1
46
+ end
47
+ a.should < 2000
48
+ end
49
+
50
+ it "can be interrupted by Thread#raise" do
51
+ t = Thread.new { @server.accept }
52
+
53
+ Thread.pass while t.status and t.status != "sleep"
54
+
55
+ # raise in thread, ensure the raise happens
56
+ ex = Exception.new
57
+ t.raise ex
58
+ lambda { t.join }.should raise_error(Exception)
59
+ end
60
+ end