diff options
author | Maximilian Hils <git@maximilianhils.com> | 2018-03-23 04:26:36 +0100 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2018-03-23 04:26:46 +0100 |
commit | fed54fa3d09362965721f99d2a4e74f9ddff40e8 (patch) | |
tree | cf7d6729b20d907675ade9aa5193d1da0070be5a /test | |
parent | 623f9b694d9f9ddc9130d03b7ffb079c1c492dc6 (diff) | |
download | mitmproxy-fed54fa3d09362965721f99d2a4e74f9ddff40e8.tar.gz mitmproxy-fed54fa3d09362965721f99d2a4e74f9ddff40e8.tar.bz2 mitmproxy-fed54fa3d09362965721f99d2a4e74f9ddff40e8.zip |
don't crash if server address is unknown, fix #2969
Diffstat (limited to 'test')
-rw-r--r-- | test/mitmproxy/test_connections.py | 6 | ||||
-rw-r--r-- | test/mitmproxy/utils/test_human.py | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/test/mitmproxy/test_connections.py b/test/mitmproxy/test_connections.py index 00cdbc87..845a9043 100644 --- a/test/mitmproxy/test_connections.py +++ b/test/mitmproxy/test_connections.py @@ -38,6 +38,9 @@ class TestClientConnection: assert 'ALPN' not in repr(c) assert 'TLS' in repr(c) + c.address = None + assert repr(c) + def test_tls_established_property(self): c = tflow.tclient_conn() c.tls_established = True @@ -110,6 +113,9 @@ class TestServerConnection: c.tls_established = False assert 'TLS' not in repr(c) + c.address = None + assert repr(c) + def test_tls_established_property(self): c = tflow.tserver_conn() c.tls_established = True diff --git a/test/mitmproxy/utils/test_human.py b/test/mitmproxy/utils/test_human.py index 947cfa4a..faf35f72 100644 --- a/test/mitmproxy/utils/test_human.py +++ b/test/mitmproxy/utils/test_human.py @@ -56,3 +56,4 @@ def test_format_address(): assert human.format_address(("example.com", "54010")) == "example.com:54010" assert human.format_address(("::", "8080")) == "*:8080" assert human.format_address(("0.0.0.0", "8080")) == "*:8080" + assert human.format_address(None) == "<no address>" |