diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-05-18 18:26:08 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-05-18 18:26:08 -0400 |
commit | af89bb64b59f8352c6f9f2d48fbd6f98e7f18213 (patch) | |
tree | 13a7cdbfad66503fd891b10b4eecf0d64ae4df0e /tests/test_x509.py | |
parent | 63d95d0973970c01dbfa8432055bc7e13acc1049 (diff) | |
parent | f85201830f737f2591622624a03df52bcb1c0f7e (diff) | |
download | cryptography-af89bb64b59f8352c6f9f2d48fbd6f98e7f18213.tar.gz cryptography-af89bb64b59f8352c6f9f2d48fbd6f98e7f18213.tar.bz2 cryptography-af89bb64b59f8352c6f9f2d48fbd6f98e7f18213.zip |
Merge branch 'master' into macstadium-travis
Diffstat (limited to 'tests/test_x509.py')
-rw-r--r-- | tests/test_x509.py | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/tests/test_x509.py b/tests/test_x509.py index 8561f1f4..47c1c647 100644 --- a/tests/test_x509.py +++ b/tests/test_x509.py @@ -395,6 +395,9 @@ class TestRSACertificate(object): x509.NameAttribute(x509.OID_ORGANIZATION_NAME, 'PyCA'), x509.NameAttribute(x509.OID_COMMON_NAME, 'cryptography.io'), ] + extensions = request.extensions + assert isinstance(extensions, x509.Extensions) + assert list(extensions) == [] @pytest.mark.parametrize( "loader_func", @@ -413,6 +416,61 @@ class TestRSACertificate(object): with pytest.raises(UnsupportedAlgorithm): request.signature_hash_algorithm + def test_duplicate_extension(self, backend): + request = _load_cert( + os.path.join( + "x509", "requests", "two_basic_constraints.pem" + ), + x509.load_pem_x509_csr, + backend + ) + with pytest.raises(x509.DuplicateExtension) as exc: + request.extensions + + assert exc.value.oid == x509.OID_BASIC_CONSTRAINTS + + def test_unsupported_critical_extension(self, backend): + request = _load_cert( + os.path.join( + "x509", "requests", "unsupported_extension_critical.pem" + ), + x509.load_pem_x509_csr, + backend + ) + with pytest.raises(x509.UnsupportedExtension) as exc: + request.extensions + + assert exc.value.oid == x509.ObjectIdentifier('1.2.3.4') + + def test_unsupported_extension(self, backend): + request = _load_cert( + os.path.join( + "x509", "requests", "unsupported_extension.pem" + ), + x509.load_pem_x509_csr, + backend + ) + extensions = request.extensions + assert len(extensions) == 0 + + def test_request_basic_constraints(self, backend): + request = _load_cert( + os.path.join( + "x509", "requests", "basic_constraints.pem" + ), + x509.load_pem_x509_csr, + backend + ) + extensions = request.extensions + assert isinstance(extensions, x509.Extensions) + assert list(extensions) == [ + x509.Extension( + x509.OID_BASIC_CONSTRAINTS, + True, + x509.BasicConstraints(True, 1), + ), + ] + @pytest.mark.requires_backend_interface(interface=DSABackend) @pytest.mark.requires_backend_interface(interface=X509Backend) |