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,57 @@
1
+ require File.expand_path('../../fixtures/classes', __FILE__)
2
+
3
+ describe "UDPSocket.send" do
4
+ before :each do
5
+ @ready = false
6
+ @server_thread = Thread.new do
7
+ @server = UDPSocket.open
8
+ @server.bind(nil, SocketSpecs.port)
9
+ @ready = true
10
+ begin
11
+ @msg = @server.recvfrom_nonblock(64)
12
+ rescue Errno::EAGAIN
13
+ IO.select([@server])
14
+ retry
15
+ end
16
+ @server.close
17
+ end
18
+ Thread.pass while @server_thread.status and !@ready
19
+ end
20
+
21
+ it "sends data in ad hoc mode" do
22
+ @socket = UDPSocket.open
23
+ @socket.send("ad hoc", 0, SocketSpecs.hostname,SocketSpecs.port)
24
+ @socket.close
25
+ @server_thread.join
26
+
27
+ @msg[0].should == "ad hoc"
28
+ @msg[1][0].should == "AF_INET"
29
+ @msg[1][1].should be_kind_of(Fixnum)
30
+ @msg[1][3].should == "127.0.0.1"
31
+ end
32
+
33
+ it "sends data in ad hoc mode (with port given as a String)" do
34
+ @socket = UDPSocket.open
35
+ @socket.send("ad hoc", 0, SocketSpecs.hostname,SocketSpecs.str_port)
36
+ @socket.close
37
+ @server_thread.join
38
+
39
+ @msg[0].should == "ad hoc"
40
+ @msg[1][0].should == "AF_INET"
41
+ @msg[1][1].should be_kind_of(Fixnum)
42
+ @msg[1][3].should == "127.0.0.1"
43
+ end
44
+
45
+ it "sends data in connection mode" do
46
+ @socket = UDPSocket.open
47
+ @socket.connect(SocketSpecs.hostname,SocketSpecs.port)
48
+ @socket.send("connection-based", 0)
49
+ @socket.close
50
+ @server_thread.join
51
+
52
+ @msg[0].should == "connection-based"
53
+ @msg[1][0].should == "AF_INET"
54
+ @msg[1][1].should be_kind_of(Fixnum)
55
+ @msg[1][3].should == "127.0.0.1"
56
+ end
57
+ end
@@ -0,0 +1,33 @@
1
+ require File.expand_path('../../fixtures/classes', __FILE__)
2
+
3
+ describe "UNIXServer#accept_nonblock" do
4
+
5
+ platform_is_not :windows do
6
+ before :each do
7
+ @path = SocketSpecs.socket_path
8
+ rm_r @path
9
+
10
+ @server = UNIXServer.open(@path)
11
+ @client = UNIXSocket.open(@path)
12
+
13
+ @socket = @server.accept_nonblock
14
+ @client.send("foobar", 0)
15
+ end
16
+
17
+ after :each do
18
+ @socket.close
19
+ @client.close
20
+ @server.close
21
+ rm_r @path
22
+ end
23
+
24
+ it "accepts a connection in a non-blocking way" do
25
+ data = @socket.recvfrom(6).first
26
+ data.should == "foobar"
27
+ end
28
+
29
+ it "returns a UNIXSocket" do
30
+ @socket.should be_kind_of(UNIXSocket)
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,64 @@
1
+ require File.expand_path('../../fixtures/classes', __FILE__)
2
+
3
+ platform_is_not :windows do
4
+ describe "UNIXServer#accept" do
5
+ before :each do
6
+ @path = SocketSpecs.socket_path
7
+ rm_r @path
8
+ end
9
+
10
+ after :each do
11
+ rm_r @path
12
+ end
13
+
14
+ it "accepts what is written by the client" do
15
+ server = UNIXServer.open(SocketSpecs.socket_path)
16
+ client = UNIXSocket.open(SocketSpecs.socket_path)
17
+
18
+ client.send('hello', 0)
19
+
20
+ sock = server.accept
21
+ data, info = sock.recvfrom(5)
22
+
23
+ data.should == 'hello'
24
+
25
+ server.close
26
+ client.close
27
+ sock.close
28
+ end
29
+
30
+ it "can be interrupted by Thread#kill" do
31
+ server = UNIXServer.new(@path)
32
+ t = Thread.new {
33
+ server.accept
34
+ }
35
+ Thread.pass while t.status and t.status != "sleep"
36
+
37
+ # kill thread, ensure it dies in a reasonable amount of time
38
+ t.kill
39
+ a = 1
40
+ while a < 2000
41
+ break unless t.alive?
42
+ Thread.pass
43
+ sleep 0.2
44
+ a += 1
45
+ end
46
+ a.should < 2000
47
+ server.close
48
+ end
49
+
50
+ it "can be interrupted by Thread#raise" do
51
+ server = UNIXServer.new(@path)
52
+ t = Thread.new {
53
+ server.accept
54
+ }
55
+ Thread.pass while t.status and t.status != "sleep"
56
+
57
+ # raise in thread, ensure the raise happens
58
+ ex = Exception.new
59
+ t.raise ex
60
+ lambda { t.join }.should raise_error(Exception)
61
+ server.close
62
+ end
63
+ end
64
+ end
@@ -0,0 +1,32 @@
1
+ require File.expand_path('../../fixtures/classes', __FILE__)
2
+
3
+ describe "UNIXServer#for_fd" do
4
+ before :each do
5
+ @unix_path = tmp("unix_socket")
6
+ @unix = UNIXServer.new(@unix_path)
7
+ end
8
+
9
+ after :each do
10
+ # UG. We can't use the new_fd helper, because we need fds that are
11
+ # associated with sockets. But for_fd has the same issue as IO#new, it
12
+ # creates a fd aliasing issue with closing, causing EBADF errors.
13
+ #
14
+ # Thusly, the rescue for EBADF here. I'd love a better solution, but
15
+ # I'm not aware of one.
16
+
17
+ begin
18
+ @unix.close unless @unix.closed?
19
+ rescue Errno::EBADF
20
+ # I hate this API too
21
+ end
22
+
23
+ rm_r @unix_path
24
+ end
25
+
26
+ it "can calculate the path" do
27
+ b = UNIXServer.for_fd(@unix.fileno)
28
+
29
+ b.path.should == @unix_path
30
+ b.close
31
+ end
32
+ end
@@ -0,0 +1,5 @@
1
+ require File.expand_path('../shared/new', __FILE__)
2
+
3
+ describe "UNIXServer.new" do
4
+ it_behaves_like :unixserver_new, :new
5
+ end
@@ -0,0 +1,25 @@
1
+ require File.expand_path('../shared/new', __FILE__)
2
+
3
+ describe "UNIXServer.open" do
4
+ it_behaves_like :unixserver_new, :open
5
+
6
+ platform_is_not :windows do
7
+ before :each do
8
+ @path = tmp("unixserver_spec")
9
+ rm_r @path
10
+ end
11
+
12
+ after :each do
13
+ @server.close if @server
14
+ @server = nil
15
+ rm_r @path
16
+ end
17
+
18
+ it "yields the new UNIXServer object to the block, if given" do
19
+ UNIXServer.open(@path) do |unix|
20
+ unix.path.should == @path
21
+ unix.addr.should == ["AF_UNIX", @path]
22
+ end
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,23 @@
1
+ require File.expand_path('../../../fixtures/classes', __FILE__)
2
+ require 'tempfile'
3
+
4
+ describe :unixserver_new, :shared => true do
5
+ platform_is_not :windows do
6
+ before :each do
7
+ @path = tmp("unixserver_spec")
8
+ rm_r @path
9
+ end
10
+
11
+ after :each do
12
+ @server.close if @server
13
+ @server = nil
14
+ rm_r @path
15
+ end
16
+
17
+ it "creates a new UNIXServer" do
18
+ @server = UNIXServer.send(@method, @path)
19
+ @server.path.should == @path
20
+ @server.addr.should == ["AF_UNIX", @path]
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,37 @@
1
+ require File.expand_path('../../fixtures/classes', __FILE__)
2
+
3
+ describe "UNIXSocket#addr" do
4
+
5
+ platform_is_not :windows do
6
+ before :each do
7
+ @path = SocketSpecs.socket_path
8
+ rm_r @path
9
+
10
+ @server = UNIXServer.open(@path)
11
+ @client = UNIXSocket.open(@path)
12
+ end
13
+
14
+ after :each do
15
+ @client.close
16
+ @server.close
17
+ rm_r @path
18
+ end
19
+
20
+ it "returns the address family of this socket in an array" do
21
+ @client.addr[0].should == "AF_UNIX"
22
+ end
23
+
24
+ it "returns the path of the socket in an array if it's a server" do
25
+ @server.addr[1].should == @path
26
+ end
27
+
28
+ it "returns an empty string for path if it's a client" do
29
+ @client.addr[1].should == ""
30
+ end
31
+
32
+ it "returns an array" do
33
+ @client.addr.should be_kind_of(Array)
34
+ end
35
+ end
36
+
37
+ end
@@ -0,0 +1,5 @@
1
+ require File.expand_path('../shared/new', __FILE__)
2
+
3
+ describe "UNIXSocket.new" do
4
+ it_behaves_like :unixsocket_new, :new
5
+ end
@@ -0,0 +1,26 @@
1
+ require File.expand_path('../shared/new', __FILE__)
2
+
3
+ describe "UNIXSocket.open" do
4
+ it_behaves_like :unixsocket_new, :open
5
+
6
+ platform_is_not :windows do
7
+ before :each do
8
+ @path = SocketSpecs.socket_path
9
+ rm_r @path
10
+
11
+ @server = UNIXServer.open(@path)
12
+ end
13
+
14
+ after :each do
15
+ @server.close
16
+ rm_r @path
17
+ end
18
+
19
+ it "opens a unix socket on the specified file and yields it to the block" do
20
+ UNIXSocket.send(@method, @path) do |client|
21
+ client.addr[0].should == "AF_UNIX"
22
+ client.closed?.should == false
23
+ end
24
+ end
25
+ end
26
+ end
@@ -0,0 +1,38 @@
1
+ require File.expand_path('../../fixtures/classes', __FILE__)
2
+ require File.expand_path('../../shared/partially_closable_sockets', __FILE__)
3
+
4
+ describe "UNIXSocket#pair" do
5
+ platform_is_not :windows do
6
+
7
+ it_should_behave_like "partially closable sockets"
8
+
9
+ before :each do
10
+ @s1, @s2 = UNIXSocket.pair
11
+ end
12
+
13
+ after :each do
14
+ @s1.close
15
+ @s2.close
16
+ end
17
+
18
+ it "returns a pair of connected sockets" do
19
+ @s1.puts "foo"
20
+ @s2.gets.should == "foo\n"
21
+ end
22
+
23
+ it "returns sockets with no name" do
24
+ @s1.path.should == @s2.path
25
+ @s1.path.should == ""
26
+ end
27
+
28
+ it "returns sockets with no address" do
29
+ @s1.addr.should == ["AF_UNIX", ""]
30
+ @s2.addr.should == ["AF_UNIX", ""]
31
+ end
32
+
33
+ it "returns sockets with no peeraddr" do
34
+ @s1.peeraddr.should == ["AF_UNIX", ""]
35
+ @s2.peeraddr.should == ["AF_UNIX", ""]
36
+ end
37
+ end
38
+ end
@@ -0,0 +1,25 @@
1
+ require File.expand_path('../../fixtures/classes', __FILE__)
2
+ require File.expand_path('../../shared/partially_closable_sockets', __FILE__)
3
+
4
+ platform_is_not :windows do
5
+ describe "UNIXSocket partial closability" do
6
+
7
+ before :each do
8
+ @path = SocketSpecs.socket_path
9
+ rm_r @path
10
+ @server = UNIXServer.open(@path)
11
+ @s1 = UNIXSocket.new(@path)
12
+ @s2 = @server.accept
13
+ end
14
+
15
+ after :each do
16
+ @server.close
17
+ @s1.close
18
+ @s2.close
19
+ rm_r @path
20
+ end
21
+
22
+ it_should_behave_like "partially closable sockets"
23
+
24
+ end
25
+ end
@@ -0,0 +1,29 @@
1
+ require File.expand_path('../../fixtures/classes', __FILE__)
2
+
3
+ describe "UNIXSocket#path" do
4
+
5
+ platform_is_not :windows do
6
+ before :each do
7
+ @path = SocketSpecs.socket_path
8
+ rm_r @path
9
+
10
+ @server = UNIXServer.open(@path)
11
+ @client = UNIXSocket.open(@path)
12
+ end
13
+
14
+ after :each do
15
+ @client.close
16
+ @server.close
17
+ rm_r @path
18
+ end
19
+
20
+ it "returns the path of the socket if it's a server" do
21
+ @server.path.should == @path
22
+ end
23
+
24
+ it "returns an empty string for path if it's a client" do
25
+ @client.path.should == ""
26
+ end
27
+ end
28
+
29
+ end
@@ -0,0 +1,29 @@
1
+ require File.expand_path('../../fixtures/classes', __FILE__)
2
+
3
+ describe "UNIXSocket#peeraddr" do
4
+
5
+ platform_is_not :windows do
6
+ before :each do
7
+ @path = SocketSpecs.socket_path
8
+ rm_r @path
9
+
10
+ @server = UNIXServer.open(@path)
11
+ @client = UNIXSocket.open(@path)
12
+ end
13
+
14
+ after :each do
15
+ @client.close
16
+ @server.close
17
+ rm_r @path
18
+ end
19
+
20
+ it "returns the address familly and path of the server end of the connection" do
21
+ @client.peeraddr.should == ["AF_UNIX", @path]
22
+ end
23
+
24
+ it "raises an error in server sockets" do
25
+ lambda { @server.peeraddr }.should raise_error
26
+ end
27
+ end
28
+
29
+ end