diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_x509_ext.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/test_x509_ext.py b/tests/test_x509_ext.py index 8516a339..2fa659ef 100644 --- a/tests/test_x509_ext.py +++ b/tests/test_x509_ext.py @@ -730,3 +730,24 @@ class TestSubjectAlternativeName(object): assert repr(san) == ( "<SubjectAlternativeName([<DNSName(value=cryptography.io)>])>" ) + + +@pytest.mark.requires_backend_interface(interface=RSABackend) +@pytest.mark.requires_backend_interface(interface=X509Backend) +class TestRSASubjectAlternativeNameExtension(object): + def test_dns_name(self, backend): + cert = _load_cert( + os.path.join("x509", "cryptography.io.pem"), + x509.load_pem_x509_certificate, + backend + ) + ext = cert.extensions.get_extension_for_oid( + x509.OID_SUBJECT_ALTERNATIVE_NAME + ) + assert ext is not None + assert ext.critical is False + + san = ext.value + + dns = san.get_values_for_type(x509.DNSName) + assert dns == [u"www.cryptography.io", u"cryptography.io"] |