Rails4: replace hard-coded html with class at ApplicationHelperTest#test_wiki_links_within_wiki_page_context

See r12784 comment.

git-svn-id: http://svn.redmine.org/redmine/trunk@12843 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2014-02-06 04:45:54 +00:00
parent 50eed3f9ab
commit 3817f1e304
1 changed files with 52 additions and 18 deletions

View File

@ -714,30 +714,64 @@ RAW
end
def test_wiki_links_within_wiki_page_context
page = WikiPage.find_by_title('Another_page' )
to_test = {
# link to another page
'[[CookBook documentation]]' => '<a href="/projects/ecookbook/wiki/CookBook_documentation" class="wiki-page">CookBook documentation</a>',
'[[CookBook documentation|documentation]]' => '<a href="/projects/ecookbook/wiki/CookBook_documentation" class="wiki-page">documentation</a>',
'[[CookBook documentation#One-section]]' => '<a href="/projects/ecookbook/wiki/CookBook_documentation#One-section" class="wiki-page">CookBook documentation</a>',
'[[CookBook documentation#One-section|documentation]]' => '<a href="/projects/ecookbook/wiki/CookBook_documentation#One-section" class="wiki-page">documentation</a>',
'[[CookBook documentation]]' =>
link_to("CookBook documentation",
"/projects/ecookbook/wiki/CookBook_documentation",
:class => "wiki-page"),
'[[CookBook documentation|documentation]]' =>
link_to("documentation",
"/projects/ecookbook/wiki/CookBook_documentation",
:class => "wiki-page"),
'[[CookBook documentation#One-section]]' =>
link_to("CookBook documentation",
"/projects/ecookbook/wiki/CookBook_documentation#One-section",
:class => "wiki-page"),
'[[CookBook documentation#One-section|documentation]]' =>
link_to("documentation",
"/projects/ecookbook/wiki/CookBook_documentation#One-section",
:class => "wiki-page"),
# link to the current page
'[[Another page]]' => '<a href="/projects/ecookbook/wiki/Another_page" class="wiki-page">Another page</a>',
'[[Another page|Page]]' => '<a href="/projects/ecookbook/wiki/Another_page" class="wiki-page">Page</a>',
'[[Another page#anchor]]' => '<a href="#anchor" class="wiki-page">Another page</a>',
'[[Another page#anchor|Page]]' => '<a href="#anchor" class="wiki-page">Page</a>',
'[[Another page]]' =>
link_to("Another page",
"/projects/ecookbook/wiki/Another_page",
:class => "wiki-page"),
'[[Another page|Page]]' =>
link_to("Page",
"/projects/ecookbook/wiki/Another_page",
:class => "wiki-page"),
'[[Another page#anchor]]' =>
link_to("Another page",
"#anchor",
:class => "wiki-page"),
'[[Another page#anchor|Page]]' =>
link_to("Page",
"#anchor",
:class => "wiki-page"),
# page that doesn't exist
'[[Unknown page]]' => '<a href="/projects/ecookbook/wiki/Unknown_page?parent=Another_page" class="wiki-page new">Unknown page</a>',
'[[Unknown page|404]]' => '<a href="/projects/ecookbook/wiki/Unknown_page?parent=Another_page" class="wiki-page new">404</a>',
'[[Unknown page#anchor]]' => '<a href="/projects/ecookbook/wiki/Unknown_page?parent=Another_page#anchor" class="wiki-page new">Unknown page</a>',
'[[Unknown page#anchor|404]]' => '<a href="/projects/ecookbook/wiki/Unknown_page?parent=Another_page#anchor" class="wiki-page new">404</a>',
'[[Unknown page]]' =>
link_to("Unknown page",
"/projects/ecookbook/wiki/Unknown_page?parent=Another_page",
:class => "wiki-page new"),
'[[Unknown page|404]]' =>
link_to("404",
"/projects/ecookbook/wiki/Unknown_page?parent=Another_page",
:class => "wiki-page new"),
'[[Unknown page#anchor]]' =>
link_to("Unknown page",
"/projects/ecookbook/wiki/Unknown_page?parent=Another_page#anchor",
:class => "wiki-page new"),
'[[Unknown page#anchor|404]]' =>
link_to("404",
"/projects/ecookbook/wiki/Unknown_page?parent=Another_page#anchor",
:class => "wiki-page new"),
}
@project = Project.find(1)
to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(WikiContent.new( :text => text, :page => page ), :text) }
to_test.each do |text, result|
assert_equal "<p>#{result}</p>",
textilizable(WikiContent.new( :text => text, :page => page ), :text)
end
end
def test_wiki_links_anchor_option_should_prepend_page_title_to_href