aboutsummaryrefslogtreecommitdiffstats
path: root/mitmproxy/test/taddons.py
diff options
context:
space:
mode:
Diffstat (limited to 'mitmproxy/test/taddons.py')
-rw-r--r--mitmproxy/test/taddons.py37
1 files changed, 37 insertions, 0 deletions
diff --git a/mitmproxy/test/taddons.py b/mitmproxy/test/taddons.py
new file mode 100644
index 00000000..a22fd5e2
--- /dev/null
+++ b/mitmproxy/test/taddons.py
@@ -0,0 +1,37 @@
+import mitmproxy.master
+import mitmproxy.options
+from mitmproxy import proxy
+
+
+class context:
+ """
+ A helper context for testing addons. Its most important function is to
+ set up the ctx module so handlers can be called just like they would be
+ when running from within mitmproxy.
+ """
+ def __init__(self, master = None, options = None):
+ self.options = options or mitmproxy.options.Options()
+ self.master = master or mitmproxy.master.Master(
+ options, proxy.DummyServer(options)
+ )
+ self.wrapped = None
+
+ def __enter__(self):
+ self.wrapped = self.master.handlecontext()
+ self.wrapped.__enter__()
+ return self
+
+ def __exit__(self, exc_type, exc_value, traceback):
+ self.wrapped.__exit__(exc_type, exc_value, traceback)
+ self.wrapped = None
+ return False
+
+ def configure(self, addon, **kwargs):
+ """
+ A helper for testing configure methods. Modifies the registered
+ Options object with the given keyword arguments, then calls the
+ configure method on the addon with the updated value.
+ """
+ for k, v in kwargs.items():
+ setattr(self.options, k, v)
+ addon.configure(self.options, kwargs.keys())