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
63e4230c
Kaydet (Commit)
63e4230c
authored
May 07, 2011
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#5421: add tests.
üst
362b9510
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
0 deletions
+30
-0
test_socket.py
Lib/test/test_socket.py
+30
-0
No files found.
Lib/test/test_socket.py
Dosyayı görüntüle @
63e4230c
...
...
@@ -274,6 +274,36 @@ class GeneralModuleTests(unittest.TestCase):
self
.
assertRaises
(
socket
.
error
,
raise_gaierror
,
"Error raising socket exception."
)
def
testSendtoErrors
(
self
):
# Testing that sendto doens't masks failures. See #10169.
s
=
socket
.
socket
(
socket
.
AF_INET
,
socket
.
SOCK_DGRAM
)
self
.
addCleanup
(
s
.
close
)
s
.
bind
((
''
,
0
))
sockname
=
s
.
getsockname
()
# 2 args
with
self
.
assertRaises
(
TypeError
):
s
.
sendto
(
'
\u2620
'
,
sockname
)
with
self
.
assertRaises
(
TypeError
):
s
.
sendto
(
5
j
,
sockname
)
with
self
.
assertRaises
(
TypeError
):
s
.
sendto
(
b
'foo'
,
None
)
# 3 args
with
self
.
assertRaises
(
TypeError
):
s
.
sendto
(
'
\u2620
'
,
0
,
sockname
)
with
self
.
assertRaises
(
TypeError
):
s
.
sendto
(
5
j
,
0
,
sockname
)
with
self
.
assertRaises
(
TypeError
):
s
.
sendto
(
b
'foo'
,
0
,
None
)
with
self
.
assertRaises
(
TypeError
):
s
.
sendto
(
b
'foo'
,
'bar'
,
sockname
)
with
self
.
assertRaises
(
TypeError
):
s
.
sendto
(
b
'foo'
,
None
,
None
)
# wrong number of args
with
self
.
assertRaises
(
TypeError
):
s
.
sendto
(
b
'foo'
)
with
self
.
assertRaises
(
TypeError
):
s
.
sendto
(
b
'foo'
,
0
,
sockname
,
4
)
def
testCrucialConstants
(
self
):
# Testing for mission critical constants
socket
.
AF_INET
...
...
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