aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_cmdline.py
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@nullcube.com>2012-08-19 00:22:42 +1200
committerAldo Cortesi <aldo@nullcube.com>2012-08-19 00:22:42 +1200
commit60659a89c38cdbae3f7163d46aab12f49261ab6a (patch)
tree8668a13c47b6f1f3e5adf3400f68be3868c61804 /test/test_cmdline.py
parent1b7990897e57df2d095e6eb06aa6c27bc81195ba (diff)
downloadmitmproxy-60659a89c38cdbae3f7163d46aab12f49261ab6a.tar.gz
mitmproxy-60659a89c38cdbae3f7163d46aab12f49261ab6a.tar.bz2
mitmproxy-60659a89c38cdbae3f7163d46aab12f49261ab6a.zip
Little bit of love for the unit tests.
Diffstat (limited to 'test/test_cmdline.py')
-rw-r--r--test/test_cmdline.py14
1 files changed, 13 insertions, 1 deletions
diff --git a/test/test_cmdline.py b/test/test_cmdline.py
index 0a1d6e8f..e1c5c88d 100644
--- a/test/test_cmdline.py
+++ b/test/test_cmdline.py
@@ -36,7 +36,7 @@ def test_parse_replace_hook():
def test_parse_setheaders():
- x = cmdline.parse_replace_hook("/foo/bar/voing")
+ x = cmdline.parse_setheader("/foo/bar/voing")
assert x == ("foo", "bar", "voing")
@@ -53,6 +53,18 @@ def test_common():
assert v["stickycookie"] == "foo"
assert v["stickyauth"] == "foo"
+ opts.setheader = ["/foo/bar/voing"]
+ v = cmdline.get_common_options(opts)
+ assert v["setheaders"] == [("foo", "bar", "voing")]
+
+ opts.setheader = ["//"]
+ tutils.raises(
+ "empty clause",
+ cmdline.get_common_options,
+ opts
+ )
+ opts.setheader = []
+
opts.replace = ["/foo/bar/voing"]
v = cmdline.get_common_options(opts)
assert v["replacements"] == [("foo", "bar", "voing")]