From 50c07034249a07f25172230b689c4c6da1b63c2d Mon Sep 17 00:00:00 2001 From: Matthew Shao Date: Fri, 19 May 2017 09:45:30 +0800 Subject: [PATCH] [web] Add _tflow.js generator in test_app.py --- test/mitmproxy/tools/web/test_app.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/test/mitmproxy/tools/web/test_app.py b/test/mitmproxy/tools/web/test_app.py index 2b6181d34..dc5fe7336 100644 --- a/test/mitmproxy/tools/web/test_app.py +++ b/test/mitmproxy/tools/web/test_app.py @@ -1,5 +1,6 @@ import json as _json from unittest import mock +import os import tornado.testing from tornado import httpclient @@ -12,7 +13,6 @@ from mitmproxy.test import tflow from mitmproxy.tools.web import app from mitmproxy.tools.web import master as webmaster - def json(resp: httpclient.HTTPResponse): return _json.loads(resp.body.decode()) @@ -275,3 +275,13 @@ class TestApp(tornado.testing.AsyncHTTPTestCase): # trigger on_close by opening a second connection. ws_client2 = yield websocket.websocket_connect(ws_url) ws_client2.close() + + def test_generate_tflow_js(self): + tflow_json = _json.dumps( + app.flow_to_json(tflow.tflow(resp=True, err=True)), indent=4, sort_keys=True + ) + web_root = os.path.join(os.getcwd(), 'web') + tflow_path = os.path.join(web_root, 'src/js/__tests__/ducks/_tflow.js') + content = """export default function(){{\n return {tflow_json}\n}}""".format(tflow_json=tflow_json) + with open(tflow_path, 'w') as f: + f.write(content)