aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2015-12-30 21:03:26 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2015-12-30 21:03:26 -0600
commite69c5fe0649adcfb1c540c39e2b296ad44cde244 (patch)
tree04baa988849f11c1b58ace4371864a1b9b2472ff /tests
parent7640889dbbc379fe1f164cbd3094b2189aa655ba (diff)
downloadcryptography-e69c5fe0649adcfb1c540c39e2b296ad44cde244.tar.gz
cryptography-e69c5fe0649adcfb1c540c39e2b296ad44cde244.tar.bz2
cryptography-e69c5fe0649adcfb1c540c39e2b296ad44cde244.zip
don't allow UnrecognizedExtension with get_extension_for_class
Diffstat (limited to 'tests')
-rw-r--r--tests/test_x509_ext.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/test_x509_ext.py b/tests/test_x509_ext.py
index 7c5ca5f2..df796e0a 100644
--- a/tests/test_x509_ext.py
+++ b/tests/test_x509_ext.py
@@ -1057,6 +1057,11 @@ class TestExtensions(object):
exts.get_extension_for_class(x509.IssuerAlternativeName)
assert exc.value.oid == ExtensionOID.ISSUER_ALTERNATIVE_NAME
+ def test_unrecognized_extension_for_class(self):
+ exts = x509.Extensions([])
+ with pytest.raises(TypeError):
+ exts.get_extension_for_class(x509.UnrecognizedExtension)
+
def test_indexing(self, backend):
cert = _load_cert(
os.path.join("x509", "cryptography.io.pem"),