Class: Net::SSH::Test::Socket
- Inherits:
-
StringIO
- Object
- StringIO
- Net::SSH::Test::Socket
- Defined in:
- lib/net/ssh/test/socket.rb
Overview
A mock socket implementation for use in testing. It implements the minimum necessary interface for interacting with the rest of the Net::SSH::Test system.
Instance Attribute Summary collapse
-
#host ⇒ Object
readonly
Returns the value of attribute host.
-
#port ⇒ Object
readonly
Returns the value of attribute port.
-
#script ⇒ Object
readonly
The Net::SSH::Test::Script object in use by this socket.
Instance Method Summary collapse
-
#getpeername ⇒ Object
Returns a sockaddr struct for the port and host that were used when the socket was instantiated.
-
#initialize ⇒ Socket
constructor
Create a new test socket.
-
#open(host, port, options = {}) ⇒ Object
Allows the socket to also mimic a socket factory, simply returning
self
. - #readpartial(n) ⇒ Object
-
#recv(n) ⇒ Object
Alias to #read, but never returns nil (returns an empty string instead).
-
#write(data) ⇒ Object
This doesn’t actually do anything, since we don’t really care what gets written.
Constructor Details
#initialize ⇒ Socket
Create a new test socket. This will also instantiate a new Net::SSH::Test::Script and seed it with the necessary events to power the initialization of the connection.
24 25 26 27 28 29 30 31 32 33 34 |
# File 'lib/net/ssh/test/socket.rb', line 24 def initialize extend(Net::SSH::Transport::PacketStream) super "SSH-2.0-Test\r\n" @script = Script.new script.sends(:kexinit) script.gets(:kexinit, 1, 2, 3, 4, "test", "ssh-rsa", "none", "none", "none", "none", "none", "none", "", "", false) script.sends(:newkeys) script.gets(:newkeys) end |
Instance Attribute Details
#host ⇒ Object (readonly)
Returns the value of attribute host.
14 15 16 |
# File 'lib/net/ssh/test/socket.rb', line 14 def host @host end |
#port ⇒ Object (readonly)
Returns the value of attribute port.
14 15 16 |
# File 'lib/net/ssh/test/socket.rb', line 14 def port @port end |
#script ⇒ Object (readonly)
The Net::SSH::Test::Script object in use by this socket. This is the canonical script instance that should be used for any test depending on this socket instance.
19 20 21 |
# File 'lib/net/ssh/test/socket.rb', line 19 def script @script end |
Instance Method Details
#getpeername ⇒ Object
Returns a sockaddr struct for the port and host that were used when the socket was instantiated.
51 52 53 |
# File 'lib/net/ssh/test/socket.rb', line 51 def getpeername ::Socket.sockaddr_in(port, host) end |
#open(host, port, options = {}) ⇒ Object
Allows the socket to also mimic a socket factory, simply returning self
.
44 45 46 47 |
# File 'lib/net/ssh/test/socket.rb', line 44 def open(host, port, ={}) @host, @port = host, port self end |
#readpartial(n) ⇒ Object
60 61 62 |
# File 'lib/net/ssh/test/socket.rb', line 60 def readpartial(n) recv(n) end |
#recv(n) ⇒ Object
Alias to #read, but never returns nil (returns an empty string instead).
56 57 58 |
# File 'lib/net/ssh/test/socket.rb', line 56 def recv(n) read(n) || "" end |
#write(data) ⇒ Object
This doesn’t actually do anything, since we don’t really care what gets written.
38 39 40 |
# File 'lib/net/ssh/test/socket.rb', line 38 def write(data) # black hole, because we don't actually care about what gets written end |