aboutsummaryrefslogtreecommitdiffstats
path: root/core/l10n/tr.js
Commit message (Expand)AuthorAgeFilesLines
* [tx-robot] updated from transifexNextcloud bot2018-02-031-1/+30
* [tx-robot] updated from transifexNextcloud bot2018-02-011-66/+1
* [tx-robot] updated from transifexNextcloud bot2018-01-261-0/+1
* [tx-robot] updated from transifexNextcloud bot2018-01-241-1/+1
* [tx-robot] updated from transifexNextcloud bot2018-01-211-1/+1
* [tx-robot] updated from transifexNextcloud bot2018-01-181-0/+1
* [tx-robot] updated from transifexNextcloud bot2018-01-171-0/+1
* [tx-robot] updated from transifexNextcloud bot2018-01-161-2/+2
* [tx-robot] updated from transifexNextcloud bot2018-01-121-1/+1
* [tx-robot] updated from transifexNextcloud bot2018-01-041-0/+1
* [tx-robot] updated from transifexNextcloud bot2017-12-101-0/+1
* [tx-robot] updated from transifexNextcloud bot2017-12-051-0/+10
* [tx-robot] updated from transifexNextcloud bot2017-12-041-0/+5
* [tx-robot] updated from transifexNextcloud bot2017-11-281-15/+6
* [tx-robot] updated from transifexNextcloud bot2017-11-161-0/+4
* [tx-robot] updated from transifexNextcloud bot2017-11-151-2/+2
* [tx-robot] updated from transifexNextcloud bot2017-11-121-0/+11
* [tx-robot] updated from transifexNextcloud bot2017-11-091-11/+11
* [tx-robot] updated from transifexNextcloud bot2017-11-041-0/+2
* [tx-robot] updated from transifexNextcloud bot2017-11-031-1/+2
* [tx-robot] updated from transifexNextcloud bot2017-10-191-1/+1
* [tx-robot] updated from transifexNextcloud bot2017-10-061-0/+1
* [tx-robot] updated from transifexNextcloud bot2017-10-051-1/+1
* [tx-robot] updated from transifexNextcloud bot2017-09-281-1/+1
* [tx-robot] updated from transifexNextcloud bot2017-09-201-0/+3
* [tx-robot] updated from transifexNextcloud bot2017-09-191-1/+1
* [tx-robot] updated from transifexNextcloud bot2017-08-311-0/+5
* [tx-robot] updated from transifexNextcloud bot2017-08-301-5/+5
* [tx-robot] updated from transifexNextcloud bot2017-08-161-0/+2
* [tx-robot] updated from transifexNextcloud bot2017-08-151-2/+2
* [tx-robot] updated from transifexNextcloud bot2017-07-141-4/+4
* [tx-robot] updated from transifexNextcloud bot2017-06-161-0/+1
* [tx-robot] updated from transifexNextcloud bot2017-06-151-5/+5
* [tx-robot] updated from transifexNextcloud bot2017-06-141-2/+3
* [tx-robot] updated from transifexNextcloud bot2017-06-131-3/+2
* [tx-robot] updated from transifexNextcloud bot2017-06-041-1/+1
* [tx-robot] updated from transifexNextcloud bot2017-05-201-2/+1
* [tx-robot] updated from transifexNextcloud bot2017-05-191-1/+0
* [tx-robot] updated from transifexNextcloud bot2017-05-171-5/+5
* [tx-robot] updated from transifexNextcloud bot2017-05-171-0/+2
* [tx-robot] updated from transifexNextcloud bot2017-05-141-0/+5
* [tx-robot] updated from transifexNextcloud bot2017-05-121-2/+2
* [tx-robot] updated from transifexNextcloud bot2017-05-061-0/+1
* [tx-robot] updated from transifexNextcloud bot2017-05-051-3/+2
* [tx-robot] updated from transifexNextcloud bot2017-05-021-9/+9
* [tx-robot] updated from transifexNextcloud bot2017-04-281-0/+13
* [tx-robot] updated from transifexNextcloud bot2017-04-261-0/+7
* [tx-robot] updated from transifexNextcloud bot2017-04-251-9/+9
* [tx-robot] updated from transifexNextcloud bot2017-04-201-0/+3
* [tx-robot] updated from transifexNextcloud bot2017-04-181-3/+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 def test_redmine_links_git_commit changeset_link = link_to('abcd', { :controller => 'repositories', :action => 'revision', :id => 'subproject1', :rev => 'abcd', }, :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', { :controller => 'repositories', :action => 'revision', :id => 'subproject1', :rev => '123', }, :class => 'changeset', :title => 'test commit') to_test = { 'commit:20080308225258-98289-abcd456efg.gz' => changeset_link, } @project = Project.find(3) r = Repository::Darcs.create!( :project => @project, :url => '/tmp/test/darcs', :log_encoding => 'UTF-8') 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 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 def test_attachment_links 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" end 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") 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]) end def test_wiki_links russian_eacape = CGI.escape(@russian_test) to_test = { '[[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"), # title content should be formatted '[[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"), # link with anchor '[[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"), # UTF8 anchor "[[Another_page##{@russian_test}|#{@russian_test}]]" => link_to(@russian_test, "/projects/ecookbook/wiki/Another_page##{russian_eacape}", :class => "wiki-page"), # page that doesn't exist '[[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"), # link to another project wiki '[[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"), # striked through link '-[[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, # escaping '![[Another page|Page]]' => '[[Another page|Page]]', # project does not exist '[[unknowproject:Start]]' => '[[unknowproject:Start]]', '[[unknowproject:Start|Page title]]' => '[[unknowproject:Start|Page title]]', } @project = Project.find(1) to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text) } end def test_wiki_links_within_local_file_generation_context to_test = { # link to a page '[[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"), # page that doesn't exist '[[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"), } @project = Project.find(1) to_test.each do |text, result| assert_equal "<p>#{result}</p>", textilizable(text, :wiki_links => :local) end end def test_wiki_links_within_wiki_page_context page = WikiPage.find_by_title('Another_page' ) to_test = { '[[CookBook documentation]]' => link_to("CookBook documentation", "/projects/ecookbook/wiki/CookBook_documentation", :class => "wiki-page"), '[[CookBook documentation|documentation]]' => link_to("documentation", "/projects/ecookbook/wiki/CookBook_documentation", :class => "wiki-page"), '[[CookBook documentation#One-section]]' => link_to("CookBook documentation", "/projects/ecookbook/wiki/CookBook_documentation#One-section", :class => "wiki-page"), '[[CookBook documentation#One-section|documentation]]' => link_to("documentation", "/projects/ecookbook/wiki/CookBook_documentation#One-section", :class => "wiki-page"), # link to the current page '[[Another page]]' => link_to("Another page", "/projects/ecookbook/wiki/Another_page", :class => "wiki-page"), '[[Another page|Page]]' => link_to("Page", "/projects/ecookbook/wiki/Another_page", :class => "wiki-page"), '[[Another page#anchor]]' => link_to("Another page", "#anchor", :class => "wiki-page"), '[[Another page#anchor|Page]]' => link_to("Page", "#anchor", :class => "wiki-page"), # page that doesn't exist '[[Unknown page]]' => link_to("Unknown page", "/projects/ecookbook/wiki/Unknown_page?parent=Another_page", :class => "wiki-page new"), '[[Unknown page|404]]' => link_to("404", "/projects/ecookbook/wiki/Unknown_page?parent=Another_page", :class => "wiki-page new"), '[[Unknown page#anchor]]' => link_to("Unknown page", "/projects/ecookbook/wiki/Unknown_page?parent=Another_page#anchor", :class => "wiki-page new"), '[[Unknown page#anchor|404]]' => link_to("404", "/projects/ecookbook/wiki/Unknown_page?parent=Another_page#anchor", :class => "wiki-page new"), } @project = Project.find(1) to_test.each do |text, result| assert_equal "<p>#{result}</p>", textilizable(WikiContent.new( :text => text, :page => page ), :text) end end def test_wiki_links_anchor_option_should_prepend_page_title_to_href to_test = { # link to a page '[[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"), # page that doesn't exist '[[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"), } @project = Project.find(1) to_test.each do |text, result| assert_equal "<p>#{result}</p>", textilizable(text, :wiki_links => :anchor) end end def test_html_tags to_test = { "<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>", # 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>", "HTML comment: <!-- no comments -->" => "<p>HTML comment: &lt;!-- no comments --&gt;</p>", "<!-- opening comment" => "<p>&lt;!-- opening comment</p>", # remove attributes except class "<pre class='foo'>some text</pre>" => "<pre class='foo'>some text</pre>", '<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>', "<pre onmouseover='alert(1)'>some text</pre>" => "<pre>some text</pre>", # 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>', } to_test.each { |text, result| assert_equal result, textilizable(text) } end def test_allowed_html_tags to_test = { "<pre>preformatted text</pre>" => "<pre>preformatted text</pre>", "<notextile>no *textile* formatting</notextile>" => "no *textile* formatting", "<notextile>this is <tag>a tag</tag></notextile>" => "this is &lt;tag&gt;a tag&lt;/tag&gt;" } to_test.each { |text, result| assert_equal result, textilizable(text) } end def test_pre_tags raw = <<-RAW Before <pre> <prepared-statement-cache-size>32</prepared-statement-cache-size> </pre> After RAW expected = <<-EXPECTED <p>Before</p> <pre> &lt;prepared-statement-cache-size&gt;32&lt;/prepared-statement-cache-size&gt; </pre> <p>After</p> EXPECTED assert_equal expected.gsub(%r{[\r\n\t]}, ''), textilizable(raw).gsub(%r{[\r\n\t]}, '') end def test_pre_content_should_not_parse_wiki_and_redmine_links raw = <<-RAW [[CookBook documentation]] #1 <pre> [[CookBook documentation]] #1 </pre> RAW 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)") expected = <<-EXPECTED <p>#{result1}</p> <p>#{result2}</p> <pre> [[CookBook documentation]] #1 </pre> EXPECTED @project = Project.find(1) assert_equal expected.gsub(%r{[\r\n\t]}, ''), textilizable(raw).gsub(%r{[\r\n\t]}, '') end def test_non_closing_pre_blocks_should_be_closed raw = <<-RAW <pre><code> RAW expected = <<-EXPECTED <pre><code> </code></pre> EXPECTED @project = Project.find(1) assert_equal expected.gsub(%r{[\r\n\t]}, ''), textilizable(raw).gsub(%r{[\r\n\t]}, '') end def test_syntax_highlight raw = <<-RAW <pre><code class="ruby"> # Some ruby code here </code></pre> RAW expected = <<-EXPECTED <pre><code class="ruby syntaxhl"><span class=\"CodeRay\"><span class="comment"># Some ruby code here</span></span> </code></pre> EXPECTED assert_equal expected.gsub(%r{[\r\n\t]}, ''), textilizable(raw).gsub(%r{[\r\n\t]}, '') end 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 def test_wiki_links_in_tables 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>" @project = Project.find(1) assert_equal "<table>#{result}</table>", textilizable(text).gsub(/[\t\n]/, '') end def test_text_formatting to_test = {'*_+bold, italic and underline+_*' => '<strong><em><ins>bold, italic and underline</ins></em></strong>', '(_text within parentheses_)' => '(<em>text within parentheses</em>)', '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', } to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text) } end def test_wiki_horizontal_rule assert_equal '<hr />', textilizable('---') assert_equal '<p>Dashes: ---</p>', textilizable('Dashes: ---') end 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 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>| assert_equal expected, textilizable(raw) end 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 def test_headings_in_wiki_single_page_export_should_be_prepended_with_page_title page = WikiPage.new( :title => 'Page Title', :wiki_id => 1 ) content = WikiContent.new( :text => 'h1. Some heading', :page => page ) 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 def test_table_of_content raw = <<-RAW {{toc}} h1. Title Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas sed libero. h2. Subtitle with a [[Wiki]] link Nullam commodo metus accumsan nulla. Curabitur lobortis dui id dolor. h2. Subtitle with [[Wiki|another Wiki]] link h2. Subtitle with %{color:red}red text% <pre> some code </pre> h3. Subtitle with *some* _modifiers_ h3. Subtitle with @inline code@ h1. Another title h3. An "Internet link":http://www.redmine.org/ inside subtitle h2. "Project Name !/attachments/1234/logo_small.gif! !/attachments/5678/logo_2.png!":/projects/projectname/issues RAW expected = '<ul class="toc">' + '<li><a href="#Title">Title</a>' + '<ul>' + '<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>' + '<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>' + '<li><a href="#Subtitle-with-inline-code">Subtitle with inline code</a></li>' + '</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>' + '</ul>' @project = Project.find(1) assert textilizable(raw).gsub("\n", "").include?(expected) end 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 def test_table_of_content_should_contain_included_page_headings raw = <<-RAW {{toc}} h1. Included {{include(Child_1)}} RAW expected = '<ul class="toc">' + '<li><a href="#Included">Included</a></li>' + '<li><a href="#Child-page-1">Child page 1</a></li>' + '</ul>' @project = Project.find(1) assert textilizable(raw).gsub("\n", "").include?(expected) end 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 if Object.const_defined?(:Redcarpet) 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 end 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 assert_match Regexp.new('<div class="contextual" id="section-4" title="Edit this section">' + '<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 assert_match Regexp.new('<div class="contextual" id="section-5" title="Edit this section">' + '<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 def test_default_formatter with_settings :text_formatting => 'unknown' do text = 'a *link*: http://www.example.net/' assert_equal '<p>a *link*: <a class="external" href="http://www.example.net/">http://www.example.net/</a></p>', textilizable(text) end end def test_due_date_distance_in_words to_test = { Date.today => 'Due in 0 days', Date.today + 1 => 'Due in 1 day', Date.today + 100 => 'Due in about 3 months', Date.today + 20000 => 'Due in over 54 years', Date.today - 1 => '1 day late', Date.today - 100 => 'about 3 months late', Date.today - 20000 => 'over 54 years late', } ::I18n.locale = :en to_test.each do |date, expected| assert_equal expected, due_date_distance_in_words(date) end end 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 end def test_link_to_user user = User.find(2) result = link_to("John Smith", "/users/2", :class => "user active") assert_equal result, link_to_user(user) end def test_link_to_user_should_not_link_to_locked_user 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? result = link_to("Dave2 Lopper2", "/users/5", :class => "user locked") assert_equal result, link_to_user(user) end end def test_link_to_user_should_not_link_to_anonymous user = User.anonymous assert user.anonymous? t = link_to_user(user) assert_equal ::I18n.t(:label_user_anonymous), t end 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') result = link_to("logo.gif", "/attachments/3/logo.gif", :class => "foo") assert_equal result, 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 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 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'}) result = link_to("eCookbook", "/projects/ecookbook/settings", :class => "project") assert_equal result, link_to_project(project, {:action => 'settings'}, :class => "project") end 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 def test_link_to_legacy_project_with_numerical_identifier_should_use_id # numeric identifier are no longer allowed Project.where(:id => 1).update_all(:identifier => 25) assert_equal '<a href="/projects/1">eCookbook</a>', link_to_project(Project.find(1)) end def test_principals_options_for_select_with_users User.current = nil 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 def test_principals_options_for_select_with_selected User.current = nil 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 def test_principals_options_for_select_with_users_and_groups User.current = nil 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 def test_principals_options_for_select_with_empty_collection assert_equal '', principals_options_for_select([]) end 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) assert_include '<option value="4">&lt;&lt; me &gt;&gt;</option>', principals_options_for_select(users) end 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 def test_image_tag_should_pick_the_default_image assert_match 'src="/images/image.png"', image_tag("image.png") end 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 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 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 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 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 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 def test_truncate_single_line str = "01234" result = truncate_single_line_raw("#{str}\n#{str}", 10) assert_equal "01234 0...", result assert !result.html_safe? result = truncate_single_line_raw("#{str}<&#>\n#{str}#{str}", 16) assert_equal "01234<&#> 012...", result 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) result = truncate_single_line_raw("#{ja}\n#{ja}\n#{ja}", 10) assert_equal "#{ja} #{ja}...", result assert !result.html_safe? end end