From adrian at haqa.co.uk Tue Feb 4 01:24:18 2003 From: adrian at haqa.co.uk (Adrian Hungate) Date: Sun Aug 10 16:54:53 2008 Subject: [Zope-xml] XMLDocument References: <5.1.0.14.2.20021120092555.037a08c0@pop.hf.ntnu.no> Message-ID: <011101c2cc16$0c7c8870$0280a8c0@armadillo> Sorry I have taken so long to read this, I have recently started a new job, and life has been hectic. I am not sure what is going wrong, I'll have to do some testing, but remember XML is case sensitive - is the emnekcode tag in lowercase everywhere? (That is a weak guess, I'll know more once I've tested). Adrian... -- Adrian Hungate EMail: adrian@haqa.co.uk Web: http://www.haqa.co.uk ----- Original Message ----- From: "Einar N?ss Jensen" To: Cc: Sent: Wednesday, November 20, 2002 8:45 AM Subject: [Zope-xml] XMLDocument I am using the product XMLKit and its XMLDocument and XMLproxy. (have tried ParsedXML, but it doesn't seem to display my norwegian characters and I don't have time to look into that matter). XMLproxy works just the way i want it. now, inside this xml there is a few lines i want to extract: hfmv302 What i want from this is: hfmv302 when i add "emnekode" to the entities to view, nothing happens. However, if contains data i may extract this by calling at the opening tag. I am puzzeled. First of all i would very much apreciate if somone could point me to any documentation on XMLKit. second: if somone understand what i want from the above text, maybe could tell me if I am on the right track when trying to extract data from the xml-document. Are there other ways to do this? how? Thanks to everyone who have answered my recent postings. Einar -- Einar N?ss Jensen Avdelingsingeni?r EDB-HF 735 90750 _______________________________________________ Zope-xml mailing list Zope-xml@zope.org http://lists.zope.org/mailman/listinfo/zope-xml From adrian at haqa.co.uk Tue Feb 4 01:29:27 2003 From: adrian at haqa.co.uk (Adrian Hungate) Date: Sun Aug 10 16:54:53 2008 Subject: [Zope-xml] Need to import Nessus XML output References: <20030112210304.3215.qmail@web21107.mail.yahoo.com> Message-ID: <011b01c2cc16$cb9bb000$0280a8c0@armadillo> XMLdocument (from XMLKit) is not deprecated as such, I've just not done any development on it for a long time. XMLKit was developed when I was learning XML, so it may not be as efficient as it could be, but I can't see why it would bloat Zope too much, unless you are loading Mb's of data into it (Loading Mb's of anything into Zope is not always a good idea for performance). XMLProxy is an XMLKit object that loads data from an XMLSource (Like an XMLDocument does) and then caches and provides it to another XML consumer (Like and XMLFile does) so it is simply a caching proxy object. It caches the data in the ZODB, so, again, this is not good for exceptionally large documents. Adrian... -- Adrian Hungate EMail: adrian@haqa.co.uk Web: http://www.haqa.co.uk ----- Original Message ----- From: "Jim Burnes" To: Sent: Sunday, January 12, 2003 9:03 PM Subject: [Zope-xml] Need to import Nessus XML output > People: > > I'm looking for a good reason to run zope. I actually > used it quite a bit for support documentation using > ZWiki. This time I have a hard-core task: > > I'm doing extensive security scans for my company and > I > need to take the XML output from the Nessus security > scanner and bring it into ZODB. Once the output from > many different scans are in ZODB I want to be able to > search ZODB for various types of information in the > scans. > > I spent a day screwing around with XMLDocument and > some tutorials. I managed to import both the old and > new Nessus XML format into Zope. I think the object > overhead for XMLDocument was pretty high, especially > with the new Nessus XML format. In the management > console of Zope the GUI overhead alone was huge when > trying to expand some of the hierarchical structures > in the output. > > I'm under the impression that XMLDocument is now > deprecated, but am a little confused what XMLproxy is > and what format the info is in once it is imported > from XMLproxy. Does the information end up in ZODB? > Can it be rapidly queried using standard ZODB search > functions? Can i selectively throw out certain > portions of the incoming XML document? > > Inquiring minds want to know! > > Thanks, > > Jim Burnes > > > __________________________________________________ > Do you Yahoo!? > Yahoo! Mail Plus - Powerful. Affordable. Sign up now. > http://mailplus.yahoo.com > > _______________________________________________ > Zope-xml mailing list > Zope-xml@zope.org > http://lists.zope.org/mailman/listinfo/zope-xml > From tom_hoffman at mac.com Thu Feb 13 00:46:07 2003 From: tom_hoffman at mac.com (Tom Hoffman) Date: Sun Aug 10 16:54:53 2008 Subject: [Zope-xml] Parsed XML unit test failures Message-ID: <200302130046.07474.tom_hoffman@mac.com> I ran into some highly cryptic behavior a few weeks ago in my first attempt to use the DOM and ParsedXML. Rather than try to explain what was happening, I thought it might be more useful to run the unit tests on my system. The system is Zope 2.6.0 on Redhat 7.3. I tried installing PyXML against the Zope binary installation's version of Python which had been working fine overall. When I had problems I did a whole INSTANCE_HOME source install of Python and Zope and still had the same bug. Regardless, these tests were run with the binary install. The details of the test are beyone me. I think there are a bunch of unicode issues in here, but I'd appreciate whatever vague diagnosis anyone can offer. Thanks in advance, Tom Hoffman Technology Coordinator Feinstein High School Providence, RI, USA -------------- next part -------------- ===== 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: ====================================================================== 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 , expected . TreeWalker.currentNode is . ====================================================================== 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 []. TreeWalker.currentNode is . ---------------------------------------------------------------------- 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: ====================================================================== 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 , expected . TreeWalker.currentNode is . ====================================================================== 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 []. TreeWalker.currentNode is . ---------------------------------------------------------------------- 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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n \n'[[EOF]] Got: u'\n \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: '\n&<>"\'\n'[[EOF]] Got: u'\n&<>"\'\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: '\n \n'[[EOF]] Got: u'\n \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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n \n'[[EOF]] Got: u'\n \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: '\n]]>\n'[[EOF]] Got: u'\n]]>\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: '\n\n'[[EOF]] Got: u'\n\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: '\n]]]>\n'[[EOF]] Got: u'\n]]]>\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n\n]>\n\n'[[EOF]] Got: u'\n\n]>\n\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: '\n\n\n">\n]>\n\n'[[EOF]] Got: u'\n</foo>">\n]>\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\nA\n'[[EOF]] Got: u'\nA\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n\n\n\n\n'[[EOF]] Got: u'\n\n\n\n\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\nX\nY\n'[[EOF]] Got: u'\nX\nY\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: '\n]\n'[[EOF]] Got: u'\n]\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: '\n\xc2\xa3\n'[[EOF]] Got: u'\n\xa3\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: '\n\xe0\xb9\x80\xe0\xb8\x88\xe0\xb8\xa1\xe0\xb8\xaa\xe0\xb9\x8c\n'[[EOF]] Got: u'\n\u0e40\u0e08\u0e21\u0e2a\u0e4c\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: '\n\xf0\x90\x80\x80\xf4\x8f\xbf\xbd\n'[[EOF]] Got: u'\n\ud800\udc00\udbff\udffd\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: '\n">\n\n\n]>\n\n'[[EOF]] Got: u'\n">\n]>\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\nA\n'[[EOF]] Got: u'\nA\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n\n\n\n\n'[[EOF]] Got: u'\n\n\n\n\n\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: '\nX\nY\n'[[EOF]] Got: u'\nX\nY\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: '\n\xc2\xa3\n'[[EOF]] Got: u'\n\xa3\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: '\n\xe0\xb9\x80\xe0\xb8\x88\xe0\xb8\xa1\xe0\xb8\xaa\xe0\xb9\x8c\n'[[EOF]] Got: u'\n\u0e40\u0e08\u0e21\u0e2a\u0e4c\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: '\n\xf0\x90\x80\x80\xf4\x8f\xbf\xbd\n'[[EOF]] Got: u'\n\ud800\udc00\udbff\udffd\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: '\n\n\n]>\n\n'[[EOF]] Got: u'\n\n]>\n\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: '\n\n\n\n\n]>\n\n'[[EOF]] Got: u'\n\n]>\n\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: '\n\r\n'[[EOF]] Got: u'\n\r\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: '\n\n\n]>\n\r\n'[[EOF]] Got: u'\n\n]>\n\r\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: '\n\n\n]>\n\n'[[EOF]] Got: u'\n\n]>\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n\n\n\n]>\n\n'[[EOF]] Got: u'\n\n\n]>\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n">\n\n]>\n\n'[[EOF]] Got: u'\n\n]>\n\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: '\n\n\n">\n]>\n\n'[[EOF]] Got: u'\n\n]>\n\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: '\n\n\n\n]>\n\n'[[EOF]] Got: u'\n">\n]>\n\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: '\n\n">\n]>\n<foo>\n'[[EOF]] Got: u'\n">\n]>\n<foo>\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: '\n\n\n]>\n\xf0\x90\x80\x80\xf4\x8f\xbf\xbd\xf4\x8f\xbf\xbf\n'[[EOF]] Got: u'\n\n]>\n\ud800\udc00\udbff\udffd\udbff\udfff\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: '\n\n\n\n\n]>\n\n'[[EOF]] Got: u'\n\n]>\n\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: '\n\n\n\n\n]>\n\n'[[EOF]] Got: u'\n\n\n]>\n\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: '\n\n\n \t\n\n\n\n'[[EOF]] Got: u'\n\n\n \t\n\n\n\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: '\n\n\n\n\n'[[EOF]] Got: u'\n\n\n\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n\n]>\n\n'[[EOF]] Got: u'\n\n]>\n\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: '\n\n\n]>\n\n'[[EOF]] Got: u'\n\n]>\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n<doc>\n'[[EOF]] Got: u'\n<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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n\n\n]>\n\n'[[EOF]] Got: u'\n\n]>\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n\n\n]>\n\n'[[EOF]] Got: u'\n\n]>\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n">\n]>\n\n'[[EOF]] Got: u'\n\n]>\n\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: '\n\n\n\n]>\nv\n'[[EOF]] Got: u'\n\n\n]>\nv\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: '\n\n'[[EOF]] Got: u'\n\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: '\n\n\n]>\n]\n'[[EOF]] Got: u'\n\n]>\n]\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: '\n\n\n]>\n]]\n'[[EOF]] Got: u'\n\n]>\n]]\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: '\n\n'[[EOF]] Got: u'\n\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 From faassen at vet.uu.nl Sat Feb 15 12:44:04 2003 From: faassen at vet.uu.nl (Martijn Faassen) Date: Sun Aug 10 16:54:53 2008 Subject: [Zope-xml] Parsed XML unit test failures In-Reply-To: <200302130046.07474.tom_hoffman@mac.com> References: <200302130046.07474.tom_hoffman@mac.com> Message-ID: <20030215174404.GA14185@vet.uu.nl> Tom Hoffman wrote: > The details of the test are beyone me. I think there are a bunch of unicode > issues in here, but I'd appreciate whatever vague diagnosis anyone can offer. Unfortunately those unit test failures are 'normal'. :( That is, I don't know how to make the parser tests work with unicode without the parser going into a segfault. That said, I haven't tried the unicode variety against the very newest of PyXML yet. (there's one line in the tests to make it compare against unicode strings that will make the tests start to pass, but then the whole thing burns down with a segfault; I haven't been able to find the cause of this yet and my cries for help in the past have been to no avail so far :) I should probably just disable the other failing unit tests. They're testing fairly obscure edge cases of the interaction between DOM and DTDs, and the other failing tests involve an implementation of DOM's NodeWalker. when I last checked that out, I couldn't figure out what the intended behavior was *supposed* to be from the spec, I think. :) Regards, Martijn From gotcha at swing.be Mon Feb 24 09:10:50 2003 From: gotcha at swing.be (Godefroid Chapelle) Date: Sun Aug 10 16:54:53 2008 Subject: [Zope-xml] April Zope3 sprint in Louvain-la-Neuve Belgium Message-ID: <3E5A27EA.4070900@swing.be> First I want to apologize for the cross-post, but this message is concerning both lists. As some of you already know, a Zope3 sprint is organized in Louvain-la-Neuve(LLN) Belgium, April 8-11 2003 by BubbleNet offices. First topic targetted was I18n. Currently, I have the candidature of at least one IngeniWeb developer (Pierre-Julien Grizel, Olivier Deckmyn or Kamon Ayeva - two could come) and of Florent Guillaume (Nuxeo). As 1) there was a lot of enthusiasm :-( and 2) Stephan Richter could not join us, Jim decided to focus PyCon sprint on I18n. This allows us to widen the focus of LLN sprint (without forgetting I18n work). Paul Everitt and I would like to propose to also work on XML integration in Z3 framework (this means at least looking how to integrate XSLT and XMLSchemas). We are willing to be sparkles on this project so that interested people could take the lead as we are already working on Z3MI. This mail is thus an invitation for XMLers to join Zope 3 development, with the opportunity to get a Z3 tutorial (see http://dev.zope.org/Wikis/DevSite/Projects/ComponentArchitecture/SprintSchedule). If enough people are coming to LLN to work on XML, Paul would join us (he'll decide how many is enough ;-). He takes the engagement of writing the description of at least one way people would/could like to use XML in Zope. This could be the basis for our work. Please contact me ASAP if you want to join us. -- Godefroid Chapelle BubbleNet sprl Louvain-la-Neuve Belgium From faassen at vet.uu.nl Mon Feb 24 12:58:17 2003 From: faassen at vet.uu.nl (Martijn Faassen) Date: Sun Aug 10 16:54:53 2008 Subject: [Zope-xml] Re: April Zope3 sprint in Louvain-la-Neuve Belgium In-Reply-To: <3E5A27EA.4070900@swing.be> References: <3E5A27EA.4070900@swing.be> Message-ID: <20030224175817.GA19473@vet.uu.nl> Godefroid Chapelle wrote: > Paul Everitt and I would like to propose to also work on XML integration > in Z3 framework (this means at least looking how to integrate XSLT and > XMLSchemas). > We are willing to be sparkles on this project so that interested people > could take the lead as we are already working on Z3MI. Okay, this certainly increased the chances a lot I'm going to show up; Infrae has a lot of expertise and a lot of interest in XML and Zope; this sort of makes it required I come and give some input all of a sudden. Cutting it tight though as I'll be just barely back from the US and PyCon.. Need to discuss things here. I have years of experience working with XML in Zope... First XMLDocument, then ParsedXML. I maintain ParsedXML and know where it sucks. :) Silva uses XML all over the place and we're moving into using XPath. We don't have a lot of expertise on XSLT though. Infrae is also working on Forest, an XML database. I hope it will eventually be plugged into Zope 3. What Forest will be able to do with wild estimates of completeness of implementation: Store XML in ZODB efficiently using BTree: 80% (can't pickle some C-based structures yet and no performance tuning yet -- would also like to have IIBTrees which can work with long long (64 bit) ints..) Read-only DOM: 95% (can already use PyXML XPath with this) Read in documents using SAX: 85% (processing instructions and comment nodes are still missing, but namespaces work) Output documents using SAX: 85% (same story) Output documents as XML: 95% XML:DB API compliant: 30% Highly optimized XPath implementation using BTrees and indexes and the result of a lot of research: 20% (parts of XPath work right now, in particular location steps and all axes but the namespace steps, and some steps are highly optimized, but lots is missing still) Two focuses: * efficient storage of XML in the ZODB. A document's structure can be represented using a single IIBTree plus a few other numbers. * Very fast XPath queries. The structure allows certain operations (database style joins in particular, and ancestor/descendant checks) to run very quickly. There's a C core that helps with this. The thing is intended to be an efficient way to store XML documents and query into them. Basically the undercarriage of a Zope 3 version of Silva. I don't tend to care much about the other side of Zope and XML, XML messaging; I care about storing structured information. One thing it is lacking compared to XMLDocument or ParsedXML is that it doesn't allow documents to be mutated through a DOM -- documents have to be replaced as a whole in order to change them. For this use case (which the Silva editor needs) I imagine a Python DOM can be used (with a save into Forest when you're "done editing"). Lots of work to be done still but we're making progress. For XSLT integration I would recommend looking into Ariel Partner's XSLT Transform product for Zope 2 and translate that to a Zope 3 design. Regards, Martijn From dmidd at chartermi.net Tue Feb 25 08:05:47 2003 From: dmidd at chartermi.net (Daryl Middleton) Date: Sun Aug 10 16:54:53 2008 Subject: [Zope-xml] XML_XSLT in Zope Message-ID: I am familiar with how to place files in Apache so that XML files will be transformed by a corresponding XSLT file. In Zope how does this work, ie. can an XSLT file be accessed by the XML document as long as they are in the same directory. Does the XSLT have to be a "File" or "DTML". I am using Python 2.2, Zope 2.6, PyXML and 4Suite. From cstrong at arielpartners.com Tue Feb 25 13:20:43 2003 From: cstrong at arielpartners.com (Craeg K Strong) Date: Sun Aug 10 16:54:53 2008 Subject: [Zope-xml] XML_XSLT in Zope In-Reply-To: References: Message-ID: <3E5BB3FB.7080704@arielpartners.com> Hello: Have you had a look at http://www.zope.org/Members/arielpartners/XMLTransform ? We are hoping to put out a new release soon with a simpler design, but the 0.9.1 release is good to start with. To get a feel for the product, you might check out the tutorial at http://www.zope.org/Members/arielpartners/XMLTransform/tutorial Hope this helps, --Craeg Daryl Middleton wrote: >I am familiar with how to place files in Apache so that XML files will be >transformed by a corresponding XSLT file. In Zope how does this work, ie. >can an XSLT file be accessed by the XML document as long as they are in the >same directory. Does the XSLT have to be a "File" or "DTML". I am using >Python 2.2, Zope 2.6, PyXML and 4Suite. > >