Update test_flowlist.py

This commit is contained in:
lymanZerga11 2017-02-12 23:23:23 +08:00 committed by GitHub
parent c622e4a649
commit df8a5aa9be

View File

@ -1,20 +1,20 @@
import mitmproxy.tools.console.flowlist as flowlist
from mitmproxy.test import tutils
from mitmproxy.test import tflow
from mitmproxy.tools import console
from mitmproxy import proxy
from mitmproxy import options
from mitmproxy.tools.console import common
from .. import mastertest
import pytest
from unittest import mock
class ScriptError(Exception):
pass
def mock_add_log(message):
raise ScriptError(message)
class TestFlowlist(mastertest.MasterTest):
def mkmaster(self, **opts):
if "verbosity" not in opts:
@ -23,11 +23,9 @@ class TestFlowlist(mastertest.MasterTest):
return console.master.ConsoleMaster(o, proxy.DummyServer())
@mock.patch('mitmproxy.tools.console.signals.status_message.send', side_effect = mock_add_log)
def test_new_request(self,test_func):
def test_new_request(self, test_func):
m = self.mkmaster()
x = flowlist.FlowListBox(m)
with pytest.raises(ScriptError) as e:
x.new_request("nonexistent url", "GET")
assert "Invalid URL" in str(e)