3 class RichTextTest < ActiveSupport::TestCase
4 include Rails::Dom::Testing::Assertions::SelectorAssertions
7 r = RichText.new("html", "foo http://example.com/ bar")
10 assert_select "a[href='http://example.com/']", 1
11 assert_select "a[rel='nofollow noopener noreferrer']", 1
14 r = RichText.new("html", "foo <a href='http://example.com/'>bar</a> baz")
17 assert_select "a[href='http://example.com/']", 1
18 assert_select "a[rel='nofollow noopener noreferrer']", 1
21 r = RichText.new("html", "foo <a rel='junk me trash' href='http://example.com/'>bar</a> baz")
24 assert_select "a[href='http://example.com/']", 1
25 assert_select "a[rel='me nofollow noopener noreferrer']", 1
28 r = RichText.new("html", "foo example@example.com bar")
33 r = RichText.new("html", "foo <a href='mailto:example@example.com'>bar</a> baz")
36 assert_select "a[href='mailto:example@example.com']", 1
37 assert_select "a[rel='nofollow noopener noreferrer']", 1
40 r = RichText.new("html", "foo <div>bar</div> baz")
42 assert_select "div", false
43 assert_select "p", /^foo *bar *baz$/
46 r = RichText.new("html", "foo <script>bar = 1;</script> baz")
48 assert_select "script", false
49 assert_select "p", /^foo *baz$/
52 r = RichText.new("html", "foo <style>div { display: none; }</style> baz")
54 assert_select "style", false
55 assert_select "p", /^foo *baz$/
58 r = RichText.new("html", "<table><tr><td>column</td></tr></table>")
60 assert_select "table[class='table table-sm w-auto']"
63 r = RichText.new("html", "<p class='btn btn-warning'>Click Me</p>")
65 assert_select "p[class='btn btn-warning']", false
66 assert_select "p", /^Click Me$/
69 r = RichText.new("html", "<p style='color:red'>Danger</p>")
71 assert_select "p[style='color:red']", false
72 assert_select "p", /^Danger$/
77 r = RichText.new("html", "foo <a href='http://example.com/'>bar</a> baz")
78 assert_equal "foo <a href='http://example.com/'>bar</a> baz", r.to_text
81 def test_html_spam_score
82 r = RichText.new("html", "foo <a href='http://example.com/'>bar</a> baz")
83 assert_equal 55, r.spam_score.round
86 def test_markdown_to_html
87 r = RichText.new("markdown", "foo http://example.com/ bar")
90 assert_select "a[href='http://example.com/']", 1
91 assert_select "a[rel='nofollow noopener noreferrer']", 1
94 r = RichText.new("markdown", "foo [bar](http://example.com/) baz")
97 assert_select "a[href='http://example.com/']", 1
98 assert_select "a[rel='nofollow noopener noreferrer']", 1
101 r = RichText.new("markdown", "foo <a rel='junk me trash' href='http://example.com/'>bar</a>) baz")
104 assert_select "a[href='http://example.com/']", 1
105 assert_select "a[rel='me nofollow noopener noreferrer']", 1
108 r = RichText.new("markdown", "foo example@example.com bar")
111 assert_select "a[href='mailto:example@example.com']", 1
112 assert_select "a[rel='nofollow noopener noreferrer']", 1
115 r = RichText.new("markdown", "foo [bar](mailto:example@example.com) bar")
118 assert_select "a[href='mailto:example@example.com']", 1
119 assert_select "a[rel='nofollow noopener noreferrer']", 1
122 r = RichText.new("markdown", "foo  bar")
124 assert_select "img", 1
125 assert_select "img[alt='bar']", 1
126 assert_select "img[src='http://example.com/example.png']", 1
129 r = RichText.new("markdown", "# foo bar baz")
131 assert_select "h1", "foo bar baz"
134 r = RichText.new("markdown", "## foo bar baz")
136 assert_select "h2", "foo bar baz"
139 r = RichText.new("markdown", "### foo bar baz")
141 assert_select "h3", "foo bar baz"
144 r = RichText.new("markdown", "* foo bar baz")
146 assert_select "ul" do
147 assert_select "li", "foo bar baz"
151 r = RichText.new("markdown", "1. foo bar baz")
153 assert_select "ol" do
154 assert_select "li", "foo bar baz"
158 r = RichText.new("markdown", "foo *bar* _baz_ qux")
160 assert_select "em", "bar"
161 assert_select "em", "baz"
164 r = RichText.new("markdown", "foo **bar** __baz__ qux")
166 assert_select "strong", "bar"
167 assert_select "strong", "baz"
170 r = RichText.new("markdown", "foo `bar` baz")
172 assert_select "code", "bar"
175 r = RichText.new("markdown", " foo bar baz")
177 assert_select "pre", /^\s*foo bar baz\s*$/
180 r = RichText.new("markdown", "|column|column")
182 assert_select "table[class='table table-sm w-auto']"
185 r = RichText.new("markdown", "Click Me\n{:.btn.btn-warning}")
187 assert_select "p[class='btn btn-warning']", false
188 assert_select "p", /^Click Me$/
191 r = RichText.new("markdown", "<p style='color:red'>Danger</p>")
193 assert_select "p[style='color:red']", false
194 assert_select "p", /^Danger$/
198 def test_markdown_table_alignment
199 # Ensure that kramdown table alignment styles are converted to bootstrap classes
200 markdown_table = <<~MARKDOWN
205 r = RichText.new("markdown", markdown_table)
207 assert_select "td[style='text-align:center']", false
208 assert_select "td[class='text-center']", true
209 assert_select "td[style='text-align:right']", false
210 assert_select "td[class='text-end']", true
214 def test_markdown_to_text
215 r = RichText.new("markdown", "foo [bar](http://example.com/) baz")
216 assert_equal "foo [bar](http://example.com/) baz", r.to_text
219 def test_markdown_spam_score
220 r = RichText.new("markdown", "foo [bar](http://example.com/) baz")
221 assert_equal 50, r.spam_score.round
224 def test_text_to_html_linkify
225 with_settings(:linkify_hosts => ["replace-me.example.com"], :linkify_hosts_replacement => "repl.example.com") do
226 r = RichText.new("text", "foo http://example.com/ bar")
228 assert_dom "a", :count => 1, :text => "http://example.com/" do
229 assert_dom "> @href", "http://example.com/"
230 assert_dom "> @rel", "nofollow noopener noreferrer"
236 def test_text_to_html_linkify_replace
237 with_settings(:linkify_hosts => ["replace-me.example.com"], :linkify_hosts_replacement => "repl.example.com") do
238 r = RichText.new("text", "foo https://replace-me.example.com/some/path?query=te<st&limit=20>10#result12 bar")
240 assert_dom "a", :count => 1, :text => "repl.example.com/some/path?query=te<st&limit=20>10#result12" do
241 assert_dom "> @href", "https://replace-me.example.com/some/path?query=te<st&limit=20>10#result12"
242 assert_dom "> @rel", "nofollow noopener noreferrer"
248 def test_text_to_html_linkify_replace_other_scheme
249 with_settings(:linkify_hosts => ["replace-me.example.com"], :linkify_hosts_replacement => "repl.example.com") do
250 r = RichText.new("text", "foo ftp://replace-me.example.com/some/path?query=te<st&limit=20>10#result12 bar")
252 assert_dom "a", :count => 1, :text => "ftp://replace-me.example.com/some/path?query=te<st&limit=20>10#result12" do
253 assert_dom "> @href", "ftp://replace-me.example.com/some/path?query=te<st&limit=20>10#result12"
254 assert_dom "> @rel", "nofollow noopener noreferrer"
260 def test_text_to_html_linkify_replace_undefined
261 with_settings(:linkify_hosts => ["replace-me.example.com"], :linkify_hosts_replacement => nil) do
262 r = RichText.new("text", "foo https://replace-me.example.com/some/path?query=te<st&limit=20>10#result12 bar")
264 assert_dom "a", :count => 1, :text => "https://replace-me.example.com/some/path?query=te<st&limit=20>10#result12" do
265 assert_dom "> @href", "https://replace-me.example.com/some/path?query=te<st&limit=20>10#result12"
266 assert_dom "> @rel", "nofollow noopener noreferrer"
272 def test_text_to_html_email
273 r = RichText.new("text", "foo example@example.com bar")
279 def test_text_to_html_escape
280 r = RichText.new("text", "foo < bar & baz > qux")
282 assert_select "p", "foo < bar & baz > qux"
286 def test_text_to_text
287 r = RichText.new("text", "foo http://example.com/ bar")
288 assert_equal "foo http://example.com/ bar", r.to_text
291 def test_text_spam_score
292 r = RichText.new("text", "foo http://example.com/ bar")
293 assert_equal 141, r.spam_score.round
296 def test_text_no_opengraph_properties
297 r = RichText.new("text", "foo https://example.com/ bar")
299 assert_nil r.image_alt
300 assert_nil r.description
303 def test_html_no_opengraph_properties
304 r = RichText.new("html", "foo <a href='https://example.com/'>bar</a> baz")
306 assert_nil r.image_alt
307 assert_nil r.description
310 def test_markdown_no_image
311 r = RichText.new("markdown", "foo [bar](https://example.com/) baz")
313 assert_nil r.image_alt
316 def test_markdown_image
317 r = RichText.new("markdown", "foo  baz")
318 assert_equal "https://example.com/image.jpg", r.image
319 assert_equal "bar", r.image_alt
322 def test_markdown_first_image
323 r = RichText.new("markdown", "foo  baz\nfoo  baz")
324 assert_equal "https://example.com/image1.jpg", r.image
325 assert_equal "bar1", r.image_alt
328 def test_markdown_image_with_empty_src
329 r = RichText.new("markdown", "![invalid]()")
331 assert_nil r.image_alt
334 def test_markdown_skip_image_with_empty_src
335 r = RichText.new("markdown", "![invalid]() ")
336 assert_equal "https://example.com/valid.gif", r.image
337 assert_equal "valid", r.image_alt
340 def test_markdown_html_image
341 r = RichText.new("markdown", "<img src='https://example.com/img_element.png' alt='alt text here'>")
342 assert_equal "https://example.com/img_element.png", r.image
343 assert_equal "alt text here", r.image_alt
346 def test_markdown_html_image_without_alt
347 r = RichText.new("markdown", "<img src='https://example.com/img_element.png'>")
348 assert_equal "https://example.com/img_element.png", r.image
349 assert_nil r.image_alt
352 def test_markdown_html_image_with_empty_src
353 r = RichText.new("markdown", "<img src='' alt='forgot src'>")
355 assert_nil r.image_alt
358 def test_markdown_skip_html_image_with_empty_src
359 r = RichText.new("markdown", "<img src='' alt='forgot src'> <img src='https://example.com/next_img_element.png' alt='have src'>")
360 assert_equal "https://example.com/next_img_element.png", r.image
361 assert_equal "have src", r.image_alt
364 def test_markdown_html_image_without_src
365 r = RichText.new("markdown", "<img alt='totally forgot src'>")
367 assert_nil r.image_alt
370 def test_markdown_skip_html_image_without_src
371 r = RichText.new("markdown", "<img alt='totally forgot src'> <img src='https://example.com/next_img_element.png' alt='have src'>")
372 assert_equal "https://example.com/next_img_element.png", r.image
373 assert_equal "have src", r.image_alt
376 def test_markdown_no_description
377 r = RichText.new("markdown", "#Nope")
378 assert_nil r.description
381 def test_markdown_description
382 r = RichText.new("markdown", "This is an article about something.")
383 assert_equal "This is an article about something.", r.description
386 def test_markdown_description_after_heading
387 r = RichText.new("markdown", "#Heading\n\nHere starts the text.")
388 assert_equal "Here starts the text.", r.description
391 def test_markdown_description_after_image
392 r = RichText.new("markdown", "\n\nThis is below the image.")
393 assert_equal "This is below the image.", r.description
396 def test_markdown_description_only_first_paragraph
397 r = RichText.new("markdown", "This thing.\n\nMaybe also that thing.")
398 assert_equal "This thing.", r.description
401 def test_markdown_description_elements
402 r = RichText.new("markdown", "*Something* **important** [here](https://example.com/).")
403 assert_equal "Something important here.", r.description
406 def test_markdown_html_description
407 r = RichText.new("markdown", "<p>Can use HTML tags.</p>")
408 assert_equal "Can use HTML tags.", r.description
411 def test_markdown_description_max_length
412 r = RichText.new("markdown", "x" * RichText::MAX_DESCRIPTION_LENGTH)
413 assert_equal "x" * RichText::MAX_DESCRIPTION_LENGTH, r.description
415 r = RichText.new("markdown", "y" * (RichText::MAX_DESCRIPTION_LENGTH + 1))
416 assert_equal "#{'y' * (RichText::MAX_DESCRIPTION_LENGTH - 3)}...", r.description
418 r = RichText.new("markdown", "*zzzzzzzzz*z" * ((RichText::MAX_DESCRIPTION_LENGTH + 1) / 10.0).ceil)
419 assert_equal "#{'z' * (RichText::MAX_DESCRIPTION_LENGTH - 3)}...", r.description
424 def assert_html(richtext, &block)
425 html = richtext.to_html
426 assert_predicate html, :html_safe?
427 root = Nokogiri::HTML::DocumentFragment.parse(html)
428 assert_select root, "*" do