Parsed XML unit test failures
[email protected] Thu, 13 Feb 2003 09:38:42 -0500
| Newsgroups | gmane.comp.web.zope.parsed-xml,gmane.spam.detected |
|---|---|
| Message-ID | <[email protected]> |
--Apple-Mail-4-267929605
Content-Transfer-Encoding: 7bit
Content-Type: text/plain;
charset=US-ASCII;
format=flowed
My first attempts at a project using Parsed XML and the DOM a few weeks
ago ended with some rather odd bugs. I thought running the unit tests
might be more helpful than trying to explain the whole situation.
I'm running Zope 2.6.0 on RedHat 7.2. I usually just use the binary
distribution of Zope, and I tried to install PyXML against that Zope's
version of Python, which seemed to work ok. I also did a whole
INSTANCE_HOME installation from source, which didn't seem to change the
problems I was having. Anyhow, these tests were run against the binary
version.
It looks like there are a lot of unicode related failures in here, but
the details are really beyond me. If anyone gave give me even a vague
diagnosis, I'd appreciate it.
Thanks in advance,
Tom Hoffman
Technology Coordinator
Feinstein High School
Providence, RI, USA
--Apple-Mail-4-267929605
Content-Disposition: attachment;
filename=out.txt
Content-Transfer-Encoding: 7bit
Content-Type: text/plain;
x-unix-mode=0644;
name="out.txt"
===== DOM =====
.......................................................................................................................................................................................................................................................................................................F...........................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................F.........F...........
======================================================================
FAIL: checkRemoveAttribute (domapi.CoreLvl1.ElementWriteTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "domapi/CoreLvl1.py", line 1597, in checkRemoveAttribute
checkAttribute(node1, 'ownerElement', None)
File "domapi/Base.py", line 118, in checkAttribute
raise AssertionError(
AssertionError: attribute value does not match
expected: None
found: <Element 'per' at 0x82ca8e8>
======================================================================
FAIL: checkWalkerFilterSkipCFirstChild (domapi.TraversalLvl2.TreeWalkerTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "domapi/TraversalLvl2.py", line 523, in checkWalkerFilterSkipCFirstChild
[self.document, self.A, self.D])
File "domapi/TraversalLvl2.py", line 377, in iterate
assert isSameNode(expect, current), (
AssertionError: firstChild returned <Comment at 0x81f2300>, expected <CDATASection at 0x81f2478>. TreeWalker.currentNode is <Comment at 0x81f2300>.
======================================================================
FAIL: checkWalkerOnlyTextNodesParentNodeFirstChildFilterSkipB (domapi.TraversalLvl2.TreeWalkerTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "domapi/TraversalLvl2.py", line 598, in checkWalkerOnlyTextNodesParentNodeFirstChildFilterSkipB
[self.document, self.G])
File "domapi/TraversalLvl2.py", line 365, in iterate
assert not all, (
AssertionError: firstChild returned None before end, still expected to see [<Text at 0x8360bb8>]. TreeWalker.currentNode is <Document at 0x8360c78>.
----------------------------------------------------------------------
Ran 889 tests in 0.623s
FAILED (failures=3)
Failures:
domapi.CoreLvl1.ElementWriteTestCase.checkRemoveAttribute
domapi.TraversalLvl2.TreeWalkerTestCase.checkWalkerFilterSkipCFirstChild
domapi.TraversalLvl2.TreeWalkerTestCase.checkWalkerOnlyTextNodesParentNodeFirstChildFilterSkipB
===== ParsedXML =====
.......................................................................................................................................................................................................................................................................................................F...........................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................F.........F...........
======================================================================
FAIL: checkRemoveAttribute (domapi.CoreLvl1.ElementWriteTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "domapi/CoreLvl1.py", line 1597, in checkRemoveAttribute
checkAttribute(node1, 'ownerElement', None)
File "domapi/Base.py", line 118, in checkAttribute
raise AssertionError(
AssertionError: attribute value does not match
expected: None
found: <ManageableElement instance at 86d5150>
======================================================================
FAIL: checkWalkerFilterSkipCFirstChild (domapi.TraversalLvl2.TreeWalkerTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "domapi/TraversalLvl2.py", line 523, in checkWalkerFilterSkipCFirstChild
[self.document, self.A, self.D])
File "domapi/TraversalLvl2.py", line 377, in iterate
assert isSameNode(expect, current), (
AssertionError: firstChild returned <ManageableComment instance at 87de780>, expected <ManageableCDATASection instance at 87dd7c0>. TreeWalker.currentNode is <ManageableComment instance at 87de780>.
======================================================================
FAIL: checkWalkerOnlyTextNodesParentNodeFirstChildFilterSkipB (domapi.TraversalLvl2.TreeWalkerTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "domapi/TraversalLvl2.py", line 598, in checkWalkerOnlyTextNodesParentNodeFirstChildFilterSkipB
[self.document, self.G])
File "domapi/TraversalLvl2.py", line 365, in iterate
assert not all, (
AssertionError: firstChild returned None before end, still expected to see [<ManageableText instance at 87e9d68>]. TreeWalker.currentNode is <ManageableDocument instance at 87e9408>.
----------------------------------------------------------------------
Ran 889 tests in 1.156s
FAILED (failures=3)
Failures:
domapi.CoreLvl1.ElementWriteTestCase.checkRemoveAttribute
domapi.TraversalLvl2.TreeWalkerTestCase.checkWalkerFilterSkipCFirstChild
domapi.TraversalLvl2.TreeWalkerTestCase.checkWalkerOnlyTextNodesParentNodeFirstChildFilterSkipB
===== Printer =====
...........
----------------------------------------------------------------------
Ran 11 tests in 0.057s
OK
===== Parser =====
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF..........
======================================================================
FAIL: checkParse001 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 138, in checkParse001
self._checkParse("001.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse002 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 140, in checkParse002
self._checkParse("002.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse003 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 142, in checkParse003
self._checkParse("003.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse004 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 144, in checkParse004
self._checkParse("004.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc a1="v1"/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc a1="v1"/>\n'[[EOF]]
======================================================================
FAIL: checkParse005 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 146, in checkParse005
self._checkParse("005.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc a1="v1"/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc a1="v1"/>\n'[[EOF]]
======================================================================
FAIL: checkParse006 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 148, in checkParse006
self._checkParse("006.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc a1="v1"/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc a1="v1"/>\n'[[EOF]]
======================================================================
FAIL: checkParse007 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 150, in checkParse007
self._checkParse("007.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc> </doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc> </doc>\n'[[EOF]]
======================================================================
FAIL: checkParse008 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 152, in checkParse008
self._checkParse("008.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc>&<>"\'</doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc>&<>"\'</doc>\n'[[EOF]]
======================================================================
FAIL: checkParse009 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 154, in checkParse009
self._checkParse("009.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc> </doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc> </doc>\n'[[EOF]]
======================================================================
FAIL: checkParse010 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 156, in checkParse010
self._checkParse("010.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc a1="v1"/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc a1="v1"/>\n'[[EOF]]
======================================================================
FAIL: checkParse011 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 158, in checkParse011
self._checkParse("011.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc a1="v1" a2="v2"/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc a1="v1" a2="v2"/>\n'[[EOF]]
======================================================================
FAIL: checkParse013 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 164, in checkParse013
self._checkParse("013.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc _.-0123456789="v1"/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc _.-0123456789="v1"/>\n'[[EOF]]
======================================================================
FAIL: checkParse014 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 166, in checkParse014
self._checkParse("014.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc abcdefghijklmnopqrstuvwxyz="v1"/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc abcdefghijklmnopqrstuvwxyz="v1"/>\n'[[EOF]]
======================================================================
FAIL: checkParse015 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 168, in checkParse015
self._checkParse("015.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc ABCDEFGHIJKLMNOPQRSTUVWXYZ="v1"/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc ABCDEFGHIJKLMNOPQRSTUVWXYZ="v1"/>\n'[[EOF]]
======================================================================
FAIL: checkParse016 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 170, in checkParse016
self._checkParse("016.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc><?pi ?></doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc><?pi ?></doc>\n'[[EOF]]
======================================================================
FAIL: checkParse017 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 172, in checkParse017
self._checkParse("017.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc><?pi some data ? > <??></doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc><?pi some data ? > <??></doc>\n'[[EOF]]
======================================================================
FAIL: checkParse018 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 174, in checkParse018
self._checkParse("018.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc><![CDATA[<foo>]]></doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc><![CDATA[<foo>]]></doc>\n'[[EOF]]
======================================================================
FAIL: checkParse019 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 176, in checkParse019
self._checkParse("019.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc><![CDATA[<&]]></doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc><![CDATA[<&]]></doc>\n'[[EOF]]
======================================================================
FAIL: checkParse020 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 178, in checkParse020
self._checkParse("020.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc><![CDATA[<&]>]]]></doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc><![CDATA[<&]>]]]></doc>\n'[[EOF]]
======================================================================
FAIL: checkParse021 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 180, in checkParse021
self._checkParse("021.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc><!-- a comment --></doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc><!-- a comment --></doc>\n'[[EOF]]
======================================================================
FAIL: checkParse022 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 182, in checkParse022
self._checkParse("022.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc><!-- a comment ->--></doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc><!-- a comment ->--></doc>\n'[[EOF]]
======================================================================
FAIL: checkParse023 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 184, in checkParse023
self._checkParse("023.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ELEMENT doc (#PCDATA)>\n<!ENTITY e "">\n]>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ENTITY e "">\n]>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse024 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 186, in checkParse024
self._checkParse("024.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ELEMENT doc (foo)>\n<!ELEMENT foo (#PCDATA)>\n<!ENTITY e "<foo></foo>">\n]>\n<doc><foo/></doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ENTITY e "<foo></foo>">\n]>\n<doc><foo/></doc>\n'[[EOF]]
======================================================================
FAIL: checkParse025 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 188, in checkParse025
self._checkParse("025.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc><foo/><foo/></doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc><foo/><foo/></doc>\n'[[EOF]]
======================================================================
FAIL: checkParse026 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 190, in checkParse026
self._checkParse("026.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc><foo/><foo/></doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc><foo/><foo/></doc>\n'[[EOF]]
======================================================================
FAIL: checkParse027 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 192, in checkParse027
self._checkParse("027.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc><foo/><foo/></doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc><foo/><foo/></doc>\n'[[EOF]]
======================================================================
FAIL: checkParse028 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 194, in checkParse028
self._checkParse("028.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse029 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 196, in checkParse029
self._checkParse("029.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse030 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 198, in checkParse030
self._checkParse("030.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse031 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 200, in checkParse031
self._checkParse("031.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse032 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 202, in checkParse032
self._checkParse("032.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse033 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 204, in checkParse033
self._checkParse("033.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse034 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 206, in checkParse034
self._checkParse("034.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse035 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 208, in checkParse035
self._checkParse("035.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse036 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 210, in checkParse036
self._checkParse("036.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc/><?pi data?>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc/><?pi data?>\n'[[EOF]]
======================================================================
FAIL: checkParse037 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 212, in checkParse037
self._checkParse("037.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc/><!-- comment -->\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc/><!-- comment -->\n'[[EOF]]
======================================================================
FAIL: checkParse038 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 214, in checkParse038
self._checkParse("038.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<!-- comment --><doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<!-- comment --><doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse039 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 216, in checkParse039
self._checkParse("039.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<?pi data?><doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<?pi data?><doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse040 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 218, in checkParse040
self._checkParse("040.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc a1=""<&>\'"/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc a1=""<&>\'"/>\n'[[EOF]]
======================================================================
FAIL: checkParse041 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 220, in checkParse041
self._checkParse("041.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc a1="A"/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc a1="A"/>\n'[[EOF]]
======================================================================
FAIL: checkParse042 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 222, in checkParse042
self._checkParse("042.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc>A</doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc>A</doc>\n'[[EOF]]
======================================================================
FAIL: checkParse043 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 224, in checkParse043
self._checkParse("043.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc a1="foo bar"/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc a1="foo bar"/>\n'[[EOF]]
======================================================================
FAIL: checkParse044 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 226, in checkParse044
self._checkParse("044.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc>\n<e a3="v3"/>\n<e a1="w1"/>\n<e a2="w2" a3="v3"/>\n</doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc>\n<e a3="v3"/>\n<e a1="w1"/>\n<e a2="w2" a3="v3"/>\n</doc>\n'[[EOF]]
======================================================================
FAIL: checkParse045 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 228, in checkParse045
self._checkParse("045.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse046 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 230, in checkParse046
self._checkParse("046.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse047 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 232, in checkParse047
self._checkParse("047.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc>X\nY</doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc>X\nY</doc>\n'[[EOF]]
======================================================================
FAIL: checkParse048 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 234, in checkParse048
self._checkParse("048.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc>]</doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc>]</doc>\n'[[EOF]]
======================================================================
FAIL: checkParse049 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 236, in checkParse049
self._checkParse("049.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc>\xc2\xa3</doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc>\xa3</doc>\n'[[EOF]]
======================================================================
FAIL: checkParse050 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 238, in checkParse050
self._checkParse("050.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc>\xe0\xb9\x80\xe0\xb8\x88\xe0\xb8\xa1\xe0\xb8\xaa\xe0\xb9\x8c</doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc>\u0e40\u0e08\u0e21\u0e2a\u0e4c</doc>\n'[[EOF]]
======================================================================
FAIL: checkParse052 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 243, in checkParse052
self._checkParse("052.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc>\xf0\x90\x80\x80\xf4\x8f\xbf\xbd</doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc>\ud800\udc00\udbff\udffd</doc>\n'[[EOF]]
======================================================================
FAIL: checkParse053 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 245, in checkParse053
self._checkParse("053.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ENTITY e "<e/>">\n<!ELEMENT doc (e)>\n<!ELEMENT e EMPTY>\n]>\n<doc><e/></doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ENTITY e "<e/>">\n]>\n<doc><e/></doc>\n'[[EOF]]
======================================================================
FAIL: checkParse054 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 247, in checkParse054
self._checkParse("054.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse055 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 249, in checkParse055
self._checkParse("055.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<?pi data?><doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<?pi data?><doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse056 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 251, in checkParse056
self._checkParse("056.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc>A</doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc>A</doc>\n'[[EOF]]
======================================================================
FAIL: checkParse057 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 253, in checkParse057
self._checkParse("057.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse058 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 255, in checkParse058
self._checkParse("058.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc a1="1 2"/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc a1="1 2"/>\n'[[EOF]]
======================================================================
FAIL: checkParse059 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 257, in checkParse059
self._checkParse("059.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc>\n<e a1="v1" a2="v2" a3="v3"/>\n<e a1="w1" a2="v2"/>\n<e a1="v1" a2="w2" a3="v3"/>\n</doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc>\n<e a1="v1" a2="v2" a3="v3"/>\n<e a1="w1" a2="v2"/>\n<e a1="v1" a2="w2" a3="v3"/>\n</doc>\n'[[EOF]]
======================================================================
FAIL: checkParse060 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 259, in checkParse060
self._checkParse("060.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc>X\nY</doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc>X\nY</doc>\n'[[EOF]]
======================================================================
FAIL: checkParse061 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 261, in checkParse061
self._checkParse("061.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc>\xc2\xa3</doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc>\xa3</doc>\n'[[EOF]]
======================================================================
FAIL: checkParse062 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 263, in checkParse062
self._checkParse("062.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc>\xe0\xb9\x80\xe0\xb8\x88\xe0\xb8\xa1\xe0\xb8\xaa\xe0\xb9\x8c</doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc>\u0e40\u0e08\u0e21\u0e2a\u0e4c</doc>\n'[[EOF]]
======================================================================
FAIL: checkParse064 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 268, in checkParse064
self._checkParse("064.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc>\xf0\x90\x80\x80\xf4\x8f\xbf\xbd</doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc>\ud800\udc00\udbff\udffd</doc>\n'[[EOF]]
======================================================================
FAIL: checkParse065 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 270, in checkParse065
self._checkParse("065.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ENTITY e "<">\n<!ELEMENT doc (#PCDATA)>\n]>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ENTITY e "<">\n]>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse066 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 272, in checkParse066
self._checkParse("066.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ELEMENT doc (#PCDATA)>\n<!ATTLIST doc a1 CDATA #IMPLIED>\n<!-- 34 is double quote -->\n<!ENTITY e1 """>\n]>\n<!-- 34 is double quote --><doc a1=\'"\'/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ENTITY e1 """>\n]>\n<!-- 34 is double quote --><doc a1=\'"\'/>\n'[[EOF]]
======================================================================
FAIL: checkParse067 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 274, in checkParse067
self._checkParse("067.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc>\r</doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc>\r</doc>\n'[[EOF]]
======================================================================
FAIL: checkParse068 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 276, in checkParse068
self._checkParse("068.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ELEMENT doc (#PCDATA)>\n<!ENTITY e " ">\n]>\n<doc>\r</doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ENTITY e "\r">\n]>\n<doc>\r</doc>\n'[[EOF]]
======================================================================
FAIL: checkParse069 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 278, in checkParse069
self._checkParse("069.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ELEMENT doc (#PCDATA)>\n<!NOTATION n PUBLIC "whatever">\n]>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!NOTATION n PUBLIC "whatever">\n]>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse070 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 280, in checkParse070
self._checkParse("070.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse071 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 282, in checkParse071
self._checkParse("071.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse072 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 284, in checkParse072
self._checkParse("072.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse073 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 286, in checkParse073
self._checkParse("073.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse074 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 288, in checkParse074
self._checkParse("074.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse075 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 290, in checkParse075
self._checkParse("075.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse076 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 292, in checkParse076
self._checkParse("076.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ELEMENT doc (#PCDATA)>\n<!ATTLIST doc a NOTATION (n1|n2) #IMPLIED>\n<!NOTATION n1 SYSTEM "http://www.w3.org/">\n<!NOTATION n2 SYSTEM "http://www.w3.org/">\n]>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!NOTATION n1 SYSTEM "http://www.w3.org/">\n<!NOTATION n2 SYSTEM "http://www.w3.org/">\n]>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse077 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 294, in checkParse077
self._checkParse("077.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse078 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 296, in checkParse078
self._checkParse("078.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc a="v"/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc a="v"/>\n'[[EOF]]
======================================================================
FAIL: checkParse079 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 298, in checkParse079
self._checkParse("079.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc a="v"/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc a="v"/>\n'[[EOF]]
======================================================================
FAIL: checkParse080 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 300, in checkParse080
self._checkParse("080.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse081 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 302, in checkParse081
self._checkParse("081.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc><a/><b/><c><a/></c></doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc><a/><b/><c><a/></c></doc>\n'[[EOF]]
======================================================================
FAIL: checkParse082 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 304, in checkParse082
self._checkParse("082.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse083 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 306, in checkParse083
self._checkParse("083.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse084 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 308, in checkParse084
self._checkParse("084.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse085 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 310, in checkParse085
self._checkParse("085.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ELEMENT doc (#PCDATA)>\n<!ENTITY % e "<foo>">\n<!ENTITY e "">\n]>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ENTITY e "">\n]>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse086 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 312, in checkParse086
self._checkParse("086.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ELEMENT doc (#PCDATA)>\n<!ENTITY e "">\n<!ENTITY e "<foo>">\n]>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ENTITY e "">\n]>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse087 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 314, in checkParse087
self._checkParse("087.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ENTITY e "<foo/>">\n<!ELEMENT doc (foo)>\n<!ELEMENT foo EMPTY>\n]>\n<doc><foo/></doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ENTITY e "<foo/>">\n]>\n<doc><foo/></doc>\n'[[EOF]]
======================================================================
FAIL: checkParse088 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 316, in checkParse088
self._checkParse("088.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ELEMENT doc (#PCDATA)>\n<!ENTITY e "<foo>">\n]>\n<doc><foo></doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ENTITY e "&lt;foo>">\n]>\n<doc><foo></doc>\n'[[EOF]]
======================================================================
FAIL: checkParse089 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 318, in checkParse089
self._checkParse("089.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ENTITY e "𐀀􏿽">\n<!ELEMENT doc (#PCDATA)>\n]>\n<doc>\xf0\x90\x80\x80\xf4\x8f\xbf\xbd\xf4\x8f\xbf\xbf</doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ENTITY e "\ud800\udc00\udbff\udffd\udbff\udfff">\n]>\n<doc>\ud800\udc00\udbff\udffd\udbff\udfff</doc>\n'[[EOF]]
======================================================================
FAIL: checkParse090 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 320, in checkParse090
self._checkParse("090.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ATTLIST e a NOTATION (n) #IMPLIED>\n<!ELEMENT doc (e)*>\n<!ELEMENT e (#PCDATA)>\n<!NOTATION n PUBLIC "whatever">\n]>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!NOTATION n PUBLIC "whatever">\n]>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse091 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 322, in checkParse091
self._checkParse("091.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!NOTATION n SYSTEM "http://www.w3.org/">\n<!ENTITY e SYSTEM "http://www.w3.org/" NDATA n>\n<!ELEMENT doc (#PCDATA)>\n<!ATTLIST doc a ENTITY "e">\n]>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ENTITY e SYSTEM "http://www.w3.org/" NDATA n>\n<!NOTATION n SYSTEM "http://www.w3.org/">\n]>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse092 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 324, in checkParse092
self._checkParse("092.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc>\n<a/>\n <a/>\t<a/>\n\n\n</doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc>\n<a/>\n <a/>\t<a/>\n\n\n</doc>\n'[[EOF]]
======================================================================
FAIL: checkParse093 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 326, in checkParse093
self._checkParse("093.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc>\n\n\n</doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc>\n\n\n</doc>\n'[[EOF]]
======================================================================
FAIL: checkParse094 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 328, in checkParse094
self._checkParse("094.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse095 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 330, in checkParse095
self._checkParse("095.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc a1="1 2"/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc a1="1 2"/>\n'[[EOF]]
======================================================================
FAIL: checkParse096 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 332, in checkParse096
self._checkParse("096.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse097 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 334, in checkParse097
self._checkParse("097.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse098 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 336, in checkParse098
self._checkParse("098.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc><?pi x\ny?></doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc><?pi x\ny?></doc>\n'[[EOF]]
======================================================================
FAIL: checkParse099 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 338, in checkParse099
self._checkParse("099.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse100 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 340, in checkParse100
self._checkParse("100.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ENTITY e PUBLIC ";!*#@$_%" "100.xml">\n<!ELEMENT doc (#PCDATA)>\n]>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ENTITY e PUBLIC ";!*#@$_%" "100.xml">\n]>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse101 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 342, in checkParse101
self._checkParse("101.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ELEMENT doc (#PCDATA)>\n<!ENTITY e """>\n]>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ENTITY e """>\n]>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse102 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 344, in checkParse102
self._checkParse("102.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc a=\'"\'/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc a=\'"\'/>\n'[[EOF]]
======================================================================
FAIL: checkParse103 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 346, in checkParse103
self._checkParse("103.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc><doc></doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc><doc></doc>\n'[[EOF]]
======================================================================
FAIL: checkParse104 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 348, in checkParse104
self._checkParse("104.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc a="x y"/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc a="x y"/>\n'[[EOF]]
======================================================================
FAIL: checkParse105 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 350, in checkParse105
self._checkParse("105.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc a="x\ty"/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc a="x\ty"/>\n'[[EOF]]
======================================================================
FAIL: checkParse106 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 352, in checkParse106
self._checkParse("106.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc a="x\ny"/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc a="x\ny"/>\n'[[EOF]]
======================================================================
FAIL: checkParse107 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 354, in checkParse107
self._checkParse("107.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc a="x\ry"/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc a="x\ry"/>\n'[[EOF]]
======================================================================
FAIL: checkParse108 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 356, in checkParse108
self._checkParse("108.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ELEMENT doc (#PCDATA)>\n<!ENTITY e "\n">\n<!ATTLIST doc a CDATA #IMPLIED>\n]>\n<doc a="x y"/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ENTITY e "\n">\n]>\n<doc a="x y"/>\n'[[EOF]]
======================================================================
FAIL: checkParse109 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 358, in checkParse109
self._checkParse("109.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc a=""/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc a=""/>\n'[[EOF]]
======================================================================
FAIL: checkParse110 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 360, in checkParse110
self._checkParse("110.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ELEMENT doc (#PCDATA)>\n<!ENTITY e " ">\n<!ATTLIST doc a CDATA #IMPLIED>\n]>\n<doc a="x y"/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ENTITY e "\r\n">\n]>\n<doc a="x y"/>\n'[[EOF]]
======================================================================
FAIL: checkParse111 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 362, in checkParse111
self._checkParse("111.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc a="x y"/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc a="x y"/>\n'[[EOF]]
======================================================================
FAIL: checkParse112 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 364, in checkParse112
self._checkParse("112.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc><a/></doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc><a/></doc>\n'[[EOF]]
======================================================================
FAIL: checkParse113 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 366, in checkParse113
self._checkParse("113.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc/>\n'[[EOF]]
======================================================================
FAIL: checkParse114 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 368, in checkParse114
self._checkParse("114.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ELEMENT doc (#PCDATA)>\n<!ENTITY e "<![CDATA[&foo;]]>">\n]>\n<doc><![CDATA[&foo;]]></doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ENTITY e "<![CDATA[&foo;]]>">\n]>\n<doc><![CDATA[&foo;]]></doc>\n'[[EOF]]
======================================================================
FAIL: checkParse115 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 370, in checkParse115
self._checkParse("115.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ELEMENT doc (#PCDATA)>\n<!ENTITY e1 "&e2;">\n<!ENTITY e2 "v">\n]>\n<doc>v</doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ENTITY e1 "&e2;">\n<!ENTITY e2 "v">\n]>\n<doc>v</doc>\n'[[EOF]]
======================================================================
FAIL: checkParse116 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 372, in checkParse116
self._checkParse("116.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc><![CDATA[\n]]></doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc><![CDATA[\n]]></doc>\n'[[EOF]]
======================================================================
FAIL: checkParse117 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 374, in checkParse117
self._checkParse("117.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ELEMENT doc (#PCDATA)>\n<!ENTITY rsqb "]">\n]>\n<doc>]</doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ENTITY rsqb "]">\n]>\n<doc>]</doc>\n'[[EOF]]
======================================================================
FAIL: checkParse118 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 376, in checkParse118
self._checkParse("118.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ELEMENT doc (#PCDATA)>\n<!ENTITY rsqb "]]">\n]>\n<doc>]]</doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<!DOCTYPE doc [\n<!ENTITY rsqb "]]">\n]>\n<doc>]]</doc>\n'[[EOF]]
======================================================================
FAIL: checkParse119 (test_parser.ParseOasisXMLTestSaTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 378, in checkParse119
self._checkParse("119.xml")
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_parser.py", line 414, in _checkParse
checkOutput(repr(outFile), repr(output))
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_printer.py", line 100, in checkOutput
assert wanted == got, \
AssertionError: Bad output. Wanted:
'<?xml version="1.0" ?>\n<doc><!-- -\xc3\xa1 --></doc>\n'[[EOF]]
Got:
u'<?xml version="1.0" ?>\n<doc><!-- -\xe1 --></doc>\n'[[EOF]]
----------------------------------------------------------------------
Ran 126 tests in 0.741s
FAILED (failures=116)
Failures:
test_parser.ParseOasisXMLTestSaTestCase.checkParse001
test_parser.ParseOasisXMLTestSaTestCase.checkParse002
test_parser.ParseOasisXMLTestSaTestCase.checkParse003
test_parser.ParseOasisXMLTestSaTestCase.checkParse004
test_parser.ParseOasisXMLTestSaTestCase.checkParse005
test_parser.ParseOasisXMLTestSaTestCase.checkParse006
test_parser.ParseOasisXMLTestSaTestCase.checkParse007
test_parser.ParseOasisXMLTestSaTestCase.checkParse008
test_parser.ParseOasisXMLTestSaTestCase.checkParse009
test_parser.ParseOasisXMLTestSaTestCase.checkParse010
test_parser.ParseOasisXMLTestSaTestCase.checkParse011
test_parser.ParseOasisXMLTestSaTestCase.checkParse013
test_parser.ParseOasisXMLTestSaTestCase.checkParse014
test_parser.ParseOasisXMLTestSaTestCase.checkParse015
test_parser.ParseOasisXMLTestSaTestCase.checkParse016
test_parser.ParseOasisXMLTestSaTestCase.checkParse017
test_parser.ParseOasisXMLTestSaTestCase.checkParse018
test_parser.ParseOasisXMLTestSaTestCase.checkParse019
test_parser.ParseOasisXMLTestSaTestCase.checkParse020
test_parser.ParseOasisXMLTestSaTestCase.checkParse021
test_parser.ParseOasisXMLTestSaTestCase.checkParse022
test_parser.ParseOasisXMLTestSaTestCase.checkParse023
test_parser.ParseOasisXMLTestSaTestCase.checkParse024
test_parser.ParseOasisXMLTestSaTestCase.checkParse025
test_parser.ParseOasisXMLTestSaTestCase.checkParse026
test_parser.ParseOasisXMLTestSaTestCase.checkParse027
test_parser.ParseOasisXMLTestSaTestCase.checkParse028
test_parser.ParseOasisXMLTestSaTestCase.checkParse029
test_parser.ParseOasisXMLTestSaTestCase.checkParse030
test_parser.ParseOasisXMLTestSaTestCase.checkParse031
test_parser.ParseOasisXMLTestSaTestCase.checkParse032
test_parser.ParseOasisXMLTestSaTestCase.checkParse033
test_parser.ParseOasisXMLTestSaTestCase.checkParse034
test_parser.ParseOasisXMLTestSaTestCase.checkParse035
test_parser.ParseOasisXMLTestSaTestCase.checkParse036
test_parser.ParseOasisXMLTestSaTestCase.checkParse037
test_parser.ParseOasisXMLTestSaTestCase.checkParse038
test_parser.ParseOasisXMLTestSaTestCase.checkParse039
test_parser.ParseOasisXMLTestSaTestCase.checkParse040
test_parser.ParseOasisXMLTestSaTestCase.checkParse041
test_parser.ParseOasisXMLTestSaTestCase.checkParse042
test_parser.ParseOasisXMLTestSaTestCase.checkParse043
test_parser.ParseOasisXMLTestSaTestCase.checkParse044
test_parser.ParseOasisXMLTestSaTestCase.checkParse045
test_parser.ParseOasisXMLTestSaTestCase.checkParse046
test_parser.ParseOasisXMLTestSaTestCase.checkParse047
test_parser.ParseOasisXMLTestSaTestCase.checkParse048
test_parser.ParseOasisXMLTestSaTestCase.checkParse049
test_parser.ParseOasisXMLTestSaTestCase.checkParse050
test_parser.ParseOasisXMLTestSaTestCase.checkParse052
test_parser.ParseOasisXMLTestSaTestCase.checkParse053
test_parser.ParseOasisXMLTestSaTestCase.checkParse054
test_parser.ParseOasisXMLTestSaTestCase.checkParse055
test_parser.ParseOasisXMLTestSaTestCase.checkParse056
test_parser.ParseOasisXMLTestSaTestCase.checkParse057
test_parser.ParseOasisXMLTestSaTestCase.checkParse058
test_parser.ParseOasisXMLTestSaTestCase.checkParse059
test_parser.ParseOasisXMLTestSaTestCase.checkParse060
test_parser.ParseOasisXMLTestSaTestCase.checkParse061
test_parser.ParseOasisXMLTestSaTestCase.checkParse062
test_parser.ParseOasisXMLTestSaTestCase.checkParse064
test_parser.ParseOasisXMLTestSaTestCase.checkParse065
test_parser.ParseOasisXMLTestSaTestCase.checkParse066
test_parser.ParseOasisXMLTestSaTestCase.checkParse067
test_parser.ParseOasisXMLTestSaTestCase.checkParse068
test_parser.ParseOasisXMLTestSaTestCase.checkParse069
test_parser.ParseOasisXMLTestSaTestCase.checkParse070
test_parser.ParseOasisXMLTestSaTestCase.checkParse071
test_parser.ParseOasisXMLTestSaTestCase.checkParse072
test_parser.ParseOasisXMLTestSaTestCase.checkParse073
test_parser.ParseOasisXMLTestSaTestCase.checkParse074
test_parser.ParseOasisXMLTestSaTestCase.checkParse075
test_parser.ParseOasisXMLTestSaTestCase.checkParse076
test_parser.ParseOasisXMLTestSaTestCase.checkParse077
test_parser.ParseOasisXMLTestSaTestCase.checkParse078
test_parser.ParseOasisXMLTestSaTestCase.checkParse079
test_parser.ParseOasisXMLTestSaTestCase.checkParse080
test_parser.ParseOasisXMLTestSaTestCase.checkParse081
test_parser.ParseOasisXMLTestSaTestCase.checkParse082
test_parser.ParseOasisXMLTestSaTestCase.checkParse083
test_parser.ParseOasisXMLTestSaTestCase.checkParse084
test_parser.ParseOasisXMLTestSaTestCase.checkParse085
test_parser.ParseOasisXMLTestSaTestCase.checkParse086
test_parser.ParseOasisXMLTestSaTestCase.checkParse087
test_parser.ParseOasisXMLTestSaTestCase.checkParse088
test_parser.ParseOasisXMLTestSaTestCase.checkParse089
test_parser.ParseOasisXMLTestSaTestCase.checkParse090
test_parser.ParseOasisXMLTestSaTestCase.checkParse091
test_parser.ParseOasisXMLTestSaTestCase.checkParse092
test_parser.ParseOasisXMLTestSaTestCase.checkParse093
test_parser.ParseOasisXMLTestSaTestCase.checkParse094
test_parser.ParseOasisXMLTestSaTestCase.checkParse095
test_parser.ParseOasisXMLTestSaTestCase.checkParse096
test_parser.ParseOasisXMLTestSaTestCase.checkParse097
test_parser.ParseOasisXMLTestSaTestCase.checkParse098
test_parser.ParseOasisXMLTestSaTestCase.checkParse099
test_parser.ParseOasisXMLTestSaTestCase.checkParse100
test_parser.ParseOasisXMLTestSaTestCase.checkParse101
test_parser.ParseOasisXMLTestSaTestCase.checkParse102
test_parser.ParseOasisXMLTestSaTestCase.checkParse103
test_parser.ParseOasisXMLTestSaTestCase.checkParse104
test_parser.ParseOasisXMLTestSaTestCase.checkParse105
test_parser.ParseOasisXMLTestSaTestCase.checkParse106
test_parser.ParseOasisXMLTestSaTestCase.checkParse107
test_parser.ParseOasisXMLTestSaTestCase.checkParse108
test_parser.ParseOasisXMLTestSaTestCase.checkParse109
test_parser.ParseOasisXMLTestSaTestCase.checkParse110
test_parser.ParseOasisXMLTestSaTestCase.checkParse111
test_parser.ParseOasisXMLTestSaTestCase.checkParse112
test_parser.ParseOasisXMLTestSaTestCase.checkParse113
test_parser.ParseOasisXMLTestSaTestCase.checkParse114
test_parser.ParseOasisXMLTestSaTestCase.checkParse115
test_parser.ParseOasisXMLTestSaTestCase.checkParse116
test_parser.ParseOasisXMLTestSaTestCase.checkParse117
test_parser.ParseOasisXMLTestSaTestCase.checkParse118
test_parser.ParseOasisXMLTestSaTestCase.checkParse119
===== Persistence =====
.....
----------------------------------------------------------------------
Ran 5 tests in 0.444s
OK
===== Truthable =====
......
----------------------------------------------------------------------
Ran 6 tests in 0.004s
OK
===== UserAcquisition =====
....
----------------------------------------------------------------------
Ran 4 tests in 0.924s
OK
===== Acquisition =====
F
======================================================================
FAIL: checkParentReferenceIntegrity (test_aqpain.AcquisitionPain)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/zope/current/lib/python/Products/ParsedXML/tests/test_aqpain.py", line 43, in checkParentReferenceIntegrity
assert e1a.parentNode.isSameNode(e1b.parentNode), \
AssertionError: Two references to the same node return different parent nodes.
----------------------------------------------------------------------
Ran 1 tests in 0.002s
FAILED (failures=1)
Failures:
test_aqpain.AcquisitionPain.checkParentReferenceIntegrity
===== ZopeInterface =====
....
----------------------------------------------------------------------
Ran 4 tests in 0.022s
OK
===== ODB =====
.
----------------------------------------------------------------------
Ran 1 tests in 0.007s
OK
===== elementId =====
.......
----------------------------------------------------------------------
Ran 7 tests in 0.043s
OK
--Apple-Mail-4-267929605--