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
023cd00c
Kaydet (Commit)
023cd00c
authored
Mar 28, 2008
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Allow use of other ports so the test can pass if 9091 is in use
üst
8b9091fb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
6 deletions
+8
-6
test_telnetlib.py
Lib/test/test_telnetlib.py
+8
-6
No files found.
Lib/test/test_telnetlib.py
Dosyayı görüntüle @
023cd00c
...
...
@@ -6,12 +6,14 @@ import time
from
unittest
import
TestCase
from
test
import
test_support
PORT
=
9091
def
server
(
evt
):
serv
=
socket
.
socket
(
socket
.
AF_INET
,
socket
.
SOCK_STREAM
)
serv
.
settimeout
(
3
)
serv
.
setsockopt
(
socket
.
SOL_SOCKET
,
socket
.
SO_REUSEADDR
,
1
)
serv
.
bind
((
""
,
9091
))
global
PORT
PORT
=
test_support
.
bind_port
(
serv
,
""
,
PORT
)
serv
.
listen
(
5
)
evt
.
set
()
try
:
...
...
@@ -36,24 +38,24 @@ class GeneralTests(TestCase):
def
testBasic
(
self
):
# connects
telnet
=
telnetlib
.
Telnet
(
"localhost"
,
9091
)
telnet
=
telnetlib
.
Telnet
(
"localhost"
,
PORT
)
telnet
.
sock
.
close
()
def
testTimeoutDefault
(
self
):
# default
telnet
=
telnetlib
.
Telnet
(
"localhost"
,
9091
)
telnet
=
telnetlib
.
Telnet
(
"localhost"
,
PORT
)
self
.
assertTrue
(
telnet
.
sock
.
gettimeout
()
is
None
)
telnet
.
sock
.
close
()
def
testTimeoutValue
(
self
):
# a value
telnet
=
telnetlib
.
Telnet
(
"localhost"
,
9091
,
timeout
=
30
)
telnet
=
telnetlib
.
Telnet
(
"localhost"
,
PORT
,
timeout
=
30
)
self
.
assertEqual
(
telnet
.
sock
.
gettimeout
(),
30
)
telnet
.
sock
.
close
()
def
testTimeoutDifferentOrder
(
self
):
telnet
=
telnetlib
.
Telnet
(
timeout
=
30
)
telnet
.
open
(
"localhost"
,
9091
)
telnet
.
open
(
"localhost"
,
PORT
)
self
.
assertEqual
(
telnet
.
sock
.
gettimeout
(),
30
)
telnet
.
sock
.
close
()
...
...
@@ -62,7 +64,7 @@ class GeneralTests(TestCase):
previous
=
socket
.
getdefaulttimeout
()
socket
.
setdefaulttimeout
(
30
)
try
:
telnet
=
telnetlib
.
Telnet
(
"localhost"
,
9091
,
timeout
=
None
)
telnet
=
telnetlib
.
Telnet
(
"localhost"
,
PORT
,
timeout
=
None
)
finally
:
socket
.
setdefaulttimeout
(
previous
)
self
.
assertEqual
(
telnet
.
sock
.
gettimeout
(),
30
)
...
...
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