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
|
#!/usr/bin/python
"""
:Author: David Goodger
:Contact: goodger@users.sourceforge.net
:Revision: $Revision: 1.3 $
:Date: $Date: 2002/04/25 03:43:53 $
:Copyright: This module has been placed in the public domain.
Tests for states.py.
"""
from __init__ import DocutilsTestSupport
def suite():
s = DocutilsTestSupport.ParserTestSuite()
s.generateTests(totest)
return s
totest = {}
totest['substitution_definitions'] = [
["""\
Here's an image substitution definition:
.. |symbol| image:: symbol.png
""",
"""\
<document>
<paragraph>
Here's an image substitution definition:
<substitution_definition name="symbol">
<image alt="symbol" uri="symbol.png">
"""],
["""\
Embedded directive starts on the next line:
.. |symbol|
image:: symbol.png
""",
"""\
<document>
<paragraph>
Embedded directive starts on the next line:
<substitution_definition name="symbol">
<image alt="symbol" uri="symbol.png">
"""],
["""\
Here's a series of substitution definitions:
.. |symbol 1| image:: symbol1.png
.. |SYMBOL 2| image:: symbol2.png
:height: 50
:width: 100
.. |symbol 3| image:: symbol3.png
""",
"""\
<document>
<paragraph>
Here's a series of substitution definitions:
<substitution_definition name="symbol 1">
<image alt="symbol 1" uri="symbol1.png">
<substitution_definition name="symbol 2">
<image alt="SYMBOL 2" height="50" uri="symbol2.png" width="100">
<substitution_definition name="symbol 3">
<image alt="symbol 3" uri="symbol3.png">
"""],
["""\
.. |very long substitution text,
split across lines| image:: symbol.png
""",
"""\
<document>
<substitution_definition name="very long substitution text, split across lines">
<image alt="very long substitution text, split across lines" uri="symbol.png">
"""],
["""\
.. |symbol 1| image:: symbol.png
Followed by a paragraph.
.. |symbol 2| image:: symbol.png
Followed by a block quote.
""",
"""\
<document>
<substitution_definition name="symbol 1">
<image alt="symbol 1" uri="symbol.png">
<paragraph>
Followed by a paragraph.
<substitution_definition name="symbol 2">
<image alt="symbol 2" uri="symbol.png">
<block_quote>
<paragraph>
Followed by a block quote.
"""],
["""\
Here are some duplicate substitution definitions:
.. |symbol| image:: symbol.png
.. |symbol| image:: symbol.png
""",
"""\
<document>
<paragraph>
Here are some duplicate substitution definitions:
<substitution_definition dupname="symbol">
<image alt="symbol" uri="symbol.png">
<system_message level="3" type="ERROR">
<paragraph>
Duplicate substitution definition name: "symbol".
<substitution_definition name="symbol">
<image alt="symbol" uri="symbol.png">
"""],
["""\
Here are some bad cases:
.. |symbol| image:: symbol.png
No blank line after.
.. |empty|
.. |unknown| directive:: symbol.png
.. |invalid 1| there's no directive here
.. |invalid 2| there's no directive here
With some block quote text, line 1.
And some more, line 2.
.. |invalid 3| there's no directive here
.. | bad name | bad data
""",
"""\
<document>
<paragraph>
Here are some bad cases:
<substitution_definition name="symbol">
<image alt="symbol" uri="symbol.png">
<system_message level="2" type="WARNING">
<paragraph>
Explicit markup ends without a blank line; unexpected unindent at line 4.
<paragraph>
No blank line after.
<system_message level="2" type="WARNING">
<paragraph>
Substitution definition "empty" missing contents at line 6.
<literal_block>
.. |empty|
<system_message level="3" type="ERROR">
<paragraph>
Unknown directive type "directive" at line 8.
<literal_block>
directive:: symbol.png
<system_message level="2" type="WARNING">
<paragraph>
Substitution definition "unknown" empty or invalid at line 8.
<literal_block>
.. |unknown| directive:: symbol.png
<system_message level="2" type="WARNING">
<paragraph>
Substitution definition "invalid 1" empty or invalid at line 10.
<literal_block>
.. |invalid 1| there's no directive here
<system_message level="2" type="WARNING">
<paragraph>
Substitution definition "invalid 2" empty or invalid at line 11.
<literal_block>
.. |invalid 2| there's no directive here
With some block quote text, line 1.
And some more, line 2.
<system_message level="2" type="WARNING">
<paragraph>
Explicit markup ends without a blank line; unexpected unindent at line 12.
<block_quote>
<paragraph>
With some block quote text, line 1.
And some more, line 2.
<system_message level="2" type="WARNING">
<paragraph>
Substitution definition "invalid 3" empty or invalid at line 15.
<literal_block>
.. |invalid 3| there's no directive here
<comment>
| bad name | bad data
"""],
]
if __name__ == '__main__':
import unittest
unittest.main(defaultTest='suite')
|