/usr/share/pyshared/zope/structuredtext/tests.py is in python-zope.structuredtext 3.5.1-0ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 | ##############################################################################
#
# Copyright (c) 2001 Zope Foundation and Contributors.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE
#
##############################################################################
import unittest
import os
here = os.path.dirname(__file__)
regressions = os.path.join(here, 'regressions')
files = ['index.stx',
'Acquisition.stx',
'ExtensionClass.stx',
'MultiMapping.stx',
'examples.stx',
'Links.stx',
'examples1.stx',
'table.stx',
'InnerLinks.stx',
]
def readFile(dirname,fname):
myfile = open(os.path.join(dirname, fname), "r")
lines = myfile.readlines()
myfile.close()
return ''.join(lines)
class StngTests(unittest.TestCase):
def testDocumentClass(self):
# testing Document
# *cough* *cough* this can't be enough...
from zope.structuredtext import stng
from zope.structuredtext.document import Document
for f in files:
doc = Document()
raw_text = readFile(regressions, f)
text = stng.structurize(raw_text)
self.assert_(doc(text))
def testRegressionsTests(self):
# HTML regression test
from zope.structuredtext import stng
from zope.structuredtext.document import Document
from zope.structuredtext.html import HTML
for f in files:
raw_text = readFile(regressions, f)
doc = stng.structurize(raw_text)
doc = Document()(doc)
html = HTML()(doc)
reg_fname = f.replace('.stx','.ref')
reg_html = readFile(regressions , reg_fname)
self.assertEqual(reg_html.strip(), html.strip())
class BasicTests(unittest.TestCase):
def _test(self, stxtxt, expected):
from zope.structuredtext import stng
from zope.structuredtext.document import DocumentWithImages
from zope.structuredtext.html import HTMLWithImages
doc = stng.structurize(stxtxt)
doc = DocumentWithImages()(doc)
output = HTMLWithImages()(doc, level=1)
if not expected in output:
print "Text: ", stxtxt.encode('utf-8')
print "Converted:", output.encode('utf-8')
print "Expected: ", expected.encode('utf-8')
self.fail("'%s' not in result" % expected)
def testUnderline(self):
self._test("xx _this is html_ xx",
"xx <u>this is html</u> xx")
def testUnderlineNonASCII(self):
self._test("xx _D\xc3\xbcsseldorf underlined_ xx",
"xx <u>D\xc3\xbcsseldorf underlined</u> xx")
def testUnderline1(self):
self._test("xx _this is html_",
"<u>this is html</u>")
def testUnderline1NonASCII(self):
self._test("xx _D\xc3\xbcsseldorf underlined_",
"<u>D\xc3\xbcsseldorf underlined</u>")
def testEmphasis(self):
self._test("xx *this is html* xx",
"xx <em>this is html</em> xx")
def testEmphasisNonASCII(self):
self._test("xx *Emphasising D\xc3\xbcsseldorf* xx",
"xx <em>Emphasising D\xc3\xbcsseldorf</em> xx")
def testStrong(self):
self._test("xx **this is html** xx",
"xx <strong>this is html</strong> xx")
def testStrongNonASCII(self):
self._test("xx **Greetings from D\xc3\xbcsseldorf** xx",
"xx <strong>Greetings from D\xc3\xbcsseldorf</strong> xx")
def testUnderlineThroughoutTags(self):
self._test('<a href="index_html">index_html</a>',
'<a href="index_html">index_html</a>')
def testUnderlineThroughoutTagsNonASCII(self):
self._test('<a href="index_html">D\xc3\xbcsseldorf</a>',
'<a href="index_html">D\xc3\xbcsseldorf</a>')
def testUnderscoresInLiteral1(self):
self._test("def __init__(self)",
"def __init__(self)")
def testUnderscoresInLiteral1NonASCII(self):
self._test("def __init__(D\xc3\xbcsself)",
"def __init__(D\xc3\xbcsself)")
def testUnderscoresInLiteral2(self):
self._test("this is '__a_literal__' eh",
"<code>__a_literal__</code>")
def testUnderscoresInLiteral2NonASCII(self):
self._test("this is '__literally_D\xc3\xbcsseldorf__' eh",
"<code>__literally_D\xc3\xbcsseldorf__</code>")
def testUnderlinesWithoutWithspaces(self):
self._test("Zopes structured_text is sometimes a night_mare",
"Zopes structured_text is sometimes a night_mare")
def testUnderlinesWithoutWithspacesNonASCII(self):
self._test("D\xc3\xbcsseldorf by night is sometimes a night_mare",
"D\xc3\xbcsseldorf by night is sometimes a night_mare")
def testAsterisksInLiteral(self):
self._test("this is a '*literal*' eh",
"<code>*literal*</code>")
def testAsterisksInLiteralNonASCII(self):
self._test("this is a '*D\xc3\xbcsseldorf*' eh",
"<code>*D\xc3\xbcsseldorf*</code>")
def testDoubleAsterisksInLiteral(self):
self._test("this is a '**literal**' eh",
"<code>**literal**</code>")
def testDoubleAsterisksInLiteralNonASCII(self):
self._test("this is a '**D\xc3\xbcsseldorf**' eh",
"<code>**D\xc3\xbcsseldorf**</code>")
def testLinkInLiteral(self):
self._test("this is a '\"literal\":http://www.zope.org/.' eh",
'<code>"literal":http://www.zope.org/.</code>')
def testLinkInLiteralNonASCII(self):
self._test("this is a '\"D\xc3\xbcsseldorf\":http://www.zope.org/.' eh",
'<code>"D\xc3\xbcsseldorf":http://www.zope.org/.</code>')
def testLink(self):
self._test('"foo":http://www.zope.org/foo/bar',
'<p><a href="http://www.zope.org/foo/bar">foo</a></p>')
self._test('"foo":http://www.zope.org/foo/bar/%20x',
'<p><a href="http://www.zope.org/foo/bar/%20x">foo</a></p>')
self._test('"foo":http://www.zope.org/foo/bar?arg1=1&arg2=2',
'<p><a href="http://www.zope.org/foo/bar?arg1=1&arg2=2">foo</a></p>')
self._test('"foo bar":http://www.zope.org/foo/bar',
'<p><a href="http://www.zope.org/foo/bar">foo bar</a></p>')
self._test('"[link goes here]":http://www.zope.org/foo/bar',
'<p><a href="http://www.zope.org/foo/bar">[link goes here]</a></p>')
self._test('"[Dad\'s car]":http://www.zope.org/foo/bar',
'<p><a href="http://www.zope.org/foo/bar">[Dad\'s car]</a></p>')
def testLinkNonASCII(self):
self._test('"D\xc3\xbcsseldorf":http://www.zope.org/foo/bar',
'<p><a href="http://www.zope.org/foo/bar">D\xc3\xbcsseldorf</a></p>')
self._test('"D\xc3\xbcsseldorf":http://www.zope.org/foo/bar/%20x',
'<p><a href="http://www.zope.org/foo/bar/%20x">D\xc3\xbcsseldorf</a></p>')
self._test('"D\xc3\xbcsseldorf":http://www.zope.org/foo/bar?arg1=1&arg2=2',
'<p><a href="http://www.zope.org/foo/bar?arg1=1&arg2=2">D\xc3\xbcsseldorf</a></p>')
self._test('"D\xc3\xbcsseldorf am Rhein":http://www.zope.org/foo/bar',
'<p><a href="http://www.zope.org/foo/bar">D\xc3\xbcsseldorf am Rhein</a></p>')
self._test('"[D\xc3\xbcsseldorf am Rhein]":http://www.zope.org/foo/bar',
'<p><a href="http://www.zope.org/foo/bar">[D\xc3\xbcsseldorf am Rhein]</a></p>')
self._test('"[D\xc3\xbcsseldorf\'s Homepage]":http://www.zope.org/foo/bar',
'<p><a href="http://www.zope.org/foo/bar">[D\xc3\xbcsseldorf\'s Homepage]</a></p>')
def testImgLink(self):
self._test('"foo":img:http://www.zope.org/bar.gif',
'<img src="http://www.zope.org/bar.gif" alt="foo" />')
self._test('"foo":img:http://www.zope.org:8080/bar.gif',
'<img src="http://www.zope.org:8080/bar.gif" alt="foo" />')
self._test('"foo":img:http://www.zope.org:8080/foo/bar?arg=1',
'<img src="http://www.zope.org:8080/foo/bar?arg=1" alt="foo" />')
self._test('"foo":img:http://www.zope.org:8080/foo/b%20ar?arg=1',
'<img src="http://www.zope.org:8080/foo/b%20ar?arg=1" alt="foo" />')
self._test('"foo bar":img:http://www.zope.org:8080/foo/bar',
'<img src="http://www.zope.org:8080/foo/bar" alt="foo bar" />')
self._test('"[link goes here]":img:http://www.zope.org:8080/foo/bar',
'<img src="http://www.zope.org:8080/foo/bar" alt="[link goes here]" />')
self._test('"[Dad\'s new car]":img:http://www.zope.org:8080/foo/bar',
'<img src="http://www.zope.org:8080/foo/bar" alt="[Dad\'s new car]" />')
def testImgLinkNonASCII(self):
self._test('"D\xc3\xbcsseldorf":img:http://www.zope.org/bar.gif',
'<img src="http://www.zope.org/bar.gif" alt="D\xc3\xbcsseldorf" />')
self._test('"D\xc3\xbcsseldorf":img:http://www.zope.org:8080/bar.gif',
'<img src="http://www.zope.org:8080/bar.gif" alt="D\xc3\xbcsseldorf" />')
self._test('"D\xc3\xbcsseldorf":img:http://www.zope.org:8080/foo/bar?arg=1',
'<img src="http://www.zope.org:8080/foo/bar?arg=1" alt="D\xc3\xbcsseldorf" />')
self._test('"D\xc3\xbcsseldorf":img:http://www.zope.org:8080/foo/b%20ar?arg=1',
'<img src="http://www.zope.org:8080/foo/b%20ar?arg=1" alt="D\xc3\xbcsseldorf" />')
self._test('"D\xc3\xbcsseldorf am Rhein":img:http://www.zope.org:8080/foo/bar',
'<img src="http://www.zope.org:8080/foo/bar" alt="D\xc3\xbcsseldorf am Rhein" />')
self._test('"[D\xc3\xbcsseldorf am Rhein]":img:http://www.zope.org:8080/foo/bar',
'<img src="http://www.zope.org:8080/foo/bar" alt="[D\xc3\xbcsseldorf am Rhein]" />')
self._test('"[D\xc3\xbcsseldorf\'s Homepage]":img:http://www.zope.org:8080/foo/bar',
'<img src="http://www.zope.org:8080/foo/bar" alt="[D\xc3\xbcsseldorf\'s Homepage]" />')
def testBulletList(self):
self._test("* item in a list", "<ul>\n<li>item in a list</li>")
def testOrderedList(self):
self._test("1. First item", "<ol>\n<li> First item</li>")
def testDefinitionList(self):
self._test("Term -- Definition", "<dt>Term</dt>\n<dd>Definition</dd>")
def testHeader1(self):
self._test("Title\n\n following paragraph", ("<h1>Title</h1>\n<p> following paragraph</p>"))
def testHeader1_again(self):
self._test("""Title
first paragraph
Subtitle
second paragraph""",
("""<h1>Title</h1>
<p> first paragraph</p>
<h2> Subtitle</h2>
<p> second paragraph</p>"""))
def testUnicodeContent(self):
# This fails because ST uses the default locale to get "letters"
# whereas it should use \w+ and re.U if the string is Unicode.
self._test(u"h\xe9 **y\xe9** xx",
u"h\xe9 <strong>y\xe9</strong> xx")
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(StngTests))
suite.addTest(unittest.makeSuite(BasicTests))
return suite
|