aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_x509.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2015-04-30 18:41:17 -0400
committerAlex Gaynor <alex.gaynor@gmail.com>2015-04-30 18:41:17 -0400
commit12953e390654ae5ea0195558a4f78cf2ae01cb8f (patch)
treed1542ec6c10e9ca7f37eaeb88ae4362632a3b77f /tests/test_x509.py
parentdd1d15143e2690d1aba58dc1dab8282e40706ba5 (diff)
parent8bbdc6f5af5a47bd2b069314c1d3d87da1da1874 (diff)
downloadcryptography-12953e390654ae5ea0195558a4f78cf2ae01cb8f.tar.gz
cryptography-12953e390654ae5ea0195558a4f78cf2ae01cb8f.tar.bz2
cryptography-12953e390654ae5ea0195558a4f78cf2ae01cb8f.zip
Merge pull request #1883 from reaperhulk/fix-1866
add support for equality testing to x509.Certificate
Diffstat (limited to 'tests/test_x509.py')
-rw-r--r--tests/test_x509.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/test_x509.py b/tests/test_x509.py
index df291de2..8561f1f4 100644
--- a/tests/test_x509.py
+++ b/tests/test_x509.py
@@ -313,6 +313,36 @@ class TestRSACertificate(object):
assert exc.value.parsed_version == 7
+ def test_eq(self, backend):
+ cert = _load_cert(
+ os.path.join("x509", "custom", "post2000utctime.pem"),
+ x509.load_pem_x509_certificate,
+ backend
+ )
+ cert2 = _load_cert(
+ os.path.join("x509", "custom", "post2000utctime.pem"),
+ x509.load_pem_x509_certificate,
+ backend
+ )
+ assert cert == cert2
+
+ def test_ne(self, backend):
+ cert = _load_cert(
+ os.path.join("x509", "custom", "post2000utctime.pem"),
+ x509.load_pem_x509_certificate,
+ backend
+ )
+ cert2 = _load_cert(
+ os.path.join(
+ "x509", "PKITS_data", "certs",
+ "ValidGeneralizedTimenotAfterDateTest8EE.crt"
+ ),
+ x509.load_der_x509_certificate,
+ backend
+ )
+ assert cert != cert2
+ assert cert != object()
+
def test_version_1_cert(self, backend):
cert = _load_cert(
os.path.join("x509", "v1_cert.pem"),