aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2015-12-20 18:48:24 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2015-12-20 18:48:24 -0600
commit9543a33eb63564c3fe04efbc451b2f6c742be4fe (patch)
treeb05051c55e2639127b3ab22041bc22a342f9cbe4 /tests
parentfc504fee938a5223e790e4c221c20177bca6aa14 (diff)
downloadcryptography-9543a33eb63564c3fe04efbc451b2f6c742be4fe.tar.gz
cryptography-9543a33eb63564c3fe04efbc451b2f6c742be4fe.tar.bz2
cryptography-9543a33eb63564c3fe04efbc451b2f6c742be4fe.zip
support CRLs with no revoked certificates
Diffstat (limited to 'tests')
-rw-r--r--tests/test_x509.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/test_x509.py b/tests/test_x509.py
index 67066f04..5e5944a4 100644
--- a/tests/test_x509.py
+++ b/tests/test_x509.py
@@ -299,6 +299,14 @@ class TestRevokedCertificate(object):
assert len(flags) == 0
+ def test_no_revoked_certs(self, backend):
+ crl = _load_cert(
+ os.path.join("x509", "custom", "crl_empty.pem"),
+ x509.load_pem_x509_crl,
+ backend
+ )
+ assert len(crl) == 0
+
def test_duplicate_entry_ext(self, backend):
crl = _load_cert(
os.path.join("x509", "custom", "crl_dup_entry_ext.pem"),