diff options
author | Maximilian Hils <git@maximilianhils.com> | 2017-12-17 18:46:00 +0100 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2017-12-29 23:20:03 +0100 |
commit | 465044c3731ac0077387f1cbb39ae4f90d3f06c8 (patch) | |
tree | 110040af7f55f97865c1fa41ac54a8ac4bf324ba /test | |
parent | 5661b40942d0ddcac14a2eb3e8a9ff30b7eaca06 (diff) | |
download | mitmproxy-465044c3731ac0077387f1cbb39ae4f90d3f06c8.tar.gz mitmproxy-465044c3731ac0077387f1cbb39ae4f90d3f06c8.tar.bz2 mitmproxy-465044c3731ac0077387f1cbb39ae4f90d3f06c8.zip |
test that defaultkeys are valid commands
Diffstat (limited to 'test')
-rw-r--r-- | test/mitmproxy/tools/console/test_defaultkeys.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/test/mitmproxy/tools/console/test_defaultkeys.py b/test/mitmproxy/tools/console/test_defaultkeys.py new file mode 100644 index 00000000..1f17c888 --- /dev/null +++ b/test/mitmproxy/tools/console/test_defaultkeys.py @@ -0,0 +1,23 @@ +from mitmproxy.test.tflow import tflow +from mitmproxy.tools.console import defaultkeys +from mitmproxy.tools.console import keymap +from mitmproxy.tools.console import master +from mitmproxy import command + + +def test_commands_exist(): + km = keymap.Keymap(None) + defaultkeys.map(km) + assert km.bindings + m = master.ConsoleMaster(None) + m.load_flow(tflow()) + + for binding in km.bindings: + cmd, *args = command.lexer(binding.command) + assert cmd in m.commands.commands + + cmd_obj = m.commands.commands[cmd] + try: + cmd_obj.prepare_args(args) + except Exception as e: + raise ValueError("Invalid command: {}".format(binding.command)) from e |