Something went wrong. Try again.
A simplified fork of old Capistrano 2.x - a tool for deploying Ruby applications to a server
Something went wrong. Try again.
5.4 kB · 99 lines
Ruby
at master
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100require "utils"require 'minestrone/ssh'
class SSHTest < Test::Unit::TestCase def setup Minestrone::ServerDefinition.stubs(:default_user).returns("default-user") @options = { :auth_methods => %w(publickey), :config => false } @server = server("minestrone") Net::SSH.stubs(:configuration_for).returns({}) end
def test_connect_with_bare_server_without_options_or_config_with_public_key_succeeding_should_only_loop_once Net::SSH.expects(:start).with(@server.host, "default-user", @options).returns(success = Object.new) assert_equal success, Minestrone::SSH.connect(@server) end
def test_connect_with_bare_server_without_options_with_public_key_failing_should_raise_error Net::SSH.expects(:start).with(@server.host, "default-user", @options).raises(Net::SSH::AuthenticationFailed) assert_raises(Net::SSH::AuthenticationFailed) do Minestrone::SSH.connect(@server, :password => "f4b13n") end end
def test_connect_with_bare_server_and_user_via_public_key_should_pass_user_to_net_ssh Net::SSH.expects(:start).with(@server.host, "jamis", @options).returns(success = Object.new) assert_equal success, Minestrone::SSH.connect(@server, :user => "jamis") end
def test_connect_with_bare_server_with_explicit_port_should_pass_port_to_net_ssh Net::SSH.expects(:start).with(@server.host, "default-user", @options.merge(:port => 1234)).returns(success = Object.new) assert_equal success, Minestrone::SSH.connect(@server, :port => 1234) end
def test_connect_with_server_with_user_should_pass_user_to_net_ssh server = server("jamis@minestrone") Net::SSH.expects(:start).with(server.host, "jamis", @options).returns(success = Object.new) assert_equal success, Minestrone::SSH.connect(server) end
def test_connect_with_server_with_port_should_pass_port_to_net_ssh server = server("minestrone:1235") Net::SSH.expects(:start).with(server.host, "default-user", @options.merge(:port => 1235)).returns(success = Object.new) assert_equal success, Minestrone::SSH.connect(server) end
def test_connect_with_server_with_user_and_port_should_pass_user_and_port_to_net_ssh server = server("jamis@minestrone:1235") Net::SSH.expects(:start).with(server.host, "jamis", @options.merge(:port => 1235)).returns(success = Object.new) assert_equal success, Minestrone::SSH.connect(server) end
def test_connect_with_server_with_other_ssh_options_should_pass_ssh_options_to_net_ssh server = server("jamis@minestrone:1235", :ssh_options => { :keys => %w(some_valid_key), :hmac => 'none' }) Net::SSH.expects(:start).with(server.host, "jamis", @options.merge(:port => 1235, :keys => %w(some_valid_key), :hmac => 'none' )).returns(success = Object.new) assert_equal success, Minestrone::SSH.connect(server) end
def test_connect_with_ssh_options_should_use_ssh_options ssh_options = { :username => "JamisMan", :port => 8125, :config => false } Net::SSH.expects(:start).with(@server.host, "JamisMan", @options.merge(:port => 8125, :config => false)).returns(success = Object.new) assert_equal success, Minestrone::SSH.connect(@server, {:ssh_options => ssh_options}) end
def test_connect_with_options_and_ssh_options_should_see_options_override_ssh_options ssh_options = { :username => "JamisMan", :port => 8125, :forward_agent => true } Net::SSH.expects(:start).with(@server.host, "jamis", @options.merge(:port => 1235, :forward_agent => true)).returns(success = Object.new) assert_equal success, Minestrone::SSH.connect(@server, :ssh_options => ssh_options, :user => "jamis", :port => 1235) end
def test_connect_with_verbose_option_should_set_verbose_option_on_ssh Net::SSH.expects(:start).with(@server.host, "default-user", @options).returns(success = Object.new) assert_equal success, Minestrone::SSH.connect(@server, :verbose => 0) Net::SSH.expects(:start).with(@server.host, "default-user", @options.merge(:verbose => :debug)).returns(success = Object.new) assert_equal success, Minestrone::SSH.connect(@server, :verbose => 1) Net::SSH.expects(:start).with(@server.host, "default-user", @options.merge(:verbose => :debug)).returns(success = Object.new) assert_equal success, Minestrone::SSH.connect(@server, :verbose => 2) end
def test_connect_with_ssh_options_should_see_server_options_override_ssh_options ssh_options = { :username => "JamisMan", :port => 8125, :forward_agent => true } server = server("jamis@minestrone:1235") Net::SSH.expects(:start).with(server.host, "jamis", @options.merge(:port => 1235, :forward_agent => true, :config => false)).returns(success = Object.new) assert_equal success, Minestrone::SSH.connect(server, {:ssh_options => ssh_options}) end
def test_connect_should_add_xserver_accessor_to_connection Net::SSH.expects(:start).with(@server.host, "default-user", @options).returns(success = Object.new) assert_equal success, Minestrone::SSH.connect(@server) assert success.respond_to?(:xserver) assert success.respond_to?(:xserver) assert_equal success.xserver, @server end
def test_connect_should_ignore_custom_auth_methods Net::SSH.expects(:start).with(@server.host, "default-user", @options).returns(success = Object.new) assert_equal success, Minestrone::SSH.connect(@server, :ssh_options => { :auth_methods => %w(password keyboard-interactive) }) endend