2010-12-13 02:24:34 +03:00
|
|
|
require File.expand_path('../../../../../../test_helper', __FILE__)
|
2008-06-07 13:19:50 +04:00
|
|
|
begin
|
|
|
|
require 'mocha'
|
|
|
|
|
2009-09-13 21:14:35 +04:00
|
|
|
class MercurialAdapterTest < ActiveSupport::TestCase
|
2008-06-07 13:19:50 +04:00
|
|
|
|
2008-06-18 21:02:39 +04:00
|
|
|
TEMPLATES_DIR = Redmine::Scm::Adapters::MercurialAdapter::TEMPLATES_DIR
|
|
|
|
TEMPLATE_NAME = Redmine::Scm::Adapters::MercurialAdapter::TEMPLATE_NAME
|
|
|
|
TEMPLATE_EXTENSION = Redmine::Scm::Adapters::MercurialAdapter::TEMPLATE_EXTENSION
|
2008-06-07 13:19:50 +04:00
|
|
|
|
|
|
|
REPOSITORY_PATH = RAILS_ROOT.gsub(%r{config\/\.\.}, '') + '/tmp/test/mercurial_repository'
|
|
|
|
|
2008-07-05 13:39:00 +04:00
|
|
|
def test_hgversion
|
2010-11-20 17:04:22 +03:00
|
|
|
to_test = { "Mercurial Distributed SCM (version 0.9.5)\n" => [0,9,5],
|
|
|
|
"Mercurial Distributed SCM (1.0)\n" => [1,0],
|
|
|
|
"Mercurial Distributed SCM (1e4ddc9ac9f7+20080325)\n" => nil,
|
|
|
|
"Mercurial Distributed SCM (1.0.1+20080525)\n" => [1,0,1],
|
|
|
|
"Mercurial Distributed SCM (1916e629a29d)\n" => nil,
|
2010-11-21 17:25:26 +03:00
|
|
|
"Mercurial SCM Distribuito (versione 0.9.5)\n" => [0,9,5],
|
|
|
|
"(1.6)\n(1.7)\n(1.8)" => [1,6],
|
|
|
|
"(1.7.1)\r\n(1.8.1)\r\n(1.9.1)" => [1,7,1]}
|
|
|
|
|
2008-07-05 13:39:00 +04:00
|
|
|
to_test.each do |s, v|
|
|
|
|
test_hgversion_for(s, v)
|
|
|
|
end
|
2008-06-07 13:19:50 +04:00
|
|
|
end
|
|
|
|
|
2008-07-05 13:39:00 +04:00
|
|
|
def test_template_path
|
|
|
|
to_test = { [0,9,5] => "0.9.5",
|
|
|
|
[1,0] => "1.0",
|
2008-07-12 13:06:19 +04:00
|
|
|
[] => "1.0",
|
2010-11-21 17:25:26 +03:00
|
|
|
[1,0,1] => "1.0",
|
|
|
|
[1,7] => "1.0",
|
|
|
|
[1,7,1] => "1.0"}
|
2008-07-05 13:39:00 +04:00
|
|
|
to_test.each do |v, template|
|
|
|
|
test_template_path_for(v, template)
|
|
|
|
end
|
2008-06-07 13:19:50 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2008-07-05 13:39:00 +04:00
|
|
|
def test_hgversion_for(hgversion, version)
|
|
|
|
Redmine::Scm::Adapters::MercurialAdapter.expects(:hgversion_from_command_line).returns(hgversion)
|
|
|
|
adapter = Redmine::Scm::Adapters::MercurialAdapter
|
2008-06-07 13:19:50 +04:00
|
|
|
assert_equal version, adapter.hgversion
|
2008-07-05 13:39:00 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_template_path_for(version, template)
|
|
|
|
adapter = Redmine::Scm::Adapters::MercurialAdapter
|
|
|
|
assert_equal "#{TEMPLATES_DIR}/#{TEMPLATE_NAME}-#{template}.#{TEMPLATE_EXTENSION}", adapter.template_path_for(version)
|
|
|
|
assert File.exist?(adapter.template_path_for(version))
|
2008-06-07 13:19:50 +04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
rescue LoadError
|
2010-11-21 17:25:26 +03:00
|
|
|
class MercurialMochaFake < ActiveSupport::TestCase
|
|
|
|
def test_fake; assert(false, "Requires mocha to run those tests") end
|
|
|
|
end
|
2008-06-07 13:19:50 +04:00
|
|
|
end
|
2010-11-21 17:25:26 +03:00
|
|
|
|