aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/mitmproxy/test_web_app.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/mitmproxy/test_web_app.py b/test/mitmproxy/test_web_app.py
index e69de29b..ae934cfc 100644
--- a/test/mitmproxy/test_web_app.py
+++ b/test/mitmproxy/test_web_app.py
@@ -0,0 +1,22 @@
+import tornado.testing
+
+from mitmproxy.web import app, master
+
+
+class TestApp(tornado.testing.AsyncHTTPTestCase):
+ def get_app(self):
+ o = master.Options()
+ m = master.WebMaster(None, o)
+ return app.Application(m, None, None)
+
+ def test_index(self):
+ assert self.fetch("/").code == 200
+
+ def test_filter_help(self):
+ assert self.fetch("/filter-help").code == 200
+
+ def test_events(self):
+ assert self.fetch("/events").code == 200
+
+ def test_flows(self):
+ assert self.fetch("/flows").code == 200