diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-12-30 23:05:37 -0500 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-12-30 23:05:37 -0500 |
commit | 5660526e6baadb10a1969a32a2dda3bc14c78133 (patch) | |
tree | 5742a9f386b4dcba97e898fb0825a319df5c33df /tests | |
parent | e3a40812e7f686d101d00fbfbba67335af271d80 (diff) | |
parent | e69c5fe0649adcfb1c540c39e2b296ad44cde244 (diff) | |
download | cryptography-5660526e6baadb10a1969a32a2dda3bc14c78133.tar.gz cryptography-5660526e6baadb10a1969a32a2dda3bc14c78133.tar.bz2 cryptography-5660526e6baadb10a1969a32a2dda3bc14c78133.zip |
Merge pull request #2609 from reaperhulk/extension-for-class-exception
don't allow UnrecognizedExtension with get_extension_for_class
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_x509_ext.py | 5 |
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"), |