From 12a4f9ecf94760f0c63064ce3b42699ab16fffa6 Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Sat, 4 Jun 2016 15:30:28 +1200 Subject: Very basic test truss for web.app --- test/mitmproxy/test_web_app.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'test') 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 -- cgit v1.2.3