diff options
Diffstat (limited to 'test/mitmproxy/addons/test_clientplayback.py')
-rw-r--r-- | test/mitmproxy/addons/test_clientplayback.py | 72 |
1 files changed, 71 insertions, 1 deletions
diff --git a/test/mitmproxy/addons/test_clientplayback.py b/test/mitmproxy/addons/test_clientplayback.py index f172af83..0bb24e87 100644 --- a/test/mitmproxy/addons/test_clientplayback.py +++ b/test/mitmproxy/addons/test_clientplayback.py @@ -22,6 +22,76 @@ class MockThread(): class TestClientPlayback: + # @staticmethod + # def wait_until_not_live(flow): + # """ + # Race condition: We don't want to replay the flow while it is still live. + # """ + # s = time.time() + # while flow.live: + # time.sleep(0.001) + # if time.time() - s > 5: + # raise RuntimeError("Flow is live for too long.") + + # def test_replay(self): + # assert self.pathod("304").status_code == 304 + # assert len(self.master.state.flows) == 1 + # l = self.master.state.flows[-1] + # assert l.response.status_code == 304 + # 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 + # l.request.path = "/p/305:d0" + # rt = self.master.replay_request(l, block=True) + # assert rt + # if isinstance(self, tservers.HTTPUpstreamProxyTest): + # assert l.response.status_code == 502 + # else: + # assert l.error + + # # Port error + # l.request.port = 1 + # # In upstream mode, we get a 502 response from the upstream proxy server. + # # In upstream mode with ssl, the replay will fail as we cannot establish + # # SSL with the upstream proxy. + # rt = self.master.replay_request(l, block=True) + # assert rt + # if isinstance(self, tservers.HTTPUpstreamProxyTest): + # 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 + # with pytest.raises(ReplayException, match="request"): + # fm.replay_request(f) + + # f.intercepted = True + # with pytest.raises(ReplayException, match="intercepted"): + # fm.replay_request(f) + + # f.live = True + # with pytest.raises(ReplayException, match="live"): + # 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 + def test_playback(self): cp = clientplayback.ClientPlayback() with taddons.context(cp) as tctx: @@ -29,7 +99,7 @@ class TestClientPlayback: f = tflow.tflow(resp=True) cp.start_replay([f]) assert cp.count() == 1 - RP = "mitmproxy.proxy.protocol.http_replay.RequestReplayThread" + RP = "mitmproxy.addons.clientplayback.RequestReplayThread" with mock.patch(RP) as rp: assert not cp.current_thread cp.tick() |