Very basic test truss for web.app

This commit is contained in:
Aldo Cortesi
2016-06-04 15:30:28 +12:00
parent f7f9cab5dc
commit 12a4f9ecf9

View File

@@ -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