mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2025-01-30 23:09:44 +00:00
rename test file
This commit is contained in:
parent
2964a607ad
commit
4de9cbb61e
@ -6,33 +6,6 @@ from netlib.tutils import treq, raises
|
||||
from . import tutils, tservers
|
||||
|
||||
|
||||
class TestHTTPResponse:
|
||||
|
||||
def test_read_from_stringio(self):
|
||||
s = (
|
||||
b"HTTP/1.1 200 OK\r\n"
|
||||
b"Content-Length: 7\r\n"
|
||||
b"\r\n"
|
||||
b"content\r\n"
|
||||
b"HTTP/1.1 204 OK\r\n"
|
||||
b"\r\n"
|
||||
)
|
||||
rfile = BytesIO(s)
|
||||
r = http1.read_response(rfile, treq())
|
||||
assert r.status_code == 200
|
||||
assert r.content == b"content"
|
||||
assert http1.read_response(rfile, treq()).status_code == 204
|
||||
|
||||
rfile = BytesIO(s)
|
||||
# HEAD must not have content by spec. We should leave it on the pipe.
|
||||
r = http1.read_response(rfile, treq(method=b"HEAD"))
|
||||
assert r.status_code == 200
|
||||
assert r.content == b""
|
||||
|
||||
with raises(HttpSyntaxException):
|
||||
http1.read_response(rfile, treq())
|
||||
|
||||
|
||||
class TestHTTPFlow(object):
|
||||
|
||||
def test_repr(self):
|
Loading…
Reference in New Issue
Block a user