diff options
author | Shadab Zafar <dufferzafar0@gmail.com> | 2016-06-15 13:45:35 +0530 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2016-06-16 17:08:06 -0700 |
commit | f399a5cd2971675c22a10e48ee9622fb3d86d41f (patch) | |
tree | ac70e78cfa8ee578e548f426cd50011d1fa6e0cf /test | |
parent | 4836f3f12b352ac63c8cb3e07209b19fb39b2d31 (diff) | |
download | mitmproxy-f399a5cd2971675c22a10e48ee9622fb3d86d41f.tar.gz mitmproxy-f399a5cd2971675c22a10e48ee9622fb3d86d41f.tar.bz2 mitmproxy-f399a5cd2971675c22a10e48ee9622fb3d86d41f.zip |
Py3: Fix tests by using byte literals
Diffstat (limited to 'test')
-rw-r--r-- | test/pathod/test_pathod.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/test/pathod/test_pathod.py b/test/pathod/test_pathod.py index ed4ef49f..bffd33e5 100644 --- a/test/pathod/test_pathod.py +++ b/test/pathod/test_pathod.py @@ -66,7 +66,7 @@ class TestCustomCert(tutils.DaemonTests): class TestSSLCN(tutils.DaemonTests): ssl = True ssloptions = dict( - cn="foo.com" + cn=b"foo.com" ) def test_connect(self): @@ -100,7 +100,7 @@ class TestNocraft(tutils.DaemonTests): def test_nocraft(self): r = self.get(r"200:b'\xf0'") assert r.status_code == 800 - assert "Crafting disabled" in r.content + assert b"Crafting disabled" in r.content class CommonTests(tutils.DaemonTests): @@ -137,7 +137,7 @@ class CommonTests(tutils.DaemonTests): def test_static(self): rsp = self.get("200:b<file") assert rsp.status_code == 200 - assert rsp.content.strip() == "testfile" + assert rsp.content.strip() == b"testfile" def test_anchor(self): rsp = self.getpath("/anchor/foo") @@ -148,7 +148,7 @@ class CommonTests(tutils.DaemonTests): with c.connect(): if self.ssl: c.convert_to_ssl() - c.wfile.write("foo\n\n\n") + c.wfile.write(b"foo\n\n\n") c.wfile.flush() l = self.d.last_log() assert l["type"] == "error" @@ -177,7 +177,7 @@ class CommonTests(tutils.DaemonTests): def test_source_access_denied(self): rsp = self.get("200:b</foo") assert rsp.status_code == 800 - assert "File access denied" in rsp.content + assert b"File access denied" in rsp.content def test_proxy(self): r, _ = self.pathoc([r"get:'http://foo.com/p/202':da"]) @@ -195,7 +195,7 @@ class CommonTests(tutils.DaemonTests): ["ws:/p/", "wf:f'wf:b\"test\"':pa,1"], ws_read_limit=1 ) - assert r[1].payload == "test" + assert r[1].payload == b"test" def test_websocket_frame_reflect_error(self): r, _ = self.pathoc( @@ -239,7 +239,7 @@ class TestDaemonSSL(CommonTests): c.rbufsize = 0 c.wbufsize = 0 with c.connect(): - c.wfile.write("\0\0\0\0") + c.wfile.write(b"\0\0\0\0") tutils.raises(TlsException, c.convert_to_ssl) l = self.d.last_log() assert l["type"] == "error" |