##// END OF EJS Templates
Fixed some tests that where looking for specific issue urls but weren't matching...
Fixed some tests that where looking for specific issue urls but weren't matching the css classes for the link. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3049 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2935:b2e4d8ad3f36
r2935:b2e4d8ad3f36
Show More
application_helper_test.rb
528 lines | 24.3 KiB | text/x-ruby | RubyLexer
/ test / unit / helpers / application_helper_test.rb
Jean-Philippe Lang
Merged Rails 2.2 branch. Redmine now requires Rails 2.2.2....
r2430 # Redmine - project management software
# Copyright (C) 2006-2009 Jean-Philippe Lang
Jean-Philippe Lang
Added Redmine::WikiFormatting module and tests for wiki links....
r688 #
# 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
Jean-Philippe Lang
Improved Redmine links:...
r703 include ActionView::Helpers::TextHelper
Jean-Philippe Lang
Merged Rails 2.2 branch. Redmine now requires Rails 2.2.2....
r2430 include ActionView::Helpers::DateHelper
Jean-Philippe Lang
Changes ApplicationHelper#gravatar_for_mail to #avatar that takes a User or a String (less code in views)....
r1998 fixtures :projects, :roles, :enabled_modules, :users,
Jean-Philippe Lang
Adds links to forum messages using message#id syntax (#1756)....
r1728 :repositories, :changesets,
:trackers, :issue_statuses, :issues, :versions, :documents,
:wikis, :wiki_pages, :wiki_contents,
Jean-Philippe Lang
Fixed: Inline images don't work if file name has upper case letters or if image is in BMP format (#2102)....
r1956 :boards, :messages,
:attachments
Jean-Philippe Lang
Added Redmine::WikiFormatting module and tests for wiki links....
r688
def setup
super
end
def test_auto_links
to_test = {
Jean-Philippe Lang
Better handling of external link style assignment....
r781 'http://foo.bar' => '<a class="external" href="http://foo.bar">http://foo.bar</a>',
Jean-Philippe Lang
Fixed: URL with ~ broken in wiki formatting....
r785 'http://foo.bar/~user' => '<a class="external" href="http://foo.bar/~user">http://foo.bar/~user</a>',
Jean-Philippe Lang
Better handling of external link style assignment....
r781 'http://foo.bar.' => '<a class="external" href="http://foo.bar">http://foo.bar</a>.',
Jean-Philippe Lang
Turn ftps and sftp proto into links (#1514)....
r2016 'https://foo.bar.' => '<a class="external" href="https://foo.bar">https://foo.bar</a>.',
Jean-Philippe Lang
Adds auto links tests....
r1644 '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>).',
Jean-Philippe Lang
Better handling of external link style assignment....
r781 '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>.',
Jean-Philippe Lang
Fixed: http links containing parentheses fail to reder correctly (#1591). Patch by Paul Rivier....
r1869 '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>).',
Jean-Philippe Lang
Better handling of external link style assignment....
r781 '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&#38;t=z&#38;s=">http://foo.bar/page?p=1&#38;t=z&#38;s=</a>',
Jean-Philippe Lang
Fixed: urls containing @ are parsed as email adress by the wiki formatter (#1456)....
r1545 '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>',
Jean-Philippe Lang
Fixed: http links containing parentheses fail to reder correctly (#1591). Patch by Paul Rivier....
r1869 'http://foo:bar@www.bar.com' => '<a class="external" href="http://foo:bar@www.bar.com">http://foo:bar@www.bar.com</a>',
Jean-Philippe Lang
Turn ftp urls into links (#1514)....
r1563 'ftp://foo.bar' => '<a class="external" href="ftp://foo.bar">ftp://foo.bar</a>',
Jean-Philippe Lang
Turn ftps and sftp proto into links (#1514)....
r2016 'ftps://foo.bar' => '<a class="external" href="ftps://foo.bar">ftps://foo.bar</a>',
'sftp://foo.bar' => '<a class="external" href="sftp://foo.bar">sftp://foo.bar</a>',
Jean-Philippe Lang
Less aggressive textile image tag parsing (#3209)....
r2585 # two exclamation marks
'http://example.net/path!602815048C7B5C20!302.html' => '<a class="external" href="http://example.net/path!602815048C7B5C20!302.html">http://example.net/path!602815048C7B5C20!302.html</a>',
Jean-Philippe Lang
Added Redmine::WikiFormatting module and tests for wiki links....
r688 }
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
Jean-Philippe Lang
Fixed: Textile image with style attribute cause internal server error....
r1004 def test_inline_images
Jean-Philippe Lang
Added Redmine::WikiFormatting module and tests for wiki links....
r688 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>',
Jean-Philippe Lang
Fixed: Textile image with style attribute cause internal server error....
r1004 'with class !(some-class)http://foo.bar/image.jpg!' => 'with class <img src="http://foo.bar/image.jpg" class="some-class" alt="" />',
Jean-Philippe Lang
Disable textile inline styles to prevent XSS attacks (#2377)....
r2190 # inline styles should be stripped
'with style !{width:100px;height100px}http://foo.bar/image.jpg!' => 'with style <img src="http://foo.bar/image.jpg" alt="" />',
Jean-Philippe Lang
Escape double-quotes in image titles....
r2142 'with title !http://foo.bar/image.jpg(This is a title)!' => 'with title <img src="http://foo.bar/image.jpg" title="This is a title" alt="This is a title" />',
'with title !http://foo.bar/image.jpg(This is a double-quoted "title")!' => 'with title <img src="http://foo.bar/image.jpg" title="This is a double-quoted &quot;title&quot;" alt="This is a double-quoted &quot;title&quot;" />',
Jean-Philippe Lang
Fixed: Textile image with style attribute cause internal server error....
r1004 }
to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text) }
end
Jean-Philippe Lang
Fixed: inline images in wiki headings (#4112)....
r2885 def test_inline_images_inside_tags
raw = <<-RAW
h1. !foo.png! Heading
Centered image:
p=. !bar.gif!
RAW
assert textilizable(raw).include?('<img src="foo.png" alt="" />')
assert textilizable(raw).include?('<img src="bar.gif" alt="" />')
end
Jean-Philippe Lang
Escape textile titles and styles (#2377)....
r2168 def test_acronyms
to_test = {
'this is an acronym: GPL(General Public License)' => 'this is an acronym: <acronym title="General Public License">GPL</acronym>',
'GPL(This is a double-quoted "title")' => '<acronym title="This is a double-quoted &quot;title&quot;">GPL</acronym>',
}
to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text) }
end
Jean-Philippe Lang
Fixed: Inline images don't work if file name has upper case letters or if image is in BMP format (#2102)....
r1956 def test_attached_images
to_test = {
'Inline image: !logo.gif!' => 'Inline image: <img src="/attachments/download/3" title="This is a logo" alt="This is a logo" />',
Jean-Philippe Lang
Fixed: inline attached image should not match partial filename (#2683)....
r2359 'Inline image: !logo.GIF!' => 'Inline image: <img src="/attachments/download/3" title="This is a logo" alt="This is a logo" />',
'No match: !ogo.gif!' => 'No match: <img src="ogo.gif" alt="" />',
Jean-Philippe Lang
Adds a test for attached image inside a link (#4033)....
r2848 'No match: !ogo.GIF!' => 'No match: <img src="ogo.GIF" alt="" />',
# link image
'!logo.gif!:http://foo.bar/' => '<a href="http://foo.bar/"><img src="/attachments/download/3" title="This is a logo" alt="This is a logo" /></a>',
Jean-Philippe Lang
Fixed: Inline images don't work if file name has upper case letters or if image is in BMP format (#2102)....
r1956 }
attachments = Attachment.find(:all)
to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text, :attachments => attachments) }
end
Jean-Philippe Lang
Fixed: Textile image with style attribute cause internal server error....
r1004 def test_textile_external_links
to_test = {
Jean-Philippe Lang
Better handling of external link style assignment....
r781 '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>',
Jean-Philippe Lang
No multiline text for textile links....
r1449 '"link (Link title)":http://foo.bar' => '<a href="http://foo.bar" title="Link title" class="external">link</a>',
Jean-Philippe Lang
Escape textile titles and styles (#2377)....
r2168 '"link (Link title with "double-quotes")":http://foo.bar' => '<a href="http://foo.bar" title="Link title with &quot;double-quotes&quot;" class="external">link</a>',
Jean-Philippe Lang
Prevent unwanted textile link parsing at end of line....
r1543 "This is not a \"Link\":\n\nAnother paragraph" => "This is not a \"Link\":</p>\n\n\n\t<p>Another paragraph",
Jean-Philippe Lang
No multiline text for textile links....
r1449 # no multiline link text
Jean-Philippe Lang
Allow line breaks in wiki table cells (#2346)....
r2719 "This is a double quote \"on the first line\nand another on a second line\":test" => "This is a double quote \"on the first line<br />and another on a second line\":test",
Jean-Philippe Lang
Add test for r2664 (#3127)....
r2573 # mailto link
"\"system administrator\":mailto:sysadmin@example.com?subject=redmine%20permissions" => "<a href=\"mailto:sysadmin@example.com?subject=redmine%20permissions\">system administrator</a>",
Jean-Philippe Lang
Less aggressive textile image tag parsing (#3209)....
r2585 # two exclamation marks
'"a link":http://example.net/path!602815048C7B5C20!302.html' => '<a href="http://example.net/path!602815048C7B5C20!302.html" class="external">a link</a>',
Jean-Philippe Lang
Added Redmine::WikiFormatting module and tests for wiki links....
r688 }
to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text) }
end
def test_redmine_links
Jean-Philippe Lang
Improved Redmine links:...
r703 issue_link = link_to('#3', {:controller => 'issues', :action => 'show', :id => 3},
Eric Davis
Fixed some tests that where looking for specific issue urls but weren't matching...
r2935 :class => 'issue status-1 priority-1 overdue', :title => 'Error 281 when updating a recipe (New)')
Jean-Philippe Lang
Redmine links can be used to link to documents, versions and attachments....
r1050
Jean-Philippe Lang
Add Redmine links for repository files using source: and export: keyworkds (#867)....
r1252 changeset_link = link_to('r1', {:controller => 'repositories', :action => 'revision', :id => 'ecookbook', :rev => 1},
Jean-Philippe Lang
Improved Redmine links:...
r703 :class => 'changeset', :title => 'My very first commit')
Jean-Philippe Lang
Do not require a non-word character after a comma in Redmine links (#3561)....
r2704 changeset_link2 = link_to('r2', {:controller => 'repositories', :action => 'revision', :id => 'ecookbook', :rev => 2},
:class => 'changeset', :title => 'This commit fixes #1, #2 and references #1 & #3')
Jean-Philippe Lang
Added Redmine::WikiFormatting module and tests for wiki links....
r688
Jean-Philippe Lang
Redmine links can be used to link to documents, versions and attachments....
r1050 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')
Jean-Philippe Lang
Add Redmine links for repository files using source: and export: keyworkds (#867)....
r1252
Jean-Philippe Lang
Adds links to forum messages using message#id syntax (#1756)....
r1728 message_url = {:controller => 'messages', :action => 'show', :board_id => 1, :id => 4}
Jean-Philippe Lang
Fixes "source:" links URLs (r1617)....
r1626 source_url = {:controller => 'repositories', :action => 'entry', :id => 'ecookbook', :path => ['some', 'file']}
Jean-Philippe Lang
Fixed: trailing period should not be included in redmine links of type class:id (#1612)....
r1636 source_url_with_ext = {:controller => 'repositories', :action => 'entry', :id => 'ecookbook', :path => ['some', 'file.ext']}
Jean-Philippe Lang
Redmine links can be used to link to documents, versions and attachments....
r1050
Jean-Philippe Lang
Added Redmine::WikiFormatting module and tests for wiki links....
r688 to_test = {
Jean-Philippe Lang
Add Redmine links for repository files using source: and export: keyworkds (#867)....
r1252 # tickets
'#3, #3 and #3.' => "#{issue_link}, #{issue_link} and #{issue_link}.",
# changesets
'r1' => changeset_link,
Jean-Philippe Lang
Do not require a non-word character after a comma in Redmine links (#3561)....
r2704 'r1.' => "#{changeset_link}.",
'r1, r2' => "#{changeset_link}, #{changeset_link2}",
'r1,r2' => "#{changeset_link},#{changeset_link2}",
Jean-Philippe Lang
Add Redmine links for repository files using source: and export: keyworkds (#867)....
r1252 # 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'),
Jean-Philippe Lang
Fixed: trailing period should not be included in redmine links of type class:id (#1612)....
r1636 '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') + ",",
Jean-Philippe Lang
Add Redmine links for repository files using source: and export: keyworkds (#867)....
r1252 'source:/some/file@52' => link_to('source:/some/file@52', source_url.merge(:rev => 52), :class => 'source'),
Jean-Philippe Lang
Fixed: trailing period should not be included in redmine links of type class:id (#1612)....
r1636 'source:/some/file.ext@52' => link_to('source:/some/file.ext@52', source_url_with_ext.merge(:rev => 52), :class => 'source'),
Jean-Philippe Lang
Add Redmine links for repository files using source: and export: keyworkds (#867)....
r1252 'source:/some/file#L110' => link_to('source:/some/file#L110', source_url.merge(:anchor => 'L110'), :class => 'source'),
Jean-Philippe Lang
Fixed: trailing period should not be included in redmine links of type class:id (#1612)....
r1636 'source:/some/file.ext#L110' => link_to('source:/some/file.ext#L110', source_url_with_ext.merge(:anchor => 'L110'), :class => 'source'),
Jean-Philippe Lang
Add Redmine links for repository files using source: and export: keyworkds (#867)....
r1252 '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'),
Jean-Philippe Lang
Adds links to forum messages using message#id syntax (#1756)....
r1728 # 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'),
Jean-Philippe Lang
Redmine links can be used to link to documents, versions and attachments....
r1050 # escaping
Jean-Philippe Lang
Add Redmine links for repository files using source: and export: keyworkds (#867)....
r1252 '!#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',
Jean-Philippe Lang
Small fix to the Redmine links regexp....
r1253 # invalid expressions
Jean-Philippe Lang
Redmine links regexp fix (#1369, url hash turned into a ticket link)....
r1478 'source:' => 'source:',
# url hash
"http://foo.bar/FAQ#3" => '<a class="external" href="http://foo.bar/FAQ#3">http://foo.bar/FAQ#3</a>',
Jean-Philippe Lang
Redmine links can be used to link to documents, versions and attachments....
r1050 }
@project = Project.find(1)
to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text) }
end
def test_wiki_links
to_test = {
Eric Davis
Converted routing and urls to follow the Rails REST convention....
r2315 '[[CookBook documentation]]' => '<a href="/projects/ecookbook/wiki/CookBook_documentation" class="wiki-page">CookBook documentation</a>',
'[[Another page|Page]]' => '<a href="/projects/ecookbook/wiki/Another_page" class="wiki-page">Page</a>',
Jean-Philippe Lang
Adds support for wiki links with anchor (#1647)....
r1697 # link with anchor
Eric Davis
Converted routing and urls to follow the Rails REST convention....
r2315 '[[CookBook documentation#One-section]]' => '<a href="/projects/ecookbook/wiki/CookBook_documentation#One-section" class="wiki-page">CookBook documentation</a>',
'[[Another page#anchor|Page]]' => '<a href="/projects/ecookbook/wiki/Another_page#anchor" class="wiki-page">Page</a>',
Jean-Philippe Lang
Redmine links can be used to link to documents, versions and attachments....
r1050 # page that doesn't exist
Eric Davis
Converted routing and urls to follow the Rails REST convention....
r2315 '[[Unknown page]]' => '<a href="/projects/ecookbook/wiki/Unknown_page" class="wiki-page new">Unknown page</a>',
'[[Unknown page|404]]' => '<a href="/projects/ecookbook/wiki/Unknown_page" class="wiki-page new">404</a>',
Jean-Philippe Lang
Redmine links can be used to link to documents, versions and attachments....
r1050 # link to another project wiki
Eric Davis
Converted routing and urls to follow the Rails REST convention....
r2315 '[[onlinestore:]]' => '<a href="/projects/onlinestore/wiki/" class="wiki-page">onlinestore</a>',
'[[onlinestore:|Wiki]]' => '<a href="/projects/onlinestore/wiki/" class="wiki-page">Wiki</a>',
'[[onlinestore:Start page]]' => '<a href="/projects/onlinestore/wiki/Start_page" class="wiki-page">Start page</a>',
'[[onlinestore:Start page|Text]]' => '<a href="/projects/onlinestore/wiki/Start_page" class="wiki-page">Text</a>',
'[[onlinestore:Unknown page]]' => '<a href="/projects/onlinestore/wiki/Unknown_page" class="wiki-page new">Unknown page</a>',
Jean-Philippe Lang
Test for striked through wiki link (#199)....
r1442 # striked through link
Eric Davis
Converted routing and urls to follow the Rails REST convention....
r2315 '-[[Another page|Page]]-' => '<del><a href="/projects/ecookbook/wiki/Another_page" class="wiki-page">Page</a></del>',
'-[[Another page|Page]] link-' => '<del><a href="/projects/ecookbook/wiki/Another_page" class="wiki-page">Page</a> link</del>',
Jean-Philippe Lang
Redmine links can be used to link to documents, versions and attachments....
r1050 # escaping
'![[Another page|Page]]' => '[[Another page|Page]]',
Jean-Philippe Lang
Leave wiki links untouched if target project doesn't exist or have no wiki....
r2375 # project does not exist
'[[unknowproject:Start]]' => '[[unknowproject:Start]]',
'[[unknowproject:Start|Page title]]' => '[[unknowproject:Start|Page title]]',
Jean-Philippe Lang
Added Redmine::WikiFormatting module and tests for wiki links....
r688 }
@project = Project.find(1)
to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text) }
end
Jean-Philippe Lang
Added wiki macros support. 2 builtin macros are defined: hello_world (sample macro that displays the arguments) and macro_list (display the list of installed macros)....
r884
Jean-Philippe Lang
Fixes #880: code tags not formatted correctly in the wiki (broken by r1216)....
r1256 def test_html_tags
to_test = {
Jean-Philippe Lang
Replace closing html tags with html entity (#910)....
r1333 "<div>content</div>" => "<p>&lt;div&gt;content&lt;/div&gt;</p>",
"<div class=\"bold\">content</div>" => "<p>&lt;div class=\"bold\"&gt;content&lt;/div&gt;</p>",
"<script>some script;</script>" => "<p>&lt;script&gt;some script;&lt;/script&gt;</p>",
Jean-Philippe Lang
Fixes #880: code tags not formatted correctly in the wiki (broken by r1216)....
r1256 # do not escape pre/code tags
"<pre>\nline 1\nline2</pre>" => "<pre>\nline 1\nline2</pre>",
"<pre><code>\nline 1\nline2</code></pre>" => "<pre><code>\nline 1\nline2</code></pre>",
"<pre><div>content</div></pre>" => "<pre>&lt;div&gt;content&lt;/div&gt;</pre>",
Jean-Philippe Lang
Escape HTML comment tags (#1160)....
r1388 "HTML comment: <!-- no comments -->" => "<p>HTML comment: &lt;!-- no comments --&gt;</p>",
Jean-Philippe Lang
Remove pre tag attributes....
r1928 "<!-- opening comment" => "<p>&lt;!-- opening comment</p>",
Jean-Philippe Lang
Fixes syntax highlighting broken by r1930 (#2143)....
r1991 # remove attributes except class
"<pre class='foo'>some text</pre>" => "<pre class='foo'>some text</pre>",
"<pre onmouseover='alert(1)'>some text</pre>" => "<pre>some text</pre>",
Jean-Philippe Lang
Fixes #880: code tags not formatted correctly in the wiki (broken by r1216)....
r1256 }
to_test.each { |text, result| assert_equal result, textilizable(text) }
Jean-Philippe Lang
Wiki links:...
r1265 end
Jean-Philippe Lang
Fixed: notextile tag has no effect....
r1503 def test_allowed_html_tags
to_test = {
"<pre>preformatted text</pre>" => "<pre>preformatted text</pre>",
"<notextile>no *textile* formatting</notextile>" => "no *textile* formatting",
Jean-Philippe Lang
Fixes html escaping....
r1899 "<notextile>this is <tag>a tag</tag></notextile>" => "this is &lt;tag&gt;a tag&lt;/tag&gt;"
Jean-Philippe Lang
Fixed: notextile tag has no effect....
r1503 }
to_test.each { |text, result| assert_equal result, textilizable(text) }
end
Jean-Philippe Lang
Fixed pre tags containing "<pre*" (#4125)....
r2916 def test_pre_tags
raw = <<-RAW
Before
<pre>
<prepared-statement-cache-size>32</prepared-statement-cache-size>
</pre>
After
RAW
expected = <<-EXPECTED
<p>Before</p>
<pre>
&lt;prepared-statement-cache-size&gt;32&lt;/prepared-statement-cache-size&gt;
</pre>
<p>After</p>
EXPECTED
assert_equal expected.gsub(%r{[\r\n\t]}, ''), textilizable(raw).gsub(%r{[\r\n\t]}, '')
end
Eric Davis
Missing 'test_' prefix on a helper test caused it to not run....
r2748 def test_syntax_highlight
Jean-Philippe Lang
Fixes syntax highlighting broken by r1930 (#2143)....
r1991 raw = <<-RAW
<pre><code class="ruby">
# Some ruby code here
</pre></code>
RAW
expected = <<-EXPECTED
<pre><code class="ruby CodeRay"><span class="no">1</span> <span class="c"># Some ruby code here</span>
</pre></code>
EXPECTED
assert_equal expected.gsub(%r{[\r\n\t]}, ''), textilizable(raw).gsub(%r{[\r\n\t]}, '')
end
Jean-Philippe Lang
Wiki links:...
r1265 def test_wiki_links_in_tables
Jean-Philippe Lang
Allow empty cells in wiki tables....
r1476 to_test = {"|[[Page|Link title]]|[[Other Page|Other title]]|\n|Cell 21|[[Last page]]|" =>
Eric Davis
Converted routing and urls to follow the Rails REST convention....
r2315 '<tr><td><a href="/projects/ecookbook/wiki/Page" class="wiki-page new">Link title</a></td>' +
'<td><a href="/projects/ecookbook/wiki/Other_Page" class="wiki-page new">Other title</a></td>' +
'</tr><tr><td>Cell 21</td><td><a href="/projects/ecookbook/wiki/Last_page" class="wiki-page new">Last page</a></td></tr>'
Jean-Philippe Lang
Wiki links:...
r1265 }
@project = Project.find(1)
to_test.each { |text, result| assert_equal "<table>#{result}</table>", textilizable(text).gsub(/[\t\n]/, '') }
Jean-Philippe Lang
Fixes #880: code tags not formatted correctly in the wiki (broken by r1216)....
r1256 end
Jean-Philippe Lang
Fixed: bold, italics, underline not working within parentheses (#1225)....
r1419 def test_text_formatting
to_test = {'*_+bold, italic and underline+_*' => '<strong><em><ins>bold, italic and underline</ins></em></strong>',
Jean-Philippe Lang
Fixed bold syntax around single character in series (#2351)....
r2189 '(_text within parentheses_)' => '(<em>text within parentheses</em>)',
'a *Humane Web* Text Generator' => 'a <strong>Humane Web</strong> Text Generator',
'a H *umane* W *eb* T *ext* G *enerator*' => 'a H <strong>umane</strong> W <strong>eb</strong> T <strong>ext</strong> G <strong>enerator</strong>',
'a *H* umane *W* eb *T* ext *G* enerator' => 'a <strong>H</strong> umane <strong>W</strong> eb <strong>T</strong> ext <strong>G</strong> enerator',
Jean-Philippe Lang
Fixed: bold, italics, underline not working within parentheses (#1225)....
r1419 }
to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text) }
end
Jean-Philippe Lang
Add Redcloth's :block_markdown_rule to allow horizontal rules in wiki (#967)....
r1374 def test_wiki_horizontal_rule
assert_equal '<hr />', textilizable('---')
assert_equal '<p>Dashes: ---</p>', textilizable('Dashes: ---')
end
Jean-Philippe Lang
Adds back textile acronyms support (#2077)....
r1954 def test_acronym
assert_equal '<p>This is an acronym: <acronym title="American Civil Liberties Union">ACLU</acronym>.</p>',
textilizable('This is an acronym: ACLU(American Civil Liberties Union).')
end
Jean-Philippe Lang
Fixed: textile footnotes no longer work after r1113 (#974)....
r1939 def test_footnotes
raw = <<-RAW
This is some text[1].
fn1. This is the foot note
RAW
expected = <<-EXPECTED
<p>This is some text<sup><a href=\"#fn1\">1</a></sup>.</p>
<p id="fn1" class="footnote"><sup>1</sup> This is the foot note</p>
EXPECTED
assert_equal expected.gsub(%r{[\r\n\t]}, ''), textilizable(raw).gsub(%r{[\r\n\t]}, '')
end
Jean-Philippe Lang
Fixed: TOC does not remove colorization markups (#1423)....
r1528 def test_table_of_content
raw = <<-RAW
{{toc}}
h1. Title
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas sed libero.
Jean-Philippe Lang
Fixed: TOC does not parse wiki page reference links with description (#2601)....
r2334 h2. Subtitle with a [[Wiki]] link
Jean-Philippe Lang
Fixed: TOC does not remove colorization markups (#1423)....
r1528
Nullam commodo metus accumsan nulla. Curabitur lobortis dui id dolor.
Jean-Philippe Lang
Fixed: TOC does not parse wiki page reference links with description (#2601)....
r2334 h2. Subtitle with [[Wiki|another Wiki]] link
Jean-Philippe Lang
Fixed: TOC does not remove colorization markups (#1423)....
r1528 h2. Subtitle with %{color:red}red text%
h1. Another title
RAW
Jean-Philippe Lang
Fixes tests (r1693)....
r1691 expected = '<ul class="toc">' +
Jean-Philippe Lang
Adds Trac-Like anchors on wiki headings (#1647)....
r1696 '<li class="heading1"><a href="#Title">Title</a></li>' +
Jean-Philippe Lang
Fixed: TOC does not parse wiki page reference links with description (#2601)....
r2334 '<li class="heading2"><a href="#Subtitle-with-a-Wiki-link">Subtitle with a Wiki link</a></li>' +
'<li class="heading2"><a href="#Subtitle-with-another-Wiki-link">Subtitle with another Wiki link</a></li>' +
Jean-Philippe Lang
Adds Trac-Like anchors on wiki headings (#1647)....
r1696 '<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>' +
Jean-Philippe Lang
Fixes tests (r1693)....
r1691 '</ul>'
Jean-Philippe Lang
Cleaning test....
r2335
Jean-Philippe Lang
Fixes tests (r1693)....
r1691 assert textilizable(raw).gsub("\n", "").include?(expected)
Jean-Philippe Lang
Fixed: TOC does not remove colorization markups (#1423)....
r1528 end
Jean-Philippe Lang
Adds multi-levels blockquotes support by using > at the beginning of lines....
r1465 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
Jean-Philippe Lang
Allow empty cells in wiki tables....
r1476 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
Jean-Philippe Lang
Allow line breaks in wiki table cells (#2346)....
r2719 def test_table_with_line_breaks
raw = <<-RAW
This is a table with line breaks:
|cell11
continued|cell12||
|-cell21-||cell23
cell23 line2
cell23 *line3*|
|cell31|cell32
cell32 line2|cell33|
RAW
expected = <<-EXPECTED
<p>This is a table with line breaks:</p>
<table>
<tr>
<td>cell11<br />continued</td>
<td>cell12</td>
<td></td>
</tr>
<tr>
<td><del>cell21</del></td>
<td></td>
<td>cell23<br/>cell23 line2<br/>cell23 <strong>line3</strong></td>
</tr>
<tr>
<td>cell31</td>
<td>cell32<br/>cell32 line2</td>
<td>cell33</td>
</tr>
</table>
EXPECTED
assert_equal expected.gsub(%r{\s+}, ''), textilizable(raw).gsub(%r{\s+}, '')
end
Jean-Philippe Lang
Makes wiki text formatter pluggable....
r1953 def test_default_formatter
Setting.text_formatting = 'unknown'
text = 'a *link*: http://www.example.net/'
assert_equal '<p>a *link*: <a href="http://www.example.net/">http://www.example.net/</a></p>', textilizable(text)
Setting.text_formatting = 'textile'
end
Jean-Philippe Lang
Fixed: Roadmap crashes when a version has a due date > 2037....
r1885 def test_due_date_distance_in_words
to_test = { Date.today => 'Due in 0 days',
Date.today + 1 => 'Due in 1 day',
Jean-Philippe Lang
Merged Rails 2.2 branch. Redmine now requires Rails 2.2.2....
r2430 Date.today + 100 => 'Due in about 3 months',
Jean-Philippe Lang
Fixes distance of date in words calculation....
r2902 Date.today + 20000 => 'Due in over 54 years',
Jean-Philippe Lang
Fixed: Roadmap crashes when a version has a due date > 2037....
r1885 Date.today - 1 => '1 day late',
Jean-Philippe Lang
Merged Rails 2.2 branch. Redmine now requires Rails 2.2.2....
r2430 Date.today - 100 => 'about 3 months late',
Jean-Philippe Lang
Fixes distance of date in words calculation....
r2902 Date.today - 20000 => 'over 54 years late',
Jean-Philippe Lang
Fixed: Roadmap crashes when a version has a due date > 2037....
r1885 }
to_test.each do |date, expected|
assert_equal expected, due_date_distance_in_words(date)
end
end
Jean-Philippe Lang
Changes ApplicationHelper#gravatar_for_mail to #avatar that takes a User or a String (less code in views)....
r1998
def test_avatar
# turn on avatars
Setting.gravatar_enabled = '1'
assert avatar(User.find_by_mail('jsmith@somenet.foo')).include?(Digest::MD5.hexdigest('jsmith@somenet.foo'))
assert avatar('jsmith <jsmith@somenet.foo>').include?(Digest::MD5.hexdigest('jsmith@somenet.foo'))
assert_nil avatar('jsmith')
assert_nil avatar(nil)
# turn off avatars
Setting.gravatar_enabled = '0'
assert_nil avatar(User.find_by_mail('jsmith@somenet.foo'))
end
Jean-Philippe Lang
Fixes ApplicationHelper#link_to_user...
r2910
def test_link_to_user
user = User.find(2)
t = link_to_user(user)
assert_equal "<a href=\"/users/2\">#{ user.name }</a>", t
end
def test_link_to_user_should_not_link_to_locked_user
user = User.find(5)
assert user.locked?
t = link_to_user(user)
assert_equal user.name, t
end
def test_link_to_user_should_not_link_to_anonymous
user = User.anonymous
assert user.anonymous?
t = link_to_user(user)
assert_equal ::I18n.t(:label_user_anonymous), t
end
Jean-Philippe Lang
Added Redmine::WikiFormatting module and tests for wiki links....
r688 end