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
e63e617e
Kaydet (Commit)
e63e617e
authored
Ara 04, 2018
tarafından
Andrew Dunai
Kaydeden (comit)
Chris Withers
Ara 04, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-35357: Add _mock_ prefix to name/parent/from_kall attributes of _Call/_MagicProxy. (#10873)
Fix minor typo in test function name.
üst
eeb719ea
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
34 additions
and
16 deletions
+34
-16
mock.py
Lib/unittest/mock.py
+14
-14
testcallable.py
Lib/unittest/test/testmock/testcallable.py
+1
-1
testmock.py
Lib/unittest/test/testmock/testmock.py
+15
-1
2018-12-03-21-20-24.bpo-35357.rhhoiC.rst
...ore and Builtins/2018-12-03-21-20-24.bpo-35357.rhhoiC.rst
+4
-0
No files found.
Lib/unittest/mock.py
Dosyayı görüntüle @
e63e617e
...
...
@@ -2040,9 +2040,9 @@ class _Call(tuple):
def
__init__
(
self
,
value
=
(),
name
=
None
,
parent
=
None
,
two
=
False
,
from_kall
=
True
):
self
.
name
=
name
self
.
parent
=
parent
self
.
from_kall
=
from_kall
self
.
_mock_
name
=
name
self
.
_mock_
parent
=
parent
self
.
_mock_
from_kall
=
from_kall
def
__eq__
(
self
,
other
):
...
...
@@ -2059,8 +2059,8 @@ class _Call(tuple):
else
:
self_name
,
self_args
,
self_kwargs
=
self
if
(
getattr
(
self
,
'
parent'
,
None
)
and
getattr
(
other
,
'
parent'
,
None
)
and
self
.
parent
!=
other
.
parent
):
if
(
getattr
(
self
,
'
_mock_parent'
,
None
)
and
getattr
(
other
,
'_mock_
parent'
,
None
)
and
self
.
_mock_parent
!=
other
.
_mock_
parent
):
return
False
other_name
=
''
...
...
@@ -2104,17 +2104,17 @@ class _Call(tuple):
def
__call__
(
self
,
*
args
,
**
kwargs
):
if
self
.
name
is
None
:
if
self
.
_mock_
name
is
None
:
return
_Call
((
''
,
args
,
kwargs
),
name
=
'()'
)
name
=
self
.
name
+
'()'
return
_Call
((
self
.
name
,
args
,
kwargs
),
name
=
name
,
parent
=
self
)
name
=
self
.
_mock_
name
+
'()'
return
_Call
((
self
.
_mock_
name
,
args
,
kwargs
),
name
=
name
,
parent
=
self
)
def
__getattr__
(
self
,
attr
):
if
self
.
name
is
None
:
if
self
.
_mock_
name
is
None
:
return
_Call
(
name
=
attr
,
from_kall
=
False
)
name
=
'
%
s.
%
s'
%
(
self
.
name
,
attr
)
name
=
'
%
s.
%
s'
%
(
self
.
_mock_
name
,
attr
)
return
_Call
(
name
=
name
,
parent
=
self
,
from_kall
=
False
)
...
...
@@ -2125,8 +2125,8 @@ class _Call(tuple):
return
self
.
__getattr__
(
'index'
)(
*
args
,
**
kwargs
)
def
__repr__
(
self
):
if
not
self
.
from_kall
:
name
=
self
.
name
or
'call'
if
not
self
.
_mock_
from_kall
:
name
=
self
.
_mock_
name
or
'call'
if
name
.
startswith
(
'()'
):
name
=
'call
%
s'
%
name
return
name
...
...
@@ -2152,9 +2152,9 @@ class _Call(tuple):
vals
=
[]
thing
=
self
while
thing
is
not
None
:
if
thing
.
from_kall
:
if
thing
.
_mock_
from_kall
:
vals
.
append
(
thing
)
thing
=
thing
.
parent
thing
=
thing
.
_mock_
parent
return
_CallList
(
reversed
(
vals
))
...
...
Lib/unittest/test/testmock/testcallable.py
Dosyayı görüntüle @
e63e617e
...
...
@@ -128,7 +128,7 @@ class TestCallable(unittest.TestCase):
result
.
foo
.
assert_called_once_with
(
3
,
2
,
1
)
def
test_create_auto
ps
ec
(
self
):
def
test_create_auto
sp
ec
(
self
):
mock
=
create_autospec
(
X
)
instance
=
mock
()
self
.
assertRaises
(
TypeError
,
instance
)
...
...
Lib/unittest/test/testmock/testmock.py
Dosyayı görüntüle @
e63e617e
...
...
@@ -9,7 +9,7 @@ from unittest import mock
from
unittest.mock
import
(
call
,
DEFAULT
,
patch
,
sentinel
,
MagicMock
,
Mock
,
NonCallableMock
,
NonCallableMagicMock
,
_CallList
,
NonCallableMagicMock
,
_Call
,
_Call
List
,
create_autospec
)
...
...
@@ -1665,6 +1665,20 @@ class MockTest(unittest.TestCase):
self
.
assertIsInstance
(
mock
,
int
)
mock
.
foo
def
test_name_attribute_of_call
(
self
):
# bpo-35357: _Call should not disclose any attributes whose names
# may clash with popular ones (such as ".name")
self
.
assertIsNotNone
(
call
.
name
)
self
.
assertEqual
(
type
(
call
.
name
),
_Call
)
self
.
assertEqual
(
type
(
call
.
name
()
.
name
),
_Call
)
def
test_parent_attribute_of_call
(
self
):
# bpo-35357: _Call should not disclose any attributes whose names
# may clash with popular ones (such as ".parent")
self
.
assertIsNotNone
(
call
.
parent
)
self
.
assertEqual
(
type
(
call
.
parent
),
_Call
)
self
.
assertEqual
(
type
(
call
.
parent
()
.
parent
),
_Call
)
if
__name__
==
'__main__'
:
unittest
.
main
()
Misc/NEWS.d/next/Core and Builtins/2018-12-03-21-20-24.bpo-35357.rhhoiC.rst
0 → 100644
Dosyayı görüntüle @
e63e617e
Internal attributes' names of unittest.mock._Call and
unittest.mock.MagicProxy (name, parent & from_kall) are now prefixed with
_mock_ in order to prevent clashes with widely used object attributes.
Fixed minor typo in test function name.
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