From 3817f1e30455f4df5135af5f608f1a3912fcf4ff Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Thu, 6 Feb 2014 04:45:54 +0000 Subject: [PATCH] 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 --- test/unit/helpers/application_helper_test.rb | 70 +++++++++++++++----- 1 file changed, 52 insertions(+), 18 deletions(-) diff --git a/test/unit/helpers/application_helper_test.rb b/test/unit/helpers/application_helper_test.rb index 44cdf1693..d2dec16e2 100644 --- a/test/unit/helpers/application_helper_test.rb +++ b/test/unit/helpers/application_helper_test.rb @@ -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]]' => 'CookBook documentation', - '[[CookBook documentation|documentation]]' => 'documentation', - '[[CookBook documentation#One-section]]' => 'CookBook documentation', - '[[CookBook documentation#One-section|documentation]]' => 'documentation', + '[[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]]' => 'Another page', - '[[Another page|Page]]' => 'Page', - '[[Another page#anchor]]' => 'Another page', - '[[Another page#anchor|Page]]' => 'Page', + '[[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]]' => 'Unknown page', - '[[Unknown page|404]]' => '404', - '[[Unknown page#anchor]]' => 'Unknown page', - '[[Unknown page#anchor|404]]' => '404', + '[[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 "

#{result}

", textilizable(WikiContent.new( :text => text, :page => page ), :text) } + to_test.each do |text, result| + assert_equal "

#{result}

", + textilizable(WikiContent.new( :text => text, :page => page ), :text) + end end def test_wiki_links_anchor_option_should_prepend_page_title_to_href