aboutsummaryrefslogtreecommitdiffstats
path: root/mitmproxy/test/test_protocol_http1.py
blob: 13e0eabe7dbb7d3f0dcaab74a8650ca2c8f1ff97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
from netlib.http import http1
from netlib.tcp import TCPClient
from netlib.tutils import treq
from . import tutils, tservers


class TestHTTPFlow(object):

    def test_repr(self):
        f = tutils.tflow(resp=True, err=True)
        assert repr(f)


class TestInvalidRequests(tservers.HTTPProxTest):
    ssl = True

    def test_double_connect(self):
        p = self.pathoc()
        r = p.request("connect:'%s:%s'" % ("127.0.0.1", self.server2.port))
        assert r.status_code == 400
        assert "Invalid HTTP request form" in r.content

    def test_relative_request(self):
        p = self.pathoc_raw()
        p.connect()
        r = p.request("get:/p/200")
        assert r.status_code == 400
        assert "Invalid HTTP request form" in r.content


class TestExpectHeader(tservers.HTTPProxTest):

    def test_simple(self):
        client = TCPClient(("127.0.0.1", self.proxy.port))
        client.connect()

        # call pathod server, wait a second to complete the request
        client.wfile.write(
            b"POST http://localhost:%d/p/200 HTTP/1.1\r\n"
            b"Expect: 100-continue\r\n"
            b"Content-Length: 16\r\n"
            b"\r\n" % self.server.port
        )
        client.wfile.flush()

        assert client.rfile.readline() == "HTTP/1.1 100 Continue\r\n"
        assert client.rfile.readline() == "\r\n"

        client.wfile.write(b"0123456789abcdef\r\n")
        client.wfile.flush()

        resp = http1.read_response(client.rfile, treq())
        assert resp.status_code == 200

        client.finish()


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"