diff options
author | Saku Ytti <saku@ytti.fi> | 2018-04-27 11:32:47 +0300 |
---|---|---|
committer | Saku Ytti <saku@ytti.fi> | 2018-04-27 11:32:47 +0300 |
commit | cf770c557fc5d55786b56a31e389ff6d629315b4 (patch) | |
tree | b32a197eafdf6c21b3cd42c0680b653b49d2a566 /spec/input/ssh_spec.rb | |
parent | 9153189119b58408f6203affee7888716c5570db (diff) |
Add SSH keepalive
Closes #1276
Diffstat (limited to 'spec/input/ssh_spec.rb')
-rw-r--r-- | spec/input/ssh_spec.rb | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/spec/input/ssh_spec.rb b/spec/input/ssh_spec.rb index 2d1f5ce..9e08cea 100644 --- a/spec/input/ssh_spec.rb +++ b/spec/input/ssh_spec.rb @@ -27,9 +27,14 @@ describe Oxidized::SSH do proxy = mock Net::SSH::Proxy::Command.expects(:new).with("ssh test.com -W %h:%p").returns(proxy) - Net::SSH.expects(:start).with('93.184.216.34', 'alma', :port => 22, :password => 'armud', :timeout => Oxidized.config.timeout, - :paranoid => Oxidized.config.input.ssh.secure, :auth_methods => ['none', 'publickey', 'password', 'keyboard-interactive'], - :number_of_password_prompts => 0, :proxy => proxy) + Net::SSH.expects(:start).with('93.184.216.34', 'alma', port: 22, + timeout: Oxidized.config.timeout, + paranoid: Oxidized.config.input.ssh.secure, + keepalive: true, + proxy: proxy, + password: 'armud', + number_of_password_prompts: 0, + auth_methods: ['none', 'publickey', 'password', 'keyboard-interactive']) ssh.instance_variable_set("@exec", true) ssh.connect(@node) |