Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
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
django
Commits
c53f2451
Kaydet (Commit)
c53f2451
authored
Eyl 05, 2014
tarafından
Flavio Curella
Kaydeden (comit)
Tim Graham
Eyl 09, 2014
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #23398 -- Added helpful error message when runserver is accessed via HTTPS
üst
c32bc1a7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
38 additions
and
1 deletion
+38
-1
basehttp.py
django/core/servers/basehttp.py
+11
-1
test_basehttp.py
tests/servers/test_basehttp.py
+27
-0
No files found.
django/core/servers/basehttp.py
Dosyayı görüntüle @
c53f2451
...
...
@@ -85,7 +85,13 @@ class WSGIRequestHandler(simple_server.WSGIRequestHandler, object):
return
self
.
client_address
[
0
]
def
log_message
(
self
,
format
,
*
args
):
msg
=
"[
%
s]
%
s
\n
"
%
(
self
.
log_date_time_string
(),
format
%
args
)
msg
=
"[
%
s]"
%
self
.
log_date_time_string
()
try
:
msg
+=
"
%
s
\n
"
%
(
format
%
args
)
except
UnicodeDecodeError
:
# e.g. accessing the server via SSL on Python 2
msg
+=
"
\n
"
# Utilize terminal colors, if available
if
args
[
1
][
0
]
==
'2'
:
...
...
@@ -100,6 +106,10 @@ class WSGIRequestHandler(simple_server.WSGIRequestHandler, object):
elif
args
[
1
]
==
'404'
:
msg
=
self
.
style
.
HTTP_NOT_FOUND
(
msg
)
elif
args
[
1
][
0
]
==
'4'
:
# 0x16 = Handshake, 0x03 = SSL 3.0 or TLS 1.x
if
args
[
0
]
.
startswith
(
str
(
'
\x16\x03
'
)):
msg
=
(
"You're accessing the developement server over HTTPS, "
"but it only supports HTTP.
\n
"
)
msg
=
self
.
style
.
HTTP_BAD_REQUEST
(
msg
)
else
:
# Any 5XX, or any other response
...
...
tests/servers/test_basehttp.py
0 → 100644
Dosyayı görüntüle @
c53f2451
import
sys
from
django.core.handlers.wsgi
import
WSGIRequest
from
django.core.servers.basehttp
import
WSGIRequestHandler
from
django.test
import
TestCase
from
django.test.client
import
RequestFactory
from
django.utils.six
import
BytesIO
,
StringIO
class
WSGIRequestHandlerTestCase
(
TestCase
):
def
test_https
(
self
):
request
=
WSGIRequest
(
RequestFactory
()
.
get
(
'/'
)
.
environ
)
request
.
makefile
=
lambda
*
args
,
**
kwargs
:
BytesIO
()
handler
=
WSGIRequestHandler
(
request
,
'192.168.0.2'
,
None
)
_stderr
=
sys
.
stderr
sys
.
stderr
=
StringIO
()
try
:
handler
.
log_message
(
"GET
%
s
%
s"
,
str
(
'
\x16\x03
'
),
"4"
)
self
.
assertIn
(
"You're accessing the developement server over HTTPS, "
"but it only supports HTTP."
,
sys
.
stderr
.
getvalue
()
)
finally
:
sys
.
stderr
=
_stderr
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