summaryrefslogtreecommitdiff
path: root/docutils/test/test_writers/test_html4css1.py
diff options
context:
space:
mode:
Diffstat (limited to 'docutils/test/test_writers/test_html4css1.py')
-rwxr-xr-xdocutils/test/test_writers/test_html4css1.py373
1 files changed, 0 insertions, 373 deletions
diff --git a/docutils/test/test_writers/test_html4css1.py b/docutils/test/test_writers/test_html4css1.py
deleted file mode 100755
index 7d87ee324..000000000
--- a/docutils/test/test_writers/test_html4css1.py
+++ /dev/null
@@ -1,373 +0,0 @@
-#! /usr/bin/env python
-
-# Author: reggie dugard
-# Contact: reggie@users.sourceforge.net
-# Revision: $Revision$
-# Date: $Date$
-# Copyright: This module has been placed in the public domain.
-
-"""
-Test for fragment code in HTML writer.
-
-Note: the 'body' and 'whole' entries have been removed from the parts
-dictionaries (redundant), along with 'meta' and 'stylesheet' entries with
-standard values, and any entries with empty values.
-"""
-
-from __init__ import DocutilsTestSupport
-from docutils import core
-
-def suite():
- s = DocutilsTestSupport.HtmlPublishPartsTestSuite()
- s.generateTests(totest)
- return s
-
-
-totest = {}
-
-totest['Title promotion'] = ({'stylesheet_path': '',
- 'embed_stylesheet': 0}, [
-["""\
-Simple String
-""",
-"""\
-{'fragment': '''<p>Simple String</p>\\n''',
- 'html_body': '''<div class="document">
-<p>Simple String</p>
-</div>\\n''',
- 'html_head': '''...<title></title>\\n'''}
-"""],
-["""\
-Simple String with *markup*
-""",
-"""\
-{'fragment': '''<p>Simple String with <em>markup</em></p>\\n''',
- 'html_body': '''<div class="document">
-<p>Simple String with <em>markup</em></p>
-</div>\\n''',
- 'html_head': '''...<title></title>\\n'''}
-"""],
-["""\
-Simple String with an even simpler ``inline literal``
-""",
-"""\
-{'fragment': '''<p>Simple String with an even simpler <tt class="docutils literal"><span class="pre">inline</span> <span class="pre">literal</span></tt></p>\\n''',
- 'html_body': '''<div class="document">
-<p>Simple String with an even simpler <tt class="docutils literal"><span class="pre">inline</span> <span class="pre">literal</span></tt></p>
-</div>\\n''',
- 'html_head': '''...<title></title>\\n'''}
-"""],
-["""\
-A simple `anonymous reference`__
-
-__ http://www.test.com/test_url
-""",
-"""\
-{'fragment': '''<p>A simple <a class="reference" href="http://www.test.com/test_url">anonymous reference</a></p>\\n''',
- 'html_body': '''<div class="document">
-<p>A simple <a class="reference" href="http://www.test.com/test_url">anonymous reference</a></p>
-</div>\\n''',
- 'html_head': '''...<title></title>\\n'''}
-"""],
-["""\
-One paragraph.
-
-Two paragraphs.
-""",
-"""\
-{'fragment': '''<p>One paragraph.</p>
-<p>Two paragraphs.</p>\\n''',
- 'html_body': '''<div class="document">
-<p>One paragraph.</p>
-<p>Two paragraphs.</p>
-</div>\\n''',
- 'html_head': '''...<title></title>\\n'''}
-"""],
-["""\
-A simple `named reference`_ with stuff in between the
-reference and the target.
-
-.. _`named reference`: http://www.test.com/test_url
-""",
-"""\
-{'fragment': '''<p>A simple <a class="reference" href="http://www.test.com/test_url">named reference</a> with stuff in between the
-reference and the target.</p>\\n''',
- 'html_body': '''<div class="document">
-<p>A simple <a class="reference" href="http://www.test.com/test_url">named reference</a> with stuff in between the
-reference and the target.</p>
-</div>\\n''',
- 'html_head': '''...<title></title>\\n'''}
-"""],
-["""\
-+++++
-Title
-+++++
-
-Subtitle
-========
-
-Some stuff
-
-Section
--------
-
-Some more stuff
-
-Another Section
-...............
-
-And even more stuff
-""",
-"""\
-{'fragment': '''<p>Some stuff</p>
-<div class="section">
-<h1><a id="section" name="section">Section</a></h1>
-<p>Some more stuff</p>
-<div class="section">
-<h2><a id="another-section" name="another-section">Another Section</a></h2>
-<p>And even more stuff</p>
-</div>
-</div>\\n''',
- 'html_body': '''<div class="document" id="title">
-<h1 class="title">Title</h1>
-<h2 class="subtitle" id="subtitle">Subtitle</h2>
-<p>Some stuff</p>
-<div class="section">
-<h1><a id="section" name="section">Section</a></h1>
-<p>Some more stuff</p>
-<div class="section">
-<h2><a id="another-section" name="another-section">Another Section</a></h2>
-<p>And even more stuff</p>
-</div>
-</div>
-</div>\\n''',
- 'html_head': '''...<title>Title</title>\\n''',
- 'html_subtitle': '''<h2 class="subtitle" id="subtitle">Subtitle</h2>\\n''',
- 'html_title': '''<h1 class="title">Title</h1>\\n''',
- 'subtitle': '''Subtitle''',
- 'title': '''Title'''}
-"""],
-["""\
-+++++
-Title
-+++++
-
-:author: me
-
-Some stuff
-""",
-"""\
-{'docinfo': '''<table class="docinfo" frame="void" rules="none">
-<col class="docinfo-name" />
-<col class="docinfo-content" />
-<tbody valign="top">
-<tr><th class="docinfo-name">Author:</th>
-<td>me</td></tr>
-</tbody>
-</table>\\n''',
- 'fragment': '''<p>Some stuff</p>\\n''',
- 'html_body': '''<div class="document" id="title">
-<h1 class="title">Title</h1>
-<table class="docinfo" frame="void" rules="none">
-<col class="docinfo-name" />
-<col class="docinfo-content" />
-<tbody valign="top">
-<tr><th class="docinfo-name">Author:</th>
-<td>me</td></tr>
-</tbody>
-</table>
-<p>Some stuff</p>
-</div>\\n''',
- 'html_head': '''...<title>Title</title>
-<meta name="author" content="me" />\\n''',
- 'html_title': '''<h1 class="title">Title</h1>\\n''',
- 'meta': '''<meta name="author" content="me" />\\n''',
- 'title': '''Title'''}
-"""]
-])
-
-totest['No title promotion'] = ({'doctitle_xform' : 0,
- 'stylesheet_path': '',
- 'embed_stylesheet': 0}, [
-["""\
-Simple String
-""",
-"""\
-{'fragment': '''<p>Simple String</p>\\n''',
- 'html_body': '''<div class="document">
-<p>Simple String</p>
-</div>\\n''',
- 'html_head': '''...<title></title>\\n'''}
-"""],
-["""\
-Simple String with *markup*
-""",
-"""\
-{'fragment': '''<p>Simple String with <em>markup</em></p>\\n''',
- 'html_body': '''<div class="document">
-<p>Simple String with <em>markup</em></p>
-</div>\\n''',
- 'html_head': '''...<title></title>\\n'''}
-"""],
-["""\
-Simple String with an even simpler ``inline literal``
-""",
-"""\
-{'fragment': '''<p>Simple String with an even simpler <tt class="docutils literal"><span class="pre">inline</span> <span class="pre">literal</span></tt></p>\\n''',
- 'html_body': '''<div class="document">
-<p>Simple String with an even simpler <tt class="docutils literal"><span class="pre">inline</span> <span class="pre">literal</span></tt></p>
-</div>\\n''',
- 'html_head': '''...<title></title>\\n'''}
-"""],
-["""\
-A simple `anonymous reference`__
-
-__ http://www.test.com/test_url
-""",
-"""\
-{'fragment': '''<p>A simple <a class="reference" href="http://www.test.com/test_url">anonymous reference</a></p>\\n''',
- 'html_body': '''<div class="document">
-<p>A simple <a class="reference" href="http://www.test.com/test_url">anonymous reference</a></p>
-</div>\\n''',
- 'html_head': '''...<title></title>\\n'''}
-"""],
-["""\
-A simple `named reference`_ with stuff in between the
-reference and the target.
-
-.. _`named reference`: http://www.test.com/test_url
-""",
-"""\
-{'fragment': '''<p>A simple <a class="reference" href="http://www.test.com/test_url">named reference</a> with stuff in between the
-reference and the target.</p>\\n''',
- 'html_body': '''<div class="document">
-<p>A simple <a class="reference" href="http://www.test.com/test_url">named reference</a> with stuff in between the
-reference and the target.</p>
-</div>\\n''',
- 'html_head': '''...<title></title>\\n'''}
-"""],
-["""\
-+++++
-Title
-+++++
-
-Not A Subtitle
-==============
-
-Some stuff
-
-Section
--------
-
-Some more stuff
-
-Another Section
-...............
-
-And even more stuff
-""",
-"""\
-{'fragment': '''<div class="section">
-<h1><a id="title" name="title">Title</a></h1>
-<div class="section">
-<h2><a id="not-a-subtitle" name="not-a-subtitle">Not A Subtitle</a></h2>
-<p>Some stuff</p>
-<div class="section">
-<h3><a id="section" name="section">Section</a></h3>
-<p>Some more stuff</p>
-<div class="section">
-<h4><a id="another-section" name="another-section">Another Section</a></h4>
-<p>And even more stuff</p>
-</div>
-</div>
-</div>
-</div>\\n''',
- 'html_body': '''<div class="document">
-<div class="section">
-<h1><a id="title" name="title">Title</a></h1>
-<div class="section">
-<h2><a id="not-a-subtitle" name="not-a-subtitle">Not A Subtitle</a></h2>
-<p>Some stuff</p>
-<div class="section">
-<h3><a id="section" name="section">Section</a></h3>
-<p>Some more stuff</p>
-<div class="section">
-<h4><a id="another-section" name="another-section">Another Section</a></h4>
-<p>And even more stuff</p>
-</div>
-</div>
-</div>
-</div>
-</div>\\n''',
- 'html_head': '''...<title></title>\\n'''}
-"""],
-["""\
-* bullet
-* list
-""",
-"""\
-{'fragment': '''<ul class="simple">
-<li>bullet</li>
-<li>list</li>
-</ul>\\n''',
- 'html_body': '''<div class="document">
-<ul class="simple">
-<li>bullet</li>
-<li>list</li>
-</ul>
-</div>\\n''',
- 'html_head': '''...<title></title>\\n'''}
-"""],
-["""\
-Not a docinfo.
-
-:This: .. _target:
-
- is
-:a:
-:simple:
-:field: list
-""",
-"""\
-{'fragment': '''<p>Not a docinfo.</p>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">This:</th><td class="field-body"><p class="first last" id="target">is</p>
-</td>
-</tr>
-<tr class="field"><th class="field-name">a:</th><td class="field-body"></td>
-</tr>
-<tr class="field"><th class="field-name">simple:</th><td class="field-body"></td>
-</tr>
-<tr class="field"><th class="field-name">field:</th><td class="field-body">list</td>
-</tr>
-</tbody>
-</table>\\n''',
- 'html_body': '''<div class="document">
-<p>Not a docinfo.</p>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">This:</th><td class="field-body"><p class="first last" id="target">is</p>
-</td>
-</tr>
-<tr class="field"><th class="field-name">a:</th><td class="field-body"></td>
-</tr>
-<tr class="field"><th class="field-name">simple:</th><td class="field-body"></td>
-</tr>
-<tr class="field"><th class="field-name">field:</th><td class="field-body">list</td>
-</tr>
-</tbody>
-</table>
-</div>\\n''',
- 'html_head': '''...<title></title>\\n'''}
-"""],
-])
-
-
-if __name__ == '__main__':
- import unittest
- unittest.main(defaultTest='suite')