Added sodipodi element unit test

This commit is contained in:
JSCHILL1 2009-04-13 11:38:00 -05:00
parent 8d598b20f2
commit ef0f1fe664
2 changed files with 14 additions and 6 deletions

View file

@ -21,8 +21,8 @@ import unittest
import scour
import xml.dom.minidom
# performs a test on a given node
# func must return either True or False
# helper function that performs a test on a given node and all its children
# func must return either True (if pass) or False (if fail)
def walkTree(elem, func):
if func(elem) == False: return False
for child in elem.childNodes:
@ -31,12 +31,15 @@ def walkTree(elem, func):
class NoInkscapeElements(unittest.TestCase):
def runTest(self):
doc = scour.scourXmlFile('unittests/inkscape.svg')
self.assertNotEquals( walkTree( doc.documentElement,
self.assertNotEquals(walkTree( scour.scourXmlFile('unittests/sodipodi.svg').documentElement,
lambda e: e.namespaceURI != "http://www.inkscape.org/namespaces/inkscape" ), False,
'Found Inkscape elements' )
class NoSodipodiElements(unittest.TestCase):
def runTest(self):
self.assertNotEquals(walkTree( scour.scourXmlFile('unittests/sodipodi.svg').documentElement,
lambda e: e.namespaceURI != "http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" ), False,
'Found Sodipodi elements' )
if __name__ == '__main__':
unittest.main()
print "done"