Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
c472246d
Commit
c472246d
authored
Nov 26, 2015
by
Serhiy Storchaka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #10131: Fixed deep copying of minidom documents. Based on patch
by Marian Ganisin.
parent
747d48cf
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
94 additions
and
45 deletions
+94
-45
Lib/test/test_minidom.py
Lib/test/test_minidom.py
+52
-42
Lib/test/test_xml_dom_minicompat.py
Lib/test/test_xml_dom_minicompat.py
+36
-0
Lib/xml/dom/minicompat.py
Lib/xml/dom/minicompat.py
+3
-3
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/test/test_minidom.py
View file @
c472246d
# test for xml.dom.minidom
# test for xml.dom.minidom
import
copy
import
pickle
import
pickle
from
test.support
import
run_unittest
,
findfile
from
test.support
import
run_unittest
,
findfile
import
unittest
import
unittest
...
@@ -11,6 +12,13 @@ from xml.dom.minidom import getDOMImplementation
...
@@ -11,6 +12,13 @@ from xml.dom.minidom import getDOMImplementation
tstfile
=
findfile
(
"test.xml"
,
subdir
=
"xmltestdata"
)
tstfile
=
findfile
(
"test.xml"
,
subdir
=
"xmltestdata"
)
sample
=
(
"<?xml version='1.0' encoding='us-ascii'?>
\
n
"
"<!DOCTYPE doc PUBLIC 'http://xml.python.org/public'"
" 'http://xml.python.org/system' [
\
n
"
" <!ELEMENT e EMPTY>
\
n
"
" <!ENTITY ent SYSTEM 'http://xml.python.org/entity'>
\
n
"
"]><doc attr='value'> text
\
n
"
"<?pi sample?> <!-- comment --> <e/> </doc>"
)
# The tests of DocumentType importing use these helpers to construct
# The tests of DocumentType importing use these helpers to construct
# the documents to work with, since not all DOM builders actually
# the documents to work with, since not all DOM builders actually
...
@@ -1466,53 +1474,55 @@ class MinidomTest(unittest.TestCase):
...
@@ -1466,53 +1474,55 @@ class MinidomTest(unittest.TestCase):
self
.
confirm
(
e
.
isSameNode
(
doc
.
getElementById
(
"w"
))
self
.
confirm
(
e
.
isSameNode
(
doc
.
getElementById
(
"w"
))
and
a2
.
isId
)
and
a2
.
isId
)
def
testPickledDocument
(
self
):
def
assert_recursive_equal
(
self
,
doc
,
doc2
):
doc
=
parseString
(
"<?xml version='1.0' encoding='us-ascii'?>
\
n
"
"<!DOCTYPE doc PUBLIC 'http://xml.python.org/public'"
" 'http://xml.python.org/system' [
\
n
"
" <!ELEMENT e EMPTY>
\
n
"
" <!ENTITY ent SYSTEM 'http://xml.python.org/entity'>
\
n
"
"]><doc attr='value'> text
\
n
"
"<?pi sample?> <!-- comment --> <e/> </doc>"
)
for
proto
in
range
(
2
,
pickle
.
HIGHEST_PROTOCOL
+
1
):
s
=
pickle
.
dumps
(
doc
,
proto
)
doc2
=
pickle
.
loads
(
s
)
stack
=
[(
doc
,
doc2
)]
stack
=
[(
doc
,
doc2
)]
while
stack
:
while
stack
:
n1
,
n2
=
stack
.
pop
()
n1
,
n2
=
stack
.
pop
()
self
.
confirm
(
n1
.
nodeType
==
n2
.
nodeType
self
.
assertEqual
(
n1
.
nodeType
,
n2
.
nodeType
)
and
len
(
n1
.
childNodes
)
==
len
(
n2
.
childNodes
)
self
.
assertEqual
(
len
(
n1
.
childNodes
),
len
(
n2
.
childNodes
)
)
and
n1
.
nodeName
==
n2
.
nodeName
self
.
assertEqual
(
n1
.
nodeName
,
n2
.
nodeName
)
and
not
n1
.
isSameNode
(
n2
)
self
.
assertFalse
(
n1
.
isSameNode
(
n2
)
)
and
not
n2
.
isSameNode
(
n1
))
self
.
assertFalse
(
n2
.
isSameNode
(
n1
))
if
n1
.
nodeType
==
Node
.
DOCUMENT_TYPE_NODE
:
if
n1
.
nodeType
==
Node
.
DOCUMENT_TYPE_NODE
:
len
(
n1
.
entities
)
len
(
n1
.
entities
)
len
(
n2
.
entities
)
len
(
n2
.
entities
)
len
(
n1
.
notations
)
len
(
n1
.
notations
)
len
(
n2
.
notations
)
len
(
n2
.
notations
)
self
.
confirm
(
len
(
n1
.
entities
)
==
len
(
n2
.
entities
)
self
.
assertEqual
(
len
(
n1
.
entities
),
len
(
n2
.
entities
)
)
and
len
(
n1
.
notations
)
==
len
(
n2
.
notations
))
self
.
assertEqual
(
len
(
n1
.
notations
),
len
(
n2
.
notations
))
for
i
in
range
(
len
(
n1
.
notations
)):
for
i
in
range
(
len
(
n1
.
notations
)):
# XXX this loop body doesn't seem to be executed?
# XXX this loop body doesn't seem to be executed?
no1
=
n1
.
notations
.
item
(
i
)
no1
=
n1
.
notations
.
item
(
i
)
no2
=
n1
.
notations
.
item
(
i
)
no2
=
n1
.
notations
.
item
(
i
)
self
.
confirm
(
no1
.
name
==
no2
.
name
self
.
assertEqual
(
no1
.
name
,
no2
.
name
)
and
no1
.
publicId
==
no2
.
publicId
self
.
assertEqual
(
no1
.
publicId
,
no2
.
publicId
)
and
no1
.
systemId
==
no2
.
systemId
)
self
.
assertEqual
(
no1
.
systemId
,
no2
.
systemId
)
stack
.
append
((
no1
,
no2
))
stack
.
append
((
no1
,
no2
))
for
i
in
range
(
len
(
n1
.
entities
)):
for
i
in
range
(
len
(
n1
.
entities
)):
e1
=
n1
.
entities
.
item
(
i
)
e1
=
n1
.
entities
.
item
(
i
)
e2
=
n2
.
entities
.
item
(
i
)
e2
=
n2
.
entities
.
item
(
i
)
self
.
confirm
(
e1
.
notationName
==
e2
.
notationName
self
.
assertEqual
(
e1
.
notationName
,
e2
.
notationName
)
and
e1
.
publicId
==
e2
.
publicId
self
.
assertEqual
(
e1
.
publicId
,
e2
.
publicId
)
and
e1
.
systemId
==
e2
.
systemId
)
self
.
assertEqual
(
e1
.
systemId
,
e2
.
systemId
)
stack
.
append
((
e1
,
e2
))
stack
.
append
((
e1
,
e2
))
if
n1
.
nodeType
!=
Node
.
DOCUMENT_NODE
:
if
n1
.
nodeType
!=
Node
.
DOCUMENT_NODE
:
self
.
confirm
(
n1
.
ownerDocument
.
isSameNode
(
doc
)
self
.
assertTrue
(
n1
.
ownerDocument
.
isSameNode
(
doc
)
)
and
n2
.
ownerDocument
.
isSameNode
(
doc2
))
self
.
assertTrue
(
n2
.
ownerDocument
.
isSameNode
(
doc2
))
for
i
in
range
(
len
(
n1
.
childNodes
)):
for
i
in
range
(
len
(
n1
.
childNodes
)):
stack
.
append
((
n1
.
childNodes
[
i
],
n2
.
childNodes
[
i
]))
stack
.
append
((
n1
.
childNodes
[
i
],
n2
.
childNodes
[
i
]))
def
testPickledDocument
(
self
):
doc
=
parseString
(
sample
)
for
proto
in
range
(
2
,
pickle
.
HIGHEST_PROTOCOL
+
1
):
s
=
pickle
.
dumps
(
doc
,
proto
)
doc2
=
pickle
.
loads
(
s
)
self
.
assert_recursive_equal
(
doc
,
doc2
)
def
testDeepcopiedDocument
(
self
):
doc
=
parseString
(
sample
)
doc2
=
copy
.
deepcopy
(
doc
)
self
.
assert_recursive_equal
(
doc
,
doc2
)
def
testSerializeCommentNodeWithDoubleHyphen
(
self
):
def
testSerializeCommentNodeWithDoubleHyphen
(
self
):
doc
=
create_doc_without_doctype
()
doc
=
create_doc_without_doctype
()
doc
.
appendChild
(
doc
.
createComment
(
"foo--bar"
))
doc
.
appendChild
(
doc
.
createComment
(
"foo--bar"
))
...
...
Lib/test/test_xml_dom_minicompat.py
View file @
c472246d
# Tests for xml.dom.minicompat
# Tests for xml.dom.minicompat
import
copy
import
pickle
import
pickle
import
unittest
import
unittest
...
@@ -89,6 +90,7 @@ class NodeListTestCase(unittest.TestCase):
...
@@ -89,6 +90,7 @@ class NodeListTestCase(unittest.TestCase):
node_list
=
NodeList
()
node_list
=
NodeList
()
pickled
=
pickle
.
dumps
(
node_list
,
proto
)
pickled
=
pickle
.
dumps
(
node_list
,
proto
)
unpickled
=
pickle
.
loads
(
pickled
)
unpickled
=
pickle
.
loads
(
pickled
)
self
.
assertIsNot
(
unpickled
,
node_list
)
self
.
assertEqual
(
unpickled
,
node_list
)
self
.
assertEqual
(
unpickled
,
node_list
)
# Non-empty NodeList.
# Non-empty NodeList.
...
@@ -96,7 +98,41 @@ class NodeListTestCase(unittest.TestCase):
...
@@ -96,7 +98,41 @@ class NodeListTestCase(unittest.TestCase):
node_list
.
append
(
2
)
node_list
.
append
(
2
)
pickled
=
pickle
.
dumps
(
node_list
,
proto
)
pickled
=
pickle
.
dumps
(
node_list
,
proto
)
unpickled
=
pickle
.
loads
(
pickled
)
unpickled
=
pickle
.
loads
(
pickled
)
self
.
assertIsNot
(
unpickled
,
node_list
)
self
.
assertEqual
(
unpickled
,
node_list
)
self
.
assertEqual
(
unpickled
,
node_list
)
def
test_nodelist_copy
(
self
):
# Empty NodeList.
node_list
=
NodeList
()
copied
=
copy
.
copy
(
node_list
)
self
.
assertIsNot
(
copied
,
node_list
)
self
.
assertEqual
(
copied
,
node_list
)
# Non-empty NodeList.
node_list
.
append
([
1
])
node_list
.
append
([
2
])
copied
=
copy
.
copy
(
node_list
)
self
.
assertIsNot
(
copied
,
node_list
)
self
.
assertEqual
(
copied
,
node_list
)
for
x
,
y
in
zip
(
copied
,
node_list
):
self
.
assertIs
(
x
,
y
)
def
test_nodelist_deepcopy
(
self
):
# Empty NodeList.
node_list
=
NodeList
()
copied
=
copy
.
deepcopy
(
node_list
)
self
.
assertIsNot
(
copied
,
node_list
)
self
.
assertEqual
(
copied
,
node_list
)
# Non-empty NodeList.
node_list
.
append
([
1
])
node_list
.
append
([
2
])
copied
=
copy
.
deepcopy
(
node_list
)
self
.
assertIsNot
(
copied
,
node_list
)
self
.
assertEqual
(
copied
,
node_list
)
for
x
,
y
in
zip
(
copied
,
node_list
):
self
.
assertIsNot
(
x
,
y
)
self
.
assertEqual
(
x
,
y
)
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
unittest
.
main
()
unittest
.
main
()
Lib/xml/dom/minicompat.py
View file @
c472246d
...
@@ -64,10 +64,10 @@ class NodeList(list):
...
@@ -64,10 +64,10 @@ class NodeList(list):
length
=
property
(
_get_length
,
_set_length
,
length
=
property
(
_get_length
,
_set_length
,
doc
=
"The number of nodes in the NodeList."
)
doc
=
"The number of nodes in the NodeList."
)
def
__getstate__
(
self
):
# For backward compatibility
return
list
(
self
)
def
__setstate__
(
self
,
state
):
def
__setstate__
(
self
,
state
):
if
state
is
None
:
state
=
[]
self
[:]
=
state
self
[:]
=
state
...
...
Misc/NEWS
View file @
c472246d
...
@@ -113,6 +113,9 @@ Core and Builtins
...
@@ -113,6 +113,9 @@ Core and Builtins
Library
Library
-------
-------
- Issue #10131: Fixed deep copying of minidom documents. Based on patch
by Marian Ganisin.
- Issue #25725: Fixed a reference leak in pickle.loads() when unpickling
- Issue #25725: Fixed a reference leak in pickle.loads() when unpickling
invalid data including tuple instructions.
invalid data including tuple instructions.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment