diff options
author | Aldo Cortesi <aldo@corte.si> | 2015-08-01 11:38:33 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@corte.si> | 2015-08-01 11:38:33 +1200 |
commit | c31b6c3c36f681d1dbc3ce11922741b7e1e41837 (patch) | |
tree | f63a0f56534d16437aaa5464cf585cac82f90985 /test/test_fuzzing.py | |
parent | cdc84f52d213cb2b2b2a06a17378ebe757908865 (diff) | |
parent | 4f38c6b90e239d192863dee271e267b498c72206 (diff) | |
download | mitmproxy-c31b6c3c36f681d1dbc3ce11922741b7e1e41837.tar.gz mitmproxy-c31b6c3c36f681d1dbc3ce11922741b7e1e41837.tar.bz2 mitmproxy-c31b6c3c36f681d1dbc3ce11922741b7e1e41837.zip |
Merge pull request #698 from Kriechi/http2-wip
[WIP] Protocol Refactoring for HTTP/2
Diffstat (limited to 'test/test_fuzzing.py')
-rw-r--r-- | test/test_fuzzing.py | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/test/test_fuzzing.py b/test/test_fuzzing.py index 5e5115c9..482495f3 100644 --- a/test/test_fuzzing.py +++ b/test/test_fuzzing.py @@ -27,12 +27,12 @@ class TestFuzzy(tservers.HTTPProxTest): p = self.pathoc() assert p.request(req % self.server.port).status_code == 400 - def test_invalid_upstream(self): - req = r"get:'http://localhost:%s/p/200:i10,\x27+\x27'" - p = self.pathoc() - assert p.request(req % self.server.port).status_code == 502 - - def test_upstream_disconnect(self): - req = r'200:d0' - p = self.pathod(req) - assert p.status_code == 502 + # def test_invalid_upstream(self): + # req = r"get:'http://localhost:%s/p/200:i10,\x27+\x27'" + # p = self.pathoc() + # assert p.request(req % self.server.port).status_code == 502 + + # def test_upstream_disconnect(self): + # req = r'200:d0' + # p = self.pathod(req) + # assert p.status_code == 502 |