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
5ac2534b
Kaydet (Commit)
5ac2534b
authored
Haz 09, 2005
tarafından
Andrew M. Kuchling
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Convert asynchat test to unittest; exercise the client using a numeric value as the terminator
üst
01cb47b5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
46 additions
and
14 deletions
+46
-14
test_asynchat.py
Lib/test/test_asynchat.py
+46
-14
No files found.
Lib/test/test_asynchat.py
Dosyayı görüntüle @
5ac2534b
...
...
@@ -2,6 +2,8 @@
import
thread
# If this fails, we can't test this module
import
asyncore
,
asynchat
,
socket
,
threading
,
time
import
unittest
from
test
import
test_support
HOST
=
"127.0.0.1"
PORT
=
54321
...
...
@@ -16,7 +18,7 @@ class echo_server(threading.Thread):
conn
,
client
=
sock
.
accept
()
buffer
=
""
while
"
\n
"
not
in
buffer
:
data
=
conn
.
recv
(
1
0
)
data
=
conn
.
recv
(
1
)
if
not
data
:
break
buffer
=
buffer
+
data
...
...
@@ -28,31 +30,61 @@ class echo_server(threading.Thread):
class
echo_client
(
asynchat
.
async_chat
):
def
__init__
(
self
):
def
__init__
(
self
,
terminator
):
asynchat
.
async_chat
.
__init__
(
self
)
self
.
contents
=
None
self
.
create_socket
(
socket
.
AF_INET
,
socket
.
SOCK_STREAM
)
self
.
connect
((
HOST
,
PORT
))
self
.
set_terminator
(
"
\n
"
)
self
.
set_terminator
(
terminator
)
self
.
buffer
=
""
def
handle_connect
(
self
):
print
"Connected"
pass
##print "Connected"
def
collect_incoming_data
(
self
,
data
):
self
.
buffer
=
self
.
buffer
+
data
def
found_terminator
(
self
):
print
"Received:"
,
repr
(
self
.
buffer
)
#print "Received:", repr(self.buffer)
self
.
contents
=
self
.
buffer
self
.
buffer
=
""
self
.
close
()
def
main
():
s
=
echo_server
()
s
.
start
()
time
.
sleep
(
1
)
# Give server time to initialize
c
=
echo_client
()
c
.
push
(
"hello "
)
c
.
push
(
"world
\n
"
)
asyncore
.
loop
()
main
()
class
TestAsynchat
(
unittest
.
TestCase
):
def
setUp
(
self
):
pass
def
tearDown
(
self
):
pass
def
test_line_terminator
(
self
):
s
=
echo_server
()
s
.
start
()
time
.
sleep
(
1
)
# Give server time to initialize
c
=
echo_client
(
'
\n
'
)
c
.
push
(
"hello "
)
c
.
push
(
"world
\n
"
)
asyncore
.
loop
()
self
.
assertEqual
(
c
.
contents
,
'hello world'
)
def
test_numeric_terminator
(
self
):
# Try reading a fixed number of bytes
s
=
echo_server
()
s
.
start
()
time
.
sleep
(
1
)
# Give server time to initialize
c
=
echo_client
(
6L
)
c
.
push
(
"hello "
)
c
.
push
(
"world
\n
"
)
asyncore
.
loop
()
self
.
assertEqual
(
c
.
contents
,
'hello '
)
def
test_main
(
verbose
=
None
):
test_support
.
run_unittest
(
TestAsynchat
)
if
__name__
==
"__main__"
:
test_main
(
verbose
=
True
)
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