diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2016-02-26 21:01:29 -0500 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2016-02-26 21:01:29 -0500 |
commit | c96ef9d5cd028e13186787d484bd7abba6f67906 (patch) | |
tree | 0b94ca1cd30b9b13344be05c6189a3fcd81149db /tests/test_x509_ext.py | |
parent | cce46b1c88d1d0aed63540a7bce309863c0f4f41 (diff) | |
parent | 648c0fb14b762bd79243644ad5fcde586b94e098 (diff) | |
download | cryptography-c96ef9d5cd028e13186787d484bd7abba6f67906.tar.gz cryptography-c96ef9d5cd028e13186787d484bd7abba6f67906.tar.bz2 cryptography-c96ef9d5cd028e13186787d484bd7abba6f67906.zip |
Merge pull request #2733 from reaperhulk/policy-constraints
add policy constraints class
Diffstat (limited to 'tests/test_x509_ext.py')
-rw-r--r-- | tests/test_x509_ext.py | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/test_x509_ext.py b/tests/test_x509_ext.py index d8a5f9de..ceb11dfe 100644 --- a/tests/test_x509_ext.py +++ b/tests/test_x509_ext.py @@ -2245,6 +2245,41 @@ class TestAccessDescription(object): assert hash(ad) != hash(ad3) +class TestPolicyConstraints(object): + def test_invalid_explicit_policy(self): + with pytest.raises(TypeError): + x509.PolicyConstraints("invalid", None) + + def test_invalid_inhibit_policy(self): + with pytest.raises(TypeError): + x509.PolicyConstraints(None, "invalid") + + def test_both_none(self): + with pytest.raises(ValueError): + x509.PolicyConstraints(None, None) + + def test_repr(self): + pc = x509.PolicyConstraints(0, None) + + assert repr(pc) == ( + u"<PolicyConstraints(require_explicit_policy=0, inhibit_policy_ma" + u"pping=None)>" + ) + + def test_eq(self): + pc = x509.PolicyConstraints(2, 1) + pc2 = x509.PolicyConstraints(2, 1) + assert pc == pc2 + + def test_ne(self): + pc = x509.PolicyConstraints(2, 1) + pc2 = x509.PolicyConstraints(2, 2) + pc3 = x509.PolicyConstraints(3, 1) + assert pc != pc2 + assert pc != pc3 + assert pc != object() + + class TestAuthorityInformationAccess(object): def test_invalid_descriptions(self): with pytest.raises(TypeError): |