Skip to content

Commit 3ebda33

Browse files
hartworkstratakis
authored andcommitted
00378: Support expat 2.4.5
Curly brackets were never allowed in namespace URIs according to RFC 3986, and so-called namespace-validating XML parsers have the right to reject them a invalid URIs. libexpat >=2.4.5 has become strcter in that regard due to related security issues; with ET.XML instantiating a namespace-aware parser under the hood, this test has no future in CPython. References: - https://datatracker.ietf.org/doc/html/rfc3968 - https://www.w3.org/TR/xml-names/ Also, test_minidom.py: Support Expat >=2.4.5 Upstream: https://bugs.python.org/issue46811 Co-authored-by: Sebastian Pipping <[email protected]>
1 parent ec58407 commit 3ebda33

File tree

3 files changed

+16
-8
lines changed

3 files changed

+16
-8
lines changed

Lib/test/test_minidom.py

+15-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,12 @@
55
from test import support
66
import unittest
77

8+
import pyexpat
89
import xml.dom.minidom
910

1011
from xml.dom.minidom import parse, Node, Document, parseString
1112
from xml.dom.minidom import getDOMImplementation
13+
from xml.parsers.expat import ExpatError
1214

1315

1416
tstfile = support.findfile("test.xml", subdir="xmltestdata")
@@ -1156,7 +1158,13 @@ def testEncodings(self):
11561158

11571159
# Verify that character decoding errors raise exceptions instead
11581160
# 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,
11601168
b'<fran\xe7ais>Comment \xe7a va ? Tr\xe8s bien ?</fran\xe7ais>')
11611169

11621170
doc.unlink()
@@ -1602,7 +1610,12 @@ def testEmptyXMLNSValue(self):
16021610
self.confirm(doc2.namespaceURI == xml.dom.EMPTY_NAMESPACE)
16031611

16041612
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:
16061619
parseString('<element xmlns:abc="http:abc.com/de f g/hi/j k"><abc:foo /></element>')
16071620

16081621
def testDocRemoveChild(self):

Lib/test/test_xml_etree.py

-6
Original file line numberDiff line numberDiff line change
@@ -1668,12 +1668,6 @@ def test_issue6233(self):
16681668
b"<?xml version='1.0' encoding='ascii'?>\n"
16691669
b'<body>t&#227;g</body>')
16701670

1671-
def test_issue3151(self):
1672-
e = ET.XML('<prefix:localname xmlns:prefix="${stuff}"/>')
1673-
self.assertEqual(e.tag, '{${stuff}}localname')
1674-
t = ET.ElementTree(e)
1675-
self.assertEqual(ET.tostring(e), b'<ns0:localname xmlns:ns0="${stuff}" />')
1676-
16771671
def test_issue6565(self):
16781672
elem = ET.XML("<body><tag/></body>")
16791673
self.assertEqual(summarize_list(elem), ['tag'])
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Make test suite support Expat >=2.4.5

0 commit comments

Comments
 (0)