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
e768c398
Kaydet (Commit)
e768c398
authored
Agu 05, 2012
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix CGI tests to take into account the platform's line ending (issue #13119)
üst
ec2d2693
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
test_httpservers.py
Lib/test/test_httpservers.py
+7
-5
No files found.
Lib/test/test_httpservers.py
Dosyayı görüntüle @
e768c398
...
...
@@ -313,6 +313,8 @@ class CGIHTTPServerTestCase(BaseTestCase):
class
request_handler
(
NoLogRequestHandler
,
CGIHTTPRequestHandler
):
pass
linesep
=
os
.
linesep
.
encode
(
'ascii'
)
def
setUp
(
self
):
BaseTestCase
.
setUp
(
self
)
self
.
cwd
=
os
.
getcwd
()
...
...
@@ -410,7 +412,7 @@ class CGIHTTPServerTestCase(BaseTestCase):
def
test_headers_and_content
(
self
):
res
=
self
.
request
(
'/cgi-bin/file1.py'
)
self
.
assertEqual
((
b
'Hello World
\n
'
,
'text/html'
,
200
),
self
.
assertEqual
((
b
'Hello World
'
+
self
.
linesep
,
'text/html'
,
200
),
(
res
.
read
(),
res
.
getheader
(
'Content-type'
),
res
.
status
))
def
test_post
(
self
):
...
...
@@ -419,7 +421,7 @@ class CGIHTTPServerTestCase(BaseTestCase):
headers
=
{
'Content-type'
:
'application/x-www-form-urlencoded'
}
res
=
self
.
request
(
'/cgi-bin/file2.py'
,
'POST'
,
params
,
headers
)
self
.
assertEqual
(
res
.
read
(),
b
'1, python, 123456
\n
'
)
self
.
assertEqual
(
res
.
read
(),
b
'1, python, 123456
'
+
self
.
linesep
)
def
test_invaliduri
(
self
):
res
=
self
.
request
(
'/cgi-bin/invalid'
)
...
...
@@ -430,20 +432,20 @@ class CGIHTTPServerTestCase(BaseTestCase):
headers
=
{
b
'Authorization'
:
b
'Basic '
+
base64
.
b64encode
(
b
'username:pass'
)}
res
=
self
.
request
(
'/cgi-bin/file1.py'
,
'GET'
,
headers
=
headers
)
self
.
assertEqual
((
b
'Hello World
\n
'
,
'text/html'
,
200
),
self
.
assertEqual
((
b
'Hello World
'
+
self
.
linesep
,
'text/html'
,
200
),
(
res
.
read
(),
res
.
getheader
(
'Content-type'
),
res
.
status
))
def
test_no_leading_slash
(
self
):
# http://bugs.python.org/issue2254
res
=
self
.
request
(
'cgi-bin/file1.py'
)
self
.
assertEqual
((
b
'Hello World
\n
'
,
'text/html'
,
200
),
self
.
assertEqual
((
b
'Hello World
'
+
self
.
linesep
,
'text/html'
,
200
),
(
res
.
read
(),
res
.
getheader
(
'Content-type'
),
res
.
status
))
def
test_os_environ_is_not_altered
(
self
):
signature
=
"Test CGI Server"
os
.
environ
[
'SERVER_SOFTWARE'
]
=
signature
res
=
self
.
request
(
'/cgi-bin/file1.py'
)
self
.
assertEqual
((
b
'Hello World
\n
'
,
'text/html'
,
200
),
self
.
assertEqual
((
b
'Hello World
'
+
self
.
linesep
,
'text/html'
,
200
),
(
res
.
read
(),
res
.
getheader
(
'Content-type'
),
res
.
status
))
self
.
assertEqual
(
os
.
environ
[
'SERVER_SOFTWARE'
],
signature
)
...
...
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