1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
module Authentication; module Methods
module Common
include Net::SSH::Authentication::Constants
private
def socket(options={})
@socket ||= stub("socket", :client_name => "me.ssh.test")
end
def transport(options={})
@transport ||= MockTransport.new(options.merge(:socket => socket))
end
def session(options={})
@session ||= begin
sess = stub("auth-session", :logger => nil, :transport => transport(options))
def sess.next_message
transport.next_message
end
sess
end
end
end
end; end
|