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
0eee1f58
Kaydet (Commit)
0eee1f58
authored
Kas 03, 2010
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Disabling SNI test; server admin would not like us to use it for automated tests.
üst
0a9397fc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
test_urllib2net.py
Lib/test/test_urllib2net.py
+3
-2
No files found.
Lib/test/test_urllib2net.py
Dosyayı görüntüle @
0eee1f58
...
...
@@ -302,13 +302,14 @@ class TimeoutTest(unittest.TestCase):
class
HTTPSTests
(
unittest
.
TestCase
):
def
test_sni
(
self
):
self
.
skipTest
(
"test disabled - test server needed"
)
# Checks that Server Name Indication works, if supported by the
# OpenSSL linked to.
# The ssl module itself doesn't have server-side support for SNI,
# so we rely on a third-party test site.
expect_sni
=
ssl
.
HAS_SNI
with
support
.
transient_internet
(
"
bob.sni.velox.ch
"
):
u
=
urllib
.
request
.
urlopen
(
"
https://bob.sni.velox.ch/
"
)
with
support
.
transient_internet
(
"
XXX
"
):
u
=
urllib
.
request
.
urlopen
(
"
XXX
"
)
contents
=
u
.
readall
()
if
expect_sni
:
self
.
assertIn
(
b
"Great"
,
contents
)
...
...
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