Mercurial adapter improvements (patch #1199 by Pierre Paysant-Le Roux).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1499 e93f8b46-1217-0410-a6f0-8f06a7374b81pull/351/head
parent
a6da479a63
commit
aa9d04a4a7
@ -0,0 +1,12 @@ |
||||
changeset = 'This template must be used with --debug option\n' |
||||
changeset_quiet = 'This template must be used with --debug option\n' |
||||
changeset_verbose = 'This template must be used with --debug option\n' |
||||
changeset_debug = '<logentry revision="{rev}" node="{node|short}">\n<author>{author|escape}</author>\n<date>{date|isodate}</date>\n<paths>\n{files}{file_adds}{file_dels}{file_copies}</paths>\n<msg>{desc|escape}</msg>\n{tags}</logentry>\n\n' |
||||
|
||||
file = '<path action="M">{file|escape}</path>\n' |
||||
file_add = '<path action="A">{file_add|escape}</path>\n' |
||||
file_del = '<path action="D">{file_del|escape}</path>\n' |
||||
file_copy = '<path-copied copyfrom-path="{source|escape}">{name|urlescape}</path-copied>\n' |
||||
tag = '<tag>{tag|escape}</tag>\n' |
||||
header='<?xml version="1.0" encoding="UTF-8" ?>\n<log>\n\n' |
||||
# footer="</log>" |
@ -0,0 +1,12 @@ |
||||
changeset = 'This template must be used with --debug option\n' |
||||
changeset_quiet = 'This template must be used with --debug option\n' |
||||
changeset_verbose = 'This template must be used with --debug option\n' |
||||
changeset_debug = '<logentry revision="{rev}" node="{node|short}">\n<author>{author|escape}</author>\n<date>{date|isodate}</date>\n<paths>\n{file_mods}{file_adds}{file_dels}{file_copies}</paths>\n<msg>{desc|escape}</msg>\n{tags}</logentry>\n\n' |
||||
|
||||
file_mod = '<path action="M">{file_mod|escape}</path>\n' |
||||
file_add = '<path action="A">{file_add|escape}</path>\n' |
||||
file_del = '<path action="D">{file_del|escape}</path>\n' |
||||
file_copy = '<path-copied copyfrom-path="{source|escape}">{name|urlescape}</path-copied>\n' |
||||
tag = '<tag>{tag|escape}</tag>\n' |
||||
header='<?xml version="1.0" encoding="UTF-8" ?>\n<log>\n\n' |
||||
# footer="</log>" |
@ -0,0 +1,49 @@ |
||||
require File.dirname(__FILE__) + '/../test_helper' |
||||
begin |
||||
require 'mocha' |
||||
|
||||
class MercurialAdapterTest < Test::Unit::TestCase |
||||
|
||||
TEMPLATES_DIR = "#{RAILS_ROOT}/extra/mercurial" |
||||
TEMPLATE_NAME = "hg-template" |
||||
TEMPLATE_EXTENSION = "tmpl" |
||||
|
||||
REPOSITORY_PATH = RAILS_ROOT.gsub(%r{config\/\.\.}, '') + '/tmp/test/mercurial_repository' |
||||
|
||||
|
||||
def test_version_template_0_9_5 |
||||
# 0.9.5 |
||||
test_version_template_for("0.9.5", [0,9,5], "0.9.5") |
||||
end |
||||
|
||||
def test_version_template_1_0 |
||||
# 1.0 |
||||
test_version_template_for("1.0", [1,0], "1.0") |
||||
end |
||||
|
||||
def test_version_template_1_0_win |
||||
test_version_template_for("1e4ddc9ac9f7+20080325", "Unknown version", "1.0") |
||||
end |
||||
|
||||
def test_version_template_1_0_1_win |
||||
test_version_template_for("1.0.1+20080525", [1,0,1], "1.0") |
||||
end |
||||
|
||||
def test_version_template_changeset_id |
||||
test_version_template_for("1916e629a29d", "Unknown version", "1.0") |
||||
end |
||||
|
||||
private |
||||
|
||||
def test_version_template_for(hgversion, version, templateversion) |
||||
Redmine::Scm::Adapters::MercurialAdapter.any_instance.stubs(:hgversion_from_command_line).returns(hgversion) |
||||
adapter = Redmine::Scm::Adapters::MercurialAdapter.new(REPOSITORY_PATH) |
||||
assert_equal version, adapter.hgversion |
||||
assert_equal "#{TEMPLATES_DIR}/#{TEMPLATE_NAME}-#{templateversion}.#{TEMPLATE_EXTENSION}", adapter.template_path |
||||
assert File.exist?(adapter.template_path) |
||||
end |
||||
end |
||||
|
||||
rescue LoadError |
||||
def test_fake; assert(false, "Requires mocha to run those tests") end |
||||
end |
Loading…
Reference in new issue