#!/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 if (os.path.exists ("logging.ini")): logging.config.fileConfig ("logging.ini") else: logging.basicConfig() class DefineSlotsTests (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, macros, page, result, errMsg="Error"): macroTemplate = simpleTAL.compileHTMLTemplate (macros) #print "Macro template: " + str (macroTemplate) pageTemplate = simpleTAL.compileHTMLTemplate (page) self.context.addGlobal ("site", macroTemplate) self.context.addGlobal ("here", pageTemplate) file = StringIO.StringIO () pageTemplate.expand (self.context, file) realResult = file.getvalue() self.failUnless (realResult == result, "%s - \npassed in macro: %s \npage: %s\ngot back %s \nexpected %s\n" % (errMsg, macros, page, realResult, result)) def _runCompileTest_ (self, txt, result, errMsg="Error"): try: macroTemplate = simpleTAL.compileHTMLTemplate (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 testSingleSlot (self): self._runTest_ ('
Before blue After
' ,'Nowt white here' ,'
Before white After
' ,"Single slot expansion failed.") def testDoubleSlot (self): self._runTest_ ('
Before blue After red
' ,'Nowt white here black' ,'
Before white After black
' ,"Double slot expansion failed.") def testDoubleOneDefaultSlot (self): self._runTest_ ('
Before blue After red
' ,'Nowt white here purple' ,'
Before white After red
' ,"Double slot with default, expansion failed.") def testDoubleMacroDefaultSlot (self): self._runTest_ ('

Internal macro, colour blue: blue

Before blue After Internal
' ,'Nowt white' ,'
Before white After

Internal macro, colour blue: blue

' ,"Nested macro with same slot name.") def testDoubleMacroDoubleFillSlot (self): self._runTest_ ('

Internal macro, colour blue: blue

Before blue After Internal

pink!

finally outer blue again: blue goes here
' ,'Nowt white' ,'
Before white After

Internal macro, colour blue:

pink!

finally outer blue again: white
' ,"Nested macro with same slot name and slot being used failed.") def testSingleSlotDefaultTAL (self): self._runTest_ ('
Before blue After
' ,'Nowt here' ,'
Before testing After
' ,"Slot defaulting that holds TAL failed.") def testSingleSlotPassedInTAL (self): self._runTest_ ('
Before blue After
' ,'Nowt boo here' ,'
Before Does "this" & work? After
' ,"Slot filled with TAL failed.") if __name__ == '__main__': unittest.main()