1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
|
# frozen_string_literal: true
require "test_helper"
class TestExtensions < Minitest::Test
def setup
@markdown = fixtures_file("table.md")
end
def test_uses_specified_extensions
CommonMarker.render_html(@markdown, :DEFAULT, []).tap do |out|
assert_includes(out, "| a")
assert_includes(out, "| <strong>x</strong>")
assert_includes(out, "~~hi~~")
end
CommonMarker.render_html(@markdown, :DEFAULT, [:table]).tap do |out|
refute_includes(out, "| a")
["<table>", "<tr>", "<th>", "a", "</th>", "<td>", "c", "</td>", "<strong>x</strong>"].each { |html| assert_includes(out, html) }
assert_includes(out, "~~hi~~")
end
CommonMarker.render_html(@markdown, :DEFAULT, [:strikethrough]).tap do |out|
assert_includes(out, "| a")
refute_includes(out, "~~hi~~")
assert_includes(out, "<del>hi</del>")
end
doc = CommonMarker.render_doc("~a~ ~~b~~ ~~~c~~~", :STRIKETHROUGH_DOUBLE_TILDE, [:strikethrough])
assert_equal("<p>~a~ <del>b</del> ~~~c~~~</p>\n", doc.to_html)
html = CommonMarker.render_html("~a~ ~~b~~ ~~~c~~~", :STRIKETHROUGH_DOUBLE_TILDE, [:strikethrough])
assert_equal("<p>~a~ <del>b</del> ~~~c~~~</p>\n", html)
CommonMarker.render_html(@markdown, :DEFAULT, [:table, :strikethrough]).tap do |out|
refute_includes(out, "| a")
refute_includes(out, "| <strong>x</strong>")
refute_includes(out, "~~hi~~")
end
end
def test_extensions_with_renderers
doc = CommonMarker.render_doc(@markdown, :DEFAULT, [:table])
doc.to_html.tap do |out|
refute_includes(out, "| a")
["<table>", "<tr>", "<th>", "a", "</th>", "<td>", "c", "</td>", "<strong>x</strong>"].each { |html| assert_includes(out, html) }
assert_includes(out, "~~hi~~")
end
HtmlRenderer.new.render(doc).tap do |out|
refute_includes(out, "| a")
["<table>", "<tr>", "<th>", "a", "</th>", "<td>", "c", "</td>", "<strong>x</strong>"].each { |html| assert_includes(out, html) }
assert_includes(out, "~~hi~~")
end
doc = CommonMarker.render_doc("~a~ ~~b~~ ~~~c~~~", :STRIKETHROUGH_DOUBLE_TILDE, [:strikethrough])
assert_equal("<p>~a~ <del>b</del> ~~~c~~~</p>\n", HtmlRenderer.new.render(doc))
end
def test_bad_extension_specifications
assert_raises(TypeError) { CommonMarker.render_html(@markdown, :DEFAULT, "nope") }
assert_raises(TypeError) { CommonMarker.render_html(@markdown, :DEFAULT, ["table"]) }
assert_raises(ArgumentError) { CommonMarker.render_html(@markdown, :DEFAULT, [:table, :bad]) }
end
def test_comments_are_kept_as_expected
assert_equal("<!--hello--> <blah> <xmp>\n",
CommonMarker.render_html("<!--hello--> <blah> <xmp>\n", :UNSAFE, [:tagfilter]))
end
def test_table_prefer_style_attributes
assert_equal(<<~HTML, CommonMarker.render_html(<<~MD, :TABLE_PREFER_STYLE_ATTRIBUTES, [:table]))
<table>
<thead>
<tr>
<th style="text-align: left">aaa</th>
<th>bbb</th>
<th style="text-align: center">ccc</th>
<th>ddd</th>
<th style="text-align: right">eee</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left">fff</td>
<td>ggg</td>
<td style="text-align: center">hhh</td>
<td>iii</td>
<td style="text-align: right">jjj</td>
</tr>
</tbody>
</table>
HTML
aaa | bbb | ccc | ddd | eee
:-- | --- | :-: | --- | --:
fff | ggg | hhh | iii | jjj
MD
end
def test_plaintext
assert_equal(<<~HTML, CommonMarker.render_doc(<<~MD, :DEFAULT, [:table, :strikethrough]).to_plaintext)
Hello ~there~.
| a |
| --- |
| b |
HTML
Hello ~~there~~.
| a |
| - |
| b |
MD
end
end
|