Chris@1115
|
1 # encoding: utf-8
|
Chris@1115
|
2 #
|
Chris@0
|
3 # Redmine - project management software
|
Chris@1295
|
4 # Copyright (C) 2006-2013 Jean-Philippe Lang
|
Chris@0
|
5 #
|
Chris@0
|
6 # This program is free software; you can redistribute it and/or
|
Chris@0
|
7 # modify it under the terms of the GNU General Public License
|
Chris@0
|
8 # as published by the Free Software Foundation; either version 2
|
Chris@0
|
9 # of the License, or (at your option) any later version.
|
Chris@441
|
10 #
|
Chris@0
|
11 # This program is distributed in the hope that it will be useful,
|
Chris@0
|
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
Chris@0
|
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
Chris@0
|
14 # GNU General Public License for more details.
|
Chris@441
|
15 #
|
Chris@0
|
16 # You should have received a copy of the GNU General Public License
|
Chris@0
|
17 # along with this program; if not, write to the Free Software
|
Chris@0
|
18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
Chris@0
|
19
|
Chris@119
|
20 require File.expand_path('../../../test_helper', __FILE__)
|
Chris@0
|
21
|
chris@22
|
22 class ApplicationHelperTest < ActionView::TestCase
|
Chris@1115
|
23 include ERB::Util
|
Chris@1295
|
24 include Rails.application.routes.url_helpers
|
Chris@1115
|
25
|
Chris@0
|
26 fixtures :projects, :roles, :enabled_modules, :users,
|
Chris@909
|
27 :repositories, :changesets,
|
Chris@909
|
28 :trackers, :issue_statuses, :issues, :versions, :documents,
|
Chris@909
|
29 :wikis, :wiki_pages, :wiki_contents,
|
Chris@909
|
30 :boards, :messages, :news,
|
Chris@909
|
31 :attachments, :enumerations
|
Chris@0
|
32
|
Chris@0
|
33 def setup
|
Chris@0
|
34 super
|
Chris@909
|
35 set_tmp_attachments_directory
|
Chris@0
|
36 end
|
chris@22
|
37
|
chris@22
|
38 context "#link_to_if_authorized" do
|
chris@22
|
39 context "authorized user" do
|
chris@22
|
40 should "be tested"
|
chris@22
|
41 end
|
Chris@441
|
42
|
chris@22
|
43 context "unauthorized user" do
|
chris@22
|
44 should "be tested"
|
chris@22
|
45 end
|
Chris@441
|
46
|
chris@22
|
47 should "allow using the :controller and :action for the target link" do
|
chris@22
|
48 User.current = User.find_by_login('admin')
|
chris@22
|
49
|
chris@22
|
50 @project = Issue.first.project # Used by helper
|
chris@22
|
51 response = link_to_if_authorized("By controller/action",
|
chris@22
|
52 {:controller => 'issues', :action => 'edit', :id => Issue.first.id})
|
chris@22
|
53 assert_match /href/, response
|
chris@22
|
54 end
|
Chris@441
|
55
|
chris@22
|
56 end
|
Chris@441
|
57
|
Chris@0
|
58 def test_auto_links
|
Chris@0
|
59 to_test = {
|
Chris@0
|
60 'http://foo.bar' => '<a class="external" href="http://foo.bar">http://foo.bar</a>',
|
Chris@0
|
61 'http://foo.bar/~user' => '<a class="external" href="http://foo.bar/~user">http://foo.bar/~user</a>',
|
Chris@0
|
62 'http://foo.bar.' => '<a class="external" href="http://foo.bar">http://foo.bar</a>.',
|
Chris@0
|
63 'https://foo.bar.' => '<a class="external" href="https://foo.bar">https://foo.bar</a>.',
|
Chris@0
|
64 'This is a link: http://foo.bar.' => 'This is a link: <a class="external" href="http://foo.bar">http://foo.bar</a>.',
|
Chris@0
|
65 'A link (eg. http://foo.bar).' => 'A link (eg. <a class="external" href="http://foo.bar">http://foo.bar</a>).',
|
Chris@0
|
66 '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>.',
|
Chris@0
|
67 'http://www.foo.bar/Test_(foobar)' => '<a class="external" href="http://www.foo.bar/Test_(foobar)">http://www.foo.bar/Test_(foobar)</a>',
|
Chris@0
|
68 '(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>)',
|
Chris@0
|
69 '(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>)',
|
Chris@0
|
70 '(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>).',
|
Chris@0
|
71 '(see "inline link":http://www.foo.bar/Test_(foobar))' => '(see <a href="http://www.foo.bar/Test_(foobar)" class="external">inline link</a>)',
|
Chris@0
|
72 '(see "inline link":http://www.foo.bar/Test)' => '(see <a href="http://www.foo.bar/Test" class="external">inline link</a>)',
|
Chris@0
|
73 '(see "inline link":http://www.foo.bar/Test).' => '(see <a href="http://www.foo.bar/Test" class="external">inline link</a>).',
|
Chris@0
|
74 'www.foo.bar' => '<a class="external" href="http://www.foo.bar">www.foo.bar</a>',
|
Chris@0
|
75 'http://foo.bar/page?p=1&t=z&s=' => '<a class="external" href="http://foo.bar/page?p=1&t=z&s=">http://foo.bar/page?p=1&t=z&s=</a>',
|
Chris@0
|
76 'http://foo.bar/page#125' => '<a class="external" href="http://foo.bar/page#125">http://foo.bar/page#125</a>',
|
Chris@0
|
77 'http://foo@www.bar.com' => '<a class="external" href="http://foo@www.bar.com">http://foo@www.bar.com</a>',
|
Chris@0
|
78 'http://foo:bar@www.bar.com' => '<a class="external" href="http://foo:bar@www.bar.com">http://foo:bar@www.bar.com</a>',
|
Chris@0
|
79 'ftp://foo.bar' => '<a class="external" href="ftp://foo.bar">ftp://foo.bar</a>',
|
Chris@0
|
80 'ftps://foo.bar' => '<a class="external" href="ftps://foo.bar">ftps://foo.bar</a>',
|
Chris@0
|
81 'sftp://foo.bar' => '<a class="external" href="sftp://foo.bar">sftp://foo.bar</a>',
|
Chris@0
|
82 # two exclamation marks
|
Chris@0
|
83 '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>',
|
Chris@0
|
84 # escaping
|
Chris@1115
|
85 'http://foo"bar' => '<a class="external" href="http://foo"bar">http://foo"bar</a>',
|
chris@37
|
86 # wrap in angle brackets
|
Chris@1295
|
87 '<http://foo.bar>' => '<<a class="external" href="http://foo.bar">http://foo.bar</a>>',
|
Chris@1295
|
88 # invalid urls
|
Chris@1295
|
89 'http://' => 'http://',
|
Chris@1295
|
90 'www.' => 'www.',
|
Chris@1295
|
91 'test-www.bar.com' => 'test-www.bar.com',
|
Chris@0
|
92 }
|
Chris@0
|
93 to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text) }
|
Chris@0
|
94 end
|
Chris@441
|
95
|
Chris@1115
|
96 if 'ruby'.respond_to?(:encoding)
|
Chris@1115
|
97 def test_auto_links_with_non_ascii_characters
|
Chris@1115
|
98 to_test = {
|
Chris@1115
|
99 'http://foo.bar/тест' => '<a class="external" href="http://foo.bar/тест">http://foo.bar/тест</a>'
|
Chris@1115
|
100 }
|
Chris@1115
|
101 to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text) }
|
Chris@1115
|
102 end
|
Chris@1115
|
103 else
|
Chris@1115
|
104 puts 'Skipping test_auto_links_with_non_ascii_characters, unsupported ruby version'
|
Chris@1115
|
105 end
|
Chris@1115
|
106
|
Chris@0
|
107 def test_auto_mailto
|
Chris@1295
|
108 to_test = {
|
Chris@1295
|
109 'test@foo.bar' => '<a class="email" href="mailto:test@foo.bar">test@foo.bar</a>',
|
Chris@1295
|
110 'test@www.foo.bar' => '<a class="email" href="mailto:test@www.foo.bar">test@www.foo.bar</a>',
|
Chris@1295
|
111 }
|
Chris@1295
|
112 to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text) }
|
Chris@0
|
113 end
|
Chris@441
|
114
|
Chris@0
|
115 def test_inline_images
|
Chris@0
|
116 to_test = {
|
Chris@0
|
117 '!http://foo.bar/image.jpg!' => '<img src="http://foo.bar/image.jpg" alt="" />',
|
Chris@0
|
118 'floating !>http://foo.bar/image.jpg!' => 'floating <div style="float:right"><img src="http://foo.bar/image.jpg" alt="" /></div>',
|
Chris@0
|
119 'with class !(some-class)http://foo.bar/image.jpg!' => 'with class <img src="http://foo.bar/image.jpg" class="some-class" alt="" />',
|
Chris@1115
|
120 '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="" />',
|
Chris@0
|
121 '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" />',
|
Chris@0
|
122 '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 "title"" alt="This is a double-quoted "title"" />',
|
Chris@0
|
123 }
|
Chris@0
|
124 to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text) }
|
Chris@0
|
125 end
|
Chris@441
|
126
|
Chris@0
|
127 def test_inline_images_inside_tags
|
Chris@0
|
128 raw = <<-RAW
|
Chris@0
|
129 h1. !foo.png! Heading
|
Chris@0
|
130
|
Chris@0
|
131 Centered image:
|
Chris@0
|
132
|
Chris@0
|
133 p=. !bar.gif!
|
Chris@0
|
134 RAW
|
Chris@0
|
135
|
Chris@0
|
136 assert textilizable(raw).include?('<img src="foo.png" alt="" />')
|
Chris@0
|
137 assert textilizable(raw).include?('<img src="bar.gif" alt="" />')
|
Chris@0
|
138 end
|
Chris@441
|
139
|
Chris@0
|
140 def test_attached_images
|
Chris@0
|
141 to_test = {
|
Chris@1295
|
142 'Inline image: !logo.gif!' => 'Inline image: <img src="/attachments/download/3/logo.gif" title="This is a logo" alt="This is a logo" />',
|
Chris@1295
|
143 'Inline image: !logo.GIF!' => 'Inline image: <img src="/attachments/download/3/logo.gif" title="This is a logo" alt="This is a logo" />',
|
Chris@0
|
144 'No match: !ogo.gif!' => 'No match: <img src="ogo.gif" alt="" />',
|
Chris@0
|
145 'No match: !ogo.GIF!' => 'No match: <img src="ogo.GIF" alt="" />',
|
Chris@0
|
146 # link image
|
Chris@1295
|
147 '!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>',
|
Chris@0
|
148 }
|
Chris@1295
|
149 attachments = Attachment.all
|
Chris@0
|
150 to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text, :attachments => attachments) }
|
Chris@0
|
151 end
|
Chris@441
|
152
|
Chris@909
|
153 def test_attached_images_filename_extension
|
Chris@909
|
154 set_tmp_attachments_directory
|
Chris@909
|
155 a1 = Attachment.new(
|
Chris@909
|
156 :container => Issue.find(1),
|
Chris@909
|
157 :file => mock_file_with_options({:original_filename => "testtest.JPG"}),
|
Chris@909
|
158 :author => User.find(1))
|
Chris@909
|
159 assert a1.save
|
Chris@909
|
160 assert_equal "testtest.JPG", a1.filename
|
Chris@909
|
161 assert_equal "image/jpeg", a1.content_type
|
Chris@909
|
162 assert a1.image?
|
Chris@909
|
163
|
Chris@909
|
164 a2 = Attachment.new(
|
Chris@909
|
165 :container => Issue.find(1),
|
Chris@909
|
166 :file => mock_file_with_options({:original_filename => "testtest.jpeg"}),
|
Chris@909
|
167 :author => User.find(1))
|
Chris@909
|
168 assert a2.save
|
Chris@909
|
169 assert_equal "testtest.jpeg", a2.filename
|
Chris@909
|
170 assert_equal "image/jpeg", a2.content_type
|
Chris@909
|
171 assert a2.image?
|
Chris@909
|
172
|
Chris@909
|
173 a3 = Attachment.new(
|
Chris@909
|
174 :container => Issue.find(1),
|
Chris@909
|
175 :file => mock_file_with_options({:original_filename => "testtest.JPE"}),
|
Chris@909
|
176 :author => User.find(1))
|
Chris@909
|
177 assert a3.save
|
Chris@909
|
178 assert_equal "testtest.JPE", a3.filename
|
Chris@909
|
179 assert_equal "image/jpeg", a3.content_type
|
Chris@909
|
180 assert a3.image?
|
Chris@909
|
181
|
Chris@909
|
182 a4 = Attachment.new(
|
Chris@909
|
183 :container => Issue.find(1),
|
Chris@909
|
184 :file => mock_file_with_options({:original_filename => "Testtest.BMP"}),
|
Chris@909
|
185 :author => User.find(1))
|
Chris@909
|
186 assert a4.save
|
Chris@909
|
187 assert_equal "Testtest.BMP", a4.filename
|
Chris@909
|
188 assert_equal "image/x-ms-bmp", a4.content_type
|
Chris@909
|
189 assert a4.image?
|
Chris@909
|
190
|
Chris@909
|
191 to_test = {
|
Chris@909
|
192 'Inline image: !testtest.jpg!' =>
|
Chris@1295
|
193 'Inline image: <img src="/attachments/download/' + a1.id.to_s + '/testtest.JPG" alt="" />',
|
Chris@909
|
194 'Inline image: !testtest.jpeg!' =>
|
Chris@1295
|
195 'Inline image: <img src="/attachments/download/' + a2.id.to_s + '/testtest.jpeg" alt="" />',
|
Chris@909
|
196 'Inline image: !testtest.jpe!' =>
|
Chris@1295
|
197 'Inline image: <img src="/attachments/download/' + a3.id.to_s + '/testtest.JPE" alt="" />',
|
Chris@909
|
198 'Inline image: !testtest.bmp!' =>
|
Chris@1295
|
199 'Inline image: <img src="/attachments/download/' + a4.id.to_s + '/Testtest.BMP" alt="" />',
|
Chris@909
|
200 }
|
Chris@909
|
201
|
Chris@909
|
202 attachments = [a1, a2, a3, a4]
|
Chris@909
|
203 to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text, :attachments => attachments) }
|
Chris@909
|
204 end
|
Chris@909
|
205
|
Chris@909
|
206 def test_attached_images_should_read_later
|
Chris@1115
|
207 set_fixtures_attachments_directory
|
Chris@909
|
208 a1 = Attachment.find(16)
|
Chris@909
|
209 assert_equal "testfile.png", a1.filename
|
Chris@909
|
210 assert a1.readable?
|
Chris@909
|
211 assert (! a1.visible?(User.anonymous))
|
Chris@909
|
212 assert a1.visible?(User.find(2))
|
Chris@909
|
213 a2 = Attachment.find(17)
|
Chris@909
|
214 assert_equal "testfile.PNG", a2.filename
|
Chris@909
|
215 assert a2.readable?
|
Chris@909
|
216 assert (! a2.visible?(User.anonymous))
|
Chris@909
|
217 assert a2.visible?(User.find(2))
|
Chris@909
|
218 assert a1.created_on < a2.created_on
|
Chris@909
|
219
|
Chris@909
|
220 to_test = {
|
Chris@909
|
221 'Inline image: !testfile.png!' =>
|
Chris@1295
|
222 'Inline image: <img src="/attachments/download/' + a2.id.to_s + '/testfile.PNG" alt="" />',
|
Chris@909
|
223 'Inline image: !Testfile.PNG!' =>
|
Chris@1295
|
224 'Inline image: <img src="/attachments/download/' + a2.id.to_s + '/testfile.PNG" alt="" />',
|
Chris@909
|
225 }
|
Chris@909
|
226 attachments = [a1, a2]
|
Chris@909
|
227 to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text, :attachments => attachments) }
|
Chris@909
|
228 set_tmp_attachments_directory
|
Chris@909
|
229 end
|
Chris@909
|
230
|
Chris@0
|
231 def test_textile_external_links
|
Chris@0
|
232 to_test = {
|
Chris@0
|
233 'This is a "link":http://foo.bar' => 'This is a <a href="http://foo.bar" class="external">link</a>',
|
Chris@0
|
234 'This is an intern "link":/foo/bar' => 'This is an intern <a href="/foo/bar">link</a>',
|
Chris@0
|
235 '"link (Link title)":http://foo.bar' => '<a href="http://foo.bar" title="Link title" class="external">link</a>',
|
Chris@0
|
236 '"link (Link title with "double-quotes")":http://foo.bar' => '<a href="http://foo.bar" title="Link title with "double-quotes"" class="external">link</a>',
|
Chris@0
|
237 "This is not a \"Link\":\n\nAnother paragraph" => "This is not a \"Link\":</p>\n\n\n\t<p>Another paragraph",
|
Chris@0
|
238 # no multiline link text
|
Chris@0
|
239 "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",
|
Chris@0
|
240 # mailto link
|
Chris@0
|
241 "\"system administrator\":mailto:sysadmin@example.com?subject=redmine%20permissions" => "<a href=\"mailto:sysadmin@example.com?subject=redmine%20permissions\">system administrator</a>",
|
Chris@0
|
242 # two exclamation marks
|
Chris@0
|
243 '"a link":http://example.net/path!602815048C7B5C20!302.html' => '<a href="http://example.net/path!602815048C7B5C20!302.html" class="external">a link</a>',
|
Chris@0
|
244 # escaping
|
Chris@0
|
245 '"test":http://foo"bar' => '<a href="http://foo"bar" class="external">test</a>',
|
Chris@0
|
246 }
|
Chris@0
|
247 to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text) }
|
Chris@0
|
248 end
|
Chris@119
|
249
|
Chris@1115
|
250 if 'ruby'.respond_to?(:encoding)
|
Chris@1115
|
251 def test_textile_external_links_with_non_ascii_characters
|
Chris@1115
|
252 to_test = {
|
Chris@1115
|
253 'This is a "link":http://foo.bar/тест' => 'This is a <a href="http://foo.bar/тест" class="external">link</a>'
|
Chris@1115
|
254 }
|
Chris@1115
|
255 to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text) }
|
Chris@1115
|
256 end
|
Chris@1115
|
257 else
|
Chris@1115
|
258 puts 'Skipping test_textile_external_links_with_non_ascii_characters, unsupported ruby version'
|
Chris@1115
|
259 end
|
Chris@1115
|
260
|
Chris@0
|
261 def test_redmine_links
|
Chris@441
|
262 issue_link = link_to('#3', {:controller => 'issues', :action => 'show', :id => 3},
|
Chris@1295
|
263 :class => Issue.find(3).css_classes, :title => 'Error 281 when updating a recipe (New)')
|
Chris@1115
|
264 note_link = link_to('#3', {:controller => 'issues', :action => 'show', :id => 3, :anchor => 'note-14'},
|
Chris@1295
|
265 :class => Issue.find(3).css_classes, :title => 'Error 281 when updating a recipe (New)')
|
Chris@441
|
266
|
Chris@1295
|
267 revision_link = link_to('r1', {:controller => 'repositories', :action => 'revision', :id => 'ecookbook', :rev => 1},
|
Chris@1295
|
268 :class => 'changeset', :title => 'My very first commit do not escaping #<>&')
|
Chris@1295
|
269 revision_link2 = link_to('r2', {:controller => 'repositories', :action => 'revision', :id => 'ecookbook', :rev => 2},
|
Chris@0
|
270 :class => 'changeset', :title => 'This commit fixes #1, #2 and references #1 & #3')
|
Chris@441
|
271
|
Chris@1295
|
272 changeset_link2 = link_to('691322a8eb01e11fd7',
|
Chris@1295
|
273 {:controller => 'repositories', :action => 'revision', :id => 'ecookbook', :rev => 1},
|
Chris@1295
|
274 :class => 'changeset', :title => 'My very first commit do not escaping #<>&')
|
Chris@1295
|
275
|
Chris@0
|
276 document_link = link_to('Test document', {:controller => 'documents', :action => 'show', :id => 1},
|
Chris@0
|
277 :class => 'document')
|
Chris@441
|
278
|
Chris@0
|
279 version_link = link_to('1.0', {:controller => 'versions', :action => 'show', :id => 2},
|
Chris@0
|
280 :class => 'version')
|
Chris@0
|
281
|
Chris@909
|
282 board_url = {:controller => 'boards', :action => 'show', :id => 2, :project_id => 'ecookbook'}
|
Chris@909
|
283
|
Chris@0
|
284 message_url = {:controller => 'messages', :action => 'show', :board_id => 1, :id => 4}
|
Chris@909
|
285
|
Chris@909
|
286 news_url = {:controller => 'news', :action => 'show', :id => 1}
|
Chris@441
|
287
|
Chris@0
|
288 project_url = {:controller => 'projects', :action => 'show', :id => 'subproject1'}
|
Chris@441
|
289
|
Chris@1115
|
290 source_url = '/projects/ecookbook/repository/entry/some/file'
|
Chris@1115
|
291 source_url_with_rev = '/projects/ecookbook/repository/revisions/52/entry/some/file'
|
Chris@1115
|
292 source_url_with_ext = '/projects/ecookbook/repository/entry/some/file.ext'
|
Chris@1115
|
293 source_url_with_rev_and_ext = '/projects/ecookbook/repository/revisions/52/entry/some/file.ext'
|
Chris@1295
|
294 source_url_with_branch = '/projects/ecookbook/repository/revisions/branch/entry/some/file'
|
Chris@1115
|
295
|
Chris@1115
|
296 export_url = '/projects/ecookbook/repository/raw/some/file'
|
Chris@1115
|
297 export_url_with_rev = '/projects/ecookbook/repository/revisions/52/raw/some/file'
|
Chris@1115
|
298 export_url_with_ext = '/projects/ecookbook/repository/raw/some/file.ext'
|
Chris@1115
|
299 export_url_with_rev_and_ext = '/projects/ecookbook/repository/revisions/52/raw/some/file.ext'
|
Chris@1295
|
300 export_url_with_branch = '/projects/ecookbook/repository/revisions/branch/raw/some/file'
|
Chris@441
|
301
|
Chris@0
|
302 to_test = {
|
Chris@0
|
303 # tickets
|
Chris@0
|
304 '#3, [#3], (#3) and #3.' => "#{issue_link}, [#{issue_link}], (#{issue_link}) and #{issue_link}.",
|
Chris@1115
|
305 # ticket notes
|
Chris@1115
|
306 '#3-14' => note_link,
|
Chris@1115
|
307 '#3#note-14' => note_link,
|
Chris@1115
|
308 # should not ignore leading zero
|
Chris@1115
|
309 '#03' => '#03',
|
Chris@0
|
310 # changesets
|
Chris@1295
|
311 'r1' => revision_link,
|
Chris@1295
|
312 'r1.' => "#{revision_link}.",
|
Chris@1295
|
313 'r1, r2' => "#{revision_link}, #{revision_link2}",
|
Chris@1295
|
314 'r1,r2' => "#{revision_link},#{revision_link2}",
|
Chris@1295
|
315 'commit:691322a8eb01e11fd7' => changeset_link2,
|
Chris@0
|
316 # documents
|
Chris@0
|
317 'document#1' => document_link,
|
Chris@0
|
318 'document:"Test document"' => document_link,
|
Chris@0
|
319 # versions
|
Chris@0
|
320 'version#2' => version_link,
|
Chris@0
|
321 'version:1.0' => version_link,
|
Chris@0
|
322 'version:"1.0"' => version_link,
|
Chris@0
|
323 # source
|
Chris@1115
|
324 'source:some/file' => link_to('source:some/file', source_url, :class => 'source'),
|
Chris@0
|
325 'source:/some/file' => link_to('source:/some/file', source_url, :class => 'source'),
|
Chris@0
|
326 'source:/some/file.' => link_to('source:/some/file', source_url, :class => 'source') + ".",
|
Chris@0
|
327 'source:/some/file.ext.' => link_to('source:/some/file.ext', source_url_with_ext, :class => 'source') + ".",
|
Chris@0
|
328 'source:/some/file. ' => link_to('source:/some/file', source_url, :class => 'source') + ".",
|
Chris@0
|
329 'source:/some/file.ext. ' => link_to('source:/some/file.ext', source_url_with_ext, :class => 'source') + ".",
|
Chris@0
|
330 'source:/some/file, ' => link_to('source:/some/file', source_url, :class => 'source') + ",",
|
Chris@1115
|
331 'source:/some/file@52' => link_to('source:/some/file@52', source_url_with_rev, :class => 'source'),
|
Chris@1295
|
332 'source:/some/file@branch' => link_to('source:/some/file@branch', source_url_with_branch, :class => 'source'),
|
Chris@1115
|
333 'source:/some/file.ext@52' => link_to('source:/some/file.ext@52', source_url_with_rev_and_ext, :class => 'source'),
|
Chris@1115
|
334 'source:/some/file#L110' => link_to('source:/some/file#L110', source_url + "#L110", :class => 'source'),
|
Chris@1115
|
335 'source:/some/file.ext#L110' => link_to('source:/some/file.ext#L110', source_url_with_ext + "#L110", :class => 'source'),
|
Chris@1115
|
336 'source:/some/file@52#L110' => link_to('source:/some/file@52#L110', source_url_with_rev + "#L110", :class => 'source'),
|
Chris@1115
|
337 # export
|
Chris@1115
|
338 'export:/some/file' => link_to('export:/some/file', export_url, :class => 'source download'),
|
Chris@1115
|
339 'export:/some/file.ext' => link_to('export:/some/file.ext', export_url_with_ext, :class => 'source download'),
|
Chris@1115
|
340 'export:/some/file@52' => link_to('export:/some/file@52', export_url_with_rev, :class => 'source download'),
|
Chris@1115
|
341 'export:/some/file.ext@52' => link_to('export:/some/file.ext@52', export_url_with_rev_and_ext, :class => 'source download'),
|
Chris@1295
|
342 'export:/some/file@branch' => link_to('export:/some/file@branch', export_url_with_branch, :class => 'source download'),
|
Chris@909
|
343 # forum
|
Chris@909
|
344 'forum#2' => link_to('Discussion', board_url, :class => 'board'),
|
Chris@909
|
345 'forum:Discussion' => link_to('Discussion', board_url, :class => 'board'),
|
Chris@0
|
346 # message
|
Chris@0
|
347 'message#4' => link_to('Post 2', message_url, :class => 'message'),
|
Chris@210
|
348 'message#5' => link_to('RE: post 2', message_url.merge(:anchor => 'message-5', :r => 5), :class => 'message'),
|
Chris@909
|
349 # news
|
Chris@909
|
350 'news#1' => link_to('eCookbook first release !', news_url, :class => 'news'),
|
Chris@909
|
351 'news:"eCookbook first release !"' => link_to('eCookbook first release !', news_url, :class => 'news'),
|
Chris@0
|
352 # project
|
Chris@0
|
353 'project#3' => link_to('eCookbook Subproject 1', project_url, :class => 'project'),
|
Chris@0
|
354 'project:subproject1' => link_to('eCookbook Subproject 1', project_url, :class => 'project'),
|
Chris@0
|
355 'project:"eCookbook subProject 1"' => link_to('eCookbook Subproject 1', project_url, :class => 'project'),
|
Chris@0
|
356 # not found
|
Chris@0
|
357 '#0123456789' => '#0123456789',
|
Chris@0
|
358 # invalid expressions
|
Chris@0
|
359 'source:' => 'source:',
|
Chris@0
|
360 # url hash
|
Chris@0
|
361 "http://foo.bar/FAQ#3" => '<a class="external" href="http://foo.bar/FAQ#3">http://foo.bar/FAQ#3</a>',
|
Chris@0
|
362 }
|
Chris@0
|
363 @project = Project.find(1)
|
Chris@0
|
364 to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text), "#{text} failed" }
|
Chris@0
|
365 end
|
Chris@441
|
366
|
Chris@1294
|
367 def test_redmine_links_with_a_different_project_before_current_project
|
Chris@1294
|
368 vp1 = Version.generate!(:project_id => 1, :name => '1.4.4')
|
Chris@1294
|
369 vp3 = Version.generate!(:project_id => 3, :name => '1.4.4')
|
Chris@1294
|
370
|
Chris@1294
|
371 @project = Project.find(3)
|
Chris@1294
|
372 assert_equal %(<p><a href="/versions/#{vp1.id}" class="version">1.4.4</a> <a href="/versions/#{vp3.id}" class="version">1.4.4</a></p>),
|
Chris@1294
|
373 textilizable("ecookbook:version:1.4.4 version:1.4.4")
|
Chris@1294
|
374 end
|
Chris@1294
|
375
|
Chris@1115
|
376 def test_escaped_redmine_links_should_not_be_parsed
|
Chris@1115
|
377 to_test = [
|
Chris@1115
|
378 '#3.',
|
Chris@1115
|
379 '#3-14.',
|
Chris@1115
|
380 '#3#-note14.',
|
Chris@1115
|
381 'r1',
|
Chris@1115
|
382 'document#1',
|
Chris@1115
|
383 'document:"Test document"',
|
Chris@1115
|
384 'version#2',
|
Chris@1115
|
385 'version:1.0',
|
Chris@1115
|
386 'version:"1.0"',
|
Chris@1115
|
387 'source:/some/file'
|
Chris@1115
|
388 ]
|
Chris@1115
|
389 @project = Project.find(1)
|
Chris@1115
|
390 to_test.each { |text| assert_equal "<p>#{text}</p>", textilizable("!" + text), "#{text} failed" }
|
Chris@1115
|
391 end
|
Chris@1115
|
392
|
Chris@210
|
393 def test_cross_project_redmine_links
|
Chris@210
|
394 source_link = link_to('ecookbook:source:/some/file', {:controller => 'repositories', :action => 'entry', :id => 'ecookbook', :path => ['some', 'file']},
|
Chris@210
|
395 :class => 'source')
|
Chris@441
|
396
|
Chris@210
|
397 changeset_link = link_to('ecookbook:r2', {:controller => 'repositories', :action => 'revision', :id => 'ecookbook', :rev => 2},
|
Chris@210
|
398 :class => 'changeset', :title => 'This commit fixes #1, #2 and references #1 & #3')
|
Chris@441
|
399
|
Chris@210
|
400 to_test = {
|
Chris@210
|
401 # documents
|
Chris@210
|
402 'document:"Test document"' => 'document:"Test document"',
|
Chris@210
|
403 'ecookbook:document:"Test document"' => '<a href="/documents/1" class="document">Test document</a>',
|
Chris@210
|
404 'invalid:document:"Test document"' => 'invalid:document:"Test document"',
|
Chris@210
|
405 # versions
|
Chris@210
|
406 'version:"1.0"' => 'version:"1.0"',
|
Chris@909
|
407 'ecookbook:version:"1.0"' => '<a href="/versions/2" class="version">1.0</a>',
|
Chris@210
|
408 'invalid:version:"1.0"' => 'invalid:version:"1.0"',
|
Chris@210
|
409 # changeset
|
Chris@210
|
410 'r2' => 'r2',
|
Chris@210
|
411 'ecookbook:r2' => changeset_link,
|
Chris@210
|
412 'invalid:r2' => 'invalid:r2',
|
Chris@210
|
413 # source
|
Chris@210
|
414 'source:/some/file' => 'source:/some/file',
|
Chris@210
|
415 'ecookbook:source:/some/file' => source_link,
|
Chris@210
|
416 'invalid:source:/some/file' => 'invalid:source:/some/file',
|
Chris@210
|
417 }
|
Chris@210
|
418 @project = Project.find(3)
|
Chris@210
|
419 to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text), "#{text} failed" }
|
Chris@210
|
420 end
|
Chris@119
|
421
|
Chris@1115
|
422 def test_multiple_repositories_redmine_links
|
Chris@1294
|
423 svn = Repository::Subversion.create!(:project_id => 1, :identifier => 'svn_repo-1', :url => 'file:///foo/hg')
|
Chris@1115
|
424 Changeset.create!(:repository => svn, :committed_on => Time.now, :revision => '123')
|
Chris@1115
|
425 hg = Repository::Mercurial.create!(:project_id => 1, :identifier => 'hg1', :url => '/foo/hg')
|
Chris@1115
|
426 Changeset.create!(:repository => hg, :committed_on => Time.now, :revision => '123', :scmid => 'abcd')
|
Chris@1115
|
427
|
Chris@1115
|
428 changeset_link = link_to('r2', {:controller => 'repositories', :action => 'revision', :id => 'ecookbook', :rev => 2},
|
Chris@1115
|
429 :class => 'changeset', :title => 'This commit fixes #1, #2 and references #1 & #3')
|
Chris@1294
|
430 svn_changeset_link = link_to('svn_repo-1|r123', {:controller => 'repositories', :action => 'revision', :id => 'ecookbook', :repository_id => 'svn_repo-1', :rev => 123},
|
Chris@1115
|
431 :class => 'changeset', :title => '')
|
Chris@1115
|
432 hg_changeset_link = link_to('hg1|abcd', {:controller => 'repositories', :action => 'revision', :id => 'ecookbook', :repository_id => 'hg1', :rev => 'abcd'},
|
Chris@1115
|
433 :class => 'changeset', :title => '')
|
Chris@1115
|
434
|
Chris@1115
|
435 source_link = link_to('source:some/file', {:controller => 'repositories', :action => 'entry', :id => 'ecookbook', :path => ['some', 'file']}, :class => 'source')
|
Chris@1115
|
436 hg_source_link = link_to('source:hg1|some/file', {:controller => 'repositories', :action => 'entry', :id => 'ecookbook', :repository_id => 'hg1', :path => ['some', 'file']}, :class => 'source')
|
Chris@1115
|
437
|
Chris@1115
|
438 to_test = {
|
Chris@1115
|
439 'r2' => changeset_link,
|
Chris@1294
|
440 'svn_repo-1|r123' => svn_changeset_link,
|
Chris@1115
|
441 'invalid|r123' => 'invalid|r123',
|
Chris@1115
|
442 'commit:hg1|abcd' => hg_changeset_link,
|
Chris@1115
|
443 'commit:invalid|abcd' => 'commit:invalid|abcd',
|
Chris@1115
|
444 # source
|
Chris@1115
|
445 'source:some/file' => source_link,
|
Chris@1115
|
446 'source:hg1|some/file' => hg_source_link,
|
Chris@1115
|
447 'source:invalid|some/file' => 'source:invalid|some/file',
|
Chris@1115
|
448 }
|
Chris@1115
|
449
|
Chris@1115
|
450 @project = Project.find(1)
|
Chris@1115
|
451 to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text), "#{text} failed" }
|
Chris@1115
|
452 end
|
Chris@1115
|
453
|
Chris@1115
|
454 def test_cross_project_multiple_repositories_redmine_links
|
Chris@1115
|
455 svn = Repository::Subversion.create!(:project_id => 1, :identifier => 'svn1', :url => 'file:///foo/hg')
|
Chris@1115
|
456 Changeset.create!(:repository => svn, :committed_on => Time.now, :revision => '123')
|
Chris@1115
|
457 hg = Repository::Mercurial.create!(:project_id => 1, :identifier => 'hg1', :url => '/foo/hg')
|
Chris@1115
|
458 Changeset.create!(:repository => hg, :committed_on => Time.now, :revision => '123', :scmid => 'abcd')
|
Chris@1115
|
459
|
Chris@1115
|
460 changeset_link = link_to('ecookbook:r2', {:controller => 'repositories', :action => 'revision', :id => 'ecookbook', :rev => 2},
|
Chris@1115
|
461 :class => 'changeset', :title => 'This commit fixes #1, #2 and references #1 & #3')
|
Chris@1115
|
462 svn_changeset_link = link_to('ecookbook:svn1|r123', {:controller => 'repositories', :action => 'revision', :id => 'ecookbook', :repository_id => 'svn1', :rev => 123},
|
Chris@1115
|
463 :class => 'changeset', :title => '')
|
Chris@1115
|
464 hg_changeset_link = link_to('ecookbook:hg1|abcd', {:controller => 'repositories', :action => 'revision', :id => 'ecookbook', :repository_id => 'hg1', :rev => 'abcd'},
|
Chris@1115
|
465 :class => 'changeset', :title => '')
|
Chris@1115
|
466
|
Chris@1115
|
467 source_link = link_to('ecookbook:source:some/file', {:controller => 'repositories', :action => 'entry', :id => 'ecookbook', :path => ['some', 'file']}, :class => 'source')
|
Chris@1115
|
468 hg_source_link = link_to('ecookbook:source:hg1|some/file', {:controller => 'repositories', :action => 'entry', :id => 'ecookbook', :repository_id => 'hg1', :path => ['some', 'file']}, :class => 'source')
|
Chris@1115
|
469
|
Chris@1115
|
470 to_test = {
|
Chris@1115
|
471 'ecookbook:r2' => changeset_link,
|
Chris@1115
|
472 'ecookbook:svn1|r123' => svn_changeset_link,
|
Chris@1115
|
473 'ecookbook:invalid|r123' => 'ecookbook:invalid|r123',
|
Chris@1115
|
474 'ecookbook:commit:hg1|abcd' => hg_changeset_link,
|
Chris@1115
|
475 'ecookbook:commit:invalid|abcd' => 'ecookbook:commit:invalid|abcd',
|
Chris@1115
|
476 'invalid:commit:invalid|abcd' => 'invalid:commit:invalid|abcd',
|
Chris@1115
|
477 # source
|
Chris@1115
|
478 'ecookbook:source:some/file' => source_link,
|
Chris@1115
|
479 'ecookbook:source:hg1|some/file' => hg_source_link,
|
Chris@1115
|
480 'ecookbook:source:invalid|some/file' => 'ecookbook:source:invalid|some/file',
|
Chris@1115
|
481 'invalid:source:invalid|some/file' => 'invalid:source:invalid|some/file',
|
Chris@1115
|
482 }
|
Chris@1115
|
483
|
Chris@1115
|
484 @project = Project.find(3)
|
Chris@1115
|
485 to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text), "#{text} failed" }
|
Chris@1115
|
486 end
|
Chris@1115
|
487
|
Chris@119
|
488 def test_redmine_links_git_commit
|
Chris@119
|
489 changeset_link = link_to('abcd',
|
Chris@119
|
490 {
|
Chris@119
|
491 :controller => 'repositories',
|
Chris@119
|
492 :action => 'revision',
|
Chris@119
|
493 :id => 'subproject1',
|
Chris@119
|
494 :rev => 'abcd',
|
Chris@119
|
495 },
|
Chris@119
|
496 :class => 'changeset', :title => 'test commit')
|
Chris@119
|
497 to_test = {
|
Chris@119
|
498 'commit:abcd' => changeset_link,
|
Chris@119
|
499 }
|
Chris@119
|
500 @project = Project.find(3)
|
Chris@119
|
501 r = Repository::Git.create!(:project => @project, :url => '/tmp/test/git')
|
Chris@119
|
502 assert r
|
Chris@119
|
503 c = Changeset.new(:repository => r,
|
Chris@119
|
504 :committed_on => Time.now,
|
Chris@119
|
505 :revision => 'abcd',
|
Chris@119
|
506 :scmid => 'abcd',
|
Chris@119
|
507 :comments => 'test commit')
|
Chris@119
|
508 assert( c.save )
|
Chris@119
|
509 to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text) }
|
Chris@119
|
510 end
|
Chris@119
|
511
|
Chris@119
|
512 # TODO: Bazaar commit id contains mail address, so it contains '@' and '_'.
|
Chris@119
|
513 def test_redmine_links_darcs_commit
|
Chris@119
|
514 changeset_link = link_to('20080308225258-98289-abcd456efg.gz',
|
Chris@119
|
515 {
|
Chris@119
|
516 :controller => 'repositories',
|
Chris@119
|
517 :action => 'revision',
|
Chris@119
|
518 :id => 'subproject1',
|
Chris@119
|
519 :rev => '123',
|
Chris@119
|
520 },
|
Chris@119
|
521 :class => 'changeset', :title => 'test commit')
|
Chris@119
|
522 to_test = {
|
Chris@119
|
523 'commit:20080308225258-98289-abcd456efg.gz' => changeset_link,
|
Chris@119
|
524 }
|
Chris@119
|
525 @project = Project.find(3)
|
Chris@245
|
526 r = Repository::Darcs.create!(
|
Chris@245
|
527 :project => @project, :url => '/tmp/test/darcs',
|
Chris@245
|
528 :log_encoding => 'UTF-8')
|
Chris@119
|
529 assert r
|
Chris@119
|
530 c = Changeset.new(:repository => r,
|
Chris@119
|
531 :committed_on => Time.now,
|
Chris@119
|
532 :revision => '123',
|
Chris@119
|
533 :scmid => '20080308225258-98289-abcd456efg.gz',
|
Chris@119
|
534 :comments => 'test commit')
|
Chris@119
|
535 assert( c.save )
|
Chris@119
|
536 to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text) }
|
Chris@119
|
537 end
|
Chris@119
|
538
|
Chris@119
|
539 def test_redmine_links_mercurial_commit
|
Chris@119
|
540 changeset_link_rev = link_to('r123',
|
Chris@119
|
541 {
|
Chris@119
|
542 :controller => 'repositories',
|
Chris@119
|
543 :action => 'revision',
|
Chris@119
|
544 :id => 'subproject1',
|
Chris@119
|
545 :rev => '123' ,
|
Chris@119
|
546 },
|
Chris@119
|
547 :class => 'changeset', :title => 'test commit')
|
Chris@119
|
548 changeset_link_commit = link_to('abcd',
|
Chris@119
|
549 {
|
Chris@119
|
550 :controller => 'repositories',
|
Chris@119
|
551 :action => 'revision',
|
Chris@119
|
552 :id => 'subproject1',
|
Chris@119
|
553 :rev => 'abcd' ,
|
Chris@119
|
554 },
|
Chris@119
|
555 :class => 'changeset', :title => 'test commit')
|
Chris@119
|
556 to_test = {
|
Chris@119
|
557 'r123' => changeset_link_rev,
|
Chris@119
|
558 'commit:abcd' => changeset_link_commit,
|
Chris@119
|
559 }
|
Chris@119
|
560 @project = Project.find(3)
|
Chris@119
|
561 r = Repository::Mercurial.create!(:project => @project, :url => '/tmp/test')
|
Chris@119
|
562 assert r
|
Chris@119
|
563 c = Changeset.new(:repository => r,
|
Chris@119
|
564 :committed_on => Time.now,
|
Chris@119
|
565 :revision => '123',
|
Chris@119
|
566 :scmid => 'abcd',
|
Chris@119
|
567 :comments => 'test commit')
|
Chris@119
|
568 assert( c.save )
|
Chris@119
|
569 to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text) }
|
Chris@119
|
570 end
|
Chris@119
|
571
|
Chris@0
|
572 def test_attachment_links
|
Chris@0
|
573 to_test = {
|
Chris@1295
|
574 'attachment:error281.txt' => '<a href="/attachments/download/1/error281.txt" class="attachment">error281.txt</a>'
|
Chris@0
|
575 }
|
Chris@0
|
576 to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text, :attachments => Issue.find(3).attachments), "#{text} failed" }
|
Chris@0
|
577 end
|
Chris@441
|
578
|
Chris@1294
|
579 def test_attachment_link_should_link_to_latest_attachment
|
Chris@1294
|
580 set_tmp_attachments_directory
|
Chris@1294
|
581 a1 = Attachment.generate!(:filename => "test.txt", :created_on => 1.hour.ago)
|
Chris@1294
|
582 a2 = Attachment.generate!(:filename => "test.txt")
|
Chris@1294
|
583
|
Chris@1295
|
584 assert_equal %(<p><a href="/attachments/download/#{a2.id}/test.txt" class="attachment">test.txt</a></p>),
|
Chris@1294
|
585 textilizable('attachment:test.txt', :attachments => [a1, a2])
|
Chris@1294
|
586 end
|
Chris@1294
|
587
|
Chris@0
|
588 def test_wiki_links
|
Chris@0
|
589 to_test = {
|
Chris@0
|
590 '[[CookBook documentation]]' => '<a href="/projects/ecookbook/wiki/CookBook_documentation" class="wiki-page">CookBook documentation</a>',
|
Chris@0
|
591 '[[Another page|Page]]' => '<a href="/projects/ecookbook/wiki/Another_page" class="wiki-page">Page</a>',
|
Chris@909
|
592 # title content should be formatted
|
Chris@909
|
593 '[[Another page|With _styled_ *title*]]' => '<a href="/projects/ecookbook/wiki/Another_page" class="wiki-page">With <em>styled</em> <strong>title</strong></a>',
|
Chris@909
|
594 '[[Another page|With title containing <strong>HTML entities & markups</strong>]]' => '<a href="/projects/ecookbook/wiki/Another_page" class="wiki-page">With title containing <strong>HTML entities & markups</strong></a>',
|
Chris@0
|
595 # link with anchor
|
Chris@0
|
596 '[[CookBook documentation#One-section]]' => '<a href="/projects/ecookbook/wiki/CookBook_documentation#One-section" class="wiki-page">CookBook documentation</a>',
|
Chris@0
|
597 '[[Another page#anchor|Page]]' => '<a href="/projects/ecookbook/wiki/Another_page#anchor" class="wiki-page">Page</a>',
|
Chris@1115
|
598 # UTF8 anchor
|
Chris@1115
|
599 '[[Another_page#Тест|Тест]]' => %|<a href="/projects/ecookbook/wiki/Another_page##{CGI.escape 'Тест'}" class="wiki-page">Тест</a>|,
|
Chris@0
|
600 # page that doesn't exist
|
Chris@0
|
601 '[[Unknown page]]' => '<a href="/projects/ecookbook/wiki/Unknown_page" class="wiki-page new">Unknown page</a>',
|
Chris@0
|
602 '[[Unknown page|404]]' => '<a href="/projects/ecookbook/wiki/Unknown_page" class="wiki-page new">404</a>',
|
Chris@0
|
603 # link to another project wiki
|
chris@37
|
604 '[[onlinestore:]]' => '<a href="/projects/onlinestore/wiki" class="wiki-page">onlinestore</a>',
|
chris@37
|
605 '[[onlinestore:|Wiki]]' => '<a href="/projects/onlinestore/wiki" class="wiki-page">Wiki</a>',
|
Chris@0
|
606 '[[onlinestore:Start page]]' => '<a href="/projects/onlinestore/wiki/Start_page" class="wiki-page">Start page</a>',
|
Chris@0
|
607 '[[onlinestore:Start page|Text]]' => '<a href="/projects/onlinestore/wiki/Start_page" class="wiki-page">Text</a>',
|
Chris@0
|
608 '[[onlinestore:Unknown page]]' => '<a href="/projects/onlinestore/wiki/Unknown_page" class="wiki-page new">Unknown page</a>',
|
Chris@0
|
609 # striked through link
|
Chris@0
|
610 '-[[Another page|Page]]-' => '<del><a href="/projects/ecookbook/wiki/Another_page" class="wiki-page">Page</a></del>',
|
Chris@0
|
611 '-[[Another page|Page]] link-' => '<del><a href="/projects/ecookbook/wiki/Another_page" class="wiki-page">Page</a> link</del>',
|
Chris@0
|
612 # escaping
|
Chris@0
|
613 '![[Another page|Page]]' => '[[Another page|Page]]',
|
Chris@0
|
614 # project does not exist
|
Chris@0
|
615 '[[unknowproject:Start]]' => '[[unknowproject:Start]]',
|
Chris@0
|
616 '[[unknowproject:Start|Page title]]' => '[[unknowproject:Start|Page title]]',
|
Chris@0
|
617 }
|
Chris@909
|
618
|
Chris@0
|
619 @project = Project.find(1)
|
Chris@0
|
620 to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text) }
|
Chris@0
|
621 end
|
Chris@441
|
622
|
Chris@909
|
623 def test_wiki_links_within_local_file_generation_context
|
Chris@909
|
624
|
Chris@909
|
625 to_test = {
|
Chris@909
|
626 # link to a page
|
Chris@909
|
627 '[[CookBook documentation]]' => '<a href="CookBook_documentation.html" class="wiki-page">CookBook documentation</a>',
|
Chris@909
|
628 '[[CookBook documentation|documentation]]' => '<a href="CookBook_documentation.html" class="wiki-page">documentation</a>',
|
Chris@909
|
629 '[[CookBook documentation#One-section]]' => '<a href="CookBook_documentation.html#One-section" class="wiki-page">CookBook documentation</a>',
|
Chris@909
|
630 '[[CookBook documentation#One-section|documentation]]' => '<a href="CookBook_documentation.html#One-section" class="wiki-page">documentation</a>',
|
Chris@909
|
631 # page that doesn't exist
|
Chris@909
|
632 '[[Unknown page]]' => '<a href="Unknown_page.html" class="wiki-page new">Unknown page</a>',
|
Chris@909
|
633 '[[Unknown page|404]]' => '<a href="Unknown_page.html" class="wiki-page new">404</a>',
|
Chris@909
|
634 '[[Unknown page#anchor]]' => '<a href="Unknown_page.html#anchor" class="wiki-page new">Unknown page</a>',
|
Chris@909
|
635 '[[Unknown page#anchor|404]]' => '<a href="Unknown_page.html#anchor" class="wiki-page new">404</a>',
|
Chris@909
|
636 }
|
Chris@909
|
637
|
Chris@909
|
638 @project = Project.find(1)
|
Chris@909
|
639
|
Chris@909
|
640 to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text, :wiki_links => :local) }
|
Chris@909
|
641 end
|
Chris@909
|
642
|
Chris@1115
|
643 def test_wiki_links_within_wiki_page_context
|
Chris@1115
|
644
|
Chris@1115
|
645 page = WikiPage.find_by_title('Another_page' )
|
Chris@1115
|
646
|
Chris@1115
|
647 to_test = {
|
Chris@1115
|
648 # link to another page
|
Chris@1115
|
649 '[[CookBook documentation]]' => '<a href="/projects/ecookbook/wiki/CookBook_documentation" class="wiki-page">CookBook documentation</a>',
|
Chris@1115
|
650 '[[CookBook documentation|documentation]]' => '<a href="/projects/ecookbook/wiki/CookBook_documentation" class="wiki-page">documentation</a>',
|
Chris@1115
|
651 '[[CookBook documentation#One-section]]' => '<a href="/projects/ecookbook/wiki/CookBook_documentation#One-section" class="wiki-page">CookBook documentation</a>',
|
Chris@1115
|
652 '[[CookBook documentation#One-section|documentation]]' => '<a href="/projects/ecookbook/wiki/CookBook_documentation#One-section" class="wiki-page">documentation</a>',
|
Chris@1115
|
653 # link to the current page
|
Chris@1115
|
654 '[[Another page]]' => '<a href="/projects/ecookbook/wiki/Another_page" class="wiki-page">Another page</a>',
|
Chris@1115
|
655 '[[Another page|Page]]' => '<a href="/projects/ecookbook/wiki/Another_page" class="wiki-page">Page</a>',
|
Chris@1115
|
656 '[[Another page#anchor]]' => '<a href="#anchor" class="wiki-page">Another page</a>',
|
Chris@1115
|
657 '[[Another page#anchor|Page]]' => '<a href="#anchor" class="wiki-page">Page</a>',
|
Chris@1115
|
658 # page that doesn't exist
|
Chris@1115
|
659 '[[Unknown page]]' => '<a href="/projects/ecookbook/wiki/Unknown_page?parent=Another_page" class="wiki-page new">Unknown page</a>',
|
Chris@1115
|
660 '[[Unknown page|404]]' => '<a href="/projects/ecookbook/wiki/Unknown_page?parent=Another_page" class="wiki-page new">404</a>',
|
Chris@1115
|
661 '[[Unknown page#anchor]]' => '<a href="/projects/ecookbook/wiki/Unknown_page?parent=Another_page#anchor" class="wiki-page new">Unknown page</a>',
|
Chris@1115
|
662 '[[Unknown page#anchor|404]]' => '<a href="/projects/ecookbook/wiki/Unknown_page?parent=Another_page#anchor" class="wiki-page new">404</a>',
|
Chris@1115
|
663 }
|
Chris@1115
|
664
|
Chris@1115
|
665 @project = Project.find(1)
|
Chris@1115
|
666
|
Chris@1115
|
667 to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(WikiContent.new( :text => text, :page => page ), :text) }
|
Chris@1115
|
668 end
|
Chris@1115
|
669
|
Chris@1115
|
670 def test_wiki_links_anchor_option_should_prepend_page_title_to_href
|
Chris@1115
|
671
|
Chris@1115
|
672 to_test = {
|
Chris@1115
|
673 # link to a page
|
Chris@1115
|
674 '[[CookBook documentation]]' => '<a href="#CookBook_documentation" class="wiki-page">CookBook documentation</a>',
|
Chris@1115
|
675 '[[CookBook documentation|documentation]]' => '<a href="#CookBook_documentation" class="wiki-page">documentation</a>',
|
Chris@1115
|
676 '[[CookBook documentation#One-section]]' => '<a href="#CookBook_documentation_One-section" class="wiki-page">CookBook documentation</a>',
|
Chris@1115
|
677 '[[CookBook documentation#One-section|documentation]]' => '<a href="#CookBook_documentation_One-section" class="wiki-page">documentation</a>',
|
Chris@1115
|
678 # page that doesn't exist
|
Chris@1115
|
679 '[[Unknown page]]' => '<a href="#Unknown_page" class="wiki-page new">Unknown page</a>',
|
Chris@1115
|
680 '[[Unknown page|404]]' => '<a href="#Unknown_page" class="wiki-page new">404</a>',
|
Chris@1115
|
681 '[[Unknown page#anchor]]' => '<a href="#Unknown_page_anchor" class="wiki-page new">Unknown page</a>',
|
Chris@1115
|
682 '[[Unknown page#anchor|404]]' => '<a href="#Unknown_page_anchor" class="wiki-page new">404</a>',
|
Chris@1115
|
683 }
|
Chris@1115
|
684
|
Chris@1115
|
685 @project = Project.find(1)
|
Chris@1115
|
686
|
Chris@1115
|
687 to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text, :wiki_links => :anchor) }
|
Chris@1115
|
688 end
|
Chris@1115
|
689
|
Chris@0
|
690 def test_html_tags
|
Chris@0
|
691 to_test = {
|
Chris@0
|
692 "<div>content</div>" => "<p><div>content</div></p>",
|
Chris@0
|
693 "<div class=\"bold\">content</div>" => "<p><div class=\"bold\">content</div></p>",
|
Chris@0
|
694 "<script>some script;</script>" => "<p><script>some script;</script></p>",
|
Chris@0
|
695 # do not escape pre/code tags
|
Chris@0
|
696 "<pre>\nline 1\nline2</pre>" => "<pre>\nline 1\nline2</pre>",
|
Chris@0
|
697 "<pre><code>\nline 1\nline2</code></pre>" => "<pre><code>\nline 1\nline2</code></pre>",
|
Chris@0
|
698 "<pre><div>content</div></pre>" => "<pre><div>content</div></pre>",
|
Chris@0
|
699 "HTML comment: <!-- no comments -->" => "<p>HTML comment: <!-- no comments --></p>",
|
Chris@0
|
700 "<!-- opening comment" => "<p><!-- opening comment</p>",
|
Chris@0
|
701 # remove attributes except class
|
Chris@0
|
702 "<pre class='foo'>some text</pre>" => "<pre class='foo'>some text</pre>",
|
Chris@119
|
703 '<pre class="foo">some text</pre>' => '<pre class="foo">some text</pre>',
|
Chris@119
|
704 "<pre class='foo bar'>some text</pre>" => "<pre class='foo bar'>some text</pre>",
|
Chris@119
|
705 '<pre class="foo bar">some text</pre>' => '<pre class="foo bar">some text</pre>',
|
Chris@0
|
706 "<pre onmouseover='alert(1)'>some text</pre>" => "<pre>some text</pre>",
|
Chris@119
|
707 # xss
|
Chris@119
|
708 '<pre><code class=""onmouseover="alert(1)">text</code></pre>' => '<pre><code>text</code></pre>',
|
Chris@119
|
709 '<pre class=""onmouseover="alert(1)">text</pre>' => '<pre>text</pre>',
|
Chris@0
|
710 }
|
Chris@0
|
711 to_test.each { |text, result| assert_equal result, textilizable(text) }
|
Chris@0
|
712 end
|
Chris@441
|
713
|
Chris@0
|
714 def test_allowed_html_tags
|
Chris@0
|
715 to_test = {
|
Chris@0
|
716 "<pre>preformatted text</pre>" => "<pre>preformatted text</pre>",
|
Chris@0
|
717 "<notextile>no *textile* formatting</notextile>" => "no *textile* formatting",
|
Chris@0
|
718 "<notextile>this is <tag>a tag</tag></notextile>" => "this is <tag>a tag</tag>"
|
Chris@0
|
719 }
|
Chris@0
|
720 to_test.each { |text, result| assert_equal result, textilizable(text) }
|
Chris@0
|
721 end
|
Chris@441
|
722
|
Chris@0
|
723 def test_pre_tags
|
Chris@0
|
724 raw = <<-RAW
|
Chris@0
|
725 Before
|
Chris@0
|
726
|
Chris@0
|
727 <pre>
|
Chris@0
|
728 <prepared-statement-cache-size>32</prepared-statement-cache-size>
|
Chris@0
|
729 </pre>
|
Chris@0
|
730
|
Chris@0
|
731 After
|
Chris@0
|
732 RAW
|
Chris@0
|
733
|
Chris@0
|
734 expected = <<-EXPECTED
|
Chris@0
|
735 <p>Before</p>
|
Chris@0
|
736 <pre>
|
Chris@0
|
737 <prepared-statement-cache-size>32</prepared-statement-cache-size>
|
Chris@0
|
738 </pre>
|
Chris@0
|
739 <p>After</p>
|
Chris@0
|
740 EXPECTED
|
Chris@441
|
741
|
Chris@0
|
742 assert_equal expected.gsub(%r{[\r\n\t]}, ''), textilizable(raw).gsub(%r{[\r\n\t]}, '')
|
Chris@0
|
743 end
|
Chris@441
|
744
|
Chris@0
|
745 def test_pre_content_should_not_parse_wiki_and_redmine_links
|
Chris@0
|
746 raw = <<-RAW
|
Chris@0
|
747 [[CookBook documentation]]
|
Chris@0
|
748
|
Chris@0
|
749 #1
|
Chris@0
|
750
|
Chris@0
|
751 <pre>
|
Chris@0
|
752 [[CookBook documentation]]
|
Chris@0
|
753
|
Chris@0
|
754 #1
|
Chris@0
|
755 </pre>
|
Chris@0
|
756 RAW
|
Chris@0
|
757
|
Chris@0
|
758 expected = <<-EXPECTED
|
Chris@0
|
759 <p><a href="/projects/ecookbook/wiki/CookBook_documentation" class="wiki-page">CookBook documentation</a></p>
|
Chris@1295
|
760 <p><a href="/issues/1" class="#{Issue.find(1).css_classes}" title="Can't print recipes (New)">#1</a></p>
|
Chris@0
|
761 <pre>
|
Chris@0
|
762 [[CookBook documentation]]
|
Chris@0
|
763
|
Chris@0
|
764 #1
|
Chris@0
|
765 </pre>
|
Chris@0
|
766 EXPECTED
|
Chris@441
|
767
|
Chris@0
|
768 @project = Project.find(1)
|
Chris@0
|
769 assert_equal expected.gsub(%r{[\r\n\t]}, ''), textilizable(raw).gsub(%r{[\r\n\t]}, '')
|
Chris@0
|
770 end
|
Chris@441
|
771
|
Chris@0
|
772 def test_non_closing_pre_blocks_should_be_closed
|
Chris@0
|
773 raw = <<-RAW
|
Chris@0
|
774 <pre><code>
|
Chris@0
|
775 RAW
|
Chris@0
|
776
|
Chris@0
|
777 expected = <<-EXPECTED
|
Chris@0
|
778 <pre><code>
|
Chris@0
|
779 </code></pre>
|
Chris@0
|
780 EXPECTED
|
Chris@441
|
781
|
Chris@0
|
782 @project = Project.find(1)
|
Chris@0
|
783 assert_equal expected.gsub(%r{[\r\n\t]}, ''), textilizable(raw).gsub(%r{[\r\n\t]}, '')
|
Chris@0
|
784 end
|
Chris@441
|
785
|
Chris@0
|
786 def test_syntax_highlight
|
Chris@0
|
787 raw = <<-RAW
|
Chris@0
|
788 <pre><code class="ruby">
|
Chris@0
|
789 # Some ruby code here
|
Chris@0
|
790 </code></pre>
|
Chris@0
|
791 RAW
|
Chris@0
|
792
|
Chris@0
|
793 expected = <<-EXPECTED
|
Chris@1115
|
794 <pre><code class="ruby syntaxhl"><span class=\"CodeRay\"><span class="comment"># Some ruby code here</span></span>
|
Chris@0
|
795 </code></pre>
|
Chris@0
|
796 EXPECTED
|
Chris@0
|
797
|
Chris@0
|
798 assert_equal expected.gsub(%r{[\r\n\t]}, ''), textilizable(raw).gsub(%r{[\r\n\t]}, '')
|
Chris@0
|
799 end
|
Chris@441
|
800
|
Chris@1115
|
801 def test_to_path_param
|
Chris@1115
|
802 assert_equal 'test1/test2', to_path_param('test1/test2')
|
Chris@1115
|
803 assert_equal 'test1/test2', to_path_param('/test1/test2/')
|
Chris@1115
|
804 assert_equal 'test1/test2', to_path_param('//test1/test2/')
|
Chris@1115
|
805 assert_equal nil, to_path_param('/')
|
Chris@1115
|
806 end
|
Chris@1115
|
807
|
Chris@0
|
808 def test_wiki_links_in_tables
|
Chris@0
|
809 to_test = {"|[[Page|Link title]]|[[Other Page|Other title]]|\n|Cell 21|[[Last page]]|" =>
|
Chris@0
|
810 '<tr><td><a href="/projects/ecookbook/wiki/Page" class="wiki-page new">Link title</a></td>' +
|
Chris@0
|
811 '<td><a href="/projects/ecookbook/wiki/Other_Page" class="wiki-page new">Other title</a></td>' +
|
Chris@0
|
812 '</tr><tr><td>Cell 21</td><td><a href="/projects/ecookbook/wiki/Last_page" class="wiki-page new">Last page</a></td></tr>'
|
Chris@0
|
813 }
|
Chris@0
|
814 @project = Project.find(1)
|
Chris@0
|
815 to_test.each { |text, result| assert_equal "<table>#{result}</table>", textilizable(text).gsub(/[\t\n]/, '') }
|
Chris@0
|
816 end
|
Chris@441
|
817
|
Chris@0
|
818 def test_text_formatting
|
Chris@0
|
819 to_test = {'*_+bold, italic and underline+_*' => '<strong><em><ins>bold, italic and underline</ins></em></strong>',
|
Chris@0
|
820 '(_text within parentheses_)' => '(<em>text within parentheses</em>)',
|
Chris@0
|
821 'a *Humane Web* Text Generator' => 'a <strong>Humane Web</strong> Text Generator',
|
Chris@0
|
822 '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>',
|
Chris@0
|
823 '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',
|
Chris@0
|
824 }
|
Chris@0
|
825 to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text) }
|
Chris@0
|
826 end
|
Chris@441
|
827
|
Chris@0
|
828 def test_wiki_horizontal_rule
|
Chris@0
|
829 assert_equal '<hr />', textilizable('---')
|
Chris@0
|
830 assert_equal '<p>Dashes: ---</p>', textilizable('Dashes: ---')
|
Chris@0
|
831 end
|
Chris@441
|
832
|
Chris@0
|
833 def test_footnotes
|
Chris@0
|
834 raw = <<-RAW
|
Chris@0
|
835 This is some text[1].
|
Chris@0
|
836
|
Chris@0
|
837 fn1. This is the foot note
|
Chris@0
|
838 RAW
|
Chris@0
|
839
|
Chris@0
|
840 expected = <<-EXPECTED
|
Chris@0
|
841 <p>This is some text<sup><a href=\"#fn1\">1</a></sup>.</p>
|
Chris@0
|
842 <p id="fn1" class="footnote"><sup>1</sup> This is the foot note</p>
|
Chris@0
|
843 EXPECTED
|
Chris@0
|
844
|
Chris@0
|
845 assert_equal expected.gsub(%r{[\r\n\t]}, ''), textilizable(raw).gsub(%r{[\r\n\t]}, '')
|
Chris@0
|
846 end
|
Chris@441
|
847
|
Chris@441
|
848 def test_headings
|
Chris@441
|
849 raw = 'h1. Some heading'
|
Chris@441
|
850 expected = %|<a name="Some-heading"></a>\n<h1 >Some heading<a href="#Some-heading" class="wiki-anchor">¶</a></h1>|
|
Chris@441
|
851
|
Chris@441
|
852 assert_equal expected, textilizable(raw)
|
Chris@441
|
853 end
|
Chris@441
|
854
|
Chris@909
|
855 def test_headings_with_special_chars
|
Chris@909
|
856 # This test makes sure that the generated anchor names match the expected
|
Chris@909
|
857 # ones even if the heading text contains unconventional characters
|
Chris@909
|
858 raw = 'h1. Some heading related to version 0.5'
|
Chris@909
|
859 anchor = sanitize_anchor_name("Some-heading-related-to-version-0.5")
|
Chris@909
|
860 expected = %|<a name="#{anchor}"></a>\n<h1 >Some heading related to version 0.5<a href="##{anchor}" class="wiki-anchor">¶</a></h1>|
|
Chris@909
|
861
|
Chris@909
|
862 assert_equal expected, textilizable(raw)
|
Chris@909
|
863 end
|
Chris@909
|
864
|
Chris@909
|
865 def test_headings_in_wiki_single_page_export_should_be_prepended_with_page_title
|
Chris@1115
|
866 page = WikiPage.new( :title => 'Page Title', :wiki_id => 1 )
|
Chris@1115
|
867 content = WikiContent.new( :text => 'h1. Some heading', :page => page )
|
Chris@909
|
868
|
Chris@909
|
869 expected = %|<a name="Page_Title_Some-heading"></a>\n<h1 >Some heading<a href="#Page_Title_Some-heading" class="wiki-anchor">¶</a></h1>|
|
Chris@909
|
870
|
Chris@909
|
871 assert_equal expected, textilizable(content, :text, :wiki_links => :anchor )
|
Chris@909
|
872 end
|
Chris@909
|
873
|
Chris@0
|
874 def test_table_of_content
|
Chris@0
|
875 raw = <<-RAW
|
Chris@0
|
876 {{toc}}
|
Chris@0
|
877
|
Chris@0
|
878 h1. Title
|
Chris@0
|
879
|
Chris@0
|
880 Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas sed libero.
|
Chris@0
|
881
|
Chris@0
|
882 h2. Subtitle with a [[Wiki]] link
|
Chris@0
|
883
|
Chris@0
|
884 Nullam commodo metus accumsan nulla. Curabitur lobortis dui id dolor.
|
Chris@0
|
885
|
Chris@0
|
886 h2. Subtitle with [[Wiki|another Wiki]] link
|
Chris@0
|
887
|
Chris@0
|
888 h2. Subtitle with %{color:red}red text%
|
Chris@119
|
889
|
Chris@119
|
890 <pre>
|
Chris@119
|
891 some code
|
Chris@119
|
892 </pre>
|
Chris@119
|
893
|
chris@37
|
894 h3. Subtitle with *some* _modifiers_
|
Chris@0
|
895
|
Chris@929
|
896 h3. Subtitle with @inline code@
|
Chris@929
|
897
|
Chris@0
|
898 h1. Another title
|
Chris@0
|
899
|
chris@37
|
900 h3. An "Internet link":http://www.redmine.org/ inside subtitle
|
Chris@0
|
901
|
Chris@0
|
902 h2. "Project Name !/attachments/1234/logo_small.gif! !/attachments/5678/logo_2.png!":/projects/projectname/issues
|
Chris@0
|
903
|
Chris@0
|
904 RAW
|
Chris@0
|
905
|
chris@37
|
906 expected = '<ul class="toc">' +
|
chris@37
|
907 '<li><a href="#Title">Title</a>' +
|
chris@37
|
908 '<ul>' +
|
Chris@441
|
909 '<li><a href="#Subtitle-with-a-Wiki-link">Subtitle with a Wiki link</a></li>' +
|
Chris@441
|
910 '<li><a href="#Subtitle-with-another-Wiki-link">Subtitle with another Wiki link</a></li>' +
|
chris@37
|
911 '<li><a href="#Subtitle-with-red-text">Subtitle with red text</a>' +
|
chris@37
|
912 '<ul>' +
|
chris@37
|
913 '<li><a href="#Subtitle-with-some-modifiers">Subtitle with some modifiers</a></li>' +
|
Chris@929
|
914 '<li><a href="#Subtitle-with-inline-code">Subtitle with inline code</a></li>' +
|
chris@37
|
915 '</ul>' +
|
chris@37
|
916 '</li>' +
|
chris@37
|
917 '</ul>' +
|
chris@37
|
918 '</li>' +
|
chris@37
|
919 '<li><a href="#Another-title">Another title</a>' +
|
chris@37
|
920 '<ul>' +
|
chris@37
|
921 '<li>' +
|
chris@37
|
922 '<ul>' +
|
chris@37
|
923 '<li><a href="#An-Internet-link-inside-subtitle">An Internet link inside subtitle</a></li>' +
|
chris@37
|
924 '</ul>' +
|
chris@37
|
925 '</li>' +
|
chris@37
|
926 '<li><a href="#Project-Name">Project Name</a></li>' +
|
chris@37
|
927 '</ul>' +
|
chris@37
|
928 '</li>' +
|
Chris@0
|
929 '</ul>'
|
Chris@0
|
930
|
chris@37
|
931 @project = Project.find(1)
|
Chris@909
|
932 assert textilizable(raw).gsub("\n", "").include?(expected)
|
chris@37
|
933 end
|
Chris@441
|
934
|
Chris@929
|
935 def test_table_of_content_should_generate_unique_anchors
|
Chris@929
|
936 raw = <<-RAW
|
Chris@929
|
937 {{toc}}
|
Chris@929
|
938
|
Chris@929
|
939 h1. Title
|
Chris@929
|
940
|
Chris@929
|
941 h2. Subtitle
|
Chris@929
|
942
|
Chris@929
|
943 h2. Subtitle
|
Chris@929
|
944 RAW
|
Chris@929
|
945
|
Chris@929
|
946 expected = '<ul class="toc">' +
|
Chris@929
|
947 '<li><a href="#Title">Title</a>' +
|
Chris@929
|
948 '<ul>' +
|
Chris@929
|
949 '<li><a href="#Subtitle">Subtitle</a></li>' +
|
Chris@929
|
950 '<li><a href="#Subtitle-2">Subtitle</a></li>'
|
Chris@929
|
951 '</ul>'
|
Chris@929
|
952 '</li>' +
|
Chris@929
|
953 '</ul>'
|
Chris@929
|
954
|
Chris@929
|
955 @project = Project.find(1)
|
Chris@929
|
956 result = textilizable(raw).gsub("\n", "")
|
Chris@929
|
957 assert_include expected, result
|
Chris@929
|
958 assert_include '<a name="Subtitle">', result
|
Chris@929
|
959 assert_include '<a name="Subtitle-2">', result
|
Chris@929
|
960 end
|
Chris@929
|
961
|
chris@37
|
962 def test_table_of_content_should_contain_included_page_headings
|
chris@37
|
963 raw = <<-RAW
|
chris@37
|
964 {{toc}}
|
chris@37
|
965
|
chris@37
|
966 h1. Included
|
chris@37
|
967
|
chris@37
|
968 {{include(Child_1)}}
|
chris@37
|
969 RAW
|
chris@37
|
970
|
chris@37
|
971 expected = '<ul class="toc">' +
|
chris@37
|
972 '<li><a href="#Included">Included</a></li>' +
|
Chris@441
|
973 '<li><a href="#Child-page-1">Child page 1</a></li>' +
|
chris@37
|
974 '</ul>'
|
chris@37
|
975
|
chris@37
|
976 @project = Project.find(1)
|
Chris@0
|
977 assert textilizable(raw).gsub("\n", "").include?(expected)
|
Chris@0
|
978 end
|
Chris@0
|
979
|
Chris@929
|
980 def test_section_edit_links
|
Chris@929
|
981 raw = <<-RAW
|
Chris@929
|
982 h1. Title
|
Chris@929
|
983
|
Chris@929
|
984 Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas sed libero.
|
Chris@929
|
985
|
Chris@929
|
986 h2. Subtitle with a [[Wiki]] link
|
Chris@929
|
987
|
Chris@929
|
988 h2. Subtitle with *some* _modifiers_
|
Chris@929
|
989
|
Chris@929
|
990 h2. Subtitle with @inline code@
|
Chris@929
|
991
|
Chris@929
|
992 <pre>
|
Chris@929
|
993 some code
|
Chris@929
|
994
|
Chris@929
|
995 h2. heading inside pre
|
Chris@929
|
996
|
Chris@929
|
997 <h2>html heading inside pre</h2>
|
Chris@929
|
998 </pre>
|
Chris@929
|
999
|
Chris@929
|
1000 h2. Subtitle after pre tag
|
Chris@929
|
1001 RAW
|
Chris@929
|
1002
|
Chris@929
|
1003 @project = Project.find(1)
|
Chris@929
|
1004 set_language_if_valid 'en'
|
Chris@929
|
1005 result = textilizable(raw, :edit_section_links => {:controller => 'wiki', :action => 'edit', :project_id => '1', :id => 'Test'}).gsub("\n", "")
|
Chris@929
|
1006
|
Chris@929
|
1007 # heading that contains inline code
|
Chris@929
|
1008 assert_match Regexp.new('<div class="contextual" title="Edit this section">' +
|
Chris@929
|
1009 '<a href="/projects/1/wiki/Test/edit\?section=4"><img alt="Edit" src="/images/edit.png(\?\d+)?" /></a></div>' +
|
Chris@929
|
1010 '<a name="Subtitle-with-inline-code"></a>' +
|
Chris@929
|
1011 '<h2 >Subtitle with <code>inline code</code><a href="#Subtitle-with-inline-code" class="wiki-anchor">¶</a></h2>'),
|
Chris@929
|
1012 result
|
Chris@929
|
1013
|
Chris@929
|
1014 # last heading
|
Chris@929
|
1015 assert_match Regexp.new('<div class="contextual" title="Edit this section">' +
|
Chris@929
|
1016 '<a href="/projects/1/wiki/Test/edit\?section=5"><img alt="Edit" src="/images/edit.png(\?\d+)?" /></a></div>' +
|
Chris@929
|
1017 '<a name="Subtitle-after-pre-tag"></a>' +
|
Chris@929
|
1018 '<h2 >Subtitle after pre tag<a href="#Subtitle-after-pre-tag" class="wiki-anchor">¶</a></h2>'),
|
Chris@929
|
1019 result
|
Chris@929
|
1020 end
|
Chris@929
|
1021
|
Chris@0
|
1022 def test_default_formatter
|
Chris@1115
|
1023 with_settings :text_formatting => 'unknown' do
|
Chris@1115
|
1024 text = 'a *link*: http://www.example.net/'
|
Chris@1115
|
1025 assert_equal '<p>a *link*: <a class="external" href="http://www.example.net/">http://www.example.net/</a></p>', textilizable(text)
|
Chris@1115
|
1026 end
|
Chris@0
|
1027 end
|
Chris@441
|
1028
|
Chris@0
|
1029 def test_due_date_distance_in_words
|
Chris@0
|
1030 to_test = { Date.today => 'Due in 0 days',
|
Chris@0
|
1031 Date.today + 1 => 'Due in 1 day',
|
Chris@0
|
1032 Date.today + 100 => 'Due in about 3 months',
|
Chris@0
|
1033 Date.today + 20000 => 'Due in over 54 years',
|
Chris@0
|
1034 Date.today - 1 => '1 day late',
|
Chris@0
|
1035 Date.today - 100 => 'about 3 months late',
|
Chris@0
|
1036 Date.today - 20000 => 'over 54 years late',
|
Chris@0
|
1037 }
|
Chris@119
|
1038 ::I18n.locale = :en
|
Chris@0
|
1039 to_test.each do |date, expected|
|
Chris@0
|
1040 assert_equal expected, due_date_distance_in_words(date)
|
Chris@0
|
1041 end
|
Chris@0
|
1042 end
|
Chris@441
|
1043
|
Chris@1115
|
1044 def test_avatar_enabled
|
Chris@1115
|
1045 with_settings :gravatar_enabled => '1' do
|
Chris@1115
|
1046 assert avatar(User.find_by_mail('jsmith@somenet.foo')).include?(Digest::MD5.hexdigest('jsmith@somenet.foo'))
|
Chris@1115
|
1047 assert avatar('jsmith <jsmith@somenet.foo>').include?(Digest::MD5.hexdigest('jsmith@somenet.foo'))
|
Chris@1115
|
1048 # Default size is 50
|
Chris@1115
|
1049 assert avatar('jsmith <jsmith@somenet.foo>').include?('size=50')
|
Chris@1115
|
1050 assert avatar('jsmith <jsmith@somenet.foo>', :size => 24).include?('size=24')
|
Chris@1115
|
1051 # Non-avatar options should be considered html options
|
Chris@1115
|
1052 assert avatar('jsmith <jsmith@somenet.foo>', :title => 'John Smith').include?('title="John Smith"')
|
Chris@1115
|
1053 # The default class of the img tag should be gravatar
|
Chris@1115
|
1054 assert avatar('jsmith <jsmith@somenet.foo>').include?('class="gravatar"')
|
Chris@1115
|
1055 assert !avatar('jsmith <jsmith@somenet.foo>', :class => 'picture').include?('class="gravatar"')
|
Chris@1115
|
1056 assert_nil avatar('jsmith')
|
Chris@1115
|
1057 assert_nil avatar(nil)
|
Chris@1115
|
1058 end
|
Chris@1115
|
1059 end
|
Chris@441
|
1060
|
Chris@1115
|
1061 def test_avatar_disabled
|
Chris@1115
|
1062 with_settings :gravatar_enabled => '0' do
|
Chris@1115
|
1063 assert_equal '', avatar(User.find_by_mail('jsmith@somenet.foo'))
|
Chris@1115
|
1064 end
|
Chris@0
|
1065 end
|
Chris@441
|
1066
|
Chris@0
|
1067 def test_link_to_user
|
Chris@0
|
1068 user = User.find(2)
|
Chris@1115
|
1069 assert_equal '<a href="/users/2" class="user active">John Smith</a>', link_to_user(user)
|
Chris@0
|
1070 end
|
Chris@441
|
1071
|
Chris@0
|
1072 def test_link_to_user_should_not_link_to_locked_user
|
Chris@1115
|
1073 with_current_user nil do
|
Chris@1115
|
1074 user = User.find(5)
|
Chris@1115
|
1075 assert user.locked?
|
Chris@1115
|
1076 assert_equal 'Dave2 Lopper2', link_to_user(user)
|
Chris@1115
|
1077 end
|
Chris@1115
|
1078 end
|
Chris@1115
|
1079
|
Chris@1115
|
1080 def test_link_to_user_should_link_to_locked_user_if_current_user_is_admin
|
Chris@1115
|
1081 with_current_user User.find(1) do
|
Chris@1115
|
1082 user = User.find(5)
|
Chris@1115
|
1083 assert user.locked?
|
Chris@1115
|
1084 assert_equal '<a href="/users/5" class="user locked">Dave2 Lopper2</a>', link_to_user(user)
|
Chris@1115
|
1085 end
|
Chris@0
|
1086 end
|
Chris@441
|
1087
|
Chris@0
|
1088 def test_link_to_user_should_not_link_to_anonymous
|
Chris@0
|
1089 user = User.anonymous
|
Chris@0
|
1090 assert user.anonymous?
|
Chris@0
|
1091 t = link_to_user(user)
|
Chris@0
|
1092 assert_equal ::I18n.t(:label_user_anonymous), t
|
Chris@0
|
1093 end
|
Chris@14
|
1094
|
Chris@1295
|
1095 def test_link_to_attachment
|
Chris@1295
|
1096 a = Attachment.find(3)
|
Chris@1295
|
1097 assert_equal '<a href="/attachments/3/logo.gif">logo.gif</a>',
|
Chris@1295
|
1098 link_to_attachment(a)
|
Chris@1295
|
1099 assert_equal '<a href="/attachments/3/logo.gif">Text</a>',
|
Chris@1295
|
1100 link_to_attachment(a, :text => 'Text')
|
Chris@1295
|
1101 assert_equal '<a href="/attachments/3/logo.gif" class="foo">logo.gif</a>',
|
Chris@1295
|
1102 link_to_attachment(a, :class => 'foo')
|
Chris@1295
|
1103 assert_equal '<a href="/attachments/download/3/logo.gif">logo.gif</a>',
|
Chris@1295
|
1104 link_to_attachment(a, :download => true)
|
Chris@1295
|
1105 assert_equal '<a href="http://test.host/attachments/3/logo.gif">logo.gif</a>',
|
Chris@1295
|
1106 link_to_attachment(a, :only_path => false)
|
Chris@1295
|
1107 end
|
Chris@1295
|
1108
|
Chris@1295
|
1109 def test_thumbnail_tag
|
Chris@1295
|
1110 a = Attachment.find(3)
|
Chris@1295
|
1111 assert_equal '<a href="/attachments/3/logo.gif" title="logo.gif"><img alt="3" src="/attachments/thumbnail/3" /></a>',
|
Chris@1295
|
1112 thumbnail_tag(a)
|
Chris@1295
|
1113 end
|
Chris@1295
|
1114
|
Chris@14
|
1115 def test_link_to_project
|
Chris@14
|
1116 project = Project.find(1)
|
Chris@14
|
1117 assert_equal %(<a href="/projects/ecookbook">eCookbook</a>),
|
Chris@14
|
1118 link_to_project(project)
|
Chris@14
|
1119 assert_equal %(<a href="/projects/ecookbook/settings">eCookbook</a>),
|
Chris@14
|
1120 link_to_project(project, :action => 'settings')
|
Chris@14
|
1121 assert_equal %(<a href="http://test.host/projects/ecookbook?jump=blah">eCookbook</a>),
|
Chris@14
|
1122 link_to_project(project, {:only_path => false, :jump => 'blah'})
|
Chris@14
|
1123 assert_equal %(<a href="/projects/ecookbook/settings" class="project">eCookbook</a>),
|
Chris@14
|
1124 link_to_project(project, {:action => 'settings'}, :class => "project")
|
Chris@14
|
1125 end
|
Chris@909
|
1126
|
Chris@1295
|
1127 def test_link_to_project_settings
|
Chris@1295
|
1128 project = Project.find(1)
|
Chris@1295
|
1129 assert_equal '<a href="/projects/ecookbook/settings">eCookbook</a>', link_to_project_settings(project)
|
Chris@1295
|
1130
|
Chris@1295
|
1131 project.status = Project::STATUS_CLOSED
|
Chris@1295
|
1132 assert_equal '<a href="/projects/ecookbook">eCookbook</a>', link_to_project_settings(project)
|
Chris@1295
|
1133
|
Chris@1295
|
1134 project.status = Project::STATUS_ARCHIVED
|
Chris@1295
|
1135 assert_equal 'eCookbook', link_to_project_settings(project)
|
Chris@1295
|
1136 end
|
Chris@1295
|
1137
|
Chris@929
|
1138 def test_link_to_legacy_project_with_numerical_identifier_should_use_id
|
Chris@929
|
1139 # numeric identifier are no longer allowed
|
Chris@929
|
1140 Project.update_all "identifier=25", "id=1"
|
Chris@929
|
1141
|
Chris@929
|
1142 assert_equal '<a href="/projects/1">eCookbook</a>',
|
Chris@929
|
1143 link_to_project(Project.find(1))
|
Chris@929
|
1144 end
|
Chris@929
|
1145
|
Chris@909
|
1146 def test_principals_options_for_select_with_users
|
Chris@1115
|
1147 User.current = nil
|
Chris@909
|
1148 users = [User.find(2), User.find(4)]
|
Chris@909
|
1149 assert_equal %(<option value="2">John Smith</option><option value="4">Robert Hill</option>),
|
Chris@909
|
1150 principals_options_for_select(users)
|
Chris@909
|
1151 end
|
Chris@909
|
1152
|
Chris@909
|
1153 def test_principals_options_for_select_with_selected
|
Chris@1115
|
1154 User.current = nil
|
Chris@909
|
1155 users = [User.find(2), User.find(4)]
|
Chris@909
|
1156 assert_equal %(<option value="2">John Smith</option><option value="4" selected="selected">Robert Hill</option>),
|
Chris@909
|
1157 principals_options_for_select(users, User.find(4))
|
Chris@909
|
1158 end
|
Chris@909
|
1159
|
Chris@909
|
1160 def test_principals_options_for_select_with_users_and_groups
|
Chris@1115
|
1161 User.current = nil
|
Chris@909
|
1162 users = [User.find(2), Group.find(11), User.find(4), Group.find(10)]
|
Chris@909
|
1163 assert_equal %(<option value="2">John Smith</option><option value="4">Robert Hill</option>) +
|
Chris@909
|
1164 %(<optgroup label="Groups"><option value="10">A Team</option><option value="11">B Team</option></optgroup>),
|
Chris@909
|
1165 principals_options_for_select(users)
|
Chris@909
|
1166 end
|
Chris@909
|
1167
|
Chris@909
|
1168 def test_principals_options_for_select_with_empty_collection
|
Chris@909
|
1169 assert_equal '', principals_options_for_select([])
|
Chris@909
|
1170 end
|
Chris@1115
|
1171
|
Chris@1115
|
1172 def test_principals_options_for_select_should_include_me_option_when_current_user_is_in_collection
|
Chris@1115
|
1173 users = [User.find(2), User.find(4)]
|
Chris@1115
|
1174 User.current = User.find(4)
|
Chris@1115
|
1175 assert_include '<option value="4"><< me >></option>', principals_options_for_select(users)
|
Chris@1115
|
1176 end
|
Chris@1115
|
1177
|
Chris@1115
|
1178 def test_stylesheet_link_tag_should_pick_the_default_stylesheet
|
Chris@1115
|
1179 assert_match 'href="/stylesheets/styles.css"', stylesheet_link_tag("styles")
|
Chris@1115
|
1180 end
|
Chris@1115
|
1181
|
Chris@1115
|
1182 def test_stylesheet_link_tag_for_plugin_should_pick_the_plugin_stylesheet
|
Chris@1115
|
1183 assert_match 'href="/plugin_assets/foo/stylesheets/styles.css"', stylesheet_link_tag("styles", :plugin => :foo)
|
Chris@1115
|
1184 end
|
Chris@1115
|
1185
|
Chris@1115
|
1186 def test_image_tag_should_pick_the_default_image
|
Chris@1115
|
1187 assert_match 'src="/images/image.png"', image_tag("image.png")
|
Chris@1115
|
1188 end
|
Chris@1115
|
1189
|
Chris@1115
|
1190 def test_image_tag_should_pick_the_theme_image_if_it_exists
|
Chris@1115
|
1191 theme = Redmine::Themes.themes.last
|
Chris@1115
|
1192 theme.images << 'image.png'
|
Chris@1115
|
1193
|
Chris@1115
|
1194 with_settings :ui_theme => theme.id do
|
Chris@1115
|
1195 assert_match %|src="/themes/#{theme.dir}/images/image.png"|, image_tag("image.png")
|
Chris@1115
|
1196 assert_match %|src="/images/other.png"|, image_tag("other.png")
|
Chris@1115
|
1197 end
|
Chris@1115
|
1198 ensure
|
Chris@1115
|
1199 theme.images.delete 'image.png'
|
Chris@1115
|
1200 end
|
Chris@1115
|
1201
|
Chris@1115
|
1202 def test_image_tag_sfor_plugin_should_pick_the_plugin_image
|
Chris@1115
|
1203 assert_match 'src="/plugin_assets/foo/images/image.png"', image_tag("image.png", :plugin => :foo)
|
Chris@1115
|
1204 end
|
Chris@1115
|
1205
|
Chris@1115
|
1206 def test_javascript_include_tag_should_pick_the_default_javascript
|
Chris@1115
|
1207 assert_match 'src="/javascripts/scripts.js"', javascript_include_tag("scripts")
|
Chris@1115
|
1208 end
|
Chris@1115
|
1209
|
Chris@1115
|
1210 def test_javascript_include_tag_for_plugin_should_pick_the_plugin_javascript
|
Chris@1115
|
1211 assert_match 'src="/plugin_assets/foo/javascripts/scripts.js"', javascript_include_tag("scripts", :plugin => :foo)
|
Chris@1115
|
1212 end
|
Chris@0
|
1213 end
|