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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
require_relative 'common'
require 'net/ssh'
class TestPassword < NetSSHTest
include IntegrationTestHelpers
def test_with_password_parameter
ret = Net::SSH.start("localhost", "net_ssh_1", password: 'foopwd') do |ssh|
ssh.exec! 'echo "hello from:$USER"'
end
assert_equal ret, "hello from:net_ssh_1\n"
end
def test_keyboard_interactive_with_good_password
skip "TODO keyboard-interactive on newer sshd" if sshd_8_or_later?
ps = Object.new
pt = Object.new
pt.expects(:start).with(type: 'keyboard-interactive', name: '', instruction: '').returns(ps)
ps.expects(:ask).with('password: ', false).returns("foopwd")
ps.expects(:success)
ret = Net::SSH.start("localhost", "net_ssh_1", auth_methods: ['keyboard-interactive'], password_prompt: pt) do |ssh|
ssh.exec! 'echo "hello from:$USER"'
end
assert_equal ret, "hello from:net_ssh_1\n"
end
def test_keyboard_interactive_with_one_failed_attempt
skip "TODO keyboard-interactive on newer sshd" if sshd_8_or_later?
ps = Object.new
pt = Object.new
pt.expects(:start).with(type: 'keyboard-interactive', name: '', instruction: '').returns(ps)
ps.expects(:ask).twice.with('Password: ', false).returns("badpwd").then.with('Password: ', false).returns("foopwd")
ps.expects(:success)
ret = Net::SSH.start("localhost", "net_ssh_1", auth_methods: ['keyboard-interactive'], password_prompt: pt) do |ssh|
ssh.exec! 'echo "hello from:$USER"'
end
assert_equal ret, "hello from:net_ssh_1\n"
end
def test_password_with_good_password
ps = Object.new
pt = Object.new
pt.expects(:start).with(type: 'password', user: 'net_ssh_1', host: 'localhost').returns(ps)
ps.expects(:ask).with("net_ssh_1@localhost's password:", false).returns("foopwd")
ps.expects(:success)
ret = Net::SSH.start("localhost", "net_ssh_1", auth_methods: ['password'], password_prompt: pt) do |ssh|
ssh.exec! 'echo "hello from:$USER"'
end
assert_equal ret, "hello from:net_ssh_1\n"
end
def test_bad_password_should_throw_auth_invalid
assert_raises Net::SSH::AuthenticationFailed do
Net::SSH.start("localhost", "net_ssh_1", password: "wrong_password", auth_methods: ['password'], non_interactive: true) do |ssh|
ssh.exec! 'echo "hello from:$USER"'
end
end
end
end
|