/Merlin/External.LCA_RESTRICTED/Languages/IronRuby/mspec/rubyspec/library/socket/basicsocket/send_spec.rb

https://github.com/Catweazle/ironruby · Ruby · 69 lines · 57 code · 12 blank · 0 comment · 13 complexity · 4a37644fb42b12cc969aa38daebe83b3 MD5 · raw file

  1. require File.dirname(__FILE__) + '/../../../spec_helper'
  2. require File.dirname(__FILE__) + '/../fixtures/classes'
  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 = nil
  16. t = Thread.new do
  17. client = @server.accept
  18. data = client.recv(5)
  19. client.close
  20. end
  21. Thread.pass until t.status == "sleep" or t.status == nil
  22. t.status.should_not be_nil
  23. @socket.send('hello', 0).should == 5
  24. t.join
  25. data.should == 'hello'
  26. end
  27. it "accepts flags to specify unusual sending behaviour" do
  28. data = nil
  29. peek_data = nil
  30. t = Thread.new do
  31. client = @server.accept
  32. peek_data = client.recv(6, Socket::MSG_PEEK)
  33. data = client.recv(6)
  34. client.close
  35. end
  36. Thread.pass until t.status == "sleep" or t.status == nil
  37. t.status.should_not be_nil
  38. @socket.send('helloU', Socket::MSG_PEEK | Socket::MSG_OOB).should == 6
  39. t.join
  40. peek_data.should == "hello"
  41. data.should == 'hello'
  42. end
  43. it "accepts a sockaddr as recipient address" do
  44. data = nil
  45. t = Thread.new do
  46. client = @server.accept
  47. data = client.recv(5)
  48. client.close
  49. end
  50. Thread.pass until t.status == "sleep" or t.status == nil
  51. t.status.should_not be_nil
  52. sockaddr = Socket.pack_sockaddr_in(SocketSpecs.port, "127.0.0.1")
  53. @socket.send('hello', 0, sockaddr).should == 5
  54. t.join
  55. data.should == 'hello'
  56. end
  57. end