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 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
|
# This file is part of python-markups test suite
# License: 3-clause BSD, see LICENSE file
# Copyright: (C) Dmitry Shachnev, 2012-2023
import importlib
import unittest
import warnings
from os.path import join
from tempfile import TemporaryDirectory
from markups.markdown import MarkdownMarkup, _canonicalized_ext_names
try:
import pymdownx
except ImportError:
pymdownx = None
try:
importlib.import_module("yaml")
HAVE_YAML = True
except ImportError:
HAVE_YAML = False
tables_source = """th1 | th2
--- | ---
t11 | t21
t12 | t22"""
tables_output = """<table>
<thead>
<tr>
<th>th1</th>
<th>th2</th>
</tr>
</thead>
<tbody>
<tr>
<td>t11</td>
<td>t21</td>
</tr>
<tr>
<td>t12</td>
<td>t22</td>
</tr>
</tbody>
</table>
"""
deflists_source = """Apple
: Pomaceous fruit of plants of the genus Malus in
the family Rosaceae.
Orange
: The fruit of an evergreen tree of the genus Citrus."""
deflists_output = """<dl>
<dt>Apple</dt>
<dd>Pomaceous fruit of plants of the genus Malus in
the family Rosaceae.</dd>
<dt>Orange</dt>
<dd>The fruit of an evergreen tree of the genus Citrus.</dd>
</dl>
"""
mathjax_header = "<!--- Type: markdown; Required extensions: mathjax --->\n\n"
mathjax_source = r"""$i_1$ some text \$escaped\$ $i_2$
\(\LaTeX\) \\(escaped\)
$$m_1$$ text $$m_2$$
\[m_3\] text \[m_4\]
\( \sin \alpha \) text \( \sin \beta \)
\[ \alpha \] text \[ \beta \]
\$$escaped\$$ \\[escaped\]
"""
mathjax_output = r"""<p>
<script type="math/tex">i_1</script> some text $escaped$ <script type="math/tex">i_2</script>
</p>
<p>
<script type="math/tex">\LaTeX</script> \(escaped)</p>
<p>
<script type="math/tex; mode=display">m_1</script> text <script type="math/tex; mode=display">m_2</script>
</p>
<p>
<script type="math/tex; mode=display">m_3</script> text <script type="math/tex; mode=display">m_4</script>
</p>
<p>
<script type="math/tex"> \sin \alpha </script> text <script type="math/tex"> \sin \beta </script>
</p>
<p>
<script type="math/tex; mode=display"> \alpha </script> text <script type="math/tex; mode=display"> \beta </script>
</p>
<p>$$escaped$$ \[escaped]</p>
""" # noqa: E501
mathjax_multiline_source = r"""
$$
\TeX
\LaTeX
$$
"""
mathjax_multiline_output = r"""<p>
<script type="math/tex; mode=display">
\TeX
\LaTeX
</script>
</p>
"""
mathjax_multilevel_source = r"""
\begin{equation*}
\begin{pmatrix}
1 & 0\\
0 & 1
\end{pmatrix}
\end{equation*}
"""
mathjax_multilevel_output = r"""<p>
<script type="math/tex; mode=display">\begin{equation*}
\begin{pmatrix}
1 & 0\\
0 & 1
\end{pmatrix}
\end{equation*}</script>
</p>
"""
triple_backticks_in_list_source = """
1. List item 1
```python
import this
```
2. List item 2
"""
@unittest.skipUnless(MarkdownMarkup.available(), "Markdown not available")
class MarkdownTest(unittest.TestCase):
maxDiff = None
def setUp(self) -> None:
warnings.simplefilter("ignore", Warning)
def test_empty_file(self) -> None:
markup = MarkdownMarkup()
self.assertEqual(markup.convert("").get_document_body(), "\n")
def test_extensions_loading(self) -> None:
markup = MarkdownMarkup()
self.assertIsNone(markup._canonicalize_extension_name("nonexistent"))
self.assertIsNone(
markup._canonicalize_extension_name("nonexistent(someoption)"),
)
self.assertIsNone(markup._canonicalize_extension_name(".foobar"))
self.assertEqual(
markup._canonicalize_extension_name("meta"),
"markdown.extensions.meta",
)
name, parameters = markup._split_extension_config("toc(anchorlink=1, foo=bar)")
self.assertEqual(name, "toc")
self.assertEqual(parameters, {"anchorlink": "1", "foo": "bar"})
def test_loading_extensions_by_module_name(self) -> None:
markup = MarkdownMarkup(extensions=["markdown.extensions.footnotes"])
source = (
"Footnotes[^1] have a label and the content.\n\n"
"[^1]: This is a footnote content."
)
html = markup.convert(source).get_document_body()
self.assertIn("<sup", html)
self.assertIn("footnote-backref", html)
def test_removing_duplicate_extensions(self) -> None:
markup = MarkdownMarkup(
extensions=["remove_extra", "toc", "markdown.extensions.toc"],
)
self.assertEqual(len(markup.extensions), 1)
self.assertIn("markdown.extensions.toc", markup.extensions)
def test_extensions_parameters(self) -> None:
markup = MarkdownMarkup(extensions=["toc(anchorlink=1)"])
html = markup.convert("## Header").get_document_body()
self.assertEqual(
html,
'<h2 id="header"><a class="toclink" href="#header">Header</a></h2>\n',
)
self.assertEqual(_canonicalized_ext_names["toc"], "markdown.extensions.toc")
def test_document_extensions_parameters(self) -> None:
markup = MarkdownMarkup(extensions=[])
toc_header = "<!--- Required extensions: toc(anchorlink=1) --->\n\n"
html = markup.convert(toc_header + "## Header").get_document_body()
self.assertEqual(
html,
toc_header + '<h2 id="header"><a class="toclink" href="#header">Header</a>'
"</h2>\n",
)
toc_header = (
"<!--- Required extensions:"
" toc(title=Table of contents, baselevel=3) wikilinks --->\n\n"
)
html = markup.convert(
toc_header + "[TOC]\n\n# Header\n[[Link]]",
).get_document_body()
self.assertEqual(
html,
toc_header + '<div class="toc">'
'<span class="toctitle">Table of contents</span><ul>\n'
'<li><a href="#header">Header</a></li>\n'
"</ul>\n</div>\n"
'<h3 id="header">Header</h3>\n'
'<p><a class="wikilink" href="/Link/">Link</a></p>\n',
)
def test_document_extensions_change(self) -> None:
"""Extensions from document should be replaced on each run, not added."""
markup = MarkdownMarkup(extensions=[])
toc_header = "<!-- Required extensions: toc -->\n\n"
content = "[TOC]\n\n# Header"
html = markup.convert(toc_header + content).get_document_body()
self.assertNotIn("<p>[TOC]</p>", html)
html = markup.convert(content).get_document_body()
self.assertIn("<p>[TOC]</p>", html)
html = markup.convert(toc_header + content).get_document_body()
self.assertNotIn("<p>[TOC]</p>", html)
def test_extra(self) -> None:
markup = MarkdownMarkup()
html = markup.convert(tables_source).get_document_body()
self.assertEqual(tables_output, html)
html = markup.convert(deflists_source).get_document_body()
self.assertEqual(deflists_output, html)
def test_remove_extra(self) -> None:
markup = MarkdownMarkup(extensions=["remove_extra"])
html = markup.convert(tables_source).get_document_body()
self.assertNotIn("<table>", html)
def test_remove_extra_document_extension(self) -> None:
markup = MarkdownMarkup(extensions=[])
html = markup.convert(
"Required-Extensions: remove_extra\n\n" + tables_source,
).get_document_body()
self.assertNotIn("<table>", html)
def test_remove_extra_double(self) -> None:
"""Removing extra twice should not cause a crash."""
markup = MarkdownMarkup(extensions=["remove_extra"])
markup.convert("Required-Extensions: remove_extra\n")
def test_remove_extra_removes_mathjax(self) -> None:
markup = MarkdownMarkup(extensions=["remove_extra"])
html = markup.convert("$$1$$").get_document_body()
self.assertNotIn("math/tex", html)
def test_meta(self) -> None:
markup = MarkdownMarkup()
text = "Required-Extensions: meta\nTitle: Hello, world!\n\nSome text here."
title = markup.convert(text).get_document_title()
self.assertEqual("Hello, world!", title)
def test_default_math(self) -> None:
# by default $...$ delimiter should be disabled
markup = MarkdownMarkup(extensions=[])
self.assertEqual("<p>$1$</p>\n", markup.convert("$1$").get_document_body())
self.assertEqual(
'<p>\n<script type="math/tex; mode=display">1</script>\n</p>\n',
markup.convert("$$1$$").get_document_body(),
)
def test_mathjax(self) -> None:
markup = MarkdownMarkup(extensions=["mathjax"])
# Escaping should work
self.assertEqual("", markup.convert("Hello, \\$2+2$!").get_javascript())
js = markup.convert(mathjax_source).get_javascript()
self.assertIn("<script", js)
body = markup.convert(mathjax_source).get_document_body()
self.assertEqual(mathjax_output, body)
def test_mathjax_document_extension(self) -> None:
markup = MarkdownMarkup()
text = mathjax_header + mathjax_source
body = markup.convert(text).get_document_body()
self.assertEqual(mathjax_header + mathjax_output, body)
def test_mathjax_multiline(self) -> None:
markup = MarkdownMarkup(extensions=["mathjax"])
body = markup.convert(mathjax_multiline_source).get_document_body()
self.assertEqual(mathjax_multiline_output, body)
def test_mathjax_multilevel(self) -> None:
markup = MarkdownMarkup()
body = markup.convert(mathjax_multilevel_source).get_document_body()
self.assertEqual(mathjax_multilevel_output, body)
def test_mathjax_asciimath(self) -> None:
markup = MarkdownMarkup(extensions=["mdx_math(use_asciimath=1)"])
converted = markup.convert(r"\( [[a,b],[c,d]] \)")
body = converted.get_document_body()
self.assertIn('<script type="math/asciimath">', body)
self.assertIn('<script type="text/javascript"', converted.get_javascript())
def test_not_loading_sys(self) -> None:
with self.assertWarnsRegex(ImportWarning, 'Extension "sys" does not exist.'):
markup = MarkdownMarkup(extensions=["sys"])
self.assertNotIn("sys", markup.extensions)
def test_extensions_txt_file(self) -> None:
with TemporaryDirectory() as tmpdirname:
txtfilename = join(tmpdirname, "markdown-extensions.txt")
with open(txtfilename, "w") as f:
f.write("foo\n# bar\nbaz(arg=value)\n")
markup = MarkdownMarkup(filename=join(tmpdirname, "foo.md"))
self.assertEqual(
markup.global_extensions,
[("foo", {}), ("baz", {"arg": "value"})],
)
@unittest.skipIf(not HAVE_YAML, "PyYAML module is not available")
def test_extensions_yaml_file(self) -> None:
with TemporaryDirectory() as tmpdirname:
yamlfilename = join(tmpdirname, "markdown-extensions.yaml")
with open(yamlfilename, "w") as f:
f.write(
"- smarty:\n"
" substitutions:\n"
' left-single-quote: "‚"\n'
' right-single-quote: "‘"\n'
" smart_dashes: False\n"
"- toc:\n"
" permalink: True\n"
' separator: "_"\n'
" toc_depth: 3\n"
"- sane_lists\n",
)
markup = MarkdownMarkup(filename=join(tmpdirname, "foo.md"))
self.assertEqual(
markup.global_extensions,
[
(
"smarty",
{
"substitutions": {
"left-single-quote": "‚",
"right-single-quote": "‘",
},
"smart_dashes": False,
},
),
("toc", {"permalink": True, "separator": "_", "toc_depth": 3}),
("sane_lists", {}),
],
)
converted = markup.convert("'foo' -- bar")
body = converted.get_document_body()
self.assertEqual(body, "<p>‚foo‘ -- bar</p>\n")
@unittest.skipIf(not HAVE_YAML, "PyYAML module is not available")
def test_extensions_yaml_file_invalid(self) -> None:
with TemporaryDirectory() as tmpdirname:
yamlfilename = join(tmpdirname, "markdown-extensions.yaml")
with open(yamlfilename, "w") as f:
f.write("[this is an invalid YAML file")
with self.assertWarns(SyntaxWarning) as cm:
MarkdownMarkup(filename=join(tmpdirname, "foo.md"))
self.assertIn("Failed parsing", str(cm.warning))
self.assertIn("expected ',' or ']'", str(cm.warning))
def test_codehilite(self) -> None:
markup = MarkdownMarkup(extensions=["codehilite"])
converted = markup.convert(" :::python\n import foo")
stylesheet = converted.get_stylesheet()
self.assertIn(".codehilite .k {", stylesheet)
body = converted.get_document_body()
self.assertIn('<div class="codehilite">', body)
def test_codehilite_custom_class(self) -> None:
markup = MarkdownMarkup(extensions=["codehilite(css_class=myclass)"])
converted = markup.convert(" :::python\n import foo")
stylesheet = converted.get_stylesheet()
self.assertIn(".myclass .k {", stylesheet)
body = converted.get_document_body()
self.assertIn('<div class="myclass">', body)
@unittest.skipIf(pymdownx is None, "pymdownx module is not available")
def test_pymdownx_highlight(self) -> None:
markup = MarkdownMarkup(extensions=["pymdownx.highlight"])
converted = markup.convert(" import foo")
stylesheet = converted.get_stylesheet()
self.assertIn(".highlight .k {", stylesheet)
body = converted.get_document_body()
self.assertIn('<div class="highlight">', body)
@unittest.skipIf(pymdownx is None, "pymdownx module is not available")
def test_pymdownx_highlight_custom_class(self) -> None:
markup = MarkdownMarkup(extensions=["pymdownx.highlight(css_class=myclass)"])
converted = markup.convert(" import foo")
stylesheet = converted.get_stylesheet()
self.assertIn(".myclass .k {", stylesheet)
body = converted.get_document_body()
self.assertIn('<div class="myclass">', body)
@unittest.skipIf(pymdownx is None, "pymdownx module is not available")
def test_pymdownx_superfences_is_preferred(self) -> None:
markup = MarkdownMarkup(extensions=["pymdownx.superfences"])
converted = markup.convert(triple_backticks_in_list_source)
body = converted.get_document_body()
# produced by pymdownx.superfences
self.assertIn('<div class="highlight">', body)
# produced by fenced_code (part of extra)
self.assertNotIn("<code>python", body)
|