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
|
#!/usr/bin/env python3
# :Copyright: © 2020 Günter Milde.
# :License: Released under the terms of the `2-Clause BSD license`_, in short:
#
# Copying and distribution of this file, with or without modification,
# are permitted in any medium without royalty provided the copyright
# notice and this notice are preserved.
# This file is offered as-is, without any warranty.
#
# .. _2-Clause BSD license: https://opensource.org/licenses/BSD-2-Clause
"""
Various tests for the recommonmark parser.
"""
from pathlib import Path
import sys
import unittest
if __name__ == '__main__':
# prepend the "docutils root" to the Python library path
# so we import the local `docutils` package.
sys.path.insert(0, str(Path(__file__).resolve().parents[3]))
from docutils.core import publish_string
from docutils.parsers.rst import directives as rst_directives
from docutils.parsers.recommonmark_wrapper import Parser
sample_with_html = """\
A paragraph:
<p>A HTML block.</p>
Next paragraph.
<script type="text/javascript">
// some dangerous JavaScript
Final paragraph.
"""
@unittest.skipIf(Parser is None, 'Optional "recommonmark" module not found.')
class RecommonmarkParserTests(unittest.TestCase):
mysettings = {'output_encoding': 'unicode',
'warning_stream': '',
'raw_enabled': False,
}
def test_parser_name(self):
# cf. ../test_rst/test_directives/test__init__.py
# this is used in the "include" directive's :parser: option.
self.assertIs(rst_directives.parser_name('recommonmark'), Parser)
def test_raw_disabled(self):
output = publish_string(sample_with_html, parser=Parser(),
settings_overrides=self.mysettings)
self.assertNotIn('<raw>', output)
self.assertIn('<system_message', output)
self.assertIn('Raw content disabled.', output)
def test_raw_disabled_inline(self):
output = publish_string('foo <a href="uri">', parser=Parser(),
settings_overrides=self.mysettings)
self.assertNotIn('<raw>', output)
self.assertIn('<problematic', output)
self.assertIn('<system_message', output)
self.assertIn('Raw content disabled.', output)
if __name__ == '__main__':
unittest.main()
|