class Net::SSH::Test::Channel

A mock channel, used for scripting actions in tests. It wraps a Net::SSH::Test::Script instance, and delegates to it for the most part. This class has little real functionality on its own, but rather acts as a convenience for scripting channel-related activity for later comparison in a unit test.

story do |session|
  channel = session.opens_channel
  channel.sends_exec "ls"
  channel.gets_data "result of ls"
  channel.gets_extended_data "some error coming from ls"
  channel.gets_close
  channel.sends_close
end

Attributes

local_id[W]

Sets the local-id of this channel object (the id assigned by the client).

remote_id[W]

Sets the remote-id of this channel object (the id assigned by the mock-server).

script[R]

The Net::SSH::Test::Script instance employed by this mock channel.

Public Class Methods

new(script) click to toggle source

Creates a new Test::Channel instance on top of the given script (which must be a Net::SSH::Test::Script instance).

# File lib/net/ssh/test/channel.rb, line 31
def initialize(script)
  @script = script
  @local_id = @remote_id = nil
end

Public Instance Methods

gets_close() click to toggle source

Scripts the reception of a “channel close” packet from the remote end.

channel.gets_close
# File lib/net/ssh/test/channel.rb, line 142
def gets_close
  script.gets_channel_close(self)
end
gets_data(data) click to toggle source

Scripts the reception of a channel data packet from the remote end.

channel.gets_data "bar"
# File lib/net/ssh/test/channel.rb, line 113
def gets_data(data)
  script.gets_channel_data(self, data)
end
gets_eof() click to toggle source

Scripts the reception of an EOF packet from the remote end.

channel.gets_eof
# File lib/net/ssh/test/channel.rb, line 135
def gets_eof
  script.gets_channel_eof(self)
end
gets_exit_status(status=0) click to toggle source

Scripts the reception of an “exit-status” channel request packet.

channel.gets_exit_status(127)
# File lib/net/ssh/test/channel.rb, line 128
def gets_exit_status(status=0)
  script.gets_channel_request(self, "exit-status", false, status)
end
gets_extended_data(data) click to toggle source

Scripts the reception of a channel extended data packet from the remote end.

channel.gets_extended_data "whoops"
# File lib/net/ssh/test/channel.rb, line 121
def gets_extended_data(data)
  script.gets_channel_extended_data(self, data)
end
inject_remote_delay!() click to toggle source

Because adjacent calls to gets_data will sometimes cause the data packets to be concatenated (causing expectations in tests to fail), you may need to separate those calls with calls to inject_remote_delay! (which essentially just mimics receiving an empty data packet):

channel.gets_data "abcdefg"
channel.inject_remote_delay!
channel.gets_data "hijklmn"
# File lib/net/ssh/test/channel.rb, line 58
def inject_remote_delay!
  gets_data("")
end
local_id() click to toggle source

Returns the local (client-assigned) id for this channel, or a Proc object that will return the local-id later if the local id has not yet been set. (See Net::SSH::Test::Packet#instantiate!.)

# File lib/net/ssh/test/channel.rb, line 39
def local_id
  @local_id || Proc.new { @local_id or raise "local-id has not been set yet!" }
end
remote_id() click to toggle source

Returns the remote (server-assigned) id for this channel, or a Proc object that will return the remote-id later if the remote id has not yet been set. (See Net::SSH::Test::Packet#instantiate!.)

# File lib/net/ssh/test/channel.rb, line 46
def remote_id
  @remote_id || Proc.new { @remote_id or raise "remote-id has not been set yet!" }
end
sends_close() click to toggle source

Scripts the sending of a “channel close” packet across the channel.

channel.sends_close
# File lib/net/ssh/test/channel.rb, line 99
def sends_close
  script.sends_channel_close(self)
end
sends_data(data) click to toggle source

Scripts the sending of a data packet across the channel.

channel.sends_data "foo"
# File lib/net/ssh/test/channel.rb, line 85
def sends_data(data)
  script.sends_channel_data(self, data)
end
sends_eof() click to toggle source

Scripts the sending of an EOF packet across the channel.

channel.sends_eof
# File lib/net/ssh/test/channel.rb, line 92
def sends_eof
  script.sends_channel_eof(self)
end
sends_exec(command, reply=true, success=true) click to toggle source

Scripts the sending of an “exec” channel request packet to the mock server. If reply is true, then the server is expected to reply to the request, otherwise no response to this request will be sent. If success is true, then the request will be successful, otherwise a failure will be scripted.

channel.sends_exec "ls -l"
# File lib/net/ssh/test/channel.rb, line 69
def sends_exec(command, reply=true, success=true)
  script.sends_channel_request(self, "exec", reply, command, success)
end
sends_request_pty() click to toggle source

Scripts the sending of a “request pty” request packet across the channel.

channel.sends_request_pty
# File lib/net/ssh/test/channel.rb, line 106
def sends_request_pty
  script.sends_channel_request_pty(self)
end
sends_subsystem(subsystem, reply=true, success=true) click to toggle source

Scripts the sending of a “subsystem” channel request packet to the mock server. See sends_exec for a discussion of the meaning of the reply and success arguments.

channel.sends_subsystem "sftp"
# File lib/net/ssh/test/channel.rb, line 78
def sends_subsystem(subsystem, reply=true, success=true)
  script.sends_channel_request(self, "subsystem", reply, subsystem, success)
end