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
ba60319a
Kaydet (Commit)
ba60319a
authored
Ock 23, 2003
tarafından
Jeremy Hylton
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix for SF bug 661340: test_httplib fails on the mac.
The test no longer produces output with \r\n in it.
üst
b1049e8e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
65 additions
and
41 deletions
+65
-41
test_httplib
Lib/test/output/test_httplib
+1
-0
test_httplib.py
Lib/test/test_httplib.py
+64
-41
No files found.
Lib/test/output/test_httplib
Dosyayı görüntüle @
ba60319a
...
...
@@ -8,3 +8,4 @@ InvalidURL raised as expected
reply: 'HTTP/1.1 200 OK\r\n'
header: Set-Cookie: Customer="WILE_E_COYOTE"; Version="1"; Path="/acme"
header: Set-Cookie: Part_Number="Rocket_Launcher_0001"; Version="1"; Path="/acme"
Lib/test/test_httplib.py
Dosyayı görüntüle @
ba60319a
...
...
@@ -11,48 +11,71 @@ class FakeSocket:
raise
httplib
.
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"
# Collect output to a buffer so that we don't have to cope with line-ending
# issues across platforms. Specifically, the headers will have \r\n pairs
# and some platforms will strip them from the output file.
# Check invalid host_port
import
sys
for
hp
in
(
"www.python.org:abc"
,
"www.python.org:"
):
def
test
():
buf
=
StringIO
.
StringIO
()
_stdout
=
sys
.
stdout
try
:
h
=
httplib
.
HTTP
(
hp
)
except
httplib
.
InvalidURL
:
print
"InvalidURL raised as expected"
sys
.
stdout
=
buf
_test
()
finally
:
sys
.
stdout
=
_stdout
# print individual lines with endings stripped
s
=
buf
.
getvalue
()
for
line
in
s
.
split
(
"
\n
"
):
print
line
.
strip
()
def
_test
():
# 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 InvalidURL"
# test response with multiple message headers with the same field name.
text
=
(
'HTTP/1.1 200 OK
\r\n
'
'Set-Cookie: Customer="WILE_E_COYOTE"; Version="1"; Path="/acme"
\r\n
'
'Set-Cookie: Part_Number="Rocket_Launcher_0001"; Version="1";'
' Path="/acme"
\r\n
'
'
\r\n
'
'No body
\r\n
'
)
hdr
=
(
'Customer="WILE_E_COYOTE"; Version="1"; Path="/acme"'
', '
'Part_Number="Rocket_Launcher_0001"; Version="1"; Path="/acme"'
)
s
=
FakeSocket
(
text
)
r
=
httplib
.
HTTPResponse
(
s
,
1
)
r
.
begin
()
cookies
=
r
.
getheader
(
"Set-Cookie"
)
if
cookies
!=
hdr
:
raise
AssertionError
,
"multiple headers not combined properly"
print
"Expect BadStatusLine"
# Check invalid host_port
for
hp
in
(
"www.python.org:abc"
,
"www.python.org:"
):
try
:
h
=
httplib
.
HTTP
(
hp
)
except
httplib
.
InvalidURL
:
print
"InvalidURL raised as expected"
else
:
print
"Expect InvalidURL"
# test response with multiple message headers with the same field name.
text
=
(
'HTTP/1.1 200 OK
\r\n
'
'Set-Cookie: Customer="WILE_E_COYOTE"; Version="1"; Path="/acme"
\r\n
'
'Set-Cookie: Part_Number="Rocket_Launcher_0001"; Version="1";'
' Path="/acme"
\r\n
'
'
\r\n
'
'No body
\r\n
'
)
hdr
=
(
'Customer="WILE_E_COYOTE"; Version="1"; Path="/acme"'
', '
'Part_Number="Rocket_Launcher_0001"; Version="1"; Path="/acme"'
)
s
=
FakeSocket
(
text
)
r
=
httplib
.
HTTPResponse
(
s
,
1
)
r
.
begin
()
cookies
=
r
.
getheader
(
"Set-Cookie"
)
if
cookies
!=
hdr
:
raise
AssertionError
,
"multiple headers not combined properly"
test
()
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