summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Richter <stephan.richter@gmail.com>2004-08-12 20:03:58 +0000
committerStephan Richter <stephan.richter@gmail.com>2004-08-12 20:03:58 +0000
commitaa43358f9d73623f8be9caeaf718a769b8bf81d0 (patch)
treece7410877ca38b9410c21fdf90d3b9eba23164d4
parent81d94a1ab00afd264cf4ac32e82f49b86005cbad (diff)
downloadzope-pagetemplate-monolithic-zope3-ZopeX3-3.0.tar.gz
r26567 | srichter | 2004-07-16 02:58:27 -0400 (Fri, 16 Jul 2004) | 2 lines r26570 | srichter | 2004-07-16 03:54:40 -0400 (Fri, 16 Jul 2004) | 3 lines
-rw-r--r--__init__.py17
-rw-r--r--pagetemplatefile.py2
-rw-r--r--tests/test_basictemplate.py134
-rw-r--r--tests/test_ptfile.py19
4 files changed, 170 insertions, 2 deletions
diff --git a/__init__.py b/__init__.py
new file mode 100644
index 0000000..0824ece
--- /dev/null
+++ b/__init__.py
@@ -0,0 +1,17 @@
+##############################################################################
+#
+# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# 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.
+#
+##############################################################################
+"""Page Templates
+
+$Id$
+"""
diff --git a/pagetemplatefile.py b/pagetemplatefile.py
index 733bcbe..ff5d2c0 100644
--- a/pagetemplatefile.py
+++ b/pagetemplatefile.py
@@ -14,6 +14,8 @@
"""Filesystem Page Template module
Zope object encapsulating a Page Template from the filesystem.
+
+$Id$
"""
import os, sys
import logging
diff --git a/tests/test_basictemplate.py b/tests/test_basictemplate.py
new file mode 100644
index 0000000..3989000
--- /dev/null
+++ b/tests/test_basictemplate.py
@@ -0,0 +1,134 @@
+##############################################################################
+#
+# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# 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.
+#
+##############################################################################
+"""Basic Page Template tests
+
+$Id$
+"""
+import unittest
+
+from zope.pagetemplate.tests import util
+from zope.pagetemplate.pagetemplate import PageTemplate
+
+class BasicTemplateTests(unittest.TestCase):
+
+ def setUp(self):
+ self.t = PageTemplate()
+
+ def test_if_in_var(self):
+ # DTML test 1: if, in, and var:
+ pass # for unittest
+ """
+ %(comment)[ blah %(comment)]
+ <html><head><title>Test of documentation templates</title></head>
+ <body>
+ %(if args)[
+ <dl><dt>The arguments to this test program were:<p>
+ <dd>
+ <ul>
+ %(in args)[
+ <li>Argument number %(num)d was %(arg)s
+ %(in args)]
+ </ul></dl><p>
+ %(if args)]
+ %(else args)[
+ No arguments were given.<p>
+ %(else args)]
+ And thats da trooth.
+ </body></html>
+ """
+ tal = util.read_input('dtml1.html')
+ self.t.write(tal)
+
+ aa = util.argv(('one', 'two', 'three', 'cha', 'cha', 'cha'))
+ o = self.t(content=aa)
+ expect = util.read_output('dtml1a.html')
+
+ util.check_xml(expect, o)
+
+ aa = util.argv(())
+ o = self.t(content=aa)
+ expect = util.read_output('dtml1b.html')
+ util.check_xml(expect, o)
+
+ def test_template_usage(self):
+ tal = util.read_input('template_usage.html')
+ self.t.write(tal)
+
+ o = self.t(template_usage=u"test")
+ expect = util.read_output('template_usage1.html')
+ util.check_xml(expect, o)
+
+ o = self.t(template_usage=u"retest")
+ expect = util.read_output('template_usage2.html')
+ util.check_xml(expect, o)
+
+ o = self.t(template_usage=u"other")
+ expect = util.read_output('template_usage3.html')
+ util.check_xml(expect, o)
+
+ o = self.t(template_usage=u"")
+ expect = util.read_output('template_usage4.html')
+ util.check_xml(expect, o)
+
+ def test_batches_and_formatting(self):
+ # DTML test 3: batches and formatting:
+ pass # for unittest
+ """
+ <html><head><title>Test of documentation templates</title></head>
+ <body>
+ <!--#if args-->
+ The arguments were:
+ <!--#in args size=size end=end-->
+ <!--#if previous-sequence-->
+ (<!--#var previous-sequence-start-arg-->-
+ <!--#var previous-sequence-end-arg-->)
+ <!--#/if previous-sequence-->
+ <!--#if sequence-start-->
+ <dl>
+ <!--#/if sequence-start-->
+ <dt><!--#var sequence-arg-->.</dt>
+ <dd>Argument <!--#var num fmt=d--> was <!--#var arg--></dd>
+ <!--#if next-sequence-->
+ (<!--#var next-sequence-start-arg-->-
+ <!--#var next-sequence-end-arg-->)
+ <!--#/if next-sequence-->
+ <!--#/in args-->
+ </dl>
+ <!--#else args-->
+ No arguments were given.<p>
+ <!--#/if args-->
+ And I\'m 100% sure!
+ </body></html>
+ """
+ tal = util.read_input('dtml3.html')
+ self.t.write(tal)
+
+ aa = util.argv(('one', 'two', 'three', 'four', 'five',
+ 'six', 'seven', 'eight', 'nine', 'ten',
+ 'eleven', 'twelve', 'thirteen', 'fourteen', 'fifteen',
+ 'sixteen', 'seventeen', 'eighteen', 'nineteen',
+ 'twenty',
+ ))
+ from zope.pagetemplate.tests import batch
+ o = self.t(content=aa, batch=batch.batch(aa.args, 5))
+
+ expect = util.read_output('dtml3.html')
+ util.check_xml(expect, o)
+
+
+def test_suite():
+ return unittest.makeSuite(BasicTemplateTests)
+
+if __name__ == '__main__':
+ unittest.TextTestRunner().run(test_suite())
diff --git a/tests/test_ptfile.py b/tests/test_ptfile.py
index 759c5c0..254dd64 100644
--- a/tests/test_ptfile.py
+++ b/tests/test_ptfile.py
@@ -1,5 +1,20 @@
-"""Tests of PageTemplateFile."""
-
+##############################################################################
+#
+# Copyright (c) 2004 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# 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.
+#
+##############################################################################
+"""Tests of PageTemplateFile.
+
+$Id$
+"""
import os
import tempfile
import unittest