Class: Net::SSH::Test::Socket

Inherits:
StringIO
  • Object
show all
Defined in:
lib/tpkg/thirdparty/net-ssh-2.1.0/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

Instance Method Summary collapse

Constructor Details

#initializeSocket

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.



22
23
24
25
26
27
28
29
30
31
32
# File 'lib/tpkg/thirdparty/net-ssh-2.1.0/lib/net/ssh/test/socket.rb', line 22

def initialize
  extend(Net::SSH::Transport::PacketStream)
  super "SSH-2.0-Test\r\n"

  @script = Script.new

  script.gets(:kexinit, 1, 2, 3, 4, "test", "ssh-rsa", "none", "none", "none", "none", "none", "none", "", "", false)
  script.sends(:kexinit)
  script.sends(:newkeys)
  script.gets(:newkeys)
end

Instance Attribute Details

#hostObject (readonly)

Returns the value of attribute host.



12
13
14
# File 'lib/tpkg/thirdparty/net-ssh-2.1.0/lib/net/ssh/test/socket.rb', line 12

def host
  @host
end

#portObject (readonly)

Returns the value of attribute port.



12
13
14
# File 'lib/tpkg/thirdparty/net-ssh-2.1.0/lib/net/ssh/test/socket.rb', line 12

def port
  @port
end

#scriptObject (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.



17
18
19
# File 'lib/tpkg/thirdparty/net-ssh-2.1.0/lib/net/ssh/test/socket.rb', line 17

def script
  @script
end

Instance Method Details

#getpeernameObject

Returns a sockaddr struct for the port and host that were used when the socket was instantiated.



49
50
51
# File 'lib/tpkg/thirdparty/net-ssh-2.1.0/lib/net/ssh/test/socket.rb', line 49

def getpeername
  ::Socket.sockaddr_in(port, host)
end

#open(host, port) ⇒ Object

Allows the socket to also mimic a socket factory, simply returning self.



42
43
44
45
# File 'lib/tpkg/thirdparty/net-ssh-2.1.0/lib/net/ssh/test/socket.rb', line 42

def open(host, port)
  @host, @port = host, port
  self
end

#readpartial(n) ⇒ Object



58
59
60
# File 'lib/tpkg/thirdparty/net-ssh-2.1.0/lib/net/ssh/test/socket.rb', line 58

def readpartial(n)
  recv(n)
end

#recv(n) ⇒ Object

Alias to #read, but never returns nil (returns an empty string instead).



54
55
56
# File 'lib/tpkg/thirdparty/net-ssh-2.1.0/lib/net/ssh/test/socket.rb', line 54

def recv(n)
  read(n) || ""
end

#write(data) ⇒ Object

This doesn’t actually do anything, since we don’t really care what gets written.



36
37
38
# File 'lib/tpkg/thirdparty/net-ssh-2.1.0/lib/net/ssh/test/socket.rb', line 36

def write(data)
  # black hole, because we don't actually care about what gets written
end