mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
30 lines
929 B
Python
30 lines
929 B
Python
from libmproxy import encoding
|
|
import libpry
|
|
|
|
import cStringIO
|
|
|
|
class uidentity(libpry.AutoTree):
|
|
def test_simple(self):
|
|
assert "string" == encoding.decode("identity", "string")
|
|
assert "string" == encoding.encode("identity", "string")
|
|
|
|
def test_fallthrough(self):
|
|
assert None == encoding.decode("nonexistent encoding", "string")
|
|
|
|
class ugzip(libpry.AutoTree):
|
|
def test_simple(self):
|
|
assert "string" == encoding.decode("gzip", encoding.encode("gzip", "string"))
|
|
assert None == encoding.decode("gzip", "bogus")
|
|
|
|
class udeflate(libpry.AutoTree):
|
|
def test_simple(self):
|
|
assert "string" == encoding.decode("deflate", encoding.encode("deflate", "string"))
|
|
assert "string" == encoding.decode("deflate", encoding.encode("deflate", "string")[2:-4])
|
|
assert None == encoding.decode("deflate", "bogus")
|
|
|
|
tests = [
|
|
uidentity(),
|
|
ugzip(),
|
|
udeflate()
|
|
]
|