1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00
capistrano/test/server_definition_test.rb

100 lines
3.5 KiB
Ruby
Raw Normal View History

require "#{File.dirname(__FILE__)}/utils"
require 'capistrano/server_definition'
class ServerDefinitionTest < Test::Unit::TestCase
def test_new_without_credentials_or_port_should_set_values_to_defaults
server = Capistrano::ServerDefinition.new("www.capistrano.test")
assert_equal "www.capistrano.test", server.host
assert_nil server.user
assert_nil server.port
end
def test_new_with_encoded_user_should_extract_user_and_use_default_port
server = Capistrano::ServerDefinition.new("jamis@www.capistrano.test")
assert_equal "www.capistrano.test", server.host
assert_equal "jamis", server.user
assert_nil server.port
end
def test_new_with_encoded_port_should_extract_port_and_use_default_user
server = Capistrano::ServerDefinition.new("www.capistrano.test:8080")
assert_equal "www.capistrano.test", server.host
assert_nil server.user
assert_equal 8080, server.port
end
def test_new_with_encoded_user_and_port_should_extract_user_and_port
server = Capistrano::ServerDefinition.new("jamis@www.capistrano.test:8080")
assert_equal "www.capistrano.test", server.host
assert_equal "jamis", server.user
assert_equal 8080, server.port
end
def test_new_with_user_as_option_should_use_given_user
server = Capistrano::ServerDefinition.new("www.capistrano.test", :user => "jamis")
assert_equal "www.capistrano.test", server.host
assert_equal "jamis", server.user
assert_nil server.port
end
def test_new_with_port_as_option_should_use_given_user
server = Capistrano::ServerDefinition.new("www.capistrano.test", :port => 8080)
assert_equal "www.capistrano.test", server.host
assert_nil server.user
assert_equal 8080, server.port
end
def test_encoded_value_should_override_hash_option
server = Capistrano::ServerDefinition.new("jamis@www.capistrano.test:8080", :user => "david", :port => 8081)
assert_equal "www.capistrano.test", server.host
assert_equal "jamis", server.user
assert_equal 8080, server.port
assert server.options.empty?
end
def test_new_with_option_should_dup_option_hash
options = {}
server = Capistrano::ServerDefinition.new("www.capistrano.test", options)
assert_not_equal options.object_id, server.options.object_id
end
def test_new_with_options_should_keep_options
server = Capistrano::ServerDefinition.new("www.capistrano.test", :primary => true)
assert_equal true, server.options[:primary]
end
def test_comparison_should_match_when_host_user_port_are_same
s1 = server("jamis@www.capistrano.test:8080")
s2 = server("www.capistrano.test", :user => "jamis", :port => 8080)
assert_equal s1, s2
assert_equal s1.hash, s2.hash
assert s1.eql?(s2)
end
def test_servers_should_be_comparable
s1 = server("jamis@www.capistrano.test:8080")
s2 = server("www.alphabet.test:1234")
s3 = server("jamis@www.capistrano.test:8075")
s4 = server("billy@www.capistrano.test:8080")
assert s2 < s1
assert s3 < s1
assert s4 < s1
assert s2 < s3
assert s2 < s4
assert s3 < s4
end
def test_comparison_should_not_match_when_any_of_host_user_port_differ
s1 = server("jamis@www.capistrano.test:8080")
s2 = server("bob@www.capistrano.test:8080")
s3 = server("jamis@www.capistrano.test:8081")
s4 = server("jamis@app.capistrano.test:8080")
assert_not_equal s1, s2
assert_not_equal s1, s3
assert_not_equal s1, s4
assert_not_equal s2, s3
assert_not_equal s2, s4
assert_not_equal s3, s4
end
end