mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
client replay: expad and consolidate tests
This commit is contained in:
parent
e8dac2d290
commit
6d27b28b85
@ -34,10 +34,10 @@ class RequestReplayThread(basethread.BaseThread):
|
|||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
while True:
|
while True:
|
||||||
f = self.queue.get(block=True, timeout=None)
|
f = self.queue.get()
|
||||||
self.replay(f)
|
self.replay(f)
|
||||||
|
|
||||||
def replay(self, f):
|
def replay(self, f): # pragma: no cover
|
||||||
f.live = True
|
f.live = True
|
||||||
r = f.request
|
r = f.request
|
||||||
bsl = human.parse_size(self.options.body_size_limit)
|
bsl = human.parse_size(self.options.body_size_limit)
|
||||||
@ -118,12 +118,13 @@ class RequestReplayThread(basethread.BaseThread):
|
|||||||
f.live = False
|
f.live = False
|
||||||
if server.connected():
|
if server.connected():
|
||||||
server.finish()
|
server.finish()
|
||||||
|
server.close()
|
||||||
|
|
||||||
|
|
||||||
class ClientPlayback:
|
class ClientPlayback:
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.q: queue.Queue = queue.Queue()
|
self.q = queue.Queue()
|
||||||
self.thread: RequestReplayThread | None = None
|
self.thread: RequestReplayThread = None
|
||||||
|
|
||||||
def check(self, f: http.HTTPFlow):
|
def check(self, f: http.HTTPFlow):
|
||||||
if f.live:
|
if f.live:
|
||||||
@ -184,23 +185,25 @@ class ClientPlayback:
|
|||||||
"""
|
"""
|
||||||
lst = []
|
lst = []
|
||||||
for f in flows:
|
for f in flows:
|
||||||
err = self.check(f)
|
hf = typing.cast(http.HTTPFlow, f)
|
||||||
|
|
||||||
|
err = self.check(hf)
|
||||||
if err:
|
if err:
|
||||||
ctx.log.warn(err)
|
ctx.log.warn(err)
|
||||||
continue
|
continue
|
||||||
|
|
||||||
lst.append(f)
|
lst.append(hf)
|
||||||
# Prepare the flow for replay
|
# Prepare the flow for replay
|
||||||
f.backup()
|
hf.backup()
|
||||||
f.request.is_replay = True
|
hf.request.is_replay = True
|
||||||
f.response = None
|
hf.response = None
|
||||||
f.error = None
|
hf.error = None
|
||||||
# https://github.com/mitmproxy/mitmproxy/issues/2197
|
# https://github.com/mitmproxy/mitmproxy/issues/2197
|
||||||
if f.request.http_version == "HTTP/2.0":
|
if hf.request.http_version == "HTTP/2.0":
|
||||||
f.request.http_version = "HTTP/1.1"
|
hf.request.http_version = "HTTP/1.1"
|
||||||
host = f.request.headers.pop(":authority")
|
host = hf.request.headers.pop(":authority")
|
||||||
f.request.headers.insert(0, "host", host)
|
hf.request.headers.insert(0, "host", host)
|
||||||
self.q.put(f)
|
self.q.put(hf)
|
||||||
ctx.master.addons.trigger("update", lst)
|
ctx.master.addons.trigger("update", lst)
|
||||||
|
|
||||||
@command.command("replay.client.file")
|
@command.command("replay.client.file")
|
||||||
|
@ -372,9 +372,8 @@ class TCPClient(_Connection):
|
|||||||
# Make sure to close the real socket, not the SSL proxy.
|
# Make sure to close the real socket, not the SSL proxy.
|
||||||
# OpenSSL is really good at screwing up, i.e. when trying to recv from a failed connection,
|
# OpenSSL is really good at screwing up, i.e. when trying to recv from a failed connection,
|
||||||
# it tries to renegotiate...
|
# it tries to renegotiate...
|
||||||
if not self.connection:
|
if self.connection:
|
||||||
return
|
if isinstance(self.connection, SSL.Connection):
|
||||||
elif isinstance(self.connection, SSL.Connection):
|
|
||||||
close_socket(self.connection._socket)
|
close_socket(self.connection._socket)
|
||||||
else:
|
else:
|
||||||
close_socket(self.connection)
|
close_socket(self.connection)
|
||||||
|
@ -1,13 +1,16 @@
|
|||||||
|
import time
|
||||||
import pytest
|
import pytest
|
||||||
from unittest import mock
|
|
||||||
|
|
||||||
from mitmproxy.test import tflow
|
from mitmproxy.test import tflow, tutils
|
||||||
from mitmproxy import io
|
from mitmproxy import io
|
||||||
from mitmproxy import exceptions
|
from mitmproxy import exceptions
|
||||||
|
from mitmproxy.net import http as net_http
|
||||||
|
|
||||||
from mitmproxy.addons import clientplayback
|
from mitmproxy.addons import clientplayback
|
||||||
from mitmproxy.test import taddons
|
from mitmproxy.test import taddons
|
||||||
|
|
||||||
|
from .. import tservers
|
||||||
|
|
||||||
|
|
||||||
def tdump(path, flows):
|
def tdump(path, flows):
|
||||||
with open(path, "wb") as f:
|
with open(path, "wb") as f:
|
||||||
@ -21,77 +24,80 @@ class MockThread():
|
|||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
||||||
class TestClientPlayback:
|
class TBase(tservers.HTTPProxyTest):
|
||||||
# @staticmethod
|
@staticmethod
|
||||||
# def wait_until_not_live(flow):
|
def wait_response(flow):
|
||||||
# """
|
"""
|
||||||
# Race condition: We don't want to replay the flow while it is still live.
|
Race condition: We don't want to replay the flow while it is still live.
|
||||||
# """
|
"""
|
||||||
# s = time.time()
|
s = time.time()
|
||||||
# while flow.live:
|
while True:
|
||||||
# time.sleep(0.001)
|
if flow.response or flow.error:
|
||||||
# if time.time() - s > 5:
|
break
|
||||||
# raise RuntimeError("Flow is live for too long.")
|
time.sleep(0.001)
|
||||||
|
if time.time() - s > 5:
|
||||||
|
raise RuntimeError("Flow is live for too long.")
|
||||||
|
|
||||||
# def test_replay(self):
|
@staticmethod
|
||||||
# assert self.pathod("304").status_code == 304
|
def reset(f):
|
||||||
# assert len(self.master.state.flows) == 1
|
f.live = False
|
||||||
# l = self.master.state.flows[-1]
|
f.repsonse = False
|
||||||
# assert l.response.status_code == 304
|
f.error = False
|
||||||
# l.request.path = "/p/305"
|
|
||||||
# self.wait_until_not_live(l)
|
|
||||||
# rt = self.master.replay_request(l, block=True)
|
|
||||||
# assert l.response.status_code == 305
|
|
||||||
|
|
||||||
# # Disconnect error
|
def addons(self):
|
||||||
# l.request.path = "/p/305:d0"
|
return [clientplayback.ClientPlayback()]
|
||||||
# rt = self.master.replay_request(l, block=True)
|
|
||||||
# assert rt
|
def test_replay(self):
|
||||||
# if isinstance(self, tservers.HTTPUpstreamProxyTest):
|
cr = self.master.addons.get("clientplayback")
|
||||||
# assert l.response.status_code == 502
|
|
||||||
# else:
|
assert self.pathod("304").status_code == 304
|
||||||
# assert l.error
|
assert len(self.master.state.flows) == 1
|
||||||
|
l = self.master.state.flows[-1]
|
||||||
|
assert l.response.status_code == 304
|
||||||
|
l.request.path = "/p/305"
|
||||||
|
cr.start_replay([l])
|
||||||
|
self.wait_response(l)
|
||||||
|
assert l.response.status_code == 305
|
||||||
|
|
||||||
|
# Disconnect error
|
||||||
|
cr.stop_replay()
|
||||||
|
self.reset(l)
|
||||||
|
l.request.path = "/p/305:d0"
|
||||||
|
cr.start_replay([l])
|
||||||
|
self.wait_response(l)
|
||||||
|
if isinstance(self, tservers.HTTPUpstreamProxyTest):
|
||||||
|
assert l.response.status_code == 502
|
||||||
|
else:
|
||||||
|
assert l.error
|
||||||
|
|
||||||
# # Port error
|
# # Port error
|
||||||
# l.request.port = 1
|
cr.stop_replay()
|
||||||
# # In upstream mode, we get a 502 response from the upstream proxy server.
|
self.reset(l)
|
||||||
# # In upstream mode with ssl, the replay will fail as we cannot establish
|
l.request.port = 1
|
||||||
# # SSL with the upstream proxy.
|
# In upstream mode, we get a 502 response from the upstream proxy server.
|
||||||
# rt = self.master.replay_request(l, block=True)
|
# In upstream mode with ssl, the replay will fail as we cannot establish
|
||||||
# assert rt
|
# SSL with the upstream proxy.
|
||||||
# if isinstance(self, tservers.HTTPUpstreamProxyTest):
|
cr.start_replay([l])
|
||||||
# assert l.response.status_code == 502
|
self.wait_response(l)
|
||||||
# else:
|
if isinstance(self, tservers.HTTPUpstreamProxyTest):
|
||||||
# assert l.error
|
assert l.response.status_code == 502
|
||||||
|
else:
|
||||||
|
assert l.error
|
||||||
|
|
||||||
# def test_replay(self):
|
|
||||||
# opts = options.Options()
|
|
||||||
# fm = master.Master(opts)
|
|
||||||
# f = tflow.tflow(resp=True)
|
|
||||||
# f.request.content = None
|
|
||||||
# with pytest.raises(ReplayException, match="missing"):
|
|
||||||
# fm.replay_request(f)
|
|
||||||
|
|
||||||
# f.request = None
|
class TestHTTPProxy(TBase, tservers.HTTPProxyTest):
|
||||||
# with pytest.raises(ReplayException, match="request"):
|
pass
|
||||||
# fm.replay_request(f)
|
|
||||||
|
|
||||||
# f.intercepted = True
|
|
||||||
# with pytest.raises(ReplayException, match="intercepted"):
|
|
||||||
# fm.replay_request(f)
|
|
||||||
|
|
||||||
# f.live = True
|
class TestHTTPSProxy(TBase, tservers.HTTPProxyTest):
|
||||||
# with pytest.raises(ReplayException, match="live"):
|
ssl = True
|
||||||
# fm.replay_request(f)
|
|
||||||
|
|
||||||
# req = tutils.treq(headers=net_http.Headers(((b":authority", b"foo"), (b"header", b"qvalue"), (b"content-length", b"7"))))
|
|
||||||
# f = tflow.tflow(req=req)
|
|
||||||
# f.request.http_version = "HTTP/2.0"
|
|
||||||
# with mock.patch('mitmproxy.proxy.protocol.http_replay.RequestReplayThread.run'):
|
|
||||||
# rt = fm.replay_request(f)
|
|
||||||
# assert rt.f.request.http_version == "HTTP/1.1"
|
|
||||||
# assert ":authority" not in rt.f.request.headers
|
|
||||||
|
|
||||||
|
class TestUpstreamProxy(TBase, tservers.HTTPUpstreamProxyTest):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
class TestClientPlayback:
|
||||||
def test_load_file(self, tmpdir):
|
def test_load_file(self, tmpdir):
|
||||||
cp = clientplayback.ClientPlayback()
|
cp = clientplayback.ClientPlayback()
|
||||||
with taddons.context(cp):
|
with taddons.context(cp):
|
||||||
@ -133,9 +139,10 @@ class TestClientPlayback:
|
|||||||
f.request.raw_content = None
|
f.request.raw_content = None
|
||||||
assert "missing content" in cp.check(f)
|
assert "missing content" in cp.check(f)
|
||||||
|
|
||||||
def test_playback(self):
|
@pytest.mark.asyncio
|
||||||
|
async def test_playback(self):
|
||||||
cp = clientplayback.ClientPlayback()
|
cp = clientplayback.ClientPlayback()
|
||||||
with taddons.context(cp):
|
with taddons.context(cp) as ctx:
|
||||||
assert cp.count() == 0
|
assert cp.count() == 0
|
||||||
f = tflow.tflow(resp=True)
|
f = tflow.tflow(resp=True)
|
||||||
cp.start_replay([f])
|
cp.start_replay([f])
|
||||||
@ -143,3 +150,26 @@ class TestClientPlayback:
|
|||||||
|
|
||||||
cp.stop_replay()
|
cp.stop_replay()
|
||||||
assert cp.count() == 0
|
assert cp.count() == 0
|
||||||
|
|
||||||
|
f.live = True
|
||||||
|
cp.start_replay([f])
|
||||||
|
assert cp.count() == 0
|
||||||
|
await ctx.master.await_log("live")
|
||||||
|
|
||||||
|
def test_http2(self):
|
||||||
|
cp = clientplayback.ClientPlayback()
|
||||||
|
with taddons.context(cp):
|
||||||
|
req = tutils.treq(
|
||||||
|
headers = net_http.Headers(
|
||||||
|
(
|
||||||
|
(b":authority", b"foo"),
|
||||||
|
(b"header", b"qvalue"),
|
||||||
|
(b"content-length", b"7")
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
f = tflow.tflow(req=req)
|
||||||
|
f.request.http_version = "HTTP/2.0"
|
||||||
|
cp.start_replay([f])
|
||||||
|
assert f.request.http_version == "HTTP/1.1"
|
||||||
|
assert ":authority" not in f.request.headers
|
||||||
|
@ -9,7 +9,6 @@ import tornado.testing
|
|||||||
from tornado import httpclient
|
from tornado import httpclient
|
||||||
from tornado import websocket
|
from tornado import websocket
|
||||||
|
|
||||||
from mitmproxy import exceptions
|
|
||||||
from mitmproxy import options
|
from mitmproxy import options
|
||||||
from mitmproxy.test import tflow
|
from mitmproxy.test import tflow
|
||||||
from mitmproxy.tools.web import app
|
from mitmproxy.tools.web import app
|
||||||
|
Loading…
Reference in New Issue
Block a user