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
ae650181
Kaydet (Commit)
ae650181
authored
Ock 28, 2009
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Beef-up tests for collections ABCs.
üst
1124e713
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
64 additions
and
3 deletions
+64
-3
_abcoll.py
Lib/_abcoll.py
+1
-1
test_collections.py
Lib/test/test_collections.py
+63
-2
No files found.
Lib/_abcoll.py
Dosyayı görüntüle @
ae650181
...
...
@@ -301,7 +301,7 @@ class MutableSet(Set):
"""Return the popped value. Raise KeyError if empty."""
it
=
iter
(
self
)
try
:
value
=
it
.
__next__
(
)
value
=
next
(
it
)
except
StopIteration
:
raise
KeyError
self
.
discard
(
value
)
...
...
Lib/test/test_collections.py
Dosyayı görüntüle @
ae650181
...
...
@@ -160,7 +160,24 @@ class TestNamedTuple(unittest.TestCase):
self
.
assertEqual
(
p
,
q
)
self
.
assertEqual
(
p
.
_fields
,
q
.
_fields
)
class
TestOneTrickPonyABCs
(
unittest
.
TestCase
):
class
ABCTestCase
(
unittest
.
TestCase
):
def
validate_abstract_methods
(
self
,
abc
,
*
names
):
methodstubs
=
dict
.
fromkeys
(
names
,
lambda
s
,
*
args
:
0
)
# everything should work will all required methods are present
C
=
type
(
'C'
,
(
abc
,),
methodstubs
)
C
()
# instantiation should fail if a required method is missing
for
name
in
names
:
stubs
=
methodstubs
.
copy
()
del
stubs
[
name
]
C
=
type
(
'C'
,
(
abc
,),
stubs
)
self
.
assertRaises
(
TypeError
,
C
,
name
)
class
TestOneTrickPonyABCs
(
ABCTestCase
):
def
test_Hashable
(
self
):
# Check some non-hashables
...
...
@@ -185,6 +202,7 @@ class TestOneTrickPonyABCs(unittest.TestCase):
return
super
()
.
__hash__
()
self
.
assertEqual
(
hash
(
H
()),
0
)
self
.
failIf
(
issubclass
(
int
,
H
))
self
.
validate_abstract_methods
(
Hashable
,
'__hash__'
)
def
test_Iterable
(
self
):
# Check some non-iterables
...
...
@@ -208,6 +226,7 @@ class TestOneTrickPonyABCs(unittest.TestCase):
return
super
()
.
__iter__
()
self
.
assertEqual
(
list
(
I
()),
[])
self
.
failIf
(
issubclass
(
str
,
I
))
self
.
validate_abstract_methods
(
Iterable
,
'__iter__'
)
def
test_Iterator
(
self
):
non_samples
=
[
None
,
42
,
3.14
,
1
j
,
b
""
,
""
,
(),
[],
{},
set
()]
...
...
@@ -225,6 +244,7 @@ class TestOneTrickPonyABCs(unittest.TestCase):
for
x
in
samples
:
self
.
failUnless
(
isinstance
(
x
,
Iterator
),
repr
(
x
))
self
.
failUnless
(
issubclass
(
type
(
x
),
Iterator
),
repr
(
type
(
x
)))
self
.
validate_abstract_methods
(
Iterator
,
'__next__'
)
def
test_Sized
(
self
):
non_samples
=
[
None
,
42
,
3.14
,
1
j
,
...
...
@@ -241,6 +261,7 @@ class TestOneTrickPonyABCs(unittest.TestCase):
for
x
in
samples
:
self
.
failUnless
(
isinstance
(
x
,
Sized
),
repr
(
x
))
self
.
failUnless
(
issubclass
(
type
(
x
),
Sized
),
repr
(
type
(
x
)))
self
.
validate_abstract_methods
(
Sized
,
'__len__'
)
def
test_Container
(
self
):
non_samples
=
[
None
,
42
,
3.14
,
1
j
,
...
...
@@ -257,6 +278,7 @@ class TestOneTrickPonyABCs(unittest.TestCase):
for
x
in
samples
:
self
.
failUnless
(
isinstance
(
x
,
Container
),
repr
(
x
))
self
.
failUnless
(
issubclass
(
type
(
x
),
Container
),
repr
(
type
(
x
)))
self
.
validate_abstract_methods
(
Container
,
'__contains__'
)
def
test_Callable
(
self
):
non_samples
=
[
None
,
42
,
3.14
,
1
j
,
...
...
@@ -275,6 +297,7 @@ class TestOneTrickPonyABCs(unittest.TestCase):
for
x
in
samples
:
self
.
failUnless
(
isinstance
(
x
,
Callable
),
repr
(
x
))
self
.
failUnless
(
issubclass
(
type
(
x
),
Callable
),
repr
(
type
(
x
)))
self
.
validate_abstract_methods
(
Callable
,
'__call__'
)
def
test_direct_subclassing
(
self
):
for
B
in
Hashable
,
Iterable
,
Iterator
,
Sized
,
Container
,
Callable
:
...
...
@@ -292,7 +315,7 @@ class TestOneTrickPonyABCs(unittest.TestCase):
self
.
failUnless
(
issubclass
(
C
,
B
))
class
TestCollectionABCs
(
unittest
.
TestCase
):
class
TestCollectionABCs
(
ABC
TestCase
):
# XXX For now, we only test some virtual inheritance properties.
# We should also test the proper behavior of the collection ABCs
...
...
@@ -302,6 +325,7 @@ class TestCollectionABCs(unittest.TestCase):
for
sample
in
[
set
,
frozenset
]:
self
.
failUnless
(
isinstance
(
sample
(),
Set
))
self
.
failUnless
(
issubclass
(
sample
,
Set
))
self
.
validate_abstract_methods
(
Set
,
'__contains__'
,
'__iter__'
,
'__len__'
)
def
test_hash_Set
(
self
):
class
OneTwoThreeSet
(
Set
):
...
...
@@ -323,22 +347,57 @@ class TestCollectionABCs(unittest.TestCase):
self
.
failUnless
(
issubclass
(
set
,
MutableSet
))
self
.
failIf
(
isinstance
(
frozenset
(),
MutableSet
))
self
.
failIf
(
issubclass
(
frozenset
,
MutableSet
))
self
.
validate_abstract_methods
(
MutableSet
,
'__contains__'
,
'__iter__'
,
'__len__'
,
'add'
,
'discard'
)
def
test_issue_4920
(
self
):
# MutableSet.pop() method did not work
class
MySet
(
collections
.
MutableSet
):
__slots__
=
[
'__s'
]
def
__init__
(
self
,
items
=
None
):
if
items
is
None
:
items
=
[]
self
.
__s
=
set
(
items
)
def
__contains__
(
self
,
v
):
return
v
in
self
.
__s
def
__iter__
(
self
):
return
iter
(
self
.
__s
)
def
__len__
(
self
):
return
len
(
self
.
__s
)
def
add
(
self
,
v
):
result
=
v
not
in
self
.
__s
self
.
__s
.
add
(
v
)
return
result
def
discard
(
self
,
v
):
result
=
v
in
self
.
__s
self
.
__s
.
discard
(
v
)
return
result
def
__repr__
(
self
):
return
"MySet(
%
s)"
%
repr
(
list
(
self
))
s
=
MySet
([
5
,
43
,
2
,
1
])
self
.
assertEqual
(
s
.
pop
(),
1
)
def
test_Mapping
(
self
):
for
sample
in
[
dict
]:
self
.
failUnless
(
isinstance
(
sample
(),
Mapping
))
self
.
failUnless
(
issubclass
(
sample
,
Mapping
))
self
.
validate_abstract_methods
(
Mapping
,
'__contains__'
,
'__iter__'
,
'__len__'
,
'__getitem__'
)
def
test_MutableMapping
(
self
):
for
sample
in
[
dict
]:
self
.
failUnless
(
isinstance
(
sample
(),
MutableMapping
))
self
.
failUnless
(
issubclass
(
sample
,
MutableMapping
))
self
.
validate_abstract_methods
(
MutableMapping
,
'__contains__'
,
'__iter__'
,
'__len__'
,
'__getitem__'
,
'__setitem__'
,
'__delitem__'
)
def
test_Sequence
(
self
):
for
sample
in
[
tuple
,
list
,
bytes
,
str
]:
self
.
failUnless
(
isinstance
(
sample
(),
Sequence
))
self
.
failUnless
(
issubclass
(
sample
,
Sequence
))
self
.
failUnless
(
issubclass
(
str
,
Sequence
))
self
.
validate_abstract_methods
(
Sequence
,
'__contains__'
,
'__iter__'
,
'__len__'
,
'__getitem__'
)
def
test_ByteString
(
self
):
for
sample
in
[
bytes
,
bytearray
]:
...
...
@@ -358,6 +417,8 @@ class TestCollectionABCs(unittest.TestCase):
self
.
failUnless
(
isinstance
(
sample
(),
MutableSequence
))
self
.
failUnless
(
issubclass
(
sample
,
MutableSequence
))
self
.
failIf
(
issubclass
(
str
,
MutableSequence
))
self
.
validate_abstract_methods
(
MutableSequence
,
'__contains__'
,
'__iter__'
,
'__len__'
,
'__getitem__'
,
'__setitem__'
,
'__delitem__'
,
'insert'
)
class
TestCounter
(
unittest
.
TestCase
):
...
...
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