2007-09-03 00:41:47 +04:00
# redMine - project management software
# Copyright (C) 2006-2007 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
require File . dirname ( __FILE__ ) + '/../../test_helper'
class ApplicationHelperTest < HelperTestCase
include ApplicationHelper
2007-09-08 00:07:54 +04:00
include ActionView :: Helpers :: TextHelper
2008-08-11 02:18:23 +04:00
fixtures :projects , :roles , :enabled_modules ,
:repositories , :changesets ,
:trackers , :issue_statuses , :issues , :versions , :documents ,
:wikis , :wiki_pages , :wiki_contents ,
:boards , :messages
2007-09-03 00:41:47 +04:00
def setup
super
end
def test_auto_links
to_test = {
2007-10-01 21:45:40 +04:00
'http://foo.bar' = > '<a class="external" href="http://foo.bar">http://foo.bar</a>' ,
2007-10-03 22:00:50 +04:00
'http://foo.bar/~user' = > '<a class="external" href="http://foo.bar/~user">http://foo.bar/~user</a>' ,
2007-10-01 21:45:40 +04:00
'http://foo.bar.' = > '<a class="external" href="http://foo.bar">http://foo.bar</a>.' ,
2008-07-12 15:12:33 +04:00
'This is a link: http://foo.bar.' = > 'This is a link: <a class="external" href="http://foo.bar">http://foo.bar</a>.' ,
'A link (eg. http://foo.bar).' = > 'A link (eg. <a class="external" href="http://foo.bar">http://foo.bar</a>).' ,
2007-10-01 21:45:40 +04:00
'http://foo.bar/foo.bar#foo.bar.' = > '<a class="external" href="http://foo.bar/foo.bar#foo.bar">http://foo.bar/foo.bar#foo.bar</a>.' ,
2008-09-17 20:48:04 +04:00
'http://www.foo.bar/Test_(foobar)' = > '<a class="external" href="http://www.foo.bar/Test_(foobar)">http://www.foo.bar/Test_(foobar)</a>' ,
'(see inline link : http://www.foo.bar/Test_(foobar))' = > '(see inline link : <a class="external" href="http://www.foo.bar/Test_(foobar)">http://www.foo.bar/Test_(foobar)</a>)' ,
'(see inline link : http://www.foo.bar/Test)' = > '(see inline link : <a class="external" href="http://www.foo.bar/Test">http://www.foo.bar/Test</a>)' ,
'(see inline link : http://www.foo.bar/Test).' = > '(see inline link : <a class="external" href="http://www.foo.bar/Test">http://www.foo.bar/Test</a>).' ,
'(see "inline link":http://www.foo.bar/Test_(foobar))' = > '(see <a href="http://www.foo.bar/Test_(foobar)" class="external">inline link</a>)' ,
'(see "inline link":http://www.foo.bar/Test)' = > '(see <a href="http://www.foo.bar/Test" class="external">inline link</a>)' ,
'(see "inline link":http://www.foo.bar/Test).' = > '(see <a href="http://www.foo.bar/Test" class="external">inline link</a>).' ,
2007-10-01 21:45:40 +04:00
'www.foo.bar' = > '<a class="external" href="http://www.foo.bar">www.foo.bar</a>' ,
'http://foo.bar/page?p=1&t=z&s=' = > '<a class="external" href="http://foo.bar/page?p=1&t=z&s=">http://foo.bar/page?p=1&t=z&s=</a>' ,
2008-06-17 23:27:03 +04:00
'http://foo.bar/page#125' = > '<a class="external" href="http://foo.bar/page#125">http://foo.bar/page#125</a>' ,
'http://foo@www.bar.com' = > '<a class="external" href="http://foo@www.bar.com">http://foo@www.bar.com</a>' ,
2008-09-17 20:48:04 +04:00
'http://foo:bar@www.bar.com' = > '<a class="external" href="http://foo:bar@www.bar.com">http://foo:bar@www.bar.com</a>' ,
2008-06-23 20:51:13 +04:00
'ftp://foo.bar' = > '<a class="external" href="ftp://foo.bar">ftp://foo.bar</a>' ,
2007-09-03 00:41:47 +04:00
}
to_test . each { | text , result | assert_equal " <p> #{ result } </p> " , textilizable ( text ) }
end
def test_auto_mailto
assert_equal '<p><a href="mailto:test@foo.bar" class="email">test@foo.bar</a></p>' ,
textilizable ( 'test@foo.bar' )
end
2007-12-20 00:06:06 +03:00
def test_inline_images
2007-09-03 00:41:47 +04:00
to_test = {
'!http://foo.bar/image.jpg!' = > '<img src="http://foo.bar/image.jpg" alt="" />' ,
'floating !>http://foo.bar/image.jpg!' = > 'floating <div style="float:right"><img src="http://foo.bar/image.jpg" alt="" /></div>' ,
2007-12-20 00:06:06 +03:00
'with class !(some-class)http://foo.bar/image.jpg!' = > 'with class <img src="http://foo.bar/image.jpg" class="some-class" alt="" />' ,
'with style !{width:100px;height100px}http://foo.bar/image.jpg!' = > 'with style <img src="http://foo.bar/image.jpg" style="width:100px;height100px;" alt="" />' ,
}
to_test . each { | text , result | assert_equal " <p> #{ result } </p> " , textilizable ( text ) }
end
def test_textile_external_links
to_test = {
2007-10-01 21:45:40 +04:00
'This is a "link":http://foo.bar' = > 'This is a <a href="http://foo.bar" class="external">link</a>' ,
'This is an intern "link":/foo/bar' = > 'This is an intern <a href="/foo/bar">link</a>' ,
2008-05-26 23:39:51 +04:00
'"link (Link title)":http://foo.bar' = > '<a href="http://foo.bar" title="Link title" class="external">link</a>' ,
2008-06-16 23:37:09 +04:00
" This is not a \" Link \" : \n \n Another paragraph " = > " This is not a \" Link \" :</p> \n \n \n \t <p>Another paragraph " ,
2008-05-26 23:39:51 +04:00
# no multiline link text
" This is a double quote \" on the first line \n and another on a second line \" :test " = > " This is a double quote \" on the first line<br /> \n and another on a second line \" :test "
2007-09-03 00:41:47 +04:00
}
to_test . each { | text , result | assert_equal " <p> #{ result } </p> " , textilizable ( text ) }
end
def test_redmine_links
2007-09-08 00:07:54 +04:00
issue_link = link_to ( '#3' , { :controller = > 'issues' , :action = > 'show' , :id = > 3 } ,
:class = > 'issue' , :title = > 'Error 281 when updating a recipe (New)' )
2008-01-15 21:12:12 +03:00
2008-03-17 20:45:01 +03:00
changeset_link = link_to ( 'r1' , { :controller = > 'repositories' , :action = > 'revision' , :id = > 'ecookbook' , :rev = > 1 } ,
2007-09-08 00:07:54 +04:00
:class = > 'changeset' , :title = > 'My very first commit' )
2007-09-03 00:41:47 +04:00
2008-01-15 21:12:12 +03:00
document_link = link_to ( 'Test document' , { :controller = > 'documents' , :action = > 'show' , :id = > 1 } ,
:class = > 'document' )
version_link = link_to ( '1.0' , { :controller = > 'versions' , :action = > 'show' , :id = > 2 } ,
:class = > 'version' )
2008-03-17 20:45:01 +03:00
2008-08-11 02:18:23 +04:00
message_url = { :controller = > 'messages' , :action = > 'show' , :board_id = > 1 , :id = > 4 }
2008-07-06 16:43:51 +04:00
source_url = { :controller = > 'repositories' , :action = > 'entry' , :id = > 'ecookbook' , :path = > [ 'some' , 'file' ] }
2008-07-10 17:36:28 +04:00
source_url_with_ext = { :controller = > 'repositories' , :action = > 'entry' , :id = > 'ecookbook' , :path = > [ 'some' , 'file.ext' ] }
2008-01-15 21:12:12 +03:00
2007-09-03 00:41:47 +04:00
to_test = {
2008-03-17 20:45:01 +03:00
# tickets
'#3, #3 and #3.' = > " #{ issue_link } , #{ issue_link } and #{ issue_link } . " ,
# changesets
'r1' = > changeset_link ,
# documents
'document#1' = > document_link ,
'document:"Test document"' = > document_link ,
# versions
'version#2' = > version_link ,
'version:1.0' = > version_link ,
'version:"1.0"' = > version_link ,
# source
'source:/some/file' = > link_to ( 'source:/some/file' , source_url , :class = > 'source' ) ,
2008-07-10 17:36:28 +04:00
'source:/some/file.' = > link_to ( 'source:/some/file' , source_url , :class = > 'source' ) + " . " ,
'source:/some/file.ext.' = > link_to ( 'source:/some/file.ext' , source_url_with_ext , :class = > 'source' ) + " . " ,
'source:/some/file. ' = > link_to ( 'source:/some/file' , source_url , :class = > 'source' ) + " . " ,
'source:/some/file.ext. ' = > link_to ( 'source:/some/file.ext' , source_url_with_ext , :class = > 'source' ) + " . " ,
'source:/some/file, ' = > link_to ( 'source:/some/file' , source_url , :class = > 'source' ) + " , " ,
2008-03-17 20:45:01 +03:00
'source:/some/file@52' = > link_to ( 'source:/some/file@52' , source_url . merge ( :rev = > 52 ) , :class = > 'source' ) ,
2008-07-10 17:36:28 +04:00
'source:/some/file.ext@52' = > link_to ( 'source:/some/file.ext@52' , source_url_with_ext . merge ( :rev = > 52 ) , :class = > 'source' ) ,
2008-03-17 20:45:01 +03:00
'source:/some/file#L110' = > link_to ( 'source:/some/file#L110' , source_url . merge ( :anchor = > 'L110' ) , :class = > 'source' ) ,
2008-07-10 17:36:28 +04:00
'source:/some/file.ext#L110' = > link_to ( 'source:/some/file.ext#L110' , source_url_with_ext . merge ( :anchor = > 'L110' ) , :class = > 'source' ) ,
2008-03-17 20:45:01 +03:00
'source:/some/file@52#L110' = > link_to ( 'source:/some/file@52#L110' , source_url . merge ( :rev = > 52 , :anchor = > 'L110' ) , :class = > 'source' ) ,
'export:/some/file' = > link_to ( 'export:/some/file' , source_url . merge ( :format = > 'raw' ) , :class = > 'source download' ) ,
2008-08-11 02:18:23 +04:00
# message
'message#4' = > link_to ( 'Post 2' , message_url , :class = > 'message' ) ,
'message#5' = > link_to ( 'RE: post 2' , message_url . merge ( :anchor = > 'message-5' ) , :class = > 'message' ) ,
2008-01-15 21:12:12 +03:00
# escaping
2008-03-17 20:45:01 +03:00
'!#3.' = > '#3.' ,
'!r1' = > 'r1' ,
'!document#1' = > 'document#1' ,
'!document:"Test document"' = > 'document:"Test document"' ,
'!version#2' = > 'version#2' ,
'!version:1.0' = > 'version:1.0' ,
'!version:"1.0"' = > 'version:"1.0"' ,
'!source:/some/file' = > 'source:/some/file' ,
2008-03-17 21:01:26 +03:00
# invalid expressions
2008-06-05 01:30:12 +04:00
'source:' = > 'source:' ,
# url hash
" http://foo.bar/FAQ # 3 " = > '<a class="external" href="http://foo.bar/FAQ#3">http://foo.bar/FAQ#3</a>' ,
2008-01-15 21:12:12 +03:00
}
@project = Project . find ( 1 )
to_test . each { | text , result | assert_equal " <p> #{ result } </p> " , textilizable ( text ) }
end
def test_wiki_links
to_test = {
'[[CookBook documentation]]' = > '<a href="/wiki/ecookbook/CookBook_documentation" class="wiki-page">CookBook documentation</a>' ,
'[[Another page|Page]]' = > '<a href="/wiki/ecookbook/Another_page" class="wiki-page">Page</a>' ,
2008-07-28 21:20:31 +04:00
# link with anchor
'[[CookBook documentation#One-section]]' = > '<a href="/wiki/ecookbook/CookBook_documentation#One-section" class="wiki-page">CookBook documentation</a>' ,
'[[Another page#anchor|Page]]' = > '<a href="/wiki/ecookbook/Another_page#anchor" class="wiki-page">Page</a>' ,
2008-01-15 21:12:12 +03:00
# page that doesn't exist
'[[Unknown page]]' = > '<a href="/wiki/ecookbook/Unknown_page" class="wiki-page new">Unknown page</a>' ,
'[[Unknown page|404]]' = > '<a href="/wiki/ecookbook/Unknown_page" class="wiki-page new">404</a>' ,
# link to another project wiki
'[[onlinestore:]]' = > '<a href="/wiki/onlinestore/" class="wiki-page">onlinestore</a>' ,
'[[onlinestore:|Wiki]]' = > '<a href="/wiki/onlinestore/" class="wiki-page">Wiki</a>' ,
'[[onlinestore:Start page]]' = > '<a href="/wiki/onlinestore/Start_page" class="wiki-page">Start page</a>' ,
'[[onlinestore:Start page|Text]]' = > '<a href="/wiki/onlinestore/Start_page" class="wiki-page">Text</a>' ,
'[[onlinestore:Unknown page]]' = > '<a href="/wiki/onlinestore/Unknown_page" class="wiki-page new">Unknown page</a>' ,
2008-05-25 17:30:54 +04:00
# striked through link
'-[[Another page|Page]]-' = > '<del><a href="/wiki/ecookbook/Another_page" class="wiki-page">Page</a></del>' ,
2008-01-15 21:12:12 +03:00
# escaping
'![[Another page|Page]]' = > '[[Another page|Page]]' ,
2007-09-03 00:41:47 +04:00
}
@project = Project . find ( 1 )
to_test . each { | text , result | assert_equal " <p> #{ result } </p> " , textilizable ( text ) }
end
2007-11-12 17:36:33 +03:00
2008-03-18 02:01:35 +03:00
def test_html_tags
to_test = {
2008-04-13 16:45:17 +04:00
" <div>content</div> " = > " <p><div>content</div></p> " ,
" <div class= \" bold \" >content</div> " = > " <p><div class= \" bold \" >content</div></p> " ,
" <script>some script;</script> " = > " <p><script>some script;</script></p> " ,
2008-03-18 02:01:35 +03:00
# do not escape pre/code tags
" <pre> \n line 1 \n line2</pre> " = > " <pre> \n line 1 \n line2</pre> " ,
" <pre><code> \n line 1 \n line2</code></pre> " = > " <pre><code> \n line 1 \n line2</code></pre> " ,
" <pre><div>content</div></pre> " = > " <pre><div>content</div></pre> " ,
2008-05-02 19:16:17 +04:00
" HTML comment: <!-- no comments --> " = > " <p>HTML comment: <!-- no comments --></p> " ,
" <!-- opening comment " = > " <p><!-- opening comment</p> "
2008-03-18 02:01:35 +03:00
}
to_test . each { | text , result | assert_equal result , textilizable ( text ) }
2008-03-21 20:39:02 +03:00
end
2008-06-09 00:31:36 +04:00
def test_allowed_html_tags
to_test = {
" <pre>preformatted text</pre> " = > " <pre>preformatted text</pre> " ,
" <notextile>no *textile* formatting</notextile> " = > " no *textile* formatting " ,
2008-09-23 21:03:51 +04:00
" <notextile>this is <tag>a tag</tag></notextile> " = > " this is <tag>a tag</tag> "
2008-06-09 00:31:36 +04:00
}
to_test . each { | text , result | assert_equal result , textilizable ( text ) }
end
2008-03-21 20:39:02 +03:00
def test_wiki_links_in_tables
2008-06-04 21:12:59 +04:00
to_test = { " |[[Page|Link title]]|[[Other Page|Other title]]| \n |Cell 21|[[Last page]]| " = >
2008-03-21 20:39:02 +03:00
'<tr><td><a href="/wiki/ecookbook/Page" class="wiki-page new">Link title</a></td>' +
'<td><a href="/wiki/ecookbook/Other_Page" class="wiki-page new">Other title</a></td>' +
'</tr><tr><td>Cell 21</td><td><a href="/wiki/ecookbook/Last_page" class="wiki-page new">Last page</a></td></tr>'
}
@project = Project . find ( 1 )
to_test . each { | text , result | assert_equal " <table> #{ result } </table> " , textilizable ( text ) . gsub ( / [ \ t \ n] / , '' ) }
2008-03-18 02:01:35 +03:00
end
2008-05-18 12:24:31 +04:00
def test_text_formatting
to_test = { '*_+bold, italic and underline+_*' = > '<strong><em><ins>bold, italic and underline</ins></em></strong>' ,
'(_text within parentheses_)' = > '(<em>text within parentheses</em>)'
}
to_test . each { | text , result | assert_equal " <p> #{ result } </p> " , textilizable ( text ) }
end
2008-05-01 12:44:40 +04:00
def test_wiki_horizontal_rule
assert_equal '<hr />' , textilizable ( '---' )
assert_equal '<p>Dashes: ---</p>' , textilizable ( 'Dashes: ---' )
end
2008-06-15 15:00:40 +04:00
def test_table_of_content
raw = <<-RAW
{ { toc } }
h1 . Title
Lorem ipsum dolor sit amet , consectetuer adipiscing elit . Maecenas sed libero .
h2 . Subtitle
Nullam commodo metus accumsan nulla . Curabitur lobortis dui id dolor .
h2 . Subtitle with %{ color:red } red text %
h1 . Another title
RAW
2008-07-27 14:23:07 +04:00
expected = '<ul class="toc">' +
2008-07-28 21:08:16 +04:00
'<li class="heading1"><a href="#Title">Title</a></li>' +
'<li class="heading2"><a href="#Subtitle">Subtitle</a></li>' +
'<li class="heading2"><a href="#Subtitle-with-red-text">Subtitle with red text</a></li>' +
'<li class="heading1"><a href="#Another-title">Another title</a></li>' +
2008-07-27 14:23:07 +04:00
'</ul>'
2008-06-15 15:00:40 +04:00
2008-07-27 14:23:07 +04:00
assert textilizable ( raw ) . gsub ( " \n " , " " ) . include? ( expected )
2008-06-15 15:00:40 +04:00
end
2008-05-30 20:35:36 +04:00
def test_blockquote
# orig raw text
raw = <<-RAW
John said :
> Lorem ipsum dolor sit amet , consectetuer adipiscing elit . Maecenas sed libero .
> Nullam commodo metus accumsan nulla . Curabitur lobortis dui id dolor .
> * Donec odio lorem ,
> * sagittis ac ,
> * malesuada in ,
> * adipiscing eu , dolor .
>
> > Nulla varius pulvinar diam . Proin id arcu id lorem scelerisque condimentum . Proin vehicula turpis vitae lacus .
> Proin a tellus . Nam vel neque .
He ' s right .
RAW
# expected html
expected = <<-EXPECTED
< p > John said : < / p>
< blockquote >
Lorem ipsum dolor sit amet , consectetuer adipiscing elit . Maecenas sed libero .
Nullam commodo metus accumsan nulla . Curabitur lobortis dui id dolor .
< ul >
< li > Donec odio lorem , < / li>
< li > sagittis ac , < / li>
< li > malesuada in , < / li>
< li > adipiscing eu , dolor . < / li>
< / ul>
< blockquote >
< p > Nulla varius pulvinar diam . Proin id arcu id lorem scelerisque condimentum . Proin vehicula turpis vitae lacus . < / p>
< / blockquote>
< p > Proin a tellus . Nam vel neque . < / p>
< / blockquote>
< p > He ' s right . < / p>
EXPECTED
assert_equal expected . gsub ( %r{ \ s+ } , '' ) , textilizable ( raw ) . gsub ( %r{ \ s+ } , '' )
end
2008-06-04 21:12:59 +04:00
def test_table
raw = <<-RAW
This is a table with empty cells :
| cell11 | cell12 ||
| cell21 || cell23 |
| cell31 | cell32 | cell33 |
RAW
expected = <<-EXPECTED
< p > This is a table with empty cells : < / p>
< table >
< tr > < td > cell11 < / td><td>cell12< / td > < td > < / td>< / tr >
< tr > < td > cell21 < / td><td>< / td > < td > cell23 < / td>< / tr >
< tr > < td > cell31 < / td><td>cell32< / td > < td > cell33 < / td>< / tr >
< / table>
EXPECTED
assert_equal expected . gsub ( %r{ \ s+ } , '' ) , textilizable ( raw ) . gsub ( %r{ \ s+ } , '' )
end
2007-11-12 17:36:33 +03:00
def test_macro_hello_world
text = " {{hello_world}} "
assert textilizable ( text ) . match ( / Hello world! / )
2008-02-16 18:34:17 +03:00
# escaping
text = " !{{hello_world}} "
assert_equal '<p>{{hello_world}}</p>' , textilizable ( text )
2007-11-12 17:36:33 +03:00
end
2007-11-16 23:26:36 +03:00
2008-04-13 20:22:55 +04:00
def test_macro_include
@project = Project . find ( 1 )
# include a page of the current project wiki
text = " {{include(Another page)}} "
assert textilizable ( text ) . match ( / This is a link to a ticket / )
@project = nil
# include a page of a specific project wiki
text = " {{include(ecookbook:Another page)}} "
assert textilizable ( text ) . match ( / This is a link to a ticket / )
text = " {{include(ecookbook:)}} "
assert textilizable ( text ) . match ( / CookBook documentation / )
text = " {{include(unknowidentifier:somepage)}} "
assert textilizable ( text ) . match ( / Unknow project / )
end
2007-11-16 23:26:36 +03:00
def test_date_format_default
today = Date . today
Setting . date_format = ''
assert_equal l_date ( today ) , format_date ( today )
end
def test_date_format
today = Date . today
Setting . date_format = '%d %m %Y'
assert_equal today . strftime ( '%d %m %Y' ) , format_date ( today )
end
def test_time_format_default
now = Time . now
Setting . date_format = ''
Setting . time_format = ''
assert_equal l_datetime ( now ) , format_time ( now )
assert_equal l_time ( now ) , format_time ( now , false )
end
def test_time_format
now = Time . now
Setting . date_format = '%d %m %Y'
Setting . time_format = '%H %M'
assert_equal now . strftime ( '%d %m %Y %H %M' ) , format_time ( now )
assert_equal now . strftime ( '%H %M' ) , format_time ( now , false )
end
2008-09-11 21:45:21 +04:00
def test_utc_time_format
now = Time . now . utc
Setting . date_format = '%d %m %Y'
Setting . time_format = '%H %M'
assert_equal Time . now . strftime ( '%d %m %Y %H %M' ) , format_time ( now )
assert_equal Time . now . strftime ( '%H %M' ) , format_time ( now , false )
end
2008-09-20 18:07:52 +04:00
def test_due_date_distance_in_words
to_test = { Date . today = > 'Due in 0 days' ,
Date . today + 1 = > 'Due in 1 day' ,
Date . today + 100 = > 'Due in 100 days' ,
Date . today + 20000 = > 'Due in 20000 days' ,
Date . today - 1 = > '1 day late' ,
Date . today - 100 = > '100 days late' ,
Date . today - 20000 = > '20000 days late' ,
}
to_test . each do | date , expected |
assert_equal expected , due_date_distance_in_words ( date )
end
end
2007-09-03 00:41:47 +04:00
end