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
5a2c0401
Kaydet (Commit)
5a2c0401
authored
Mar 12, 2014
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #20896: Workaround the bug temporarely to fix buildbots
üst
a0fe1f74
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
test_ssl.py
Lib/test/test_ssl.py
+4
-3
No files found.
Lib/test/test_ssl.py
Dosyayı görüntüle @
5a2c0401
...
...
@@ -1351,12 +1351,13 @@ class NetworkedTests(unittest.TestCase):
def
test_get_server_certificate
(
self
):
def
_test_get_server_certificate
(
host
,
port
,
cert
=
None
):
with
support
.
transient_internet
(
host
):
pem
=
ssl
.
get_server_certificate
((
host
,
port
))
# FIXME: force PROTOCOL_SSLv23 for workaround bug #20896
pem
=
ssl
.
get_server_certificate
((
host
,
port
),
ssl_version
=
ssl
.
PROTOCOL_SSLv23
)
if
not
pem
:
self
.
fail
(
"No server certificate on
%
s:
%
s!"
%
(
host
,
port
))
try
:
pem
=
ssl
.
get_server_certificate
((
host
,
port
),
ca_certs
=
CERTFILE
)
pem
=
ssl
.
get_server_certificate
((
host
,
port
),
ca_certs
=
CERTFILE
,
ssl_version
=
ssl
.
PROTOCOL_SSLv23
)
except
ssl
.
SSLError
as
x
:
#should fail
if
support
.
verbose
:
...
...
@@ -1364,7 +1365,7 @@ class NetworkedTests(unittest.TestCase):
else
:
self
.
fail
(
"Got server certificate
%
s for
%
s:
%
s!"
%
(
pem
,
host
,
port
))
pem
=
ssl
.
get_server_certificate
((
host
,
port
),
ca_certs
=
cert
)
pem
=
ssl
.
get_server_certificate
((
host
,
port
),
ca_certs
=
cert
,
ssl_version
=
ssl
.
PROTOCOL_SSLv23
)
if
not
pem
:
self
.
fail
(
"No server certificate on
%
s:
%
s!"
%
(
host
,
port
))
if
support
.
verbose
:
...
...
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