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
d3aaa2f1
Kaydet (Commit)
d3aaa2f1
authored
Tem 13, 2017
tarafından
Serhiy Storchaka
Kaydeden (comit)
GitHub
Tem 13, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-30911: Add tests for bad boolean arguments for accelerated json (#2690)
encoder and decoder.
üst
541bd289
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
0 deletions
+22
-0
test_speedups.py
Lib/test/test_json/test_speedups.py
+22
-0
No files found.
Lib/test/test_json/test_speedups.py
Dosyayı görüntüle @
d3aaa2f1
from
test.test_json
import
CTest
from
test.test_json
import
CTest
class
BadBool
:
def
__bool__
(
self
):
1
/
0
class
TestSpeedups
(
CTest
):
class
TestSpeedups
(
CTest
):
def
test_scanstring
(
self
):
def
test_scanstring
(
self
):
self
.
assertEqual
(
self
.
json
.
decoder
.
scanstring
.
__module__
,
"_json"
)
self
.
assertEqual
(
self
.
json
.
decoder
.
scanstring
.
__module__
,
"_json"
)
...
@@ -17,8 +22,25 @@ class TestDecode(CTest):
...
@@ -17,8 +22,25 @@ class TestDecode(CTest):
def
test_make_scanner
(
self
):
def
test_make_scanner
(
self
):
self
.
assertRaises
(
AttributeError
,
self
.
json
.
scanner
.
c_make_scanner
,
1
)
self
.
assertRaises
(
AttributeError
,
self
.
json
.
scanner
.
c_make_scanner
,
1
)
def
test_bad_bool_args
(
self
):
def
test
(
value
):
self
.
json
.
decoder
.
JSONDecoder
(
strict
=
BadBool
())
.
decode
(
value
)
self
.
assertRaises
(
ZeroDivisionError
,
test
,
'""'
)
self
.
assertRaises
(
ZeroDivisionError
,
test
,
'{}'
)
class
TestEncode
(
CTest
):
def
test_make_encoder
(
self
):
def
test_make_encoder
(
self
):
self
.
assertRaises
(
TypeError
,
self
.
json
.
encoder
.
c_make_encoder
,
self
.
assertRaises
(
TypeError
,
self
.
json
.
encoder
.
c_make_encoder
,
(
True
,
False
),
(
True
,
False
),
b
"
\xCD\x7D\x3D\x4E\x12\x4C\xF9\x79\xD7\x52\xBA\x82\xF2\x27\x4A\x7D\xA0\xCA\x75
"
,
b
"
\xCD\x7D\x3D\x4E\x12\x4C\xF9\x79\xD7\x52\xBA\x82\xF2\x27\x4A\x7D\xA0\xCA\x75
"
,
None
)
None
)
def
test_bad_bool_args
(
self
):
def
test
(
name
):
self
.
json
.
encoder
.
JSONEncoder
(
**
{
name
:
BadBool
()})
.
encode
({
'a'
:
1
})
self
.
assertRaises
(
ZeroDivisionError
,
test
,
'skipkeys'
)
self
.
assertRaises
(
ZeroDivisionError
,
test
,
'ensure_ascii'
)
self
.
assertRaises
(
ZeroDivisionError
,
test
,
'check_circular'
)
self
.
assertRaises
(
ZeroDivisionError
,
test
,
'allow_nan'
)
self
.
assertRaises
(
ZeroDivisionError
,
test
,
'sort_keys'
)
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