aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_proxy.py
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2014-09-06 12:23:05 +0200
committerMaximilian Hils <git@maximilianhils.com>2014-09-06 12:23:05 +0200
commitb6c8a22b675cea20ceb0b2b066e955733ca9cc95 (patch)
tree5f146356b1474f4ab1ac8f179de0f1230a3f0e9d /test/test_proxy.py
parent5d7cabcbfa0fda53b92c9e9449dae4812cf5abef (diff)
downloadmitmproxy-b6c8a22b675cea20ceb0b2b066e955733ca9cc95.tar.gz
mitmproxy-b6c8a22b675cea20ceb0b2b066e955733ca9cc95.tar.bz2
mitmproxy-b6c8a22b675cea20ceb0b2b066e955733ca9cc95.zip
coverage++
Diffstat (limited to 'test/test_proxy.py')
-rw-r--r--test/test_proxy.py20
1 files changed, 16 insertions, 4 deletions
diff --git a/test/test_proxy.py b/test/test_proxy.py
index 2ff01acc..614bb8b9 100644
--- a/test/test_proxy.py
+++ b/test/test_proxy.py
@@ -69,12 +69,24 @@ class TestProcessProxyOptions:
def test_no_transparent(self):
self.assert_err("transparent mode not supported", "-T")
+
@mock.patch("libmproxy.platform.resolver")
- def test_transparent_reverse(self, _):
- self.assert_err("mutually exclusive", "-R", "http://localhost", "-T")
- self.assert_noerr("-T")
- self.assert_err("Invalid server specification", "-R", "reverse")
+ def test_modes(self, _):
self.assert_noerr("-R", "http://localhost")
+ self.assert_err("expected one argument", "-R")
+ self.assert_err("Invalid server specification", "-R", "reverse")
+
+ self.assert_noerr("-T")
+
+ self.assert_noerr("-U", "http://localhost")
+ self.assert_err("expected one argument", "-U")
+ self.assert_err("Invalid server specification", "-U", "upstream")
+
+ self.assert_noerr("--destination-server", "http://localhost")
+ self.assert_err("expected one argument", "--destination-server")
+ self.assert_err("Invalid server specification", "--destination-server", "manual")
+
+ self.assert_err("mutually exclusive", "-R", "http://localhost", "-T")
def test_client_certs(self):
with tutils.tmpdir() as confdir: