#!/usr/bin/python """ Copyright (c) 2004 Colin Stewart (http://www.owlfish.com/) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. If you make any bug fixes or feature enhancements please let me know! Unit test cases. """ import unittest, os import StringIO import logging, logging.config from simpletal import simpleTAL, simpleTALES try: # Is PyXML's LexicalHandler available? from xml.sax.saxlib import LexicalHandler use_lexical_handler = 1 except ImportError: use_lexical_handler = 0 if (os.path.exists ("logging.ini")): logging.config.fileConfig ("logging.ini") else: logging.basicConfig() pageTemplate = simpleTAL.compileXMLTemplate ("""

Expansion of macro one


""") class DefineMacroTests (unittest.TestCase): def setUp (self): self.context = simpleTALES.Context() self.context.addGlobal ('test', 'testing') self.context.addGlobal ('link', 'www.owlfish.com') self.context.addGlobal ('needsQuoting', """Does "this" work?""") def _runTest_ (self, txt, result, errMsg="Error"): macroTemplate = simpleTAL.compileXMLTemplate (txt) self.context.addGlobal ("site", macroTemplate) file = StringIO.StringIO () pageTemplate.expand (self.context, file) realResult = file.getvalue() self.failUnless (realResult == result, "%s - \npassed in: %s \ngot back %s \nexpected %s\n\nTemplate: %s" % (errMsg, txt, realResult, result, pageTemplate)) def _runCompileTest_ (self, txt, result, errMsg="Error"): try: macroTemplate = simpleTAL.compileXMLTemplate (txt) except simpleTAL.TemplateParseException, e: self.failUnless (str (e) == result, "%s - \npassed in: %s \ngot back %s \nexpected %s\n\nTemplate: %s" % (errMsg, txt, str(e), result, pageTemplate)) return self.fail ("Expected exception '%s' during compile - but got no exception" % result) def testSingleMacroDefinition (self): if (use_lexical_handler): result = '\n\n
No slots here
\n
\n' else: result = '\n\n
No slots here
\n

\n' self._runTest_ ('
No slots here
' ,result ,"Single macro with no slots failed.") def testTwoMacroDefinition (self): if (use_lexical_handler): result = '\n\n
No slots here
\n
\n' else: result = '\n\n
No slots here
\n

\n' self._runTest_ ('A second macro
No slots here
' ,result ,"Two macros with no slots failed.") def testNestedMacroDefinition (self): if (use_lexical_handler): result = '\n\nA second macro\n
\n' else: result = '\n\nA second macro\n

\n' self._runTest_ ('
A second macroNo slots here
' ,result ,"Nested macro with no slots failed.") def testDuplicateMacroDefinition (self): self._runCompileTest_ ('
A second macroNo slots here
' ,'[] Macro name one is already defined!' ,"Duplicate macro failed to error.") def testMacroTALDefinition (self): if (use_lexical_handler): result = '\n\n

testing

\n
\n' else: result = '\n\n

testing

\n

\n' self._runTest_ ('

Wibble

' , result ,"TAL Command on a macro failed.") def testSingletonMacros (self): if (use_lexical_handler): result = '\n\n

Wibble

\n
\n' else: result = '\n\n

Wibble

\n

\n' self._runTest_ ('

Wibble

' ,result ,"Singleton inside slot failed.") if __name__ == '__main__': unittest.main()