diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-04-22 15:32:54 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-04-22 15:32:54 -0400 |
commit | dbac0e9a074c7244ad2d25e11b4001eb49a791b4 (patch) | |
tree | 24b07b6643387f3a82ed5733ab8155e0612978ab /tests/test_x509_ext.py | |
parent | e37ca984fcf093f4382eb3f19abf10b0862600da (diff) | |
parent | 0a621bf5da576d7aab394e5bdc342e2e8b1cbaa2 (diff) | |
download | cryptography-dbac0e9a074c7244ad2d25e11b4001eb49a791b4.tar.gz cryptography-dbac0e9a074c7244ad2d25e11b4001eb49a791b4.tar.bz2 cryptography-dbac0e9a074c7244ad2d25e11b4001eb49a791b4.zip |
Merge pull request #1859 from reaperhulk/san-unsupported
SAN unsupported type
Diffstat (limited to 'tests/test_x509_ext.py')
-rw-r--r-- | tests/test_x509_ext.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/test_x509_ext.py b/tests/test_x509_ext.py index a7e04156..1283fca7 100644 --- a/tests/test_x509_ext.py +++ b/tests/test_x509_ext.py @@ -757,3 +757,16 @@ class TestRSASubjectAlternativeNameExtension(object): dns = san.get_values_for_type(x509.DNSName) assert dns == [u"www.cryptography.io", u"cryptography.io"] + + def test_unsupported_other_name(self, backend): + cert = _load_cert( + os.path.join( + "x509", "custom", "san_other_name.pem" + ), + x509.load_pem_x509_certificate, + backend + ) + with pytest.raises(x509.UnsupportedGeneralNameType) as exc: + cert.extensions + + assert exc.value.type == 0 |