/spec/ruby/library/socket/basicsocket/send_spec.rb

https://github.com/nurse/ruby · Ruby · 220 lines · 180 code · 40 blank · 0 comment · 24 complexity · 08e08d9a4e17295c2a5869ca99da35df MD5 · raw file

  1. require_relative '../spec_helper'
  2. require_relative '../fixtures/classes'
  3. describe "BasicSocket#send" do
  4. before :each do
  5. @server = TCPServer.new('127.0.0.1', 0)
  6. @port = @server.addr[1]
  7. @socket = TCPSocket.new('127.0.0.1', @port)
  8. end
  9. after :each do
  10. @server.closed?.should be_false
  11. @socket.closed?.should be_false
  12. @server.close
  13. @socket.close
  14. end
  15. it "sends a message to another socket and returns the number of bytes sent" do
  16. data = ""
  17. t = Thread.new do
  18. client = @server.accept
  19. loop do
  20. got = client.recv(5)
  21. break if got.empty?
  22. data << got
  23. end
  24. client.close
  25. end
  26. Thread.pass while t.status and t.status != "sleep"
  27. t.status.should_not be_nil
  28. @socket.send('hello', 0).should == 5
  29. @socket.shutdown(1) # indicate, that we are done sending
  30. @socket.recv(10)
  31. t.join
  32. data.should == 'hello'
  33. end
  34. platform_is_not :solaris, :windows do
  35. it "accepts flags to specify unusual sending behaviour" do
  36. data = nil
  37. peek_data = nil
  38. t = Thread.new do
  39. client = @server.accept
  40. peek_data = client.recv(6, Socket::MSG_PEEK)
  41. data = client.recv(6)
  42. client.recv(10) # this recv is important
  43. client.close
  44. end
  45. Thread.pass while t.status and t.status != "sleep"
  46. t.status.should_not be_nil
  47. @socket.send('helloU', Socket::MSG_PEEK | Socket::MSG_OOB).should == 6
  48. @socket.shutdown # indicate, that we are done sending
  49. t.join
  50. peek_data.should == "hello"
  51. data.should == 'hello'
  52. end
  53. end
  54. it "accepts a sockaddr as recipient address" do
  55. data = ""
  56. t = Thread.new do
  57. client = @server.accept
  58. loop do
  59. got = client.recv(5)
  60. break if got.empty?
  61. data << got
  62. end
  63. client.close
  64. end
  65. Thread.pass while t.status and t.status != "sleep"
  66. t.status.should_not be_nil
  67. sockaddr = Socket.pack_sockaddr_in(@port, "127.0.0.1")
  68. @socket.send('hello', 0, sockaddr).should == 5
  69. @socket.shutdown # indicate, that we are done sending
  70. t.join
  71. data.should == 'hello'
  72. end
  73. end
  74. describe 'BasicSocket#send' do
  75. SocketSpecs.each_ip_protocol do |family, ip_address|
  76. describe 'using a disconnected socket' do
  77. before do
  78. @client = Socket.new(family, :DGRAM)
  79. @server = Socket.new(family, :DGRAM)
  80. @server.bind(Socket.sockaddr_in(0, ip_address))
  81. end
  82. after do
  83. @client.close
  84. @server.close
  85. end
  86. describe 'with an object implementing #to_str' do
  87. it 'returns the amount of sent bytes' do
  88. data = mock('message')
  89. data.should_receive(:to_str).and_return('hello')
  90. @client.send(data, 0, @server.getsockname).should == 5
  91. end
  92. end
  93. describe 'without a destination address' do
  94. it "raises #{SocketSpecs.dest_addr_req_error}" do
  95. -> { @client.send('hello', 0) }.should raise_error(SocketSpecs.dest_addr_req_error)
  96. end
  97. end
  98. describe 'with a destination address as a String' do
  99. it 'returns the amount of sent bytes' do
  100. @client.send('hello', 0, @server.getsockname).should == 5
  101. end
  102. it 'does not persist the connection after writing to the socket' do
  103. @client.send('hello', 0, @server.getsockname)
  104. -> { @client.send('hello', 0) }.should raise_error(SocketSpecs.dest_addr_req_error)
  105. end
  106. end
  107. describe 'with a destination address as an Addrinfo' do
  108. it 'returns the amount of sent bytes' do
  109. @client.send('hello', 0, @server.connect_address).should == 5
  110. end
  111. end
  112. end
  113. describe 'using a connected UDP socket' do
  114. before do
  115. @client = Socket.new(family, :DGRAM)
  116. @server = Socket.new(family, :DGRAM)
  117. @server.bind(Socket.sockaddr_in(0, ip_address))
  118. end
  119. after do
  120. @client.close
  121. @server.close
  122. end
  123. describe 'without a destination address argument' do
  124. before do
  125. @client.connect(@server.getsockname)
  126. end
  127. it 'returns the amount of bytes written' do
  128. @client.send('hello', 0).should == 5
  129. end
  130. end
  131. describe 'with a destination address argument' do
  132. before do
  133. @alt_server = Socket.new(family, :DGRAM)
  134. @alt_server.bind(Socket.sockaddr_in(0, ip_address))
  135. end
  136. after do
  137. @alt_server.close
  138. end
  139. it 'sends the message to the given address instead' do
  140. @client.send('hello', 0, @alt_server.getsockname).should == 5
  141. -> { @server.recv(5) }.should block_caller
  142. @alt_server.recv(5).should == 'hello'
  143. end
  144. it 'does not persist the alternative connection after writing to the socket' do
  145. @client.send('hello', 0, @alt_server.getsockname)
  146. @client.connect(@server.getsockname)
  147. @client.send('world', 0)
  148. @server.recv(5).should == 'world'
  149. end
  150. end
  151. end
  152. platform_is_not :darwin, :windows do
  153. describe 'using a connected TCP socket' do
  154. before do
  155. @client = Socket.new(family, :STREAM)
  156. @server = Socket.new(family, :STREAM)
  157. @server.bind(Socket.sockaddr_in(0, ip_address))
  158. @server.listen(1)
  159. @client.connect(@server.getsockname)
  160. end
  161. after do
  162. @client.close
  163. @server.close
  164. end
  165. describe 'using the MSG_OOB flag' do
  166. it 'sends an out-of-band message' do
  167. socket, _ = @server.accept
  168. socket.setsockopt(:SOCKET, :OOBINLINE, true)
  169. @client.send('a', Socket::MSG_OOB).should == 1
  170. begin
  171. socket.recv(10).should == 'a'
  172. ensure
  173. socket.close
  174. end
  175. end
  176. end
  177. end
  178. end
  179. end
  180. end