[Zope-Checkins]
SVN: Zope/trunk/lib/python/DocumentTemplate/tests/testDTML.py
Forward port tests for DTML not exposing ReST file inclusion.
Tres Seaver
tseaver at palladion.com
Thu Jul 13 00:20:59 EDT 2006
Log message for revision 69108:
Forward port tests for DTML not exposing ReST file inclusion.
Changed:
U Zope/trunk/lib/python/DocumentTemplate/tests/testDTML.py
-=-
Modified: Zope/trunk/lib/python/DocumentTemplate/tests/testDTML.py
===================================================================
--- Zope/trunk/lib/python/DocumentTemplate/tests/testDTML.py 2006-07-12 22:00:12 UTC (rev 69107)
+++ Zope/trunk/lib/python/DocumentTemplate/tests/testDTML.py 2006-07-13 04:20:58 UTC (rev 69108)
@@ -336,6 +336,43 @@
spam='<a href="spam">\nfoo bar')
self.assertEqual(res,expected)
+ def test_fmt_reST_include_directive_raises(self):
+ source = '.. include:: /etc/passwd'
+ html = self.doc_class('<dtml-var name="foo" fmt="restructured-text">')
+ html._vars['foo'] = source
+ self.assertRaises(NotImplementedError, html)
+
+ def test_fmt_reST_raw_directive_disabled(self):
+
+ EXPECTED = '<h1>HELLO WORLD</h1>'
+
+ source = '.. raw:: html\n\n %s\n' % EXPECTED
+ html = self.doc_class('<dtml-var name="foo" fmt="restructured-text">')
+ html._vars['foo'] = source
+
+ result = html() # don't raise, but don't work either
+ self.failIf(EXPECTED in result)
+
+ self.failUnless(""raw" directive disabled" in result)
+ from cgi import escape
+ self.failUnless(escape(EXPECTED) in result)
+
+ def test_fmt_reST_raw_directive_file_option_raises(self):
+
+ source = '.. raw:: html\n :file: inclusion.txt'
+ html = self.doc_class('<dtml-var name="foo" fmt="restructured-text">')
+ html._vars['foo'] = source
+
+ self.assertRaises(NotImplementedError, html, source)
+
+ def test_fmt_reST_raw_directive_url_option_raises(self):
+
+ source = '.. raw:: html\n :url: http://www.zope.org'
+ html = self.doc_class('<dtml-var name="foo" fmt="restructured-text">')
+ html._vars['foo'] = source
+
+ self.assertRaises(NotImplementedError, html, source)
+
def testPropogatedError(self):
class foo:
More information about the Zope-Checkins
mailing list