#!/usr/bin/python -u
import sys
import libxml2
import libxslt
# Memory debug specific
libxml2.debugMemory(1)
def f(str):
import string
return string.upper(str)
libxslt.registerExtModuleFunction("foo", "http://example.com/foo", f)
styledoc = libxml2.parseDoc("""
""")
style = libxslt.parseStylesheetDoc(styledoc)
doc = libxml2.parseDoc("")
result = style.applyStylesheet(doc, None)
style = None
doc.freeDoc()
root = result.children
if root.name != "article":
print "Unexpected root node name"
sys.exit(1)
if root.content != "FOO":
print "Unexpected root node content, extension function failed"
sys.exit(1)
result.freeDoc()
# Memory debug specific
libxslt.cleanupGlobals()
libxml2.cleanupParser()
if libxml2.debugMemory(1) == 0:
print "OK"
else:
print "Memory leak %d bytes" % (libxml2.debugMemory(1))
libxml2.dumpMemory()