aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_certutils.py
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2014-07-21 14:02:56 +0200
committerMaximilian Hils <git@maximilianhils.com>2014-07-21 14:02:56 +0200
commit254a6862358af9d7d98bf443e310f659532d918d (patch)
tree71b0b3a2eb502e7ea2235701cb6ae6a133c7f372 /test/test_certutils.py
parent6bd5df79f82a33b7e725afb5f279bda4cba41935 (diff)
parentd382bb27bf4732def621cddb46fc4cc1d2143ab4 (diff)
downloadmitmproxy-254a6862358af9d7d98bf443e310f659532d918d.tar.gz
mitmproxy-254a6862358af9d7d98bf443e310f659532d918d.tar.bz2
mitmproxy-254a6862358af9d7d98bf443e310f659532d918d.zip
Merge branch 'master' into stream
Conflicts: netlib/http.py
Diffstat (limited to 'test/test_certutils.py')
-rw-r--r--test/test_certutils.py65
1 files changed, 36 insertions, 29 deletions
diff --git a/test/test_certutils.py b/test/test_certutils.py
index 176575ea..95a7280e 100644
--- a/test/test_certutils.py
+++ b/test/test_certutils.py
@@ -3,34 +3,34 @@ from netlib import certutils, certffi
import OpenSSL
import tutils
-class TestDNTree:
- def test_simple(self):
- d = certutils.DNTree()
- d.add("foo.com", "foo")
- d.add("bar.com", "bar")
- assert d.get("foo.com") == "foo"
- assert d.get("bar.com") == "bar"
- assert not d.get("oink.com")
- assert not d.get("oink")
- assert not d.get("")
- assert not d.get("oink.oink")
-
- d.add("*.match.org", "match")
- assert not d.get("match.org")
- assert d.get("foo.match.org") == "match"
- assert d.get("foo.foo.match.org") == "match"
-
- def test_wildcard(self):
- d = certutils.DNTree()
- d.add("foo.com", "foo")
- assert not d.get("*.foo.com")
- d.add("*.foo.com", "wild")
-
- d = certutils.DNTree()
- d.add("*", "foo")
- assert d.get("foo.com") == "foo"
- assert d.get("*.foo.com") == "foo"
- assert d.get("com") == "foo"
+# class TestDNTree:
+# def test_simple(self):
+# d = certutils.DNTree()
+# d.add("foo.com", "foo")
+# d.add("bar.com", "bar")
+# assert d.get("foo.com") == "foo"
+# assert d.get("bar.com") == "bar"
+# assert not d.get("oink.com")
+# assert not d.get("oink")
+# assert not d.get("")
+# assert not d.get("oink.oink")
+#
+# d.add("*.match.org", "match")
+# assert not d.get("match.org")
+# assert d.get("foo.match.org") == "match"
+# assert d.get("foo.foo.match.org") == "match"
+#
+# def test_wildcard(self):
+# d = certutils.DNTree()
+# d.add("foo.com", "foo")
+# assert not d.get("*.foo.com")
+# d.add("*.foo.com", "wild")
+#
+# d = certutils.DNTree()
+# d.add("*", "foo")
+# assert d.get("foo.com") == "foo"
+# assert d.get("*.foo.com") == "foo"
+# assert d.get("com") == "foo"
class TestCertStore:
@@ -63,10 +63,17 @@ class TestCertStore:
ca = certutils.CertStore.from_store(d, "test")
c1 = ca.get_cert("foo.com", ["*.bar.com"])
c2 = ca.get_cert("foo.bar.com", [])
- assert c1 == c2
+ # assert c1 == c2
c3 = ca.get_cert("bar.com", [])
assert not c1 == c3
+ def test_sans_change(self):
+ with tutils.tmpdir() as d:
+ ca = certutils.CertStore.from_store(d, "test")
+ _ = ca.get_cert("foo.com", ["*.bar.com"])
+ cert, key = ca.get_cert("foo.bar.com", ["*.baz.com"])
+ assert "*.baz.com" in cert.altnames
+
def test_overrides(self):
with tutils.tmpdir() as d:
ca1 = certutils.CertStore.from_store(os.path.join(d, "ca1"), "test")