|
5 | 5 | from test import support
|
6 | 6 | import unittest
|
7 | 7 |
|
| 8 | +import pyexpat |
8 | 9 | import xml.dom.minidom
|
9 | 10 |
|
10 | 11 | from xml.dom.minidom import parse, Node, Document, parseString
|
11 | 12 | from xml.dom.minidom import getDOMImplementation
|
| 13 | +from xml.parsers.expat import ExpatError |
12 | 14 |
|
13 | 15 |
|
14 | 16 | tstfile = support.findfile("test.xml", subdir="xmltestdata")
|
@@ -1156,7 +1158,13 @@ def testEncodings(self):
|
1156 | 1158 |
|
1157 | 1159 | # Verify that character decoding errors raise exceptions instead
|
1158 | 1160 | # of crashing
|
1159 |
| - self.assertRaises(UnicodeDecodeError, parseString, |
| 1161 | + if pyexpat.version_info >= (2, 4, 5): |
| 1162 | + self.assertRaises(ExpatError, parseString, |
| 1163 | + b'<fran\xe7ais></fran\xe7ais>') |
| 1164 | + self.assertRaises(ExpatError, parseString, |
| 1165 | + b'<franais>Comment \xe7a va ? Tr\xe8s bien ?</franais>') |
| 1166 | + else: |
| 1167 | + self.assertRaises(UnicodeDecodeError, parseString, |
1160 | 1168 | b'<fran\xe7ais>Comment \xe7a va ? Tr\xe8s bien ?</fran\xe7ais>')
|
1161 | 1169 |
|
1162 | 1170 | doc.unlink()
|
@@ -1602,7 +1610,12 @@ def testEmptyXMLNSValue(self):
|
1602 | 1610 | self.confirm(doc2.namespaceURI == xml.dom.EMPTY_NAMESPACE)
|
1603 | 1611 |
|
1604 | 1612 | def testExceptionOnSpacesInXMLNSValue(self):
|
1605 |
| - with self.assertRaisesRegex(ValueError, 'Unsupported syntax'): |
| 1613 | + if pyexpat.version_info >= (2, 4, 5): |
| 1614 | + context = self.assertRaisesRegex(ExpatError, 'syntax error') |
| 1615 | + else: |
| 1616 | + context = self.assertRaisesRegex(ValueError, 'Unsupported syntax') |
| 1617 | + |
| 1618 | + with context: |
1606 | 1619 | parseString('<element xmlns:abc="http:abc.com/de f g/hi/j k"><abc:foo /></element>')
|
1607 | 1620 |
|
1608 | 1621 | def testDocRemoveChild(self):
|
|
0 commit comments