]> granicus.if.org Git - python/commitdiff
Disabling SNI test; server admin would not like us to use it for automated tests.
authorAntoine Pitrou <solipsis@pitrou.net>
Wed, 3 Nov 2010 08:53:25 +0000 (08:53 +0000)
committerAntoine Pitrou <solipsis@pitrou.net>
Wed, 3 Nov 2010 08:53:25 +0000 (08:53 +0000)
Lib/test/test_urllib2net.py

index dedb9d8b3d0fd4ae9d114b2374a1f9b969097681..eab15735de86d8485fc1720ea9a1fde79d0539cd 100644 (file)
@@ -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)