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
|
#!/usr/bin/python
"""
:Author: David Goodger
:Contact: goodger@users.sourceforge.net
:Revision: $Revision: 1.3 $
:Date: $Date: 2002/06/28 04:20:46 $
:Copyright: This module has been placed in the public domain.
Tests for images.py image directives.
"""
from __init__ import DocutilsTestSupport
def suite():
s = DocutilsTestSupport.ParserTestSuite()
s.generateTests(totest)
return s
totest = {}
totest['images'] = [
["""\
.. image:: picture.png
""",
"""\
<document>
<image uri="picture.png">
"""],
["""\
.. image::
""",
"""\
<document>
<system_message level="3" type="ERROR">
<paragraph>
Missing image URI argument at line 1.
<literal_block>
.. image::
"""],
["""\
.. image:: one two three
""",
"""\
<document>
<system_message level="3" type="ERROR">
<paragraph>
Image URI at line 1 contains whitespace.
<literal_block>
.. image:: one two three
"""],
["""\
.. image:: picture.png
:height: 100
:width: 200
:scale: 50
""",
"""\
<document>
<image height="100" scale="50" uri="picture.png" width="200">
"""],
["""\
.. image::
picture.png
:height: 100
:width: 200
:scale: 50
""",
"""\
<document>
<image height="100" scale="50" uri="picture.png" width="200">
"""],
["""\
.. image::
:height: 100
:width: 200
:scale: 50
""",
"""\
<document>
<system_message level="3" type="ERROR">
<paragraph>
Missing image URI argument at line 1.
<literal_block>
.. image::
:height: 100
:width: 200
:scale: 50
"""],
["""\
.. image:: a/very/long/path/to/
picture.png
:height: 100
:width: 200
:scale: 50
""",
"""\
<document>
<image height="100" scale="50" uri="a/very/long/path/to/picture.png" width="200">
"""],
["""\
.. image:: picture.png
:height: 100
:width: 200
:scale: 50
:alt: Alternate text for the picture
""",
"""\
<document>
<image alt="Alternate text for the picture" height="100" scale="50" uri="picture.png" width="200">
"""],
["""\
.. image:: picture.png
:scale: - 50
""",
"""\
<document>
<system_message level="3" type="ERROR">
<paragraph>
Error in "image" directive attributes at line 1:
invalid attribute data: extension attribute field body may contain
a single paragraph only (attribute "scale").
<literal_block>
.. image:: picture.png
:scale: - 50
"""],
["""\
.. image:: picture.png
:scale:
""",
"""\
<document>
<system_message level="3" type="ERROR">
<paragraph>
Error in "image" directive attributes at line 1:
invalid attribute value:
(attribute "scale", value "None") object can't be converted to int.
<literal_block>
.. image:: picture.png
:scale:
"""],
["""\
.. image:: picture.png
:scale 50
""",
"""\
<document>
<system_message level="3" type="ERROR">
<paragraph>
Error in "image" directive attributes at line 1:
invalid attribute block.
<literal_block>
.. image:: picture.png
:scale 50
"""],
["""\
.. image:: picture.png
scale: 50
""",
"""\
<document>
<system_message level="3" type="ERROR">
<paragraph>
Image URI at line 1 contains whitespace.
<literal_block>
.. image:: picture.png
scale: 50
"""],
["""\
.. image:: picture.png
:: 50
""",
"""\
<document>
<system_message level="3" type="ERROR">
<paragraph>
Error in "image" directive attributes at line 1:
invalid attribute block.
<literal_block>
.. image:: picture.png
:: 50
"""],
["""\
.. image:: picture.png
:sale: 50
""",
"""\
<document>
<system_message level="3" type="ERROR">
<paragraph>
Error in "image" directive attributes at line 1:
unknown attribute: "sale".
<literal_block>
.. image:: picture.png
:sale: 50
"""],
["""\
.. image:: picture.png
:scale: fifty
""",
"""\
<document>
<system_message level="3" type="ERROR">
<paragraph>
Error in "image" directive attributes at line 1:
invalid attribute value:
(attribute "scale", value "fifty") invalid literal for int(): fifty.
<literal_block>
.. image:: picture.png
:scale: fifty
"""],
["""\
.. image:: picture.png
:scale: 50
:scale: 50
""",
"""\
<document>
<system_message level="3" type="ERROR">
<paragraph>
Error in "image" directive attributes at line 1:
invalid attribute data: duplicate attribute "scale".
<literal_block>
.. image:: picture.png
:scale: 50
:scale: 50
"""],
]
if __name__ == '__main__':
import unittest
unittest.main(defaultTest='suite')
|