/projects/jruby-1.7.3/spec/bin/ruby/library/socket/basicsocket/send_spec.rb

https://gitlab.com/essere.lab.public/qualitas.class-corpus · Ruby · 82 lines · 70 code · 12 blank · 0 comment · 15 complexity · 854204d016e073020de8c3ca276befa2 MD5 · raw file

  1. require File.expand_path('../../../../spec_helper', __FILE__)
  2. require File.expand_path('../../fixtures/classes', __FILE__)
  3. describe "BasicSocket#send" do
  4. before :each do
  5. @server = TCPServer.new('127.0.0.1', SocketSpecs.port)
  6. @socket = TCPSocket.new('127.0.0.1', SocketSpecs.port)
  7. end
  8. after :each do
  9. @server.closed?.should be_false
  10. @socket.closed?.should be_false
  11. @server.close
  12. @socket.close
  13. end
  14. it "sends a message to another socket and returns the number of bytes sent" do
  15. data = ""
  16. t = Thread.new do
  17. client = @server.accept
  18. loop do
  19. got = client.recv(5)
  20. break if got.empty?
  21. data << got
  22. end
  23. client.close
  24. end
  25. Thread.pass while t.status and t.status != "sleep"
  26. t.status.should_not be_nil
  27. @socket.send('hello', 0).should == 5
  28. @socket.shutdown(1) # indicate, that we are done sending
  29. @socket.recv(10)
  30. t.join
  31. data.should == 'hello'
  32. end
  33. it "accepts flags to specify unusual sending behaviour" do
  34. data = nil
  35. peek_data = nil
  36. t = Thread.new do
  37. client = @server.accept
  38. peek_data = client.recv(6, Socket::MSG_PEEK)
  39. data = client.recv(6)
  40. client.recv(10) # this recv is important
  41. client.close
  42. end
  43. Thread.pass while t.status and t.status != "sleep"
  44. t.status.should_not be_nil
  45. @socket.send('helloU', Socket::MSG_PEEK | Socket::MSG_OOB).should == 6
  46. @socket.shutdown # indicate, that we are done sending
  47. t.join
  48. peek_data.should == "hello"
  49. data.should == 'hello'
  50. end
  51. it "accepts a sockaddr as recipient address" do
  52. data = ""
  53. t = Thread.new do
  54. client = @server.accept
  55. loop do
  56. got = client.recv(5)
  57. break if got.empty?
  58. data << got
  59. end
  60. client.close
  61. end
  62. Thread.pass while t.status and t.status != "sleep"
  63. t.status.should_not be_nil
  64. sockaddr = Socket.pack_sockaddr_in(SocketSpecs.port, "127.0.0.1")
  65. @socket.send('hello', 0, sockaddr).should == 5
  66. @socket.shutdown # indicate, that we are done sending
  67. t.join
  68. data.should == 'hello'
  69. end
  70. end