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
|
#!/usr/bin/env python
# $Id: test_docutils_xml.py 5174 2007-05-31 00:01:52Z wiemann $
# Author: Lea Wiemann <LeWiemann@gmail.com>
# Copyright: This module has been placed in the public domain.
"""
Test for docutils XML writer.
"""
from __init__ import DocutilsTestSupport
import docutils
import docutils.core
class DocutilsXMLTestCase(DocutilsTestSupport.StandardTestCase):
input = """\
Test
----------
Test. \xc3\xa4\xc3\xb6\xc3\xbc\xe2\x82\xac"""
xmldecl = '<?xml version="1.0" encoding="iso-8859-1"?>\n'
doctypedecl = '<!DOCTYPE document PUBLIC "+//IDN docutils.sourceforge.net//DTD Docutils Generic//EN//XML" "http://docutils.sourceforge.net/docs/ref/docutils.dtd">\n'
generatedby = '<!-- Generated by Docutils %s -->\n' % docutils.__version__
bodynormal = '<document source="<string>"><paragraph>Test</paragraph><transition/><paragraph>Test. \xe4\xf6\xfc€</paragraph></document>'
bodynewlines = """\
<document source="<string>">
<paragraph>
Test
</paragraph>
<transition/>
<paragraph>
Test. \xe4\xf6\xfc€
</paragraph>
</document>
"""
bodyindents = """\
<document source="<string>">
<paragraph>
Test
</paragraph>
<transition/>
<paragraph>
Test. \xe4\xf6\xfc€
</paragraph>
</document>
"""
def test_publish(self):
settings = {'input_encoding': 'utf8',
'output_encoding': 'iso-8859-1',
'_disable_config': 1}
for settings['newlines'] in 0, 1:
for settings['indents'] in 0, 1:
for settings['xml_declaration'] in 0, 1:
for settings['doctype_declaration'] in 0, 1:
expected = ''
if settings['xml_declaration']:
expected += self.xmldecl
if settings['doctype_declaration']:
expected += self.doctypedecl
expected += self.generatedby
if settings['indents']:
expected += self.bodyindents
elif settings['newlines']:
expected += self.bodynewlines
else:
expected += self.bodynormal
self.assertEqual(docutils.core.publish_string
(source=self.input,
reader_name='standalone',
writer_name='docutils_xml',
settings_overrides=settings),
expected)
if __name__ == '__main__':
import unittest
unittest.main()
|