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
79fa2b60
Kaydet (Commit)
79fa2b60
authored
Nis 13, 2001
tarafından
Jeremy Hylton
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add test for SF bug #405427
üst
23d40477
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
36 additions
and
0 deletions
+36
-0
test_httplib
Lib/test/output/test_httplib
+5
-0
test_httplib.py
Lib/test/test_httplib.py
+31
-0
No files found.
Lib/test/output/test_httplib
0 → 100644
Dosyayı görüntüle @
79fa2b60
test_httplib
reply: 'HTTP/1.1 200 Ok\r\n'
Text
reply: 'HTTP/1.1 400.100 Not Ok\r\n'
BadStatusLine raised as expected
Lib/test/test_httplib.py
0 → 100644
Dosyayı görüntüle @
79fa2b60
from
test.test_support
import
verify
,
verbose
import
httplib
import
StringIO
class
FakeSocket
:
def
__init__
(
self
,
text
):
self
.
text
=
text
def
makefile
(
self
,
mode
,
bufsize
=
None
):
if
mode
!=
'r'
and
mode
!=
'rb'
:
raise
UnimplementedFileMode
()
return
StringIO
.
StringIO
(
self
.
text
)
# Test HTTP status lines
body
=
"HTTP/1.1 200 Ok
\r\n\r\n
Text"
sock
=
FakeSocket
(
body
)
resp
=
httplib
.
HTTPResponse
(
sock
,
1
)
resp
.
begin
()
print
resp
.
read
()
resp
.
close
()
body
=
"HTTP/1.1 400.100 Not Ok
\r\n\r\n
Text"
sock
=
FakeSocket
(
body
)
resp
=
httplib
.
HTTPResponse
(
sock
,
1
)
try
:
resp
.
begin
()
except
httplib
.
BadStatusLine
:
print
"BadStatusLine raised as expected"
else
:
print
"Expect BadStatusLine"
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