mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-22 07:08:10 +00:00
Test replay corner cases. Fix discovered bugs.
This commit is contained in:
parent
aab45078ad
commit
79af9e89c4
3
.gitignore
vendored
3
.gitignore
vendored
@ -8,5 +8,6 @@ MANIFEST
|
||||
*.swo
|
||||
mitmproxyc
|
||||
mitmdumpc
|
||||
netlib
|
||||
.coverage
|
||||
netlib
|
||||
libpathod
|
||||
|
@ -67,11 +67,9 @@ class RequestReplayThread(threading.Thread):
|
||||
self.flow.request, httpversion, code, msg, headers, content, server.cert
|
||||
)
|
||||
response._send(self.masterq)
|
||||
except (ProxyError, http.HttpError), v:
|
||||
err = flow.Error(self.flow.request, v.msg)
|
||||
except (ProxyError, http.HttpError, tcp.NetLibError), v:
|
||||
err = flow.Error(self.flow.request, str(v))
|
||||
err._send(self.masterq)
|
||||
except tcp.NetLibError, v:
|
||||
raise ProxyError(502, v)
|
||||
|
||||
|
||||
class ServerConnection(tcp.TCPClient):
|
||||
|
@ -30,6 +30,18 @@ class SanityMixin:
|
||||
rt.join()
|
||||
assert l.response.code == 305
|
||||
|
||||
# Disconnect error
|
||||
l.request.path = "/p/305:d0"
|
||||
rt = self.master.replay_request(l)
|
||||
rt.join()
|
||||
assert l.error
|
||||
|
||||
# Port error
|
||||
l.request.port = 1
|
||||
rt = self.master.replay_request(l)
|
||||
rt.join()
|
||||
assert l.error
|
||||
|
||||
|
||||
class TestHTTP(tutils.HTTPProxTest, SanityMixin):
|
||||
def test_invalid_http(self):
|
||||
|
Loading…
Reference in New Issue
Block a user