scm: mercurial: functional test for accept both of revision number and changeset id (#3724).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4664 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
ef28bf6d88
commit
a223a0dffd
@ -66,27 +66,31 @@ class RepositoriesMercurialControllerTest < ActionController::TestCase
|
|||||||
assert_equal 'file', entry.kind
|
assert_equal 'file', entry.kind
|
||||||
assert_equal 'images/edit.png', entry.path
|
assert_equal 'images/edit.png', entry.path
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_show_at_given_revision
|
def test_show_at_given_revision
|
||||||
get :show, :id => 3, :path => ['images'], :rev => 0
|
[0, '0', '0885933ad4f6'].each do |r1|
|
||||||
assert_response :success
|
get :show, :id => 3, :path => ['images'], :rev => r1
|
||||||
assert_template 'show'
|
assert_response :success
|
||||||
assert_not_nil assigns(:entries)
|
assert_template 'show'
|
||||||
assert_equal ['delete.png'], assigns(:entries).collect(&:name)
|
assert_not_nil assigns(:entries)
|
||||||
|
assert_equal ['delete.png'], assigns(:entries).collect(&:name)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_show_directory_sql_escape_percent
|
def test_show_directory_sql_escape_percent
|
||||||
get :show, :id => 3, :path => ['sql_escape', 'percent%dir'], :rev => 13
|
[13, '13', '3a330eb32958'].each do |r1|
|
||||||
assert_response :success
|
get :show, :id => 3, :path => ['sql_escape', 'percent%dir'], :rev => r1
|
||||||
assert_template 'show'
|
assert_response :success
|
||||||
|
assert_template 'show'
|
||||||
|
|
||||||
assert_not_nil assigns(:entries)
|
assert_not_nil assigns(:entries)
|
||||||
assert_equal ['percent%file1.txt', 'percentfile1.txt'], assigns(:entries).collect(&:name)
|
assert_equal ['percent%file1.txt', 'percentfile1.txt'], assigns(:entries).collect(&:name)
|
||||||
changesets = assigns(:changesets)
|
changesets = assigns(:changesets)
|
||||||
|
|
||||||
## This is not yet implemented.
|
## This is not yet implemented.
|
||||||
# assert_not_nil changesets
|
# assert_not_nil changesets
|
||||||
# assert_equal %w(13 11 10 9), changesets.collect(&:revision)
|
# assert_equal %w(13 11 10 9), changesets.collect(&:revision)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_changes
|
def test_changes
|
||||||
@ -123,16 +127,18 @@ class RepositoriesMercurialControllerTest < ActionController::TestCase
|
|||||||
end
|
end
|
||||||
|
|
||||||
def test_diff
|
def test_diff
|
||||||
# Full diff of changeset 4
|
[4, '4', 'def6d2f1254a'].each do |r1|
|
||||||
get :diff, :id => 3, :rev => 4
|
# Full diff of changeset 4
|
||||||
assert_response :success
|
get :diff, :id => 3, :rev => 4
|
||||||
assert_template 'diff'
|
assert_response :success
|
||||||
# Line 22 removed
|
assert_template 'diff'
|
||||||
assert_tag :tag => 'th',
|
# Line 22 removed
|
||||||
:content => '22',
|
assert_tag :tag => 'th',
|
||||||
:sibling => { :tag => 'td',
|
:content => '22',
|
||||||
:attributes => { :class => /diff_out/ },
|
:sibling => { :tag => 'td',
|
||||||
:content => /def remove/ }
|
:attributes => { :class => /diff_out/ },
|
||||||
|
:content => /def remove/ }
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_annotate
|
def test_annotate
|
||||||
|
Loading…
x
Reference in New Issue
Block a user