测试ssh连接

Sła*_*osz 3 ruby testing ssh

我的项目的一个重要部分是使用ssh登录到远程服务器并对其执行某些操作:

Net::SSH.start(@host, @username, :password => @password) do |ssh|  
  ssh.exec!(rename_files_on_remote_server) 
end
Run Code Online (Sandbox Code Playgroud)

怎么测试呢?我想我可以使用本地ssh服务器并检查其上的文件名(也许它可能在我的test/spec目录中).或许有人可以指出我更好的解决方案?

Gle*_*min 6

我认为这足以测试你是否正在向ssh服务器发送正确的命令.您的应用程序可能不会实现服务器 - 因此您必须相信服务器正确地工作和测试.

如果你确实实现了服务器,那么你需要对它进行测试,但就SSH的内容而言,我会做一些像这样的模拟(RSpec 2语法):

describe "SSH Access" do
  let (:ssh_connection) { mock("SSH Connection") }
  before (:each) do
    Net::SSH.stub(:start) { ssh_connection }
  end
  it "should send rename commands to the connection" do
    ssh_connection.should_receive(:exec!).ordered.with("expected command")
    ssh_connection.should_receive(:exec!).ordered.with("next expected command")
    SSHAccessClass.rename_files!
  end
end
Run Code Online (Sandbox Code Playgroud)