aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorThomas Kriechbaumer <thomas@kriechbaumer.name>2016-01-24 23:15:42 +0100
committerThomas Kriechbaumer <thomas@kriechbaumer.name>2016-02-04 09:52:03 +0100
commit4de9cbb61ee0bedd882518e72a1605ca999ccf97 (patch)
treed189a30cd211ee245952527bbad3e0a608ee3ced /test
parent2964a607ad927c01abb7596238f599ce7d546de8 (diff)
downloadmitmproxy-4de9cbb61ee0bedd882518e72a1605ca999ccf97.tar.gz
mitmproxy-4de9cbb61ee0bedd882518e72a1605ca999ccf97.tar.bz2
mitmproxy-4de9cbb61ee0bedd882518e72a1605ca999ccf97.zip
rename test file
Diffstat (limited to 'test')
-rw-r--r--test/test_protocol_http1.py (renamed from test/test_protocol_http.py)27
1 files changed, 0 insertions, 27 deletions
diff --git a/test/test_protocol_http.py b/test/test_protocol_http1.py
index 489be3f9..f5fe93a8 100644
--- a/test/test_protocol_http.py
+++ b/test/test_protocol_http1.py
@@ -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):