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 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523
|
# -*- coding: utf-8 -*-
import unittest
from textwrap import dedent
from docutils import nodes
from docutils.utils import new_document
from docutils.readers import Reader
from docutils.core import publish_parts
from commonmark import Parser
from recommonmark.parser import CommonMarkParser
class TestParsing(unittest.TestCase):
def assertParses(self, source, expected, alt=False): # noqa
parser = CommonMarkParser()
parser.parse(dedent(source), new_document('<string>'))
self.maxDiff = None
self.assertMultiLineEqual(
dedent(expected).lstrip(),
dedent(parser.document.asdom().toprettyxml(indent=' ')),
)
def test_heading(self):
self.assertParses(
"""
# Heading 1
## Heading 2
Body
""",
"""
<?xml version="1.0" ?>
<document source="<string>">
<section ids="heading-1" names="heading\ 1">
<title>Heading 1</title>
<section ids="heading-2" names="heading\ 2">
<title>Heading 2</title>
<paragraph>Body</paragraph>
</section>
</section>
</document>
"""
)
def test_heading_inline(self):
self.assertParses(
"""# Heading *foo*""",
"""
<?xml version="1.0" ?>
<document source="<string>">
<section ids="heading-foo" names="heading\ foo">
<title>
Heading \n\
<emphasis>foo</emphasis>
</title>
</section>
</document>
"""
)
def test_paragraph(self):
self.assertParses(
"""This is a paragraph""",
"""
<?xml version="1.0" ?>
<document source="<string>">
<paragraph>This is a paragraph</paragraph>
</document>
"""
)
self.assertParses(
"""This is a paragraph *foo***bar**""",
"""
<?xml version="1.0" ?>
<document source="<string>">
<paragraph>
This is a paragraph \n\
<emphasis>foo</emphasis>
<strong>bar</strong>
</paragraph>
</document>
"""
)
self.assertParses(
"""
This is a paragraph
This is a new line
""",
"""
<?xml version="1.0" ?>
<document source="<string>">
<paragraph>
This is a paragraph
This is a new line
</paragraph>
</document>
"""
)
def test_entities(self):
self.assertParses(
u"""
©
""",
u"""
<?xml version="1.0" ?>
<document source="<string>">
<paragraph>©</paragraph>
</document>
"""
)
def test_links(self):
self.assertParses(
"""
This is a [link](http://example.com)
""",
"""
<?xml version="1.0" ?>
<document source="<string>">
<paragraph>
This is a \n\
<reference refuri="http://example.com">link</reference>
</paragraph>
</document>
"""
)
self.assertParses(
"""
This is a [link][example]
[example]: http://example.com "Example"
""",
"""
<?xml version="1.0" ?>
<document source="<string>">
<paragraph>
This is a \n\
<reference refuri="http://example.com" title="Example">link</reference>
</paragraph>
</document>
"""
)
self.assertParses(
"""
This is a [link][example]
[example]: http://example.com
""",
"""
<?xml version="1.0" ?>
<document source="<string>">
<paragraph>
This is a \n\
<reference refuri="http://example.com">link</reference>
</paragraph>
</document>
"""
)
self.assertParses(
"""
<http://example.com>
""",
"""
<?xml version="1.0" ?>
<document source="<string>">
<paragraph>
<reference refuri="http://example.com">http://example.com</reference>
</paragraph>
</document>
"""
)
self.assertParses(
"""
[link](/foo)
""",
"""
<?xml version="1.0" ?>
<document source="<string>">
<paragraph>
<pending_xref refdomain="None" refexplicit="True" reftarget="/foo" reftype="any" refwarn="True">
<reference refuri="/foo">link</reference>
</pending_xref>
</paragraph>
</document>
"""
)
self.assertParses(
"""
[link](foo)
""",
"""
<?xml version="1.0" ?>
<document source="<string>">
<paragraph>
<pending_xref refdomain="None" refexplicit="True" reftarget="foo" reftype="any" refwarn="True">
<reference refuri="foo">link</reference>
</pending_xref>
</paragraph>
</document>
"""
)
self.assertParses(
"""
**[link](foo)**
""",
"""
<?xml version="1.0" ?>
<document source="<string>">
<paragraph>
<strong>
<pending_xref refdomain="None" refexplicit="True" reftarget="foo" reftype="any" refwarn="True">
<reference refuri="foo">link</reference>
</pending_xref>
</strong>
</paragraph>
</document>
"""
)
def test_known_schemes(self):
self.assertParses(
"""
[https link](https://example.com)
[http link](http://example.com)
[mailto link](mailto:admin@example.com)
[custom scheme](custom:example.com)
[ref link](path/to/file:heading)
[ref link with spaces](<path/to/file:heading with spaces>)
""",
"""
<?xml version="1.0" ?>
<document source="<string>">
<paragraph>
<reference refuri="https://example.com">https link</reference>
<reference refuri="http://example.com">http link</reference>
<reference refuri="mailto:admin@example.com">mailto link</reference>
<reference refuri="custom:example.com">custom scheme</reference>
<pending_xref refdomain="None" refexplicit="True" reftarget="path/to/file:heading" reftype="any" refwarn="True">
<reference refuri="path/to/file:heading">ref link</reference>
</pending_xref>
<pending_xref refdomain="None" refexplicit="True" reftarget="path/to/file:heading with spaces" reftype="any" refwarn="True">
<reference refuri="path/to/file:heading%20with%20spaces">ref link with spaces</reference>
</pending_xref>
</paragraph>
</document>
"""
)
pass
def test_image(self):
self.assertParses(
"""

""",
"""
<?xml version="1.0" ?>
<document source="<string>">
<paragraph>
<image alt="foo "handle quotes"" uri="/url"></image>
</paragraph>
</document>
"""
)
def test_inline_code(self):
self.assertParses(
"""
This is `code` right?
""",
"""
<?xml version="1.0" ?>
<document source="<string>">
<paragraph>
This is \n\
<literal>code</literal>
right?
</paragraph>
</document>
"""
)
def test_bullet_list(self):
self.assertParses(
"""
* List item 1
* List item 2
* List item 3
""",
"""
<?xml version="1.0" ?>
<document source="<string>">
<bullet_list>
<list_item>
<paragraph>List item 1</paragraph>
</list_item>
<list_item>
<paragraph>List item 2</paragraph>
</list_item>
<list_item>
<paragraph>List item 3</paragraph>
</list_item>
</bullet_list>
</document>
"""
)
self.assertParses(
"""
* [List item 1](/1)
* [List item 2](/2)
* [List item 3](/3)
""",
"""
<?xml version="1.0" ?>
<document source="<string>">
<bullet_list>
<list_item>
<paragraph>
<pending_xref refdomain="None" refexplicit="True" reftarget="/1" reftype="any" refwarn="True">
<reference refuri="/1">List item 1</reference>
</pending_xref>
</paragraph>
</list_item>
<list_item>
<paragraph>
<pending_xref refdomain="None" refexplicit="True" reftarget="/2" reftype="any" refwarn="True">
<reference refuri="/2">List item 2</reference>
</pending_xref>
</paragraph>
</list_item>
<list_item>
<paragraph>
<pending_xref refdomain="None" refexplicit="True" reftarget="/3" reftype="any" refwarn="True">
<reference refuri="/3">List item 3</reference>
</pending_xref>
</paragraph>
</list_item>
</bullet_list>
</document>
"""
)
def test_enumerated_list(self):
self.assertParses(
"""
1. List item 1
2. List item 2
3. List item 3
""",
"""
<?xml version="1.0" ?>
<document source="<string>">
<enumerated_list>
<list_item>
<paragraph>List item 1</paragraph>
</list_item>
<list_item>
<paragraph>List item 2</paragraph>
</list_item>
<list_item>
<paragraph>List item 3</paragraph>
</list_item>
</enumerated_list>
</document>
"""
)
def test_code(self):
self.assertParses(
"""
Code:
#!/bin/sh
python
""",
"""
<?xml version="1.0" ?>
<document source="<string>">
<paragraph>Code:</paragraph>
<literal_block xml:space="preserve">#!/bin/sh
python</literal_block>
</document>
"""
)
def test_block_quote(self):
self.assertParses(
"""
> Here is a quoted list:
> \n\
> * Item 1
> * Item 2
""",
"""
<?xml version="1.0" ?>
<document source="<string>">
<block_quote>
<paragraph>Here is a quoted list:</paragraph>
<bullet_list>
<list_item>
<paragraph>Item 1</paragraph>
</list_item>
<list_item>
<paragraph>Item 2</paragraph>
</list_item>
</bullet_list>
</block_quote>
</document>
"""
)
def test_horizontal_rule(self):
self.assertParses(
"""
Foo
----
Bar
""",
"""
<?xml version="1.0" ?>
<document source="<string>">
<paragraph>Foo</paragraph>
<transition/>
<paragraph>Bar</paragraph>
</document>
"""
)
def test_html_inline(self):
self.assertParses(
"""
Foo
<blink>Blink</blink>
""",
"""
<?xml version="1.0" ?>
<document source="<string>">
<paragraph>Foo</paragraph>
<paragraph>
<raw format="html" xml:space="preserve"><blink></raw>
Blink
<raw format="html" xml:space="preserve"></blink></raw>
</paragraph>
</document>
"""
)
def test_html_block(self):
self.assertParses(
"""
Foo
<div>
<blink>Blink</blink>
</div>
""",
"""
<?xml version="1.0" ?>
<document source="<string>">
<paragraph>Foo</paragraph>
<raw format="html" xml:space="preserve"><div>
<blink>Blink</blink>
</div></raw>
</document>
"""
)
def test_eval(self):
self.assertParses(
"""
```eval_rst
.. image:: figure.png
```
""",
"""
<?xml version="1.0" ?>
<document source="<string>">
<literal_block language="eval_rst" xml:space="preserve">\
.. image:: figure.png</literal_block>
</document>
"""
)
def test_linebreak(self):
self.assertParses(
"""
line1
line2
""",
"""
<?xml version="1.0" ?>
<document source="<string>">
<paragraph>
line1
<raw format="html" xml:space="preserve"><br /></raw>
line2
</paragraph>
</document>
"""
)
if __name__ == '__main__':
unittest.main()
|