Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
cd514cf1
Kaydet (Commit)
cd514cf1
authored
Nis 10, 2013
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#12820: add tests for the xml.dom.minicompat module. Patch by John Chandler and Phil Connell.
üst
c09959ae
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
109 additions
and
0 deletions
+109
-0
test_xml_dom_minicompat.py
Lib/test/test_xml_dom_minicompat.py
+101
-0
xmltests.py
Lib/test/xmltests.py
+1
-0
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+6
-0
No files found.
Lib/test/test_xml_dom_minicompat.py
0 → 100644
Dosyayı görüntüle @
cd514cf1
# Tests for xml.dom.minicompat
import
pickle
import
unittest
import
xml.dom
from
xml.dom.minicompat
import
*
class
EmptyNodeListTestCase
(
unittest
.
TestCase
):
"""Tests for the EmptyNodeList class."""
def
test_emptynodelist_item
(
self
):
# Test item access on an EmptyNodeList.
node_list
=
EmptyNodeList
()
self
.
assertIsNone
(
node_list
.
item
(
0
))
self
.
assertIsNone
(
node_list
.
item
(
-
1
))
# invalid item
with
self
.
assertRaises
(
IndexError
):
node_list
[
0
]
with
self
.
assertRaises
(
IndexError
):
node_list
[
-
1
]
def
test_emptynodelist_length
(
self
):
node_list
=
EmptyNodeList
()
# Reading
self
.
assertEqual
(
node_list
.
length
,
0
)
# Writing
with
self
.
assertRaises
(
xml
.
dom
.
NoModificationAllowedErr
):
node_list
.
length
=
111
def
test_emptynodelist___add__
(
self
):
node_list
=
EmptyNodeList
()
+
NodeList
()
self
.
assertEqual
(
node_list
,
NodeList
())
def
test_emptynodelist___radd__
(
self
):
node_list
=
[
1
,
2
]
+
EmptyNodeList
()
self
.
assertEqual
(
node_list
,
[
1
,
2
])
class
NodeListTestCase
(
unittest
.
TestCase
):
"""Tests for the NodeList class."""
def
test_nodelist_item
(
self
):
# Test items access on a NodeList.
# First, use an empty NodeList.
node_list
=
NodeList
()
self
.
assertIsNone
(
node_list
.
item
(
0
))
self
.
assertIsNone
(
node_list
.
item
(
-
1
))
with
self
.
assertRaises
(
IndexError
):
node_list
[
0
]
with
self
.
assertRaises
(
IndexError
):
node_list
[
-
1
]
# Now, use a NodeList with items.
node_list
.
append
(
111
)
node_list
.
append
(
999
)
self
.
assertEqual
(
node_list
.
item
(
0
),
111
)
self
.
assertIsNone
(
node_list
.
item
(
-
1
))
# invalid item
self
.
assertEqual
(
node_list
[
0
],
111
)
self
.
assertEqual
(
node_list
[
-
1
],
999
)
def
test_nodelist_length
(
self
):
node_list
=
NodeList
([
1
,
2
])
# Reading
self
.
assertEqual
(
node_list
.
length
,
2
)
# Writing
with
self
.
assertRaises
(
xml
.
dom
.
NoModificationAllowedErr
):
node_list
.
length
=
111
def
test_nodelist___add__
(
self
):
node_list
=
NodeList
([
3
,
4
])
+
[
1
,
2
]
self
.
assertEqual
(
node_list
,
NodeList
([
3
,
4
,
1
,
2
]))
def
test_nodelist___radd__
(
self
):
node_list
=
[
1
,
2
]
+
NodeList
([
3
,
4
])
self
.
assertEqual
(
node_list
,
NodeList
([
1
,
2
,
3
,
4
]))
def
test_nodelist_pickle_roundtrip
(
self
):
# Test pickling and unpickling of a NodeList.
# Empty NodeList.
node_list
=
NodeList
()
pickled
=
pickle
.
dumps
(
node_list
)
unpickled
=
pickle
.
loads
(
pickled
)
self
.
assertEqual
(
unpickled
,
node_list
)
# Non-empty NodeList.
node_list
.
append
(
1
)
node_list
.
append
(
2
)
pickled
=
pickle
.
dumps
(
node_list
)
unpickled
=
pickle
.
loads
(
pickled
)
self
.
assertEqual
(
unpickled
,
node_list
)
if
__name__
==
'__main__'
:
unittest
.
main
()
Lib/test/xmltests.py
Dosyayı görüntüle @
cd514cf1
...
@@ -15,6 +15,7 @@ def runtest(name):
...
@@ -15,6 +15,7 @@ def runtest(name):
runtest
(
"test.test_minidom"
)
runtest
(
"test.test_minidom"
)
runtest
(
"test.test_pyexpat"
)
runtest
(
"test.test_pyexpat"
)
runtest
(
"test.test_sax"
)
runtest
(
"test.test_sax"
)
runtest
(
"test.test_xml_dom_minicompat"
)
runtest
(
"test.test_xml_etree"
)
runtest
(
"test.test_xml_etree"
)
runtest
(
"test.test_xml_etree_c"
)
runtest
(
"test.test_xml_etree_c"
)
runtest
(
"test.test_xmlrpc"
)
runtest
(
"test.test_xmlrpc"
)
Misc/ACKS
Dosyayı görüntüle @
cd514cf1
...
@@ -236,6 +236,7 @@ Paul Colomiets
...
@@ -236,6 +236,7 @@ Paul Colomiets
Christophe Combelles
Christophe Combelles
Geremy Condra
Geremy Condra
Denver Coneybeare
Denver Coneybeare
Phil Connell
Juan José Conti
Juan José Conti
Matt Conway
Matt Conway
David M. Cooke
David M. Cooke
...
...
Misc/NEWS
Dosyayı görüntüle @
cd514cf1
...
@@ -63,6 +63,12 @@ IDLE
...
@@ -63,6 +63,12 @@ IDLE
-
Issue
#
6649
:
Fixed
missing
exit
status
in
IDLE
.
Patch
by
Guilherme
Polo
.
-
Issue
#
6649
:
Fixed
missing
exit
status
in
IDLE
.
Patch
by
Guilherme
Polo
.
Tests
-----
-
Issue
#
12820
:
add
tests
for
the
xml
.
dom
.
minicompat
module
.
Patch
by
John
Chandler
and
Phil
Connell
.
Documentation
Documentation
-------------
-------------
...
...
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