Make 'none' synonymous to 'identity'

This commit is contained in:
Schamper 2016-09-06 17:00:08 +02:00
parent 85e1539d0a
commit 5728a1c900
2 changed files with 11 additions and 10 deletions

View File

@ -34,7 +34,7 @@ def decode(encoded, encoding, errors='strict'):
Raises:
ValueError, if decoding fails.
"""
if len(encoded) == 0 or encoding == "none":
if len(encoded) == 0:
return encoded
global _cache
@ -76,7 +76,7 @@ def encode(decoded, encoding, errors='strict'):
Raises:
ValueError, if encoding fails.
"""
if len(decoded) == 0 or encoding == "none":
if len(decoded) == 0:
return decoded
global _cache
@ -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,

View File

@ -4,18 +4,17 @@ 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")
def test_none():
assert b"string" == encoding.decode(b"string", "none")
assert b"string" == encoding.encode(b"string", "none")
@pytest.mark.parametrize("encoder", [
'gzip',
'br',