scm: mercurial: refactor mercurial unit test.
* lib unit test switches if repository exists. * move cat test from app to lib. * no need to run "hg update" in unit test (#3421). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4629 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
5e1c42cbe3
commit
e86b8febdc
|
@ -10,6 +10,11 @@ begin
|
||||||
|
|
||||||
REPOSITORY_PATH = RAILS_ROOT.gsub(%r{config\/\.\.}, '') + '/tmp/test/mercurial_repository'
|
REPOSITORY_PATH = RAILS_ROOT.gsub(%r{config\/\.\.}, '') + '/tmp/test/mercurial_repository'
|
||||||
|
|
||||||
|
if File.directory?(REPOSITORY_PATH)
|
||||||
|
def setup
|
||||||
|
@adapter = Redmine::Scm::Adapters::MercurialAdapter.new(REPOSITORY_PATH)
|
||||||
|
end
|
||||||
|
|
||||||
def test_hgversion
|
def test_hgversion
|
||||||
to_test = { "Mercurial Distributed SCM (version 0.9.5)\n" => [0,9,5],
|
to_test = { "Mercurial Distributed SCM (version 0.9.5)\n" => [0,9,5],
|
||||||
"Mercurial Distributed SCM (1.0)\n" => [1,0],
|
"Mercurial Distributed SCM (1.0)\n" => [1,0],
|
||||||
|
@ -37,18 +42,26 @@ begin
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_cat
|
||||||
|
assert @adapter.cat("sources/welcome_controller.rb", 2)
|
||||||
|
assert_nil @adapter.cat("sources/welcome_controller.rb")
|
||||||
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
def test_hgversion_for(hgversion, version)
|
def test_hgversion_for(hgversion, version)
|
||||||
Redmine::Scm::Adapters::MercurialAdapter.expects(:hgversion_from_command_line).returns(hgversion)
|
@adapter.class.expects(:hgversion_from_command_line).returns(hgversion)
|
||||||
adapter = Redmine::Scm::Adapters::MercurialAdapter
|
assert_equal version, @adapter.class.hgversion
|
||||||
assert_equal version, adapter.hgversion
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_template_path_for(version, template)
|
def test_template_path_for(version, template)
|
||||||
adapter = Redmine::Scm::Adapters::MercurialAdapter
|
assert_equal "#{TEMPLATES_DIR}/#{TEMPLATE_NAME}-#{template}.#{TEMPLATE_EXTENSION}",
|
||||||
assert_equal "#{TEMPLATES_DIR}/#{TEMPLATE_NAME}-#{template}.#{TEMPLATE_EXTENSION}", adapter.template_path_for(version)
|
@adapter.class.template_path_for(version)
|
||||||
assert File.exist?(adapter.template_path_for(version))
|
assert File.exist?(@adapter.class.template_path_for(version))
|
||||||
|
end
|
||||||
|
else
|
||||||
|
puts "Mercurial test repository NOT FOUND. Skipping unit tests !!!"
|
||||||
|
def test_fake; assert true end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -55,18 +55,11 @@ class RepositoryMercurialTest < ActiveSupport::TestCase
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_locate_on_outdated_repository
|
def test_locate_on_outdated_repository
|
||||||
# Change the working dir state
|
|
||||||
%x{hg -R #{REPOSITORY_PATH} up -r 0}
|
|
||||||
assert_equal 1, @repository.entries("images", 0).size
|
assert_equal 1, @repository.entries("images", 0).size
|
||||||
assert_equal 2, @repository.entries("images").size
|
assert_equal 2, @repository.entries("images").size
|
||||||
assert_equal 2, @repository.entries("images", 2).size
|
assert_equal 2, @repository.entries("images", 2).size
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_cat
|
|
||||||
assert @repository.scm.cat("sources/welcome_controller.rb", 2)
|
|
||||||
assert_nil @repository.scm.cat("sources/welcome_controller.rb")
|
|
||||||
end
|
|
||||||
|
|
||||||
def test_isodatesec
|
def test_isodatesec
|
||||||
# Template keyword 'isodatesec' supported in Mercurial 1.0 and higher
|
# Template keyword 'isodatesec' supported in Mercurial 1.0 and higher
|
||||||
if @repository.scm.class.client_version_above?([1, 0])
|
if @repository.scm.class.client_version_above?([1, 0])
|
||||||
|
|
Loading…
Reference in New Issue