#-- encoding: UTF-8
#-- copyright
# OpenProject is a project management system.
# Copyright (C) 2012-2013 the OpenProject Foundation (OPF)
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License version 3.
#
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
# Copyright (C) 2006-2013 Jean-Philippe Lang
# Copyright (C) 2010-2013 the ChiliProject Team
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# See doc/COPYRIGHT.rdoc for more details.
#++
require File.expand_path('../../../test_helper', __FILE__)
class ApplicationHelperTest < ActionView::TestCase
include WorkPackagesHelper
def setup
super
# @project variable is used by helper
@project = FactoryGirl.create :valid_project
@project.reload # reload references to indirectly created entities (e.g. wiki)
@admin = FactoryGirl.create :admin
@anonymous = FactoryGirl.create :anonymous
@non_member = FactoryGirl.create :user
@project_member = FactoryGirl.create :user,
:member_in_project => @project,
:member_through_role => FactoryGirl.create(:role,
:permissions => [:view_work_packages, :edit_work_packages,
:browse_repository, :view_changesets, :view_wiki_pages])
@issue = FactoryGirl.create :work_package, :project => @project, :author => @project_member, :type => @project.types.first
@attachment = FactoryGirl.create :attachment,
:author => @project_member,
:content_type => 'image/gif',
:filename => 'logo.gif',
:disk_filename => '060719210727_logo.gif',
:digest => 'b91e08d0cf966d5c6ff411bd8c4cc3a2',
:container => @issue,
:filesize => 280,
:description => 'This is a logo'
User.stubs(:current).returns(@project_member)
end
def request
@request ||= ActionController::TestRequest.new
end
def test_auto_links
to_test = {
'http://foo.bar' => 'http://foo.bar',
'http://foo.bar/~user' => 'http://foo.bar/~user',
'http://foo.bar.' => 'http://foo.bar.',
'https://foo.bar.' => 'https://foo.bar.',
'This is a link: http://foo.bar.' => 'This is a link: http://foo.bar.',
'A link (eg. http://foo.bar).' => 'A link (eg. http://foo.bar).',
'http://foo.bar/foo.bar#foo.bar.' => 'http://foo.bar/foo.bar#foo.bar.',
'http://www.foo.bar/Test_(foobar)' => 'http://www.foo.bar/Test_(foobar)',
'(see inline link : http://www.foo.bar/Test_(foobar))' => '(see inline link : http://www.foo.bar/Test_(foobar))',
'(see inline link : http://www.foo.bar/Test)' => '(see inline link : http://www.foo.bar/Test)',
'(see inline link : http://www.foo.bar/Test).' => '(see inline link : http://www.foo.bar/Test).',
'(see "inline link":http://www.foo.bar/Test_(foobar))' => '(see inline link)',
'(see "inline link":http://www.foo.bar/Test)' => '(see inline link)',
'(see "inline link":http://www.foo.bar/Test).' => '(see inline link).',
'www.foo.bar' => 'www.foo.bar',
'http://foo.bar/page?p=1&t=z&s=' => 'http://foo.bar/page?p=1&t=z&s=',
'http://foo.bar/page#125' => 'http://foo.bar/page#125',
'http://foo@www.bar.com' => 'http://foo@www.bar.com',
'http://foo:bar@www.bar.com' => 'http://foo:bar@www.bar.com',
'ftp://foo.bar' => 'ftp://foo.bar',
'ftps://foo.bar' => 'ftps://foo.bar',
'sftp://foo.bar' => 'sftp://foo.bar',
# two exclamation marks
'http://example.net/path!602815048C7B5C20!302.html' => 'http://example.net/path!602815048C7B5C20!302.html',
# escaping
'http://foo"bar' => 'http://foo"bar',
# wrap in angle brackets
' #{result} #{result} #{result}
Another paragraph",
# no multiline link text
"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
and another on a second line\":test",
# mailto link
"\"system administrator\":mailto:sysadmin@example.com?subject=redmine%20permissions" => "system administrator",
# two exclamation marks
'"a link":http://example.net/path!602815048C7B5C20!302.html' => 'a link',
# escaping
'"test":http://foo"bar' => 'test',
}
to_test.each { |text, result| assert_equal "
#{result}
", textilizable(text) } end def test_textile_relative_to_full_links_in_a_controller # we have a request here { # shouldn't change non-relative links 'This is a "link":http://foo.bar' => 'This is a link', 'This is an intern "link":/foo/bar' => 'This is an intern link', 'This is an intern "link":/foo/bar and an extern "link":http://foo.bar' => 'This is an intern link and an extern link', }.each { |text, result| assert_equal "#{result}
", textilizable(text, :only_path => false) } end def test_textile_relative_to_full_links_in_the_mailer # we don't a request here undef request # mimic the mailer default_url_options @controller.class.class_eval { def self.default_url_options ::UserMailer.default_url_options end } { # shouldn't change non-relative links 'This is a "link":http://foo.bar' => 'This is a link', 'This is an intern "link":/foo/bar' => 'This is an intern link', 'This is an intern "link":/foo/bar and an extern "link":http://foo.bar' => 'This is an intern link and an extern link', }.each { |text, result| assert_equal "#{result}
", textilizable(text, :only_path => false) } end def test_cross_project_redmine_links version = FactoryGirl.create :version, :name => '1.0', :project => @project Setting.enabled_scm = Setting.enabled_scm << "Filesystem" unless Setting.enabled_scm.include? "Filesystem" repository = FactoryGirl.create :repository, :project => @project changeset = FactoryGirl.create :changeset, :repository => repository, :comments => 'This commit fixes #1, #2 and references #1 & #3' identifier = @project.identifier source_link = link_to("#{identifier}:source:/some/file", { :controller => 'repositories', :action => 'entry', :project_id => identifier, :path => 'some/file'} , :class => 'source') changeset_link = link_to("#{identifier}:r#{changeset.revision}", {:controller => 'repositories', :action => 'revision', :project_id => identifier, :rev => changeset.revision}, :class => 'changeset', :title => 'This commit fixes #1, #2 and references #1 & #3') # textilizable "sees" the text is parses from the_other_project (and not @project) the_other_project = FactoryGirl.create :valid_project to_test = { # versions 'version:"1.0"' => 'version:"1.0"', "#{identifier}:version:\"1.0\"" => "1.0", 'invalid:version:"1.0"' => 'invalid:version:"1.0"', # changeset "r#{changeset.revision}" => "r#{changeset.revision}", "#{identifier}:r#{changeset.revision}" => changeset_link, "invalid:r#{changeset.revision}" => "invalid:r#{changeset.revision}", # source 'source:/some/file' => 'source:/some/file', "#{identifier}:source:/some/file" => source_link, 'invalid:source:/some/file' => 'invalid:source:/some/file', } to_test.each { |text, result| assert_equal "#{result}
", textilizable(text, :project => the_other_project), "#{text} failed" } end def test_redmine_links_git_commit User.stubs(:current).returns(@admin) changeset_link = link_to('abcd', { :controller => 'repositories', :action => 'revision', :project_id => @project.identifier, :rev => 'abcd', }, :class => 'changeset', :title => 'test commit') to_test = { 'commit:abcd' => changeset_link, } 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 ) @project.reload to_test.each { |text, result| assert_equal "#{result}
", textilizable(text) } end def test_attachment_links attachment_link = link_to('logo.gif', {:controller => 'attachments', :action => 'download', :id => @attachment}, :class => 'attachment') to_test = { 'attachment:logo.gif' => attachment_link } to_test.each { |text, result| assert_equal "#{result}
", textilizable(text, :attachments => [@attachment]), "#{text} failed" } end def test_html_tags to_test = { "<div>content</div>
", "<div class=\"bold\">content</div>
", "" => "<script>some script;</script>
", # do not escape pre/code tags "\nline 1\nline2" => "
\nline 1\nline2", "
\nline 1\nline2
" => "\nline 1\nline2
",
"" => "content
<div>content</div>", "HTML comment: " => "
HTML comment: <!-- no comments -->
", "