mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
Merge pull request #1531 from Schamper/encoding-patch
Fix decoding when content-encoding: none
This commit is contained in:
commit
7841d73cb2
@ -162,12 +162,14 @@ def encode_deflate(content):
|
||||
|
||||
|
||||
custom_decode = {
|
||||
"none": identity,
|
||||
"identity": identity,
|
||||
"gzip": decode_gzip,
|
||||
"deflate": decode_deflate,
|
||||
"br": decode_brotli,
|
||||
}
|
||||
custom_encode = {
|
||||
"none": identity,
|
||||
"identity": identity,
|
||||
"gzip": encode_gzip,
|
||||
"deflate": encode_deflate,
|
||||
|
@ -4,9 +4,13 @@ import pytest
|
||||
from netlib import encoding, tutils
|
||||
|
||||
|
||||
def test_identity():
|
||||
assert b"string" == encoding.decode(b"string", "identity")
|
||||
assert b"string" == encoding.encode(b"string", "identity")
|
||||
@pytest.mark.parametrize("encoder", [
|
||||
'identity',
|
||||
'none',
|
||||
])
|
||||
def test_identity(encoder):
|
||||
assert b"string" == encoding.decode(b"string", encoder)
|
||||
assert b"string" == encoding.encode(b"string", encoder)
|
||||
with tutils.raises(ValueError):
|
||||
encoding.encode(b"string", "nonexistent encoding")
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user