mirror of https://github.com/python/cpython
separate cert loading tests into Windows and non-Windows cases
This commit is contained in:
parent
5915b0f924
commit
91244e01bb
|
@ -1016,6 +1016,7 @@ class ContextTests(unittest.TestCase):
|
||||||
self.assertRaises(TypeError, ctx.load_default_certs, None)
|
self.assertRaises(TypeError, ctx.load_default_certs, None)
|
||||||
self.assertRaises(TypeError, ctx.load_default_certs, 'SERVER_AUTH')
|
self.assertRaises(TypeError, ctx.load_default_certs, 'SERVER_AUTH')
|
||||||
|
|
||||||
|
@unittest.skipIf(sys.platform == "win32", "not-Windows specific")
|
||||||
def test_load_default_certs_env(self):
|
def test_load_default_certs_env(self):
|
||||||
ctx = ssl.SSLContext(ssl.PROTOCOL_TLSv1)
|
ctx = ssl.SSLContext(ssl.PROTOCOL_TLSv1)
|
||||||
with support.EnvironmentVarGuard() as env:
|
with support.EnvironmentVarGuard() as env:
|
||||||
|
@ -1024,6 +1025,20 @@ class ContextTests(unittest.TestCase):
|
||||||
ctx.load_default_certs()
|
ctx.load_default_certs()
|
||||||
self.assertEqual(ctx.cert_store_stats(), {"crl": 0, "x509": 1, "x509_ca": 0})
|
self.assertEqual(ctx.cert_store_stats(), {"crl": 0, "x509": 1, "x509_ca": 0})
|
||||||
|
|
||||||
|
@unittest.skipUnless(sys.platform == "win32", "Windows specific")
|
||||||
|
def test_load_default_certs_env_windows(self):
|
||||||
|
ctx = ssl.SSLContext(ssl.PROTOCOL_TLSv1)
|
||||||
|
ctx.load_default_certs()
|
||||||
|
stats = ctx.cert_store_stats()
|
||||||
|
|
||||||
|
ctx = ssl.SSLContext(ssl.PROTOCOL_TLSv1)
|
||||||
|
with support.EnvironmentVarGuard() as env:
|
||||||
|
env["SSL_CERT_DIR"] = CAPATH
|
||||||
|
env["SSL_CERT_FILE"] = CERTFILE
|
||||||
|
ctx.load_default_certs()
|
||||||
|
stats["x509"] += 1
|
||||||
|
self.assertEqual(ctx.cert_store_stats(), stats)
|
||||||
|
|
||||||
def test_create_default_context(self):
|
def test_create_default_context(self):
|
||||||
ctx = ssl.create_default_context()
|
ctx = ssl.create_default_context()
|
||||||
self.assertEqual(ctx.protocol, ssl.PROTOCOL_SSLv23)
|
self.assertEqual(ctx.protocol, ssl.PROTOCOL_SSLv23)
|
||||||
|
|
Loading…
Reference in New Issue