##// END OF EJS Templates
fix typo at test/unit/helpers/application_helper_test.rb...
fix typo at test/unit/helpers/application_helper_test.rb git-svn-id: http://svn.redmine.org/redmine/trunk@13093 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r12818:a581f35dff23
r12818:a581f35dff23
Show More
application_helper_test.rb
1508 lines | 65.7 KiB | text/x-ruby | RubyLexer
/ test / unit / helpers / application_helper_test.rb
Jean-Philippe Lang
Fixed: Can't use non-latin anchor in wiki (#11577)....
r10023 # encoding: utf-8
#
Jean-Philippe Lang
Merged Rails 2.2 branch. Redmine now requires Rails 2.2.2....
r2430 # Redmine - project management software
Toshi MARUYAMA
update copyright year (#15977)...
r12461 # Copyright (C) 2006-2014 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.
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713 #
Jean-Philippe Lang
Added Redmine::WikiFormatting module and tests for wiki links....
r688 # 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.
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713 #
Jean-Philippe Lang
Added Redmine::WikiFormatting module and tests for wiki links....
r688 # 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.
Jean-Baptiste Barth
Use absolute paths in test/**/* requires for Ruby 1.9.2 compatibility. #4050...
r4395 require File.expand_path('../../../test_helper', __FILE__)
Jean-Philippe Lang
Added Redmine::WikiFormatting module and tests for wiki links....
r688
Eric Davis
Use the built in Rails ActionView::TestCase for testing helpers....
r3949 class ApplicationHelperTest < ActionView::TestCase
Toshi MARUYAMA
include Redmine::I18n in ApplicationHelperTest...
r11647 include Redmine::I18n
Jean-Philippe Lang
Include ERB::Util in helpers tests....
r8970 include ERB::Util
Jean-Philippe Lang
Make the tests pass when config.threadsafe! is enabled (#12097)....
r10683 include Rails.application.routes.url_helpers
Jean-Philippe Lang
Include ERB::Util in helpers tests....
r8970
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,
Toshi MARUYAMA
code layout clean up test/unit/helpers/application_helper_test.rb...
r7790 :repositories, :changesets,
:trackers, :issue_statuses, :issues, :versions, :documents,
:wikis, :wiki_pages, :wiki_contents,
:boards, :messages, :news,
:attachments, :enumerations
Jean-Philippe Lang
Added Redmine::WikiFormatting module and tests for wiki links....
r688
def setup
super
Toshi MARUYAMA
add unit application helper test to use latest image file (#3261)...
r7787 set_tmp_attachments_directory
Toshi MARUYAMA
replace non ASCII literal to hexadecimal at ApplicationHelperTest...
r11648 @russian_test = "\xd1\x82\xd0\xb5\xd1\x81\xd1\x82"
if @russian_test.respond_to?(:force_encoding)
@russian_test.force_encoding('UTF-8')
end
Jean-Philippe Lang
Added Redmine::WikiFormatting module and tests for wiki links....
r688 end
Eric Davis
Change link_to_if_authorized to allow url paths. (Fixes #6195)...
r3950
Jean-Philippe Lang
Removed some shoulda context....
r11634 test "#link_to_if_authorized for authorized user should allow using the :controller and :action for the target link" do
User.current = User.find_by_login('admin')
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
Jean-Philippe Lang
Removed some shoulda context....
r11634 @project = Issue.first.project # Used by helper
response = link_to_if_authorized('By controller/actionr',
{:controller => 'issues', :action => 'edit', :id => Issue.first.id})
assert_match /href/, response
end
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
Jean-Philippe Lang
Removed some shoulda context....
r11634 test "#link_to_if_authorized for unauthorized user should display nothing if user isn't authorized" do
User.current = User.find_by_login('dlopper')
@project = Project.find('private-child')
issue = @project.issues.first
assert !issue.visible?
Eric Davis
Change link_to_if_authorized to allow url paths. (Fixes #6195)...
r3950
Jean-Philippe Lang
Removed some shoulda context....
r11634 response = link_to_if_authorized('Never displayed',
{:controller => 'issues', :action => 'show', :id => issue})
assert_nil response
Eric Davis
Change link_to_if_authorized to allow url paths. (Fixes #6195)...
r3950 end
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
Jean-Philippe Lang
Added Redmine::WikiFormatting module and tests for wiki links....
r688 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
Escape href attribute in auto links (#5179)....
r3498 # escaping
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 'http://foo"bar' => '<a class="external" href="http://foo&quot;bar">http://foo&quot;bar</a>',
Jean-Baptiste Barth
Fixed: auto links ending with right angle bracket shouldn't include the bracket in the URL. #5652...
r4173 # wrap in angle brackets
Jean-Philippe Lang
Fixed that www followed by a dot generates broken links in formatted text (#3676)....
r11243 '<http://foo.bar>' => '&lt;<a class="external" href="http://foo.bar">http://foo.bar</a>&gt;',
# invalid urls
'http://' => 'http://',
'www.' => 'www.',
Jean-Philippe Lang
Restricts characters before auto links (#10277)....
r11244 'test-www.bar.com' => 'test-www.bar.com',
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
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
Jean-Philippe Lang
Fixed that autolinks and textile links ending with cyrilic characters are broken (#12397)....
r10652 if 'ruby'.respond_to?(:encoding)
def test_auto_links_with_non_ascii_characters
to_test = {
Toshi MARUYAMA
replace non ASCII literal to hexadecimal at ApplicationHelperTest...
r11648 "http://foo.bar/#{@russian_test}" =>
%|<a class="external" href="http://foo.bar/#{@russian_test}">http://foo.bar/#{@russian_test}</a>|
Jean-Philippe Lang
Fixed that autolinks and textile links ending with cyrilic characters are broken (#12397)....
r10652 }
to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text) }
end
else
puts 'Skipping test_auto_links_with_non_ascii_characters, unsupported ruby version'
end
Jean-Philippe Lang
Added Redmine::WikiFormatting module and tests for wiki links....
r688 def test_auto_mailto
Jean-Philippe Lang
Restricts characters before auto links (#10277)....
r11244 to_test = {
'test@foo.bar' => '<a class="email" href="mailto:test@foo.bar">test@foo.bar</a>',
'test@www.foo.bar' => '<a class="email" href="mailto:test@www.foo.bar">test@www.foo.bar</a>',
}
to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text) }
Jean-Philippe Lang
Added Redmine::WikiFormatting module and tests for wiki links....
r688 end
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
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
Updated test against r8860....
r8741 'with style !{width:100px;height:100px}http://foo.bar/image.jpg!' => 'with style <img src="http://foo.bar/image.jpg" style="width:100px;height:100px;" 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
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
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
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
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 = {
Jean-Philippe Lang
Use named route with attachment filename for inline images....
r10959 'Inline image: !logo.gif!' => 'Inline image: <img src="/attachments/download/3/logo.gif" title="This is a logo" alt="This is a logo" />',
'Inline image: !logo.GIF!' => 'Inline image: <img src="/attachments/download/3/logo.gif" title="This is a logo" alt="This is a logo" />',
Jean-Philippe Lang
Fixed: inline attached image should not match partial filename (#2683)....
r2359 '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
Jean-Philippe Lang
Use named route with attachment filename for inline images....
r10959 '!logo.gif!:http://foo.bar/' => '<a href="http://foo.bar/"><img src="/attachments/download/3/logo.gif" 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 }
Jean-Philippe Lang
Replaces find(:all) calls....
r10690 attachments = Attachment.all
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 to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text, :attachments => attachments) }
end
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
Toshi MARUYAMA
fix inconsistent image filename extensions (#9638)...
r7771 def test_attached_images_filename_extension
set_tmp_attachments_directory
a1 = Attachment.new(
:container => Issue.find(1),
:file => mock_file_with_options({:original_filename => "testtest.JPG"}),
:author => User.find(1))
assert a1.save
assert_equal "testtest.JPG", a1.filename
assert_equal "image/jpeg", a1.content_type
assert a1.image?
a2 = Attachment.new(
:container => Issue.find(1),
:file => mock_file_with_options({:original_filename => "testtest.jpeg"}),
:author => User.find(1))
assert a2.save
assert_equal "testtest.jpeg", a2.filename
assert_equal "image/jpeg", a2.content_type
assert a2.image?
a3 = Attachment.new(
:container => Issue.find(1),
:file => mock_file_with_options({:original_filename => "testtest.JPE"}),
:author => User.find(1))
assert a3.save
assert_equal "testtest.JPE", a3.filename
assert_equal "image/jpeg", a3.content_type
assert a3.image?
a4 = Attachment.new(
:container => Issue.find(1),
:file => mock_file_with_options({:original_filename => "Testtest.BMP"}),
:author => User.find(1))
assert a4.save
assert_equal "Testtest.BMP", a4.filename
assert_equal "image/x-ms-bmp", a4.content_type
assert a4.image?
to_test = {
'Inline image: !testtest.jpg!' =>
Jean-Philippe Lang
Use named route with attachment filename for inline images....
r10959 'Inline image: <img src="/attachments/download/' + a1.id.to_s + '/testtest.JPG" alt="" />',
Toshi MARUYAMA
fix inconsistent image filename extensions (#9638)...
r7771 'Inline image: !testtest.jpeg!' =>
Jean-Philippe Lang
Use named route with attachment filename for inline images....
r10959 'Inline image: <img src="/attachments/download/' + a2.id.to_s + '/testtest.jpeg" alt="" />',
Toshi MARUYAMA
fix inconsistent image filename extensions (#9638)...
r7771 'Inline image: !testtest.jpe!' =>
Jean-Philippe Lang
Use named route with attachment filename for inline images....
r10959 'Inline image: <img src="/attachments/download/' + a3.id.to_s + '/testtest.JPE" alt="" />',
Toshi MARUYAMA
fix inconsistent image filename extensions (#9638)...
r7771 'Inline image: !testtest.bmp!' =>
Jean-Philippe Lang
Use named route with attachment filename for inline images....
r10959 'Inline image: <img src="/attachments/download/' + a4.id.to_s + '/Testtest.BMP" alt="" />',
Toshi MARUYAMA
fix inconsistent image filename extensions (#9638)...
r7771 }
attachments = [a1, a2, a3, a4]
to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text, :attachments => attachments) }
end
Toshi MARUYAMA
add unit application helper test to use latest image file (#3261)...
r7787 def test_attached_images_should_read_later
Jean-Philippe Lang
Make sure that tests restore the attachments path to the tmp dir so that fixture files don't get deleted....
r8128 set_fixtures_attachments_directory
Toshi MARUYAMA
add unit application helper test to use latest image file (#3261)...
r7787 a1 = Attachment.find(16)
assert_equal "testfile.png", a1.filename
assert a1.readable?
assert (! a1.visible?(User.anonymous))
assert a1.visible?(User.find(2))
a2 = Attachment.find(17)
assert_equal "testfile.PNG", a2.filename
assert a2.readable?
assert (! a2.visible?(User.anonymous))
assert a2.visible?(User.find(2))
assert a1.created_on < a2.created_on
to_test = {
'Inline image: !testfile.png!' =>
Jean-Philippe Lang
Use named route with attachment filename for inline images....
r10959 'Inline image: <img src="/attachments/download/' + a2.id.to_s + '/testfile.PNG" alt="" />',
Toshi MARUYAMA
add unit application helper test to use latest image file (#3261)...
r7787 'Inline image: !Testfile.PNG!' =>
Jean-Philippe Lang
Use named route with attachment filename for inline images....
r10959 'Inline image: <img src="/attachments/download/' + a2.id.to_s + '/testfile.PNG" alt="" />',
Toshi MARUYAMA
add unit application helper test to use latest image file (#3261)...
r7787 }
attachments = [a1, a2]
to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text, :attachments => attachments) }
Toshi MARUYAMA
reset Attachment.storage_path at the end of attachment tests...
r7791 set_tmp_attachments_directory
Toshi MARUYAMA
add unit application helper test to use latest image file (#3261)...
r7787 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
Escape href attribute in auto links (#5179)....
r3498 # escaping
'"test":http://foo"bar' => '<a href="http://foo&quot;bar" class="external">test</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
Toshi MARUYAMA
scm: add compatible "commit:xxx" link test for git and darcs....
r4570
Jean-Philippe Lang
Fixed that autolinks and textile links ending with cyrilic characters are broken (#12397)....
r10652 if 'ruby'.respond_to?(:encoding)
def test_textile_external_links_with_non_ascii_characters
to_test = {
Toshi MARUYAMA
replace non ASCII literal to hexadecimal at ApplicationHelperTest...
r11648 %|This is a "link":http://foo.bar/#{@russian_test}| =>
%|This is a <a href="http://foo.bar/#{@russian_test}" class="external">link</a>|
Jean-Philippe Lang
Fixed that autolinks and textile links ending with cyrilic characters are broken (#12397)....
r10652 }
to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text) }
end
else
puts 'Skipping test_textile_external_links_with_non_ascii_characters, unsupported ruby version'
end
Jean-Philippe Lang
Added Redmine::WikiFormatting module and tests for wiki links....
r688 def test_redmine_links
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713 issue_link = link_to('#3', {:controller => 'issues', :action => 'show', :id => 3},
Jean-Philippe Lang
Test failures (#13309)....
r11282 :class => Issue.find(3).css_classes, :title => 'Error 281 when updating a recipe (New)')
Jean-Philippe Lang
Issue-notes Redmine links: append actual note reference to rendered links (#12912)....
r11775 note_link = link_to('#3-14', {:controller => 'issues', :action => 'show', :id => 3, :anchor => 'note-14'},
:class => Issue.find(3).css_classes, :title => 'Error 281 when updating a recipe (New)')
note_link2 = link_to('#3#note-14', {:controller => 'issues', :action => 'show', :id => 3, :anchor => 'note-14'},
Jean-Philippe Lang
Test failures (#13309)....
r11282 :class => Issue.find(3).css_classes, :title => 'Error 281 when updating a recipe (New)')
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
Etienne Massip
Fixed commit link title escaping (fixes #13405)....
r11441 revision_link = link_to('r1', {:controller => 'repositories', :action => 'revision', :id => 'ecookbook', :rev => 1},
Toshi MARUYAMA
fix unit search test failure (#13405)...
r11444 :class => 'changeset', :title => 'My very first commit do not escaping #<>&')
Etienne Massip
Fixed commit link title escaping (fixes #13405)....
r11441 revision_link2 = link_to('r2', {:controller => 'repositories', :action => 'revision', :id => 'ecookbook', :rev => 2},
:class => 'changeset', :title => 'This commit fixes #1, #2 and references #1 & #3')
Toshi MARUYAMA
fix unit search test failure (#13405)...
r11444 changeset_link2 = link_to('691322a8eb01e11fd7',
{:controller => 'repositories', :action => 'revision', :id => 'ecookbook', :rev => 1},
:class => 'changeset', :title => 'My very first commit do not escaping #<>&')
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
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')
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
Jean-Philippe Lang
Redmine links can be used to link to documents, versions and attachments....
r1050 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
Wiki links for news and forums (#9600)....
r7720 board_url = {:controller => 'boards', :action => 'show', :id => 2, :project_id => 'ecookbook'}
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
Wiki links for news and forums (#9600)....
r7720
news_url = {:controller => 'news', :action => 'show', :id => 1}
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
Jean-Philippe Lang
Adds projects links (#4812)....
r3308 project_url = {:controller => 'projects', :action => 'show', :id => 'subproject1'}
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
Jean-Philippe Lang
Fixed that export: links are broken (#12050)....
r10369 source_url = '/projects/ecookbook/repository/entry/some/file'
source_url_with_rev = '/projects/ecookbook/repository/revisions/52/entry/some/file'
source_url_with_ext = '/projects/ecookbook/repository/entry/some/file.ext'
source_url_with_rev_and_ext = '/projects/ecookbook/repository/revisions/52/entry/some/file.ext'
Jean-Philippe Lang
Changed revision regexp to make source: links accept a branch....
r10833 source_url_with_branch = '/projects/ecookbook/repository/revisions/branch/entry/some/file'
Jean-Philippe Lang
Fixed that export: links are broken (#12050)....
r10369
export_url = '/projects/ecookbook/repository/raw/some/file'
export_url_with_rev = '/projects/ecookbook/repository/revisions/52/raw/some/file'
export_url_with_ext = '/projects/ecookbook/repository/raw/some/file.ext'
export_url_with_rev_and_ext = '/projects/ecookbook/repository/revisions/52/raw/some/file.ext'
Jean-Philippe Lang
Changed revision regexp to make source: links accept a branch....
r10833 export_url_with_branch = '/projects/ecookbook/repository/revisions/branch/raw/some/file'
Jean-Philippe Lang
Fixed that export: links are broken (#12050)....
r10369
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
Jean-Philippe Lang
Accept issue links inside brackets (#4418)....
r3484 '#3, [#3], (#3) and #3.' => "#{issue_link}, [#{issue_link}], (#{issue_link}) and #{issue_link}.",
Jean-Philippe Lang
Adds support for "Magic links" to notes (#2715)....
r8757 # ticket notes
'#3-14' => note_link,
Jean-Philippe Lang
Issue-notes Redmine links: append actual note reference to rendered links (#12912)....
r11775 '#3#note-14' => note_link2,
Jean-Philippe Lang
Don't turn #nnn with leading zeros into link (#11494)....
r9894 # should not ignore leading zero
'#03' => '#03',
Jean-Philippe Lang
Add Redmine links for repository files using source: and export: keyworkds (#867)....
r1252 # changesets
Etienne Massip
Fixed commit link title escaping (fixes #13405)....
r11441 'r1' => revision_link,
'r1.' => "#{revision_link}.",
'r1, r2' => "#{revision_link}, #{revision_link2}",
'r1,r2' => "#{revision_link},#{revision_link2}",
'commit:691322a8eb01e11fd7' => 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
Jean-Philippe Lang
Adds support for multiple repositories to redmine links (#779)....
r8574 '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' => 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
Fixed that export: links are broken (#12050)....
r10369 'source:/some/file@52' => link_to('source:/some/file@52', source_url_with_rev, :class => 'source'),
Jean-Philippe Lang
Changed revision regexp to make source: links accept a branch....
r10833 'source:/some/file@branch' => link_to('source:/some/file@branch', source_url_with_branch, :class => 'source'),
Jean-Philippe Lang
Fixed that export: links are broken (#12050)....
r10369 'source:/some/file.ext@52' => link_to('source:/some/file.ext@52', source_url_with_rev_and_ext, :class => 'source'),
'source:/some/file#L110' => link_to('source:/some/file#L110', source_url + "#L110", :class => 'source'),
'source:/some/file.ext#L110' => link_to('source:/some/file.ext#L110', source_url_with_ext + "#L110", :class => 'source'),
'source:/some/file@52#L110' => link_to('source:/some/file@52#L110', source_url_with_rev + "#L110", :class => 'source'),
# export
'export:/some/file' => link_to('export:/some/file', export_url, :class => 'source download'),
'export:/some/file.ext' => link_to('export:/some/file.ext', export_url_with_ext, :class => 'source download'),
'export:/some/file@52' => link_to('export:/some/file@52', export_url_with_rev, :class => 'source download'),
'export:/some/file.ext@52' => link_to('export:/some/file.ext@52', export_url_with_rev_and_ext, :class => 'source download'),
Jean-Philippe Lang
Changed revision regexp to make source: links accept a branch....
r10833 'export:/some/file@branch' => link_to('export:/some/file@branch', export_url_with_branch, :class => 'source download'),
Jean-Philippe Lang
Wiki links for news and forums (#9600)....
r7720 # forum
'forum#2' => link_to('Discussion', board_url, :class => 'board'),
'forum:Discussion' => link_to('Discussion', board_url, :class => 'board'),
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'),
Jean-Philippe Lang
Moves link_to_message to ApplicationHelper to make it available to redmine links....
r4640 'message#5' => link_to('RE: post 2', message_url.merge(:anchor => 'message-5', :r => 5), :class => 'message'),
Jean-Philippe Lang
Wiki links for news and forums (#9600)....
r7720 # news
'news#1' => link_to('eCookbook first release !', news_url, :class => 'news'),
'news:"eCookbook first release !"' => link_to('eCookbook first release !', news_url, :class => 'news'),
Jean-Philippe Lang
Adds projects links (#4812)....
r3308 # project
'project#3' => link_to('eCookbook Subproject 1', project_url, :class => 'project'),
'project:subproject1' => link_to('eCookbook Subproject 1', project_url, :class => 'project'),
'project:"eCookbook subProject 1"' => link_to('eCookbook Subproject 1', project_url, :class => 'project'),
Jean-Philippe Lang
Fixed: Pound (#) followed by number with leading zero (0) removes leading zero when rendered in wiki (#4872)....
r3337 # not found
'#0123456789' => '#0123456789',
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)
Jean-Philippe Lang
Adds projects links (#4812)....
r3308 to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text), "#{text} failed" }
Jean-Philippe Lang
Redmine links can be used to link to documents, versions and attachments....
r1050 end
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
Jean-Philippe Lang
Wrong redmine link after referencing an object from a different project (#12930)....
r11028 def test_redmine_links_with_a_different_project_before_current_project
vp1 = Version.generate!(:project_id => 1, :name => '1.4.4')
vp3 = Version.generate!(:project_id => 3, :name => '1.4.4')
@project = Project.find(3)
Toshi MARUYAMA
Rails4: replace hard-coded html with class at ApplicationHelperTest#test_redmine_links_with_a_different_project_before_current_project...
r12531 result1 = link_to("1.4.4", "/versions/#{vp1.id}", :class => "version")
result2 = link_to("1.4.4", "/versions/#{vp3.id}", :class => "version")
assert_equal "<p>#{result1} #{result2}</p>",
textilizable("ecookbook:version:1.4.4 version:1.4.4")
Jean-Philippe Lang
Wrong redmine link after referencing an object from a different project (#12930)....
r11028 end
Jean-Philippe Lang
Moved redmine links escaping assertions to their own test....
r8758 def test_escaped_redmine_links_should_not_be_parsed
to_test = [
'#3.',
'#3-14.',
'#3#-note14.',
'r1',
'document#1',
'document:"Test document"',
'version#2',
'version:1.0',
'version:"1.0"',
'source:/some/file'
]
@project = Project.find(1)
to_test.each { |text| assert_equal "<p>#{text}</p>", textilizable("!" + text), "#{text} failed" }
end
Jean-Philippe Lang
Adds support for cross project Redmine links (#7409)....
r4638 def test_cross_project_redmine_links
Toshi MARUYAMA
code format clean up ApplicationHelperTest#test_cross_project_redmine_links...
r12544 source_link = link_to('ecookbook:source:/some/file',
{:controller => 'repositories', :action => 'entry',
:id => 'ecookbook', :path => ['some', 'file']},
:class => 'source')
changeset_link = link_to('ecookbook:r2',
{:controller => 'repositories', :action => 'revision',
:id => 'ecookbook', :rev => 2},
:class => 'changeset',
:title => 'This commit fixes #1, #2 and references #1 & #3')
Jean-Philippe Lang
Adds support for cross project Redmine links (#7409)....
r4638 to_test = {
# documents
'document:"Test document"' => 'document:"Test document"',
Toshi MARUYAMA
Rails4: replace hard-coded html with class at ApplicationHelperTest#test_cross_project_redmine_links...
r12545 'ecookbook:document:"Test document"' =>
link_to("Test document", "/documents/1", :class => "document"),
Jean-Philippe Lang
Adds support for cross project Redmine links (#7409)....
r4638 'invalid:document:"Test document"' => 'invalid:document:"Test document"',
# versions
'version:"1.0"' => 'version:"1.0"',
Toshi MARUYAMA
Rails4: replace hard-coded html with class at ApplicationHelperTest#test_cross_project_redmine_links...
r12545 'ecookbook:version:"1.0"' =>
link_to("1.0", "/versions/2", :class => "version"),
Jean-Philippe Lang
Adds support for cross project Redmine links (#7409)....
r4638 'invalid:version:"1.0"' => 'invalid:version:"1.0"',
# changeset
'r2' => 'r2',
'ecookbook:r2' => changeset_link,
'invalid:r2' => 'invalid:r2',
# source
'source:/some/file' => 'source:/some/file',
'ecookbook:source:/some/file' => source_link,
'invalid:source:/some/file' => 'invalid:source:/some/file',
}
@project = Project.find(3)
Toshi MARUYAMA
code format clean up ApplicationHelperTest#test_cross_project_redmine_links...
r12544 to_test.each do |text, result|
assert_equal "<p>#{result}</p>", textilizable(text), "#{text} failed"
end
Jean-Philippe Lang
Adds support for cross project Redmine links (#7409)....
r4638 end
Toshi MARUYAMA
scm: add compatible "commit:xxx" link test for git and darcs....
r4570
Toshi MARUYAMA
add tests of ApplicationHelper#link_to_issue subject and title...
r12554 def test_link_to_issue_subject
issue = Issue.generate!(:subject => "01234567890123456789")
str = link_to_issue(issue, :truncate => 10)
result = link_to("Bug ##{issue.id}", "/issues/#{issue.id}", :class => issue.css_classes)
assert_equal "#{result}: 0123456...", str
issue = Issue.generate!(:subject => "<&>")
str = link_to_issue(issue)
result = link_to("Bug ##{issue.id}", "/issues/#{issue.id}", :class => issue.css_classes)
assert_equal "#{result}: &lt;&amp;&gt;", str
issue = Issue.generate!(:subject => "<&>0123456789012345")
str = link_to_issue(issue, :truncate => 10)
result = link_to("Bug ##{issue.id}", "/issues/#{issue.id}", :class => issue.css_classes)
assert_equal "#{result}: &lt;&amp;&gt;0123...", str
end
def test_link_to_issue_title
long_str = "0123456789" * 5
issue = Issue.generate!(:subject => "#{long_str}01234567890123456789")
str = link_to_issue(issue, :subject => false)
result = link_to("Bug ##{issue.id}", "/issues/#{issue.id}",
:class => issue.css_classes,
:title => "#{long_str}0123456...")
assert_equal result, str
issue = Issue.generate!(:subject => "<&>#{long_str}01234567890123456789")
str = link_to_issue(issue, :subject => false)
result = link_to("Bug ##{issue.id}", "/issues/#{issue.id}",
:class => issue.css_classes,
:title => "<&>#{long_str}0123...")
assert_equal result, str
end
Jean-Philippe Lang
Adds support for multiple repositories to redmine links (#779)....
r8574 def test_multiple_repositories_redmine_links
Jean-Philippe Lang
Wiki links to repositories with underscore their identifiers don't work (#12979)....
r11051 svn = Repository::Subversion.create!(:project_id => 1, :identifier => 'svn_repo-1', :url => 'file:///foo/hg')
Jean-Philippe Lang
Adds support for multiple repositories to redmine links (#779)....
r8574 Changeset.create!(:repository => svn, :committed_on => Time.now, :revision => '123')
hg = Repository::Mercurial.create!(:project_id => 1, :identifier => 'hg1', :url => '/foo/hg')
Changeset.create!(:repository => hg, :committed_on => Time.now, :revision => '123', :scmid => 'abcd')
changeset_link = 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
Wiki links to repositories with underscore their identifiers don't work (#12979)....
r11051 svn_changeset_link = link_to('svn_repo-1|r123', {:controller => 'repositories', :action => 'revision', :id => 'ecookbook', :repository_id => 'svn_repo-1', :rev => 123},
Jean-Philippe Lang
Adds support for multiple repositories to redmine links (#779)....
r8574 :class => 'changeset', :title => '')
hg_changeset_link = link_to('hg1|abcd', {:controller => 'repositories', :action => 'revision', :id => 'ecookbook', :repository_id => 'hg1', :rev => 'abcd'},
:class => 'changeset', :title => '')
source_link = link_to('source:some/file', {:controller => 'repositories', :action => 'entry', :id => 'ecookbook', :path => ['some', 'file']}, :class => 'source')
hg_source_link = link_to('source:hg1|some/file', {:controller => 'repositories', :action => 'entry', :id => 'ecookbook', :repository_id => 'hg1', :path => ['some', 'file']}, :class => 'source')
to_test = {
'r2' => changeset_link,
Jean-Philippe Lang
Wiki links to repositories with underscore their identifiers don't work (#12979)....
r11051 'svn_repo-1|r123' => svn_changeset_link,
Jean-Philippe Lang
Adds support for multiple repositories to redmine links (#779)....
r8574 'invalid|r123' => 'invalid|r123',
'commit:hg1|abcd' => hg_changeset_link,
'commit:invalid|abcd' => 'commit:invalid|abcd',
# source
'source:some/file' => source_link,
'source:hg1|some/file' => hg_source_link,
'source:invalid|some/file' => 'source:invalid|some/file',
}
@project = Project.find(1)
to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text), "#{text} failed" }
end
def test_cross_project_multiple_repositories_redmine_links
svn = Repository::Subversion.create!(:project_id => 1, :identifier => 'svn1', :url => 'file:///foo/hg')
Changeset.create!(:repository => svn, :committed_on => Time.now, :revision => '123')
hg = Repository::Mercurial.create!(:project_id => 1, :identifier => 'hg1', :url => '/foo/hg')
Changeset.create!(:repository => hg, :committed_on => Time.now, :revision => '123', :scmid => 'abcd')
changeset_link = link_to('ecookbook:r2', {:controller => 'repositories', :action => 'revision', :id => 'ecookbook', :rev => 2},
:class => 'changeset', :title => 'This commit fixes #1, #2 and references #1 & #3')
svn_changeset_link = link_to('ecookbook:svn1|r123', {:controller => 'repositories', :action => 'revision', :id => 'ecookbook', :repository_id => 'svn1', :rev => 123},
:class => 'changeset', :title => '')
hg_changeset_link = link_to('ecookbook:hg1|abcd', {:controller => 'repositories', :action => 'revision', :id => 'ecookbook', :repository_id => 'hg1', :rev => 'abcd'},
:class => 'changeset', :title => '')
source_link = link_to('ecookbook:source:some/file', {:controller => 'repositories', :action => 'entry', :id => 'ecookbook', :path => ['some', 'file']}, :class => 'source')
hg_source_link = link_to('ecookbook:source:hg1|some/file', {:controller => 'repositories', :action => 'entry', :id => 'ecookbook', :repository_id => 'hg1', :path => ['some', 'file']}, :class => 'source')
to_test = {
'ecookbook:r2' => changeset_link,
'ecookbook:svn1|r123' => svn_changeset_link,
'ecookbook:invalid|r123' => 'ecookbook:invalid|r123',
'ecookbook:commit:hg1|abcd' => hg_changeset_link,
'ecookbook:commit:invalid|abcd' => 'ecookbook:commit:invalid|abcd',
'invalid:commit:invalid|abcd' => 'invalid:commit:invalid|abcd',
# source
'ecookbook:source:some/file' => source_link,
'ecookbook:source:hg1|some/file' => hg_source_link,
'ecookbook:source:invalid|some/file' => 'ecookbook:source:invalid|some/file',
'invalid:source:invalid|some/file' => 'invalid:source:invalid|some/file',
}
@project = Project.find(3)
to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text), "#{text} failed" }
end
Toshi MARUYAMA
scm: add compatible "commit:xxx" link test for git and darcs....
r4570 def test_redmine_links_git_commit
changeset_link = link_to('abcd',
Toshi MARUYAMA
scm: fix indents in "commit:xxx" unit test....
r4572 {
:controller => 'repositories',
:action => 'revision',
:id => 'subproject1',
:rev => 'abcd',
},
Toshi MARUYAMA
scm: add compatible "commit:xxx" link test for git and darcs....
r4570 :class => 'changeset', :title => 'test commit')
to_test = {
'commit:abcd' => changeset_link,
}
@project = Project.find(3)
r = Repository::Git.create!(:project => @project, :url => '/tmp/test/git')
assert r
c = Changeset.new(:repository => r,
:committed_on => Time.now,
:revision => 'abcd',
:scmid => 'abcd',
:comments => 'test commit')
assert( c.save )
to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text) }
end
# TODO: Bazaar commit id contains mail address, so it contains '@' and '_'.
def test_redmine_links_darcs_commit
changeset_link = link_to('20080308225258-98289-abcd456efg.gz',
Toshi MARUYAMA
scm: fix indents in "commit:xxx" unit test....
r4572 {
:controller => 'repositories',
:action => 'revision',
:id => 'subproject1',
:rev => '123',
},
Toshi MARUYAMA
scm: add compatible "commit:xxx" link test for git and darcs....
r4570 :class => 'changeset', :title => 'test commit')
to_test = {
'commit:20080308225258-98289-abcd456efg.gz' => changeset_link,
}
@project = Project.find(3)
Toshi MARUYAMA
scm: add feature of per project repository log encoding setting (#1735)....
r4862 r = Repository::Darcs.create!(
:project => @project, :url => '/tmp/test/darcs',
:log_encoding => 'UTF-8')
Toshi MARUYAMA
scm: add compatible "commit:xxx" link test for git and darcs....
r4570 assert r
c = Changeset.new(:repository => r,
:committed_on => Time.now,
:revision => '123',
:scmid => '20080308225258-98289-abcd456efg.gz',
:comments => 'test commit')
assert( c.save )
to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text) }
end
Toshi MARUYAMA
scm: mercurial: add "commit:xxx" and "rNN" link test for mercurial (#3724)....
r4576 def test_redmine_links_mercurial_commit
changeset_link_rev = link_to('r123',
{
:controller => 'repositories',
:action => 'revision',
:id => 'subproject1',
:rev => '123' ,
},
:class => 'changeset', :title => 'test commit')
changeset_link_commit = link_to('abcd',
{
:controller => 'repositories',
:action => 'revision',
:id => 'subproject1',
:rev => 'abcd' ,
},
:class => 'changeset', :title => 'test commit')
to_test = {
'r123' => changeset_link_rev,
'commit:abcd' => changeset_link_commit,
}
@project = Project.find(3)
r = Repository::Mercurial.create!(:project => @project, :url => '/tmp/test')
assert r
c = Changeset.new(:repository => r,
:committed_on => Time.now,
:revision => '123',
:scmid => 'abcd',
:comments => 'test commit')
assert( c.save )
to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text) }
end
Jean-Philippe Lang
Optimization: load attachments when needed....
r3467 def test_attachment_links
Toshi MARUYAMA
Rails4: replace hard-coded html with class at ApplicationHelperTest#test_attachment_links...
r12538 text = 'attachment:error281.txt'
result = link_to("error281.txt", "/attachments/download/1/error281.txt",
:class => "attachment")
assert_equal "<p>#{result}</p>",
textilizable(text,
:attachments => Issue.find(3).attachments),
"#{text} failed"
Jean-Philippe Lang
Optimization: load attachments when needed....
r3467 end
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
Jean-Philippe Lang
Link to attachment should return latest attachment (#7510)....
r10966 def test_attachment_link_should_link_to_latest_attachment
set_tmp_attachments_directory
a1 = Attachment.generate!(:filename => "test.txt", :created_on => 1.hour.ago)
a2 = Attachment.generate!(:filename => "test.txt")
Toshi MARUYAMA
Rails4: replace hard-coded html with class at ApplicationHelperTest#test_attachment_link_should_link_to_latest_attachment...
r12537 result = link_to("test.txt", "/attachments/download/#{a2.id}/test.txt",
:class => "attachment")
assert_equal "<p>#{result}</p>",
textilizable('attachment:test.txt', :attachments => [a1, a2])
Jean-Philippe Lang
Link to attachment should return latest attachment (#7510)....
r10966 end
Jean-Philippe Lang
Redmine links can be used to link to documents, versions and attachments....
r1050 def test_wiki_links
Toshi MARUYAMA
replace non ASCII literal to hexadecimal at ApplicationHelperTest...
r11648 russian_eacape = CGI.escape(@russian_test)
Jean-Philippe Lang
Redmine links can be used to link to documents, versions and attachments....
r1050 to_test = {
Toshi MARUYAMA
Rails4: replace hard-coded html with class at ApplicationHelperTest#test_wiki_links...
r12602 '[[CookBook documentation]]' =>
link_to("CookBook documentation",
"/projects/ecookbook/wiki/CookBook_documentation",
:class => "wiki-page"),
'[[Another page|Page]]' =>
link_to("Page",
"/projects/ecookbook/wiki/Another_page",
:class => "wiki-page"),
Etienne Massip
Don't escape already parsed wiki link title (#9471)....
r7578 # title content should be formatted
Toshi MARUYAMA
Rails4: replace hard-coded html with class at ApplicationHelperTest#test_wiki_links...
r12602 '[[Another page|With _styled_ *title*]]' =>
link_to("With <em>styled</em> <strong>title</strong>".html_safe,
"/projects/ecookbook/wiki/Another_page",
:class => "wiki-page"),
'[[Another page|With title containing <strong>HTML entities &amp; markups</strong>]]' =>
link_to("With title containing &lt;strong&gt;HTML entities &amp; markups&lt;/strong&gt;".html_safe,
"/projects/ecookbook/wiki/Another_page",
:class => "wiki-page"),
Jean-Philippe Lang
Adds support for wiki links with anchor (#1647)....
r1697 # link with anchor
Toshi MARUYAMA
Rails4: replace hard-coded html with class at ApplicationHelperTest#test_wiki_links...
r12602 '[[CookBook documentation#One-section]]' =>
link_to("CookBook documentation",
"/projects/ecookbook/wiki/CookBook_documentation#One-section",
:class => "wiki-page"),
'[[Another page#anchor|Page]]' =>
link_to("Page",
"/projects/ecookbook/wiki/Another_page#anchor",
:class => "wiki-page"),
Jean-Philippe Lang
Fixed: Can't use non-latin anchor in wiki (#11577)....
r10023 # UTF8 anchor
Toshi MARUYAMA
replace non ASCII literal to hexadecimal at ApplicationHelperTest...
r11648 "[[Another_page##{@russian_test}|#{@russian_test}]]" =>
Toshi MARUYAMA
Rails4: replace hard-coded html with class at ApplicationHelperTest#test_wiki_links...
r12602 link_to(@russian_test,
"/projects/ecookbook/wiki/Another_page##{russian_eacape}",
:class => "wiki-page"),
Jean-Philippe Lang
Redmine links can be used to link to documents, versions and attachments....
r1050 # page that doesn't exist
Toshi MARUYAMA
Rails4: replace hard-coded html with class at ApplicationHelperTest#test_wiki_links...
r12602 '[[Unknown page]]' =>
link_to("Unknown page",
"/projects/ecookbook/wiki/Unknown_page",
:class => "wiki-page new"),
'[[Unknown page|404]]' =>
link_to("404",
"/projects/ecookbook/wiki/Unknown_page",
:class => "wiki-page new"),
Jean-Philippe Lang
Redmine links can be used to link to documents, versions and attachments....
r1050 # link to another project wiki
Toshi MARUYAMA
Rails4: replace hard-coded html with class at ApplicationHelperTest#test_wiki_links...
r12602 '[[onlinestore:]]' =>
link_to("onlinestore",
"/projects/onlinestore/wiki",
:class => "wiki-page"),
'[[onlinestore:|Wiki]]' =>
link_to("Wiki",
"/projects/onlinestore/wiki",
:class => "wiki-page"),
'[[onlinestore:Start page]]' =>
link_to("Start page",
"/projects/onlinestore/wiki/Start_page",
:class => "wiki-page"),
'[[onlinestore:Start page|Text]]' =>
link_to("Text",
"/projects/onlinestore/wiki/Start_page",
:class => "wiki-page"),
'[[onlinestore:Unknown page]]' =>
link_to("Unknown page",
"/projects/onlinestore/wiki/Unknown_page",
:class => "wiki-page new"),
Toshi MARUYAMA
fix typo at test/unit/helpers/application_helper_test.rb...
r12818 # struck through link
Toshi MARUYAMA
Rails4: replace hard-coded html with class at ApplicationHelperTest#test_wiki_links...
r12602 '-[[Another page|Page]]-' =>
"<del>".html_safe +
link_to("Page",
"/projects/ecookbook/wiki/Another_page",
:class => "wiki-page").html_safe +
"</del>".html_safe,
'-[[Another page|Page]] link-' =>
"<del>".html_safe +
link_to("Page",
"/projects/ecookbook/wiki/Another_page",
:class => "wiki-page").html_safe +
" link</del>".html_safe,
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
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
Etienne Massip
Fix generation of blank local link when no title is specified in wiki link....
r7440 def test_wiki_links_within_local_file_generation_context
to_test = {
# link to a page
Toshi MARUYAMA
Rails4: use link_to instead of hard coded html at ApplicationHelperTest#test_wiki_links_within_local_file_generation_context...
r12509 '[[CookBook documentation]]' =>
link_to("CookBook documentation", "CookBook_documentation.html",
:class => "wiki-page"),
'[[CookBook documentation|documentation]]' =>
link_to("documentation", "CookBook_documentation.html",
:class => "wiki-page"),
'[[CookBook documentation#One-section]]' =>
link_to("CookBook documentation", "CookBook_documentation.html#One-section",
:class => "wiki-page"),
'[[CookBook documentation#One-section|documentation]]' =>
link_to("documentation", "CookBook_documentation.html#One-section",
:class => "wiki-page"),
Etienne Massip
Fix generation of blank local link when no title is specified in wiki link....
r7440 # page that doesn't exist
Toshi MARUYAMA
Rails4: use link_to instead of hard coded html at ApplicationHelperTest#test_wiki_links_within_local_file_generation_context...
r12509 '[[Unknown page]]' =>
link_to("Unknown page", "Unknown_page.html",
:class => "wiki-page new"),
'[[Unknown page|404]]' =>
link_to("404", "Unknown_page.html",
:class => "wiki-page new"),
'[[Unknown page#anchor]]' =>
link_to("Unknown page", "Unknown_page.html#anchor",
:class => "wiki-page new"),
'[[Unknown page#anchor|404]]' =>
link_to("404", "Unknown_page.html#anchor",
:class => "wiki-page new"),
Etienne Massip
Fix generation of blank local link when no title is specified in wiki link....
r7440 }
@project = Project.find(1)
Toshi MARUYAMA
Rails4: use link_to instead of hard coded html at ApplicationHelperTest#test_wiki_links_within_local_file_generation_context...
r12509 to_test.each do |text, result|
assert_equal "<p>#{result}</p>", textilizable(text, :wiki_links => :local)
end
Etienne Massip
Fix generation of blank local link when no title is specified in wiki link....
r7440 end
Jean-Philippe Lang
Moved wiki links tests together....
r8134 def test_wiki_links_within_wiki_page_context
page = WikiPage.find_by_title('Another_page' )
to_test = {
Toshi MARUYAMA
Rails4: replace hard-coded html with class at ApplicationHelperTest#test_wiki_links_within_wiki_page_context...
r12568 '[[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"),
Jean-Philippe Lang
Moved wiki links tests together....
r8134 # link to the current page
Toshi MARUYAMA
Rails4: replace hard-coded html with class at ApplicationHelperTest#test_wiki_links_within_wiki_page_context...
r12568 '[[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"),
Jean-Philippe Lang
Moved wiki links tests together....
r8134 # page that doesn't exist
Toshi MARUYAMA
Rails4: replace hard-coded html with class at ApplicationHelperTest#test_wiki_links_within_wiki_page_context...
r12568 '[[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"),
Jean-Philippe Lang
Moved wiki links tests together....
r8134 }
@project = Project.find(1)
Toshi MARUYAMA
Rails4: replace hard-coded html with class at ApplicationHelperTest#test_wiki_links_within_wiki_page_context...
r12568 to_test.each do |text, result|
assert_equal "<p>#{result}</p>",
textilizable(WikiContent.new( :text => text, :page => page ), :text)
Toshi MARUYAMA
fix source indent of ApplicationHelperTest...
r12582 end
Jean-Philippe Lang
Moved wiki links tests together....
r8134 end
def test_wiki_links_anchor_option_should_prepend_page_title_to_href
to_test = {
# link to a page
Toshi MARUYAMA
Rails4: replace hard-coded html with class at ApplicationHelperTest#test_wiki_links_anchor_option_should_prepend_page_title_to_href...
r12548 '[[CookBook documentation]]' =>
link_to("CookBook documentation",
"#CookBook_documentation",
:class => "wiki-page"),
'[[CookBook documentation|documentation]]' =>
link_to("documentation",
"#CookBook_documentation",
:class => "wiki-page"),
'[[CookBook documentation#One-section]]' =>
link_to("CookBook documentation",
"#CookBook_documentation_One-section",
:class => "wiki-page"),
'[[CookBook documentation#One-section|documentation]]' =>
link_to("documentation",
"#CookBook_documentation_One-section",
:class => "wiki-page"),
Jean-Philippe Lang
Moved wiki links tests together....
r8134 # page that doesn't exist
Toshi MARUYAMA
Rails4: replace hard-coded html with class at ApplicationHelperTest#test_wiki_links_anchor_option_should_prepend_page_title_to_href...
r12548 '[[Unknown page]]' =>
link_to("Unknown page",
"#Unknown_page",
:class => "wiki-page new"),
'[[Unknown page|404]]' =>
link_to("404",
"#Unknown_page",
:class => "wiki-page new"),
'[[Unknown page#anchor]]' =>
link_to("Unknown page",
"#Unknown_page_anchor",
:class => "wiki-page new"),
'[[Unknown page#anchor|404]]' =>
link_to("404",
"#Unknown_page_anchor",
:class => "wiki-page new"),
Jean-Philippe Lang
Moved wiki links tests together....
r8134 }
@project = Project.find(1)
Toshi MARUYAMA
Rails4: replace hard-coded html with class at ApplicationHelperTest#test_wiki_links_anchor_option_should_prepend_page_title_to_href...
r12548 to_test.each do |text, result|
assert_equal "<p>#{result}</p>", textilizable(text, :wiki_links => :anchor)
end
Jean-Philippe Lang
Moved wiki links tests together....
r8134 end
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>",
Jean-Philippe Lang
Fixed: class attribute with spaces on pre tags truncated (#7033)....
r4354 '<pre class="foo">some text</pre>' => '<pre class="foo">some text</pre>',
"<pre class='foo bar'>some text</pre>" => "<pre class='foo bar'>some text</pre>",
'<pre class="foo bar">some text</pre>' => '<pre class="foo bar">some text</pre>',
Jean-Philippe Lang
Fixes syntax highlighting broken by r1930 (#2143)....
r1991 "<pre onmouseover='alert(1)'>some text</pre>" => "<pre>some text</pre>",
Jean-Philippe Lang
Adds tests for class attribute parsing on pre/code tags....
r4423 # xss
'<pre><code class=""onmouseover="alert(1)">text</code></pre>' => '<pre><code>text</code></pre>',
'<pre class=""onmouseover="alert(1)">text</pre>' => '<pre>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
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
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
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
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
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
Jean-Philippe Lang
Fixed pre tags containing "<pre*" (#4125)....
r2916 assert_equal expected.gsub(%r{[\r\n\t]}, ''), textilizable(raw).gsub(%r{[\r\n\t]}, '')
end
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
Jean-Philippe Lang
Do not parse redmine links inside pre/code tags (#1288)....
r3475 def test_pre_content_should_not_parse_wiki_and_redmine_links
raw = <<-RAW
[[CookBook documentation]]
#1
<pre>
[[CookBook documentation]]
#1
</pre>
RAW
Toshi MARUYAMA
Rails4: replace hard-coded html with class at ApplicationHelperTest#test_pre_content_should_not_parse_wiki_and_redmine_links...
r12553 result1 = link_to("CookBook documentation",
"/projects/ecookbook/wiki/CookBook_documentation",
:class => "wiki-page")
result2 = link_to('#1',
"/issues/1",
:class => Issue.find(1).css_classes,
:title => "Can't print recipes (New)")
Jean-Philippe Lang
Do not parse redmine links inside pre/code tags (#1288)....
r3475 expected = <<-EXPECTED
Toshi MARUYAMA
Rails4: replace hard-coded html with class at ApplicationHelperTest#test_pre_content_should_not_parse_wiki_and_redmine_links...
r12553 <p>#{result1}</p>
<p>#{result2}</p>
Jean-Philippe Lang
Do not parse redmine links inside pre/code tags (#1288)....
r3475 <pre>
[[CookBook documentation]]
#1
</pre>
EXPECTED
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
Jean-Philippe Lang
Do not parse redmine links inside pre/code tags (#1288)....
r3475 @project = Project.find(1)
assert_equal expected.gsub(%r{[\r\n\t]}, ''), textilizable(raw).gsub(%r{[\r\n\t]}, '')
end
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
Jean-Philippe Lang
Close unclosed pre/code tags (#4265)....
r3476 def test_non_closing_pre_blocks_should_be_closed
raw = <<-RAW
<pre><code>
RAW
expected = <<-EXPECTED
<pre><code>
</code></pre>
EXPECTED
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
Jean-Philippe Lang
Close unclosed pre/code tags (#4265)....
r3476 @project = Project.find(1)
assert_equal expected.gsub(%r{[\r\n\t]}, ''), textilizable(raw).gsub(%r{[\r\n\t]}, '')
end
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
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
Jean-Philippe Lang
Fixed closing tags in syntax highlighting tests....
r3473 </code></pre>
Jean-Philippe Lang
Fixes syntax highlighting broken by r1930 (#2143)....
r1991 RAW
expected = <<-EXPECTED
Jean-Philippe Lang
Removed line numbers from syntax highlightment....
r9948 <pre><code class="ruby syntaxhl"><span class=\"CodeRay\"><span class="comment"># Some ruby code here</span></span>
Jean-Philippe Lang
Fixed closing tags in syntax highlighting tests....
r3473 </code></pre>
Jean-Philippe Lang
Fixes syntax highlighting broken by r1930 (#2143)....
r1991 EXPECTED
assert_equal expected.gsub(%r{[\r\n\t]}, ''), textilizable(raw).gsub(%r{[\r\n\t]}, '')
end
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
Toshi MARUYAMA
scm: fix git and mercurial branch list box action...
r9429 def test_to_path_param
assert_equal 'test1/test2', to_path_param('test1/test2')
assert_equal 'test1/test2', to_path_param('/test1/test2/')
assert_equal 'test1/test2', to_path_param('//test1/test2/')
assert_equal nil, to_path_param('/')
end
Jean-Philippe Lang
Wiki links:...
r1265 def test_wiki_links_in_tables
Toshi MARUYAMA
Rails4: replace hard-coded html with class at ApplicationHelperTest#test_wiki_links_in_tables...
r12536 text = "|[[Page|Link title]]|[[Other Page|Other title]]|\n|Cell 21|[[Last page]]|"
link1 = link_to("Link title", "/projects/ecookbook/wiki/Page", :class => "wiki-page new")
link2 = link_to("Other title", "/projects/ecookbook/wiki/Other_Page", :class => "wiki-page new")
link3 = link_to("Last page", "/projects/ecookbook/wiki/Last_page", :class => "wiki-page new")
result = "<tr><td>#{link1}</td>" +
"<td>#{link2}</td>" +
"</tr><tr><td>Cell 21</td><td>#{link3}</td></tr>"
Jean-Philippe Lang
Wiki links:...
r1265 @project = Project.find(1)
Toshi MARUYAMA
Rails4: replace hard-coded html with class at ApplicationHelperTest#test_wiki_links_in_tables...
r12536 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
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
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
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
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
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
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
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
Jean-Philippe Lang
Use names instead of ids for wiki anchors (#6905)....
r5015 def test_headings
raw = 'h1. Some heading'
expected = %|<a name="Some-heading"></a>\n<h1 >Some heading<a href="#Some-heading" class="wiki-anchor">&para;</a></h1>|
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
Jean-Philippe Lang
Use names instead of ids for wiki anchors (#6905)....
r5015 assert_equal expected, textilizable(raw)
end
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
Etienne Massip
Make sure that anchor names generated for headings fully match wiki links (#7215)....
r7443 def test_headings_with_special_chars
# This test makes sure that the generated anchor names match the expected
# ones even if the heading text contains unconventional characters
raw = 'h1. Some heading related to version 0.5'
anchor = sanitize_anchor_name("Some-heading-related-to-version-0.5")
expected = %|<a name="#{anchor}"></a>\n<h1 >Some heading related to version 0.5<a href="##{anchor}" class="wiki-anchor">&para;</a></h1>|
assert_equal expected, textilizable(raw)
end
Etienne Massip
Prepend page title to anchor in single page wiki HTML export to make links more unique....
r7442 def test_headings_in_wiki_single_page_export_should_be_prepended_with_page_title
Jean-Philippe Lang
#new is just fine....
r8164 page = WikiPage.new( :title => 'Page Title', :wiki_id => 1 )
content = WikiContent.new( :text => 'h1. Some heading', :page => page )
Etienne Massip
Prepend page title to anchor in single page wiki HTML export to make links more unique....
r7442
expected = %|<a name="Page_Title_Some-heading"></a>\n<h1 >Some heading<a href="#Page_Title_Some-heading" class="wiki-anchor">&para;</a></h1>|
assert_equal expected, textilizable(content, :text, :wiki_links => :anchor )
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%
Jean-Philippe Lang
Fixed: partial toc when text contains pre tags (#7172)....
r4464
<pre>
some code
</pre>
Jean-Philippe Lang
Render TOC as nested lists (#1857)....
r4263 h3. Subtitle with *some* _modifiers_
Jean-Philippe Lang
Fixed: TOC does not remove colorization markups (#1423)....
r1528
Jean-Philippe Lang
Fixed: wrong section edit links when a heading contains inline code (#10199)....
r8721 h3. Subtitle with @inline code@
Jean-Philippe Lang
Fixed: TOC does not remove colorization markups (#1423)....
r1528 h1. Another title
Jean-Philippe Lang
Render TOC as nested lists (#1857)....
r4263 h3. An "Internet link":http://www.redmine.org/ inside subtitle
Eric Davis
Sanitize image links and handle nils in the toc formatter. #5445...
r3697
h2. "Project Name !/attachments/1234/logo_small.gif! !/attachments/5678/logo_2.png!":/projects/projectname/issues
Jean-Philippe Lang
Fixed: TOC does not remove colorization markups (#1423)....
r1528 RAW
Jean-Philippe Lang
Render TOC as nested lists (#1857)....
r4263 expected = '<ul class="toc">' +
'<li><a href="#Title">Title</a>' +
'<ul>' +
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713 '<li><a href="#Subtitle-with-a-Wiki-link">Subtitle with a Wiki link</a></li>' +
'<li><a href="#Subtitle-with-another-Wiki-link">Subtitle with another Wiki link</a></li>' +
Jean-Philippe Lang
Render TOC as nested lists (#1857)....
r4263 '<li><a href="#Subtitle-with-red-text">Subtitle with red text</a>' +
'<ul>' +
'<li><a href="#Subtitle-with-some-modifiers">Subtitle with some modifiers</a></li>' +
Jean-Philippe Lang
Fixed: wrong section edit links when a heading contains inline code (#10199)....
r8721 '<li><a href="#Subtitle-with-inline-code">Subtitle with inline code</a></li>' +
Jean-Philippe Lang
Render TOC as nested lists (#1857)....
r4263 '</ul>' +
'</li>' +
'</ul>' +
'</li>' +
'<li><a href="#Another-title">Another title</a>' +
'<ul>' +
'<li>' +
'<ul>' +
'<li><a href="#An-Internet-link-inside-subtitle">An Internet link inside subtitle</a></li>' +
'</ul>' +
'</li>' +
'<li><a href="#Project-Name">Project Name</a></li>' +
'</ul>' +
'</li>' +
Jean-Philippe Lang
Fixes tests (r1693)....
r1691 '</ul>'
Eric Davis
Sanitize image links and handle nils in the toc formatter. #5445...
r3697
Jean-Philippe Lang
Extract headings and TOC parsing from the textile formatter....
r4262 @project = Project.find(1)
Jean-Philippe Lang
Fixed assert call....
r8046 assert textilizable(raw).gsub("\n", "").include?(expected)
Jean-Philippe Lang
Extract headings and TOC parsing from the textile formatter....
r4262 end
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
Jean-Philippe Lang
Fixed: {{toc}} uses identical anchors for subsections with the same name (#8194)....
r8751 def test_table_of_content_should_generate_unique_anchors
raw = <<-RAW
{{toc}}
h1. Title
h2. Subtitle
h2. Subtitle
RAW
expected = '<ul class="toc">' +
'<li><a href="#Title">Title</a>' +
'<ul>' +
'<li><a href="#Subtitle">Subtitle</a></li>' +
'<li><a href="#Subtitle-2">Subtitle</a></li>'
'</ul>'
'</li>' +
'</ul>'
@project = Project.find(1)
result = textilizable(raw).gsub("\n", "")
assert_include expected, result
assert_include '<a name="Subtitle">', result
assert_include '<a name="Subtitle-2">', result
end
Jean-Philippe Lang
Extract headings and TOC parsing from the textile formatter....
r4262 def test_table_of_content_should_contain_included_page_headings
raw = <<-RAW
{{toc}}
h1. Included
{{include(Child_1)}}
RAW
expected = '<ul class="toc">' +
Jean-Philippe Lang
Render TOC as nested lists (#1857)....
r4263 '<li><a href="#Included">Included</a></li>' +
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713 '<li><a href="#Child-page-1">Child page 1</a></li>' +
Jean-Philippe Lang
Extract headings and TOC parsing from the textile formatter....
r4262 '</ul>'
@project = Project.find(1)
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
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
Jean-Philippe Lang
Fixed: right-aligned table of contents (TOC) not working with markdown (#16236)....
r12714 def test_toc_with_textile_formatting_should_be_parsed
with_settings :text_formatting => 'textile' do
assert_select_in textilizable("{{toc}}\n\nh1. Heading"), 'ul.toc li', :text => 'Heading'
assert_select_in textilizable("{{<toc}}\n\nh1. Heading"), 'ul.toc.left li', :text => 'Heading'
assert_select_in textilizable("{{>toc}}\n\nh1. Heading"), 'ul.toc.right li', :text => 'Heading'
end
end
Jean-Philippe Lang
Don't run the test if Redcarpet is not available (#16236)....
r12722 if Object.const_defined?(:Redcarpet)
Jean-Philippe Lang
Fixed: right-aligned table of contents (TOC) not working with markdown (#16236)....
r12714 def test_toc_with_markdown_formatting_should_be_parsed
with_settings :text_formatting => 'markdown' do
assert_select_in textilizable("{{toc}}\n\n# Heading"), 'ul.toc li', :text => 'Heading'
assert_select_in textilizable("{{<toc}}\n\n# Heading"), 'ul.toc.left li', :text => 'Heading'
assert_select_in textilizable("{{>toc}}\n\n# Heading"), 'ul.toc.right li', :text => 'Heading'
end
end
Jean-Philippe Lang
Don't run the test if Redcarpet is not available (#16236)....
r12722 end
Jean-Philippe Lang
Fixed: right-aligned table of contents (TOC) not working with markdown (#16236)....
r12714
Jean-Philippe Lang
Fixed: wrong section edit links when a heading contains inline code (#10199)....
r8721 def test_section_edit_links
raw = <<-RAW
h1. Title
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas sed libero.
h2. Subtitle with a [[Wiki]] link
h2. Subtitle with *some* _modifiers_
h2. Subtitle with @inline code@
<pre>
some code
h2. heading inside pre
<h2>html heading inside pre</h2>
</pre>
h2. Subtitle after pre tag
RAW
@project = Project.find(1)
set_language_if_valid 'en'
result = textilizable(raw, :edit_section_links => {:controller => 'wiki', :action => 'edit', :project_id => '1', :id => 'Test'}).gsub("\n", "")
# heading that contains inline code
Jean-Philippe Lang
Fixed test failure (#15182)....
r12010 assert_match Regexp.new('<div class="contextual" id="section-4" title="Edit this section">' +
Jean-Philippe Lang
Fixed: wrong section edit links when a heading contains inline code (#10199)....
r8721 '<a href="/projects/1/wiki/Test/edit\?section=4"><img alt="Edit" src="/images/edit.png(\?\d+)?" /></a></div>' +
'<a name="Subtitle-with-inline-code"></a>' +
'<h2 >Subtitle with <code>inline code</code><a href="#Subtitle-with-inline-code" class="wiki-anchor">&para;</a></h2>'),
result
# last heading
Jean-Philippe Lang
Fixed test failure (#15182)....
r12010 assert_match Regexp.new('<div class="contextual" id="section-5" title="Edit this section">' +
Jean-Philippe Lang
Fixed: wrong section edit links when a heading contains inline code (#10199)....
r8721 '<a href="/projects/1/wiki/Test/edit\?section=5"><img alt="Edit" src="/images/edit.png(\?\d+)?" /></a></div>' +
'<a name="Subtitle-after-pre-tag"></a>' +
'<h2 >Subtitle after pre tag<a href="#Subtitle-after-pre-tag" class="wiki-anchor">&para;</a></h2>'),
result
end
Jean-Philippe Lang
Makes wiki text formatter pluggable....
r1953 def test_default_formatter
Jean-Philippe Lang
Make sure setting is not changed in test....
r8161 with_settings :text_formatting => 'unknown' do
text = 'a *link*: http://www.example.net/'
Jean-Philippe Lang
Extracted auto_link and auto_mailto to a module....
r8943 assert_equal '<p>a *link*: <a class="external" href="http://www.example.net/">http://www.example.net/</a></p>', textilizable(text)
Jean-Philippe Lang
Make sure setting is not changed in test....
r8161 end
Jean-Philippe Lang
Makes wiki text formatter pluggable....
r1953 end
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
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 }
Jean-Philippe Lang
Make sure en is the current locale when running the test (#7266)....
r4557 ::I18n.locale = :en
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
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
Toshi MARUYAMA
cherry-pick avatar test from reverted r10184...
r10011 def test_avatar_enabled
with_settings :gravatar_enabled => '1' do
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'))
# Default size is 50
assert avatar('jsmith <jsmith@somenet.foo>').include?('size=50')
assert avatar('jsmith <jsmith@somenet.foo>', :size => 24).include?('size=24')
# Non-avatar options should be considered html options
assert avatar('jsmith <jsmith@somenet.foo>', :title => 'John Smith').include?('title="John Smith"')
# The default class of the img tag should be gravatar
assert avatar('jsmith <jsmith@somenet.foo>').include?('class="gravatar"')
assert !avatar('jsmith <jsmith@somenet.foo>', :class => 'picture').include?('class="gravatar"')
assert_nil avatar('jsmith')
assert_nil avatar(nil)
end
end
def test_avatar_disabled
with_settings :gravatar_enabled => '0' do
assert_equal '', avatar(User.find_by_mail('jsmith@somenet.foo'))
end
Jean-Philippe Lang
Changes ApplicationHelper#gravatar_for_mail to #avatar that takes a User or a String (less code in views)....
r1998 end
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
Jean-Philippe Lang
Fixes ApplicationHelper#link_to_user...
r2910 def test_link_to_user
user = User.find(2)
Toshi MARUYAMA
Rails4: replace hard-coded html with class at ApplicationHelperTest#test_link_to_user...
r12551 result = link_to("John Smith", "/users/2", :class => "user active")
assert_equal result, link_to_user(user)
Jean-Philippe Lang
Fixes ApplicationHelper#link_to_user...
r2910 end
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
Jean-Philippe Lang
Fixes ApplicationHelper#link_to_user...
r2910 def test_link_to_user_should_not_link_to_locked_user
Jean-Philippe Lang
Adds links to locked users when current user is admin....
r10462 with_current_user nil do
user = User.find(5)
assert user.locked?
assert_equal 'Dave2 Lopper2', link_to_user(user)
end
end
def test_link_to_user_should_link_to_locked_user_if_current_user_is_admin
with_current_user User.find(1) do
user = User.find(5)
assert user.locked?
Toshi MARUYAMA
Rails4: replace hard-coded html with class at ApplicationHelperTest#test_link_to_user_should_link_to_locked_user_if_current_user_is_admin...
r12552 result = link_to("Dave2 Lopper2", "/users/5", :class => "user locked")
assert_equal result, link_to_user(user)
Jean-Philippe Lang
Adds links to locked users when current user is admin....
r10462 end
Jean-Philippe Lang
Fixes ApplicationHelper#link_to_user...
r2910 end
Toshi MARUYAMA
remove trailing white-spaces excluding here-documents from unit application helper test....
r5713
Jean-Philippe Lang
Fixes ApplicationHelper#link_to_user...
r2910 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-Baptiste Barth
Refactor: added link_to_project helper to handle links to projects...
r3810
Jean-Philippe Lang
Add named routes for attachments and use route helpers in #link_to_attachment....
r10957 def test_link_to_attachment
a = Attachment.find(3)
assert_equal '<a href="/attachments/3/logo.gif">logo.gif</a>',
link_to_attachment(a)
assert_equal '<a href="/attachments/3/logo.gif">Text</a>',
link_to_attachment(a, :text => 'Text')
Toshi MARUYAMA
Rails4: replace hard-coded html with class at ApplicationHelperTest#test_link_to_attachment...
r12546 result = link_to("logo.gif", "/attachments/3/logo.gif", :class => "foo")
assert_equal result,
Jean-Philippe Lang
Add named routes for attachments and use route helpers in #link_to_attachment....
r10957 link_to_attachment(a, :class => 'foo')
assert_equal '<a href="/attachments/download/3/logo.gif">logo.gif</a>',
link_to_attachment(a, :download => true)
assert_equal '<a href="http://test.host/attachments/3/logo.gif">logo.gif</a>',
link_to_attachment(a, :only_path => false)
end
Jean-Philippe Lang
Adds a named route for thumbnails and use route helper in #thumbnail_tag....
r10958 def test_thumbnail_tag
a = Attachment.find(3)
assert_equal '<a href="/attachments/3/logo.gif" title="logo.gif"><img alt="3" src="/attachments/thumbnail/3" /></a>',
thumbnail_tag(a)
end
Jean-Baptiste Barth
Refactor: added link_to_project helper to handle links to projects...
r3810 def test_link_to_project
project = Project.find(1)
assert_equal %(<a href="/projects/ecookbook">eCookbook</a>),
link_to_project(project)
assert_equal %(<a href="/projects/ecookbook/settings">eCookbook</a>),
link_to_project(project, :action => 'settings')
assert_equal %(<a href="http://test.host/projects/ecookbook?jump=blah">eCookbook</a>),
link_to_project(project, {:only_path => false, :jump => 'blah'})
Toshi MARUYAMA
Rails4: replace hard-coded html with class at ApplicationHelperTest#test_link_to_project...
r12547 result = link_to("eCookbook", "/projects/ecookbook/settings", :class => "project")
assert_equal result,
Jean-Baptiste Barth
Refactor: added link_to_project helper to handle links to projects...
r3810 link_to_project(project, {:action => 'settings'}, :class => "project")
end
Toshi MARUYAMA
remove trailing white-spaces from test/unit/helpers/application_helper_test.rb....
r6777
Jean-Philippe Lang
Use route helper in #link_to_project....
r10954 def test_link_to_project_settings
project = Project.find(1)
assert_equal '<a href="/projects/ecookbook/settings">eCookbook</a>', link_to_project_settings(project)
project.status = Project::STATUS_CLOSED
assert_equal '<a href="/projects/ecookbook">eCookbook</a>', link_to_project_settings(project)
project.status = Project::STATUS_ARCHIVED
assert_equal 'eCookbook', link_to_project_settings(project)
end
Jean-Philippe Lang
Fixed "can't convert Fixnum into String" error on projects with numerical identifier (#10135)....
r8684 def test_link_to_legacy_project_with_numerical_identifier_should_use_id
# numeric identifier are no longer allowed
Toshi MARUYAMA
Rails4: replace deprecated Relation#update_all at application helper test...
r12215 Project.where(:id => 1).update_all(:identifier => 25)
Jean-Philippe Lang
Fixed "can't convert Fixnum into String" error on projects with numerical identifier (#10135)....
r8684 assert_equal '<a href="/projects/1">eCookbook</a>',
link_to_project(Project.find(1))
end
Jean-Philippe Lang
Adds a optgroup for groups in users/groups select tags....
r6187 def test_principals_options_for_select_with_users
Jean-Philippe Lang
Adds a <<me>> option at the top of the assignee drop-down (#1102)....
r8568 User.current = nil
Jean-Philippe Lang
Adds a optgroup for groups in users/groups select tags....
r6187 users = [User.find(2), User.find(4)]
assert_equal %(<option value="2">John Smith</option><option value="4">Robert Hill</option>),
principals_options_for_select(users)
end
Toshi MARUYAMA
remove trailing white-spaces from test/unit/helpers/application_helper_test.rb....
r6777
Jean-Philippe Lang
Adds a optgroup for groups in users/groups select tags....
r6187 def test_principals_options_for_select_with_selected
Jean-Philippe Lang
Adds a <<me>> option at the top of the assignee drop-down (#1102)....
r8568 User.current = nil
Jean-Philippe Lang
Adds a optgroup for groups in users/groups select tags....
r6187 users = [User.find(2), User.find(4)]
assert_equal %(<option value="2">John Smith</option><option value="4" selected="selected">Robert Hill</option>),
principals_options_for_select(users, User.find(4))
end
Toshi MARUYAMA
remove trailing white-spaces from test/unit/helpers/application_helper_test.rb....
r6777
Jean-Philippe Lang
Adds a optgroup for groups in users/groups select tags....
r6187 def test_principals_options_for_select_with_users_and_groups
Jean-Philippe Lang
Adds a <<me>> option at the top of the assignee drop-down (#1102)....
r8568 User.current = nil
Jean-Philippe Lang
Adds a optgroup for groups in users/groups select tags....
r6187 users = [User.find(2), Group.find(11), User.find(4), Group.find(10)]
assert_equal %(<option value="2">John Smith</option><option value="4">Robert Hill</option>) +
%(<optgroup label="Groups"><option value="10">A Team</option><option value="11">B Team</option></optgroup>),
principals_options_for_select(users)
end
Toshi MARUYAMA
remove trailing white-spaces from test/unit/helpers/application_helper_test.rb....
r6777
Jean-Philippe Lang
Adds a optgroup for groups in users/groups select tags....
r6187 def test_principals_options_for_select_with_empty_collection
assert_equal '', principals_options_for_select([])
end
Jean-Philippe Lang
Adds a <<me>> option at the top of the assignee drop-down (#1102)....
r8568
def test_principals_options_for_select_should_include_me_option_when_current_user_is_in_collection
users = [User.find(2), User.find(4)]
User.current = User.find(4)
Jean-Philippe Lang
Fixed assertion....
r9933 assert_include '<option value="4">&lt;&lt; me &gt;&gt;</option>', principals_options_for_select(users)
Jean-Philippe Lang
Adds a <<me>> option at the top of the assignee drop-down (#1102)....
r8568 end
Jean-Philippe Lang
Restores support for :plugin support to stylesheet_link_tag and javascript_include_tag helpers....
r9376
def test_stylesheet_link_tag_should_pick_the_default_stylesheet
assert_match 'href="/stylesheets/styles.css"', stylesheet_link_tag("styles")
end
def test_stylesheet_link_tag_for_plugin_should_pick_the_plugin_stylesheet
assert_match 'href="/plugin_assets/foo/stylesheets/styles.css"', stylesheet_link_tag("styles", :plugin => :foo)
end
Jean-Philippe Lang
Adds support for :plugin option to image_tag helper....
r9377 def test_image_tag_should_pick_the_default_image
assert_match 'src="/images/image.png"', image_tag("image.png")
end
Jean-Philippe Lang
Makes image_tag pick the image from the current theme if it exists....
r9378 def test_image_tag_should_pick_the_theme_image_if_it_exists
theme = Redmine::Themes.themes.last
theme.images << 'image.png'
with_settings :ui_theme => theme.id do
assert_match %|src="/themes/#{theme.dir}/images/image.png"|, image_tag("image.png")
assert_match %|src="/images/other.png"|, image_tag("other.png")
end
ensure
theme.images.delete 'image.png'
end
Jean-Philippe Lang
Adds support for :plugin option to image_tag helper....
r9377 def test_image_tag_sfor_plugin_should_pick_the_plugin_image
assert_match 'src="/plugin_assets/foo/images/image.png"', image_tag("image.png", :plugin => :foo)
end
Jean-Philippe Lang
Restores support for :plugin support to stylesheet_link_tag and javascript_include_tag helpers....
r9376 def test_javascript_include_tag_should_pick_the_default_javascript
assert_match 'src="/javascripts/scripts.js"', javascript_include_tag("scripts")
end
def test_javascript_include_tag_for_plugin_should_pick_the_plugin_javascript
assert_match 'src="/plugin_assets/foo/javascripts/scripts.js"', javascript_include_tag("scripts", :plugin => :foo)
end
Jean-Philippe Lang
Fixed that project name is not properly escaped in issue filters (#14186)....
r11685
def test_raw_json_should_escape_closing_tags
s = raw_json(["<foo>bar</foo>"])
assert_equal '["<foo>bar<\/foo>"]', s
end
def test_raw_json_should_be_html_safe
s = raw_json(["foo"])
assert s.html_safe?
end
Jean-Philippe Lang
Adds a helper for building h2 tags and setting html_title (#14517)....
r11818
def test_html_title_should_app_title_if_not_set
assert_equal 'Redmine', html_title
end
def test_html_title_should_join_items
html_title 'Foo', 'Bar'
assert_equal 'Foo - Bar - Redmine', html_title
end
def test_html_title_should_append_current_project_name
@project = Project.find(1)
html_title 'Foo', 'Bar'
assert_equal 'Foo - Bar - eCookbook - Redmine', html_title
end
def test_title_should_return_a_h2_tag
assert_equal '<h2>Foo</h2>', title('Foo')
end
def test_title_should_set_html_title
title('Foo')
assert_equal 'Foo - Redmine', html_title
end
def test_title_should_turn_arrays_into_links
assert_equal '<h2><a href="/foo">Foo</a></h2>', title(['Foo', '/foo'])
assert_equal 'Foo - Redmine', html_title
end
def test_title_should_join_items
assert_equal '<h2>Foo &#187; Bar</h2>', title('Foo', 'Bar')
assert_equal 'Bar - Foo - Redmine', html_title
end
Jean-Philippe Lang
Adds #favicon_path and #favicon_url helpers....
r12386
def test_favicon_path
assert_match %r{^/favicon\.ico}, favicon_path
end
def test_favicon_path_with_suburi
Redmine::Utils.relative_url_root = '/foo'
assert_match %r{^/foo/favicon\.ico}, favicon_path
ensure
Redmine::Utils.relative_url_root = ''
end
def test_favicon_url
assert_match %r{^http://test\.host/favicon\.ico}, favicon_url
end
def test_favicon_url_with_suburi
Redmine::Utils.relative_url_root = '/foo'
assert_match %r{^http://test\.host/foo/favicon\.ico}, favicon_url
ensure
Redmine::Utils.relative_url_root = ''
end
Toshi MARUYAMA
add tests of ApplicationHelper#truncate_single_line...
r12549
def test_truncate_single_line
str = "01234"
Toshi MARUYAMA
Rails4: add ApplicationHelper#truncate_single_line_raw method replacing truncate_single_line...
r12555 result = truncate_single_line_raw("#{str}\n#{str}", 10)
Toshi MARUYAMA
add tests of ApplicationHelper#truncate_single_line...
r12549 assert_equal "01234 0...", result
assert !result.html_safe?
Toshi MARUYAMA
Rails4: add ApplicationHelper#truncate_single_line_raw method replacing truncate_single_line...
r12555 result = truncate_single_line_raw("#{str}<&#>\n#{str}#{str}", 16)
Toshi MARUYAMA
do stricter ApplicationHelperTest#test_truncate_single_line...
r12550 assert_equal "01234<&#> 012...", result
Toshi MARUYAMA
add tests of ApplicationHelper#truncate_single_line...
r12549 assert !result.html_safe?
end
def test_truncate_single_line_non_ascii
ja = "\xe6\x97\xa5\xe6\x9c\xac\xe8\xaa\x9e"
ja.force_encoding('UTF-8') if ja.respond_to?(:force_encoding)
Toshi MARUYAMA
Rails4: add ApplicationHelper#truncate_single_line_raw method replacing truncate_single_line...
r12555 result = truncate_single_line_raw("#{ja}\n#{ja}\n#{ja}", 10)
Toshi MARUYAMA
add tests of ApplicationHelper#truncate_single_line...
r12549 assert_equal "#{ja} #{ja}...", result
assert !result.html_safe?
end
Jean-Philippe Lang
Added Redmine::WikiFormatting module and tests for wiki links....
r688 end