capistrano-edge 2.5.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (109) hide show
  1. data/CHANGELOG.rdoc +770 -0
  2. data/Manifest +104 -0
  3. data/README.rdoc +66 -0
  4. data/Rakefile +35 -0
  5. data/bin/cap +4 -0
  6. data/bin/capify +95 -0
  7. data/capistrano.gemspec +51 -0
  8. data/examples/sample.rb +14 -0
  9. data/lib/capistrano.rb +2 -0
  10. data/lib/capistrano/callback.rb +45 -0
  11. data/lib/capistrano/cli.rb +47 -0
  12. data/lib/capistrano/cli/execute.rb +84 -0
  13. data/lib/capistrano/cli/help.rb +125 -0
  14. data/lib/capistrano/cli/help.txt +75 -0
  15. data/lib/capistrano/cli/options.rb +224 -0
  16. data/lib/capistrano/cli/ui.rb +40 -0
  17. data/lib/capistrano/command.rb +283 -0
  18. data/lib/capistrano/configuration.rb +43 -0
  19. data/lib/capistrano/configuration/actions/file_transfer.rb +47 -0
  20. data/lib/capistrano/configuration/actions/inspect.rb +46 -0
  21. data/lib/capistrano/configuration/actions/invocation.rb +293 -0
  22. data/lib/capistrano/configuration/callbacks.rb +148 -0
  23. data/lib/capistrano/configuration/connections.rb +204 -0
  24. data/lib/capistrano/configuration/execution.rb +143 -0
  25. data/lib/capistrano/configuration/loading.rb +197 -0
  26. data/lib/capistrano/configuration/namespaces.rb +197 -0
  27. data/lib/capistrano/configuration/roles.rb +73 -0
  28. data/lib/capistrano/configuration/servers.rb +85 -0
  29. data/lib/capistrano/configuration/variables.rb +127 -0
  30. data/lib/capistrano/errors.rb +15 -0
  31. data/lib/capistrano/extensions.rb +57 -0
  32. data/lib/capistrano/logger.rb +59 -0
  33. data/lib/capistrano/processable.rb +53 -0
  34. data/lib/capistrano/recipes/compat.rb +32 -0
  35. data/lib/capistrano/recipes/deploy.rb +438 -0
  36. data/lib/capistrano/recipes/deploy/dependencies.rb +44 -0
  37. data/lib/capistrano/recipes/deploy/local_dependency.rb +54 -0
  38. data/lib/capistrano/recipes/deploy/remote_dependency.rb +105 -0
  39. data/lib/capistrano/recipes/deploy/scm.rb +19 -0
  40. data/lib/capistrano/recipes/deploy/scm/accurev.rb +169 -0
  41. data/lib/capistrano/recipes/deploy/scm/base.rb +196 -0
  42. data/lib/capistrano/recipes/deploy/scm/bzr.rb +83 -0
  43. data/lib/capistrano/recipes/deploy/scm/cvs.rb +152 -0
  44. data/lib/capistrano/recipes/deploy/scm/darcs.rb +85 -0
  45. data/lib/capistrano/recipes/deploy/scm/git.rb +274 -0
  46. data/lib/capistrano/recipes/deploy/scm/mercurial.rb +137 -0
  47. data/lib/capistrano/recipes/deploy/scm/none.rb +44 -0
  48. data/lib/capistrano/recipes/deploy/scm/perforce.rb +138 -0
  49. data/lib/capistrano/recipes/deploy/scm/subversion.rb +121 -0
  50. data/lib/capistrano/recipes/deploy/strategy.rb +19 -0
  51. data/lib/capistrano/recipes/deploy/strategy/base.rb +79 -0
  52. data/lib/capistrano/recipes/deploy/strategy/checkout.rb +20 -0
  53. data/lib/capistrano/recipes/deploy/strategy/copy.rb +210 -0
  54. data/lib/capistrano/recipes/deploy/strategy/export.rb +20 -0
  55. data/lib/capistrano/recipes/deploy/strategy/remote.rb +52 -0
  56. data/lib/capistrano/recipes/deploy/strategy/remote_cache.rb +56 -0
  57. data/lib/capistrano/recipes/deploy/templates/maintenance.rhtml +53 -0
  58. data/lib/capistrano/recipes/ext/rails-database-migrations.rb +50 -0
  59. data/lib/capistrano/recipes/ext/web-disable-enable.rb +40 -0
  60. data/lib/capistrano/recipes/standard.rb +37 -0
  61. data/lib/capistrano/recipes/templates/maintenance.rhtml +53 -0
  62. data/lib/capistrano/recipes/upgrade.rb +33 -0
  63. data/lib/capistrano/role.rb +102 -0
  64. data/lib/capistrano/server_definition.rb +56 -0
  65. data/lib/capistrano/shell.rb +260 -0
  66. data/lib/capistrano/ssh.rb +99 -0
  67. data/lib/capistrano/task_definition.rb +70 -0
  68. data/lib/capistrano/transfer.rb +216 -0
  69. data/lib/capistrano/version.rb +18 -0
  70. data/setup.rb +1346 -0
  71. data/test/cli/execute_test.rb +132 -0
  72. data/test/cli/help_test.rb +165 -0
  73. data/test/cli/options_test.rb +317 -0
  74. data/test/cli/ui_test.rb +28 -0
  75. data/test/cli_test.rb +17 -0
  76. data/test/command_test.rb +286 -0
  77. data/test/configuration/actions/file_transfer_test.rb +61 -0
  78. data/test/configuration/actions/inspect_test.rb +65 -0
  79. data/test/configuration/actions/invocation_test.rb +224 -0
  80. data/test/configuration/callbacks_test.rb +220 -0
  81. data/test/configuration/connections_test.rb +349 -0
  82. data/test/configuration/execution_test.rb +175 -0
  83. data/test/configuration/loading_test.rb +132 -0
  84. data/test/configuration/namespace_dsl_test.rb +311 -0
  85. data/test/configuration/roles_test.rb +144 -0
  86. data/test/configuration/servers_test.rb +121 -0
  87. data/test/configuration/variables_test.rb +184 -0
  88. data/test/configuration_test.rb +88 -0
  89. data/test/deploy/local_dependency_test.rb +76 -0
  90. data/test/deploy/remote_dependency_test.rb +114 -0
  91. data/test/deploy/scm/accurev_test.rb +23 -0
  92. data/test/deploy/scm/base_test.rb +55 -0
  93. data/test/deploy/scm/git_test.rb +184 -0
  94. data/test/deploy/scm/mercurial_test.rb +129 -0
  95. data/test/deploy/scm/none_test.rb +35 -0
  96. data/test/deploy/strategy/copy_test.rb +258 -0
  97. data/test/extensions_test.rb +69 -0
  98. data/test/fixtures/cli_integration.rb +5 -0
  99. data/test/fixtures/config.rb +5 -0
  100. data/test/fixtures/custom.rb +3 -0
  101. data/test/logger_test.rb +123 -0
  102. data/test/role_test.rb +11 -0
  103. data/test/server_definition_test.rb +121 -0
  104. data/test/shell_test.rb +90 -0
  105. data/test/ssh_test.rb +104 -0
  106. data/test/task_definition_test.rb +101 -0
  107. data/test/transfer_test.rb +160 -0
  108. data/test/utils.rb +38 -0
  109. metadata +321 -0
@@ -0,0 +1,5 @@
1
+ role :test, "www.capistrano.test"
2
+
3
+ task :testing, :roles => :test do
4
+ set :testing_occurred, true
5
+ end
@@ -0,0 +1,5 @@
1
+ set :application, "foo"
2
+ set :repository, "1/2/#{application}"
3
+ set :gateway, "#{__FILE__}.example.com"
4
+
5
+ role :web, "www.example.com", :primary => true
@@ -0,0 +1,3 @@
1
+ ConfigurationLoadingTest::MockConfig.instance(:must_exist).load do
2
+ ping! :custom
3
+ end
@@ -0,0 +1,123 @@
1
+ require "utils"
2
+ require 'capistrano/logger'
3
+ require 'stringio'
4
+
5
+ class LoggerTest < Test::Unit::TestCase
6
+ def setup
7
+ @io = StringIO.new
8
+ @logger = Capistrano::Logger.new(:output => @io)
9
+ end
10
+
11
+ def test_logger_should_use_STDERR_by_default
12
+ logger = Capistrano::Logger.new
13
+ assert_equal STDERR, logger.device
14
+ end
15
+
16
+ def test_logger_should_use_output_option_if_output_responds_to_puts
17
+ logger = Capistrano::Logger.new(:output => STDOUT)
18
+ assert_equal STDOUT, logger.device
19
+ end
20
+
21
+ def test_logger_should_open_file_if_output_does_not_respond_to_puts
22
+ File.expects(:open).with("logs/capistrano.log", "a").returns(:mock)
23
+ logger = Capistrano::Logger.new(:output => "logs/capistrano.log")
24
+ assert_equal :mock, logger.device
25
+ end
26
+
27
+ def test_close_should_not_close_device_if_device_is_default
28
+ logger = Capistrano::Logger.new
29
+ logger.device.expects(:close).never
30
+ logger.close
31
+ end
32
+
33
+ def test_close_should_not_close_device_is_device_is_explicitly_given
34
+ logger = Capistrano::Logger.new(:output => STDOUT)
35
+ STDOUT.expects(:close).never
36
+ logger.close
37
+ end
38
+
39
+ def test_close_should_close_device_when_device_was_implicitly_opened
40
+ f = mock("file", :close => nil)
41
+ File.expects(:open).with("logs/capistrano.log", "a").returns(f)
42
+ logger = Capistrano::Logger.new(:output => "logs/capistrano.log")
43
+ logger.close
44
+ end
45
+
46
+ def test_log_with_level_greater_than_threshold_should_ignore_message
47
+ @logger.level = 3
48
+ @logger.log(4, "message")
49
+ assert @io.string.empty?
50
+ end
51
+
52
+ def test_log_with_level_equal_to_threshold_should_log_message
53
+ @logger.level = 3
54
+ @logger.log(3, "message")
55
+ assert @io.string.include?("message")
56
+ end
57
+
58
+ def test_log_with_level_less_than_threshold_should_log_message
59
+ @logger.level = 3
60
+ @logger.log(2, "message")
61
+ assert @io.string.include?("message")
62
+ end
63
+
64
+ def test_log_with_multiline_message_should_log_each_line_separately
65
+ @logger.log(0, "first line\nsecond line")
66
+ assert @io.string.include?("*** first line")
67
+ assert @io.string.include?("*** second line")
68
+ end
69
+
70
+ def test_log_with_line_prefix_should_insert_line_prefix_before_message
71
+ @logger.log(0, "message", "prefix")
72
+ assert @io.string.include?("*** [prefix] message")
73
+ end
74
+
75
+ def test_log_with_level_0_should_have_strong_indent
76
+ @logger.log(0, "message")
77
+ assert @io.string.match(/^\*\*\* message/)
78
+ end
79
+
80
+ def test_log_with_level_1_should_have_weaker_indent
81
+ @logger.level = 1
82
+ @logger.log(1, "message")
83
+ assert @io.string.match(/^ \*\* message/)
84
+ end
85
+
86
+ def test_log_with_level_2_should_have_weaker_indent
87
+ @logger.level = 2
88
+ @logger.log(2, "message")
89
+ assert @io.string.match(/^ \* message/)
90
+ end
91
+
92
+ def test_log_with_level_3_should_have_weakest_indent
93
+ @logger.level = 3
94
+ @logger.log(3, "message")
95
+ assert @io.string.match(/^ message/)
96
+ end
97
+
98
+ def test_important_should_delegate_to_log_with_level_IMPORTANT
99
+ @logger.expects(:log).with(Capistrano::Logger::IMPORTANT, "message", "prefix")
100
+ @logger.important("message", "prefix")
101
+ end
102
+
103
+ def test_info_should_delegate_to_log_with_level_INFO
104
+ @logger.expects(:log).with(Capistrano::Logger::INFO, "message", "prefix")
105
+ @logger.info("message", "prefix")
106
+ end
107
+
108
+ def test_debug_should_delegate_to_log_with_level_DEBUG
109
+ @logger.expects(:log).with(Capistrano::Logger::DEBUG, "message", "prefix")
110
+ @logger.debug("message", "prefix")
111
+ end
112
+
113
+ def test_trace_should_delegate_to_log_with_level_TRACE
114
+ @logger.expects(:log).with(Capistrano::Logger::TRACE, "message", "prefix")
115
+ @logger.trace("message", "prefix")
116
+ end
117
+
118
+ def test_ordering_of_levels
119
+ assert Capistrano::Logger::IMPORTANT < Capistrano::Logger::INFO
120
+ assert Capistrano::Logger::INFO < Capistrano::Logger::DEBUG
121
+ assert Capistrano::Logger::DEBUG < Capistrano::Logger::TRACE
122
+ end
123
+ end
@@ -0,0 +1,11 @@
1
+ require "utils"
2
+ require 'capistrano/role'
3
+
4
+ class RoleTest < Test::Unit::TestCase
5
+ def test_clearing_a_populated_role_should_yield_no_servers
6
+ role = Capistrano::Role.new("app1.capistrano.test", lambda { |o| "app2.capistrano.test" })
7
+ assert_equal 2, role.servers.size
8
+ role.clear
9
+ assert role.servers.empty?
10
+ end
11
+ end
@@ -0,0 +1,121 @@
1
+ require "utils"
2
+ require 'capistrano/server_definition'
3
+
4
+ class ServerDefinitionTest < Test::Unit::TestCase
5
+ def test_new_without_credentials_or_port_should_set_values_to_defaults
6
+ server = Capistrano::ServerDefinition.new("www.capistrano.test")
7
+ assert_equal "www.capistrano.test", server.host
8
+ assert_nil server.user
9
+ assert_nil server.port
10
+ end
11
+
12
+ def test_new_with_encoded_user_should_extract_user_and_use_default_port
13
+ server = Capistrano::ServerDefinition.new("jamis@www.capistrano.test")
14
+ assert_equal "www.capistrano.test", server.host
15
+ assert_equal "jamis", server.user
16
+ assert_nil server.port
17
+ end
18
+
19
+ def test_new_with_encoded_port_should_extract_port_and_use_default_user
20
+ server = Capistrano::ServerDefinition.new("www.capistrano.test:8080")
21
+ assert_equal "www.capistrano.test", server.host
22
+ assert_nil server.user
23
+ assert_equal 8080, server.port
24
+ end
25
+
26
+ def test_new_with_encoded_user_and_port_should_extract_user_and_port
27
+ server = Capistrano::ServerDefinition.new("jamis@www.capistrano.test:8080")
28
+ assert_equal "www.capistrano.test", server.host
29
+ assert_equal "jamis", server.user
30
+ assert_equal 8080, server.port
31
+ end
32
+
33
+ def test_new_with_user_as_option_should_use_given_user
34
+ server = Capistrano::ServerDefinition.new("www.capistrano.test", :user => "jamis")
35
+ assert_equal "www.capistrano.test", server.host
36
+ assert_equal "jamis", server.user
37
+ assert_nil server.port
38
+ end
39
+
40
+ def test_new_with_port_as_option_should_use_given_user
41
+ server = Capistrano::ServerDefinition.new("www.capistrano.test", :port => 8080)
42
+ assert_equal "www.capistrano.test", server.host
43
+ assert_nil server.user
44
+ assert_equal 8080, server.port
45
+ end
46
+
47
+ def test_encoded_value_should_override_hash_option
48
+ server = Capistrano::ServerDefinition.new("jamis@www.capistrano.test:8080", :user => "david", :port => 8081)
49
+ assert_equal "www.capistrano.test", server.host
50
+ assert_equal "jamis", server.user
51
+ assert_equal 8080, server.port
52
+ assert server.options.empty?
53
+ end
54
+
55
+ def test_new_with_option_should_dup_option_hash
56
+ options = {}
57
+ server = Capistrano::ServerDefinition.new("www.capistrano.test", options)
58
+ assert_not_equal options.object_id, server.options.object_id
59
+ end
60
+
61
+ def test_new_with_options_should_keep_options
62
+ server = Capistrano::ServerDefinition.new("www.capistrano.test", :primary => true)
63
+ assert_equal true, server.options[:primary]
64
+ end
65
+
66
+ def test_default_user_should_try_to_guess_username
67
+ ENV.stubs(:[]).returns(nil)
68
+ assert_equal "not-specified", Capistrano::ServerDefinition.default_user
69
+
70
+ ENV.stubs(:[]).returns(nil)
71
+ ENV.stubs(:[]).with("USERNAME").returns("ryan")
72
+ assert_equal "ryan", Capistrano::ServerDefinition.default_user
73
+
74
+ ENV.stubs(:[]).returns(nil)
75
+ ENV.stubs(:[]).with("USER").returns("jamis")
76
+ assert_equal "jamis", Capistrano::ServerDefinition.default_user
77
+ end
78
+
79
+ def test_comparison_should_match_when_host_user_port_are_same
80
+ s1 = server("jamis@www.capistrano.test:8080")
81
+ s2 = server("www.capistrano.test", :user => "jamis", :port => 8080)
82
+ assert_equal s1, s2
83
+ assert_equal s1.hash, s2.hash
84
+ assert s1.eql?(s2)
85
+ end
86
+
87
+ def test_servers_should_be_comparable
88
+ s1 = server("jamis@www.capistrano.test:8080")
89
+ s2 = server("www.alphabet.test:1234")
90
+ s3 = server("jamis@www.capistrano.test:8075")
91
+ s4 = server("billy@www.capistrano.test:8080")
92
+
93
+ assert s2 < s1
94
+ assert s3 < s1
95
+ assert s4 < s1
96
+ assert s2 < s3
97
+ assert s2 < s4
98
+ assert s3 < s4
99
+ end
100
+
101
+ def test_comparison_should_not_match_when_any_of_host_user_port_differ
102
+ s1 = server("jamis@www.capistrano.test:8080")
103
+ s2 = server("bob@www.capistrano.test:8080")
104
+ s3 = server("jamis@www.capistrano.test:8081")
105
+ s4 = server("jamis@app.capistrano.test:8080")
106
+ assert_not_equal s1, s2
107
+ assert_not_equal s1, s3
108
+ assert_not_equal s1, s4
109
+ assert_not_equal s2, s3
110
+ assert_not_equal s2, s4
111
+ assert_not_equal s3, s4
112
+ end
113
+
114
+ def test_to_s
115
+ assert_equal "www.capistrano.test", server("www.capistrano.test").to_s
116
+ assert_equal "www.capistrano.test", server("www.capistrano.test:22").to_s
117
+ assert_equal "www.capistrano.test:1234", server("www.capistrano.test:1234").to_s
118
+ assert_equal "jamis@www.capistrano.test", server("jamis@www.capistrano.test").to_s
119
+ assert_equal "jamis@www.capistrano.test:1234", server("jamis@www.capistrano.test:1234").to_s
120
+ end
121
+ end
@@ -0,0 +1,90 @@
1
+ require "utils"
2
+ require 'capistrano/configuration'
3
+ require 'capistrano/shell'
4
+
5
+ class ShellTest < Test::Unit::TestCase
6
+ def setup
7
+ @config = Capistrano::Configuration.new
8
+ @shell = Capistrano::Shell.new(@config)
9
+ @shell.stubs(:puts)
10
+ end
11
+
12
+ def test_readline_fallback_prompt_should_write_to_stdout_and_read_from_stdin
13
+ STDOUT.expects(:print).with("prompt> ")
14
+ STDOUT.expects(:flush)
15
+ STDIN.expects(:gets).returns("hi\n")
16
+ assert_equal "hi\n", Capistrano::Shell::ReadlineFallback.readline("prompt> ")
17
+ end
18
+
19
+ def test_question_mark_as_input_should_trigger_help
20
+ @shell.expects(:read_line).returns("?")
21
+ @shell.expects(:help)
22
+ assert @shell.read_and_execute
23
+ end
24
+
25
+ def test_help_as_input_should_trigger_help
26
+ @shell.expects(:read_line).returns("help")
27
+ @shell.expects(:help)
28
+ assert @shell.read_and_execute
29
+ end
30
+
31
+ def test_quit_as_input_should_cause_read_and_execute_to_return_false
32
+ @shell.expects(:read_line).returns("quit")
33
+ assert !@shell.read_and_execute
34
+ end
35
+
36
+ def test_exit_as_input_should_cause_read_and_execute_to_return_false
37
+ @shell.expects(:read_line).returns("exit")
38
+ assert !@shell.read_and_execute
39
+ end
40
+
41
+ def test_set_should_parse_flag_and_value_and_call_set_option
42
+ @shell.expects(:read_line).returns("set -v 5")
43
+ @shell.expects(:set_option).with("v", "5")
44
+ assert @shell.read_and_execute
45
+ end
46
+
47
+ def test_text_without_with_or_on_gets_processed_verbatim
48
+ @shell.expects(:read_line).returns("hello world")
49
+ @shell.expects(:process_command).with(nil, nil, "hello world")
50
+ assert @shell.read_and_execute
51
+ end
52
+
53
+ def test_text_with_with_gets_processed_with_with # lol
54
+ @shell.expects(:read_line).returns("with app,db hello world")
55
+ @shell.expects(:process_command).with("with", "app,db", "hello world")
56
+ assert @shell.read_and_execute
57
+ end
58
+
59
+ def test_text_with_on_gets_processed_with_on
60
+ @shell.expects(:read_line).returns("on app,db hello world")
61
+ @shell.expects(:process_command).with("on", "app,db", "hello world")
62
+ assert @shell.read_and_execute
63
+ end
64
+
65
+ def test_task_command_with_bang_gets_processed_by_exec_tasks
66
+ while_testing_post_exec_commands do
67
+ @shell.expects(:read_line).returns("!deploy")
68
+ @shell.expects(:exec_tasks).with(["deploy"])
69
+ assert @shell.read_and_execute
70
+ end
71
+ end
72
+
73
+ def test_normal_command_gets_processed_by_exec_command
74
+ while_testing_post_exec_commands do
75
+ @shell.expects(:read_line).returns("uptime")
76
+ @shell.expects(:exec_command).with("uptime",nil)
77
+ @shell.expects(:connect)
78
+ assert @shell.read_and_execute
79
+ end
80
+ end
81
+
82
+
83
+ private
84
+
85
+ def while_testing_post_exec_commands(&block)
86
+ @shell.instance_variable_set(:@mutex,Mutex.new)
87
+ yield
88
+ end
89
+
90
+ end
@@ -0,0 +1,104 @@
1
+ require "utils"
2
+ require 'capistrano/ssh'
3
+
4
+ class SSHTest < Test::Unit::TestCase
5
+ def setup
6
+ Capistrano::ServerDefinition.stubs(:default_user).returns("default-user")
7
+ @options = { :password => nil,
8
+ :auth_methods => %w(publickey hostbased),
9
+ :config => false }
10
+ @server = server("capistrano")
11
+ Net::SSH.stubs(:configuration_for).returns({})
12
+ end
13
+
14
+ def test_connect_with_bare_server_without_options_or_config_with_public_key_succeeding_should_only_loop_once
15
+ Net::SSH.expects(:start).with(@server.host, "default-user", @options).returns(success = Object.new)
16
+ assert_equal success, Capistrano::SSH.connect(@server)
17
+ end
18
+
19
+ def test_connect_with_bare_server_without_options_with_public_key_failing_should_try_password
20
+ Net::SSH.expects(:start).with(@server.host, "default-user", @options).raises(Net::SSH::AuthenticationFailed)
21
+ Net::SSH.expects(:start).with(@server.host, "default-user", @options.merge(:password => "f4b13n", :auth_methods => %w(password keyboard-interactive))).returns(success = Object.new)
22
+ assert_equal success, Capistrano::SSH.connect(@server, :password => "f4b13n")
23
+ end
24
+
25
+ def test_connect_with_bare_server_without_options_public_key_and_password_failing_should_raise_error
26
+ Net::SSH.expects(:start).with(@server.host, "default-user", @options).raises(Net::SSH::AuthenticationFailed)
27
+ Net::SSH.expects(:start).with(@server.host, "default-user", @options.merge(:password => "f4b13n", :auth_methods => %w(password keyboard-interactive))).raises(Net::SSH::AuthenticationFailed)
28
+ assert_raises(Net::SSH::AuthenticationFailed) do
29
+ Capistrano::SSH.connect(@server, :password => "f4b13n")
30
+ end
31
+ end
32
+
33
+ def test_connect_with_bare_server_and_user_via_public_key_should_pass_user_to_net_ssh
34
+ Net::SSH.expects(:start).with(@server.host, "jamis", @options).returns(success = Object.new)
35
+ assert_equal success, Capistrano::SSH.connect(@server, :user => "jamis")
36
+ end
37
+
38
+ def test_connect_with_bare_server_and_user_via_password_should_pass_user_to_net_ssh
39
+ Net::SSH.expects(:start).with(@server.host, "jamis", @options).raises(Net::SSH::AuthenticationFailed)
40
+ Net::SSH.expects(:start).with(@server.host, "jamis", @options.merge(:password => "f4b13n", :auth_methods => %w(password keyboard-interactive))).returns(success = Object.new)
41
+ assert_equal success, Capistrano::SSH.connect(@server, :user => "jamis", :password => "f4b13n")
42
+ end
43
+
44
+ def test_connect_with_bare_server_with_explicit_port_should_pass_port_to_net_ssh
45
+ Net::SSH.expects(:start).with(@server.host, "default-user", @options.merge(:port => 1234)).returns(success = Object.new)
46
+ assert_equal success, Capistrano::SSH.connect(@server, :port => 1234)
47
+ end
48
+
49
+ def test_connect_with_server_with_user_should_pass_user_to_net_ssh
50
+ server = server("jamis@capistrano")
51
+ Net::SSH.expects(:start).with(server.host, "jamis", @options).returns(success = Object.new)
52
+ assert_equal success, Capistrano::SSH.connect(server)
53
+ end
54
+
55
+ def test_connect_with_server_with_port_should_pass_port_to_net_ssh
56
+ server = server("capistrano:1235")
57
+ Net::SSH.expects(:start).with(server.host, "default-user", @options.merge(:port => 1235)).returns(success = Object.new)
58
+ assert_equal success, Capistrano::SSH.connect(server)
59
+ end
60
+
61
+ def test_connect_with_server_with_user_and_port_should_pass_user_and_port_to_net_ssh
62
+ server = server("jamis@capistrano:1235")
63
+ Net::SSH.expects(:start).with(server.host, "jamis", @options.merge(:port => 1235)).returns(success = Object.new)
64
+ assert_equal success, Capistrano::SSH.connect(server)
65
+ end
66
+
67
+ def test_connect_with_server_with_other_ssh_options_should_pass_ssh_options_to_net_ssh
68
+ server = server("jamis@capistrano:1235", :ssh_options => { :keys => %w(some_valid_key), :auth_methods => %w(a_method), :hmac => 'none' })
69
+ Net::SSH.expects(:start).with(server.host, "jamis", @options.merge(:port => 1235, :keys => %w(some_valid_key), :auth_methods => %w(a_method), :hmac => 'none' )).returns(success = Object.new)
70
+ assert_equal success, Capistrano::SSH.connect(server)
71
+ end
72
+
73
+ def test_connect_with_ssh_options_should_use_ssh_options
74
+ ssh_options = { :username => "JamisMan", :port => 8125, :config => false }
75
+ Net::SSH.expects(:start).with(@server.host, "JamisMan", @options.merge(:port => 8125, :config => false)).returns(success = Object.new)
76
+ assert_equal success, Capistrano::SSH.connect(@server, {:ssh_options => ssh_options})
77
+ end
78
+
79
+ def test_connect_with_options_and_ssh_options_should_see_options_override_ssh_options
80
+ ssh_options = { :username => "JamisMan", :port => 8125, :forward_agent => true }
81
+ Net::SSH.expects(:start).with(@server.host, "jamis", @options.merge(:port => 1235, :forward_agent => true)).returns(success = Object.new)
82
+ assert_equal success, Capistrano::SSH.connect(@server, :ssh_options => ssh_options, :user => "jamis", :port => 1235)
83
+ end
84
+
85
+ def test_connect_with_ssh_options_should_see_server_options_override_ssh_options
86
+ ssh_options = { :username => "JamisMan", :port => 8125, :forward_agent => true }
87
+ server = server("jamis@capistrano:1235")
88
+ Net::SSH.expects(:start).with(server.host, "jamis", @options.merge(:port => 1235, :forward_agent => true, :config => false)).returns(success = Object.new)
89
+ assert_equal success, Capistrano::SSH.connect(server, {:ssh_options => ssh_options})
90
+ end
91
+
92
+ def test_connect_should_add_xserver_accessor_to_connection
93
+ Net::SSH.expects(:start).with(@server.host, "default-user", @options).returns(success = Object.new)
94
+ assert_equal success, Capistrano::SSH.connect(@server)
95
+ assert success.respond_to?(:xserver)
96
+ assert success.respond_to?(:xserver)
97
+ assert_equal success.xserver, @server
98
+ end
99
+
100
+ def test_connect_should_not_retry_if_custom_auth_methods_are_given
101
+ Net::SSH.expects(:start).with(@server.host, "default-user", @options.merge(:auth_methods => %w(publickey))).raises(Net::SSH::AuthenticationFailed)
102
+ assert_raises(Net::SSH::AuthenticationFailed) { Capistrano::SSH.connect(@server, :ssh_options => { :auth_methods => %w(publickey) }) }
103
+ end
104
+ end