aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_protocol_http.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_protocol_http.py')
-rw-r--r--test/test_protocol_http.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/test_protocol_http.py b/test/test_protocol_http.py
index 1f0386b4..59ba6b15 100644
--- a/test/test_protocol_http.py
+++ b/test/test_protocol_http.py
@@ -1,4 +1,3 @@
-import socket
from io import BytesIO
from netlib.exceptions import HttpSyntaxException
from netlib.http import http1
@@ -9,6 +8,7 @@ import tservers
class TestHTTPResponse:
+
def test_read_from_stringio(self):
s = (
b"HTTP/1.1 200 OK\r\n"
@@ -35,6 +35,7 @@ class TestHTTPResponse:
class TestHTTPFlow(object):
+
def test_repr(self):
f = tutils.tflow(resp=True, err=True)
assert repr(f)
@@ -58,6 +59,7 @@ class TestInvalidRequests(tservers.HTTPProxTest):
class TestExpectHeader(tservers.HTTPProxTest):
+
def test_simple(self):
client = TCPClient(("127.0.0.1", self.proxy.port))
client.connect()
@@ -84,7 +86,8 @@ class TestExpectHeader(tservers.HTTPProxTest):
class TestHeadContentLength(tservers.HTTPProxTest):
+
def test_head_content_length(self):
p = self.pathoc()
resp = p.request("""head:'%s/p/200:h"Content-Length"="42"'""" % self.server.urlbase)
- assert resp.headers["Content-Length"] == "42" \ No newline at end of file
+ assert resp.headers["Content-Length"] == "42"