msgpack-python/test/test_extension.py

79 lines
2.6 KiB
Python
Raw Normal View History

import array
import msgpack
2013-10-20 20:28:32 +09:00
from msgpack import ExtType
2013-10-20 15:40:20 +09:00
def test_pack_ext_type():
def p(s):
packer = msgpack.Packer()
2013-10-20 15:40:20 +09:00
packer.pack_ext_type(0x42, s)
return packer.bytes()
2019-12-05 18:51:45 +09:00
assert p(b"A") == b"\xd4\x42A" # fixext 1
assert p(b"AB") == b"\xd5\x42AB" # fixext 2
assert p(b"ABCD") == b"\xd6\x42ABCD" # fixext 4
assert p(b"ABCDEFGH") == b"\xd7\x42ABCDEFGH" # fixext 8
assert p(b"A" * 16) == b"\xd8\x42" + b"A" * 16 # fixext 16
assert p(b"ABC") == b"\xc7\x03\x42ABC" # ext 8
assert p(b"A" * 0x0123) == b"\xc8\x01\x23\x42" + b"A" * 0x0123 # ext 16
assert p(b"A" * 0x00012345) == b"\xc9\x00\x01\x23\x45\x42" + b"A" * 0x00012345 # ext 32
2013-10-20 15:40:20 +09:00
2013-10-20 20:28:32 +09:00
def test_unpack_ext_type():
def check(b, expected):
assert msgpack.unpackb(b) == expected
2019-12-05 18:51:45 +09:00
check(b"\xd4\x42A", ExtType(0x42, b"A")) # fixext 1
check(b"\xd5\x42AB", ExtType(0x42, b"AB")) # fixext 2
check(b"\xd6\x42ABCD", ExtType(0x42, b"ABCD")) # fixext 4
check(b"\xd7\x42ABCDEFGH", ExtType(0x42, b"ABCDEFGH")) # fixext 8
check(b"\xd8\x42" + b"A" * 16, ExtType(0x42, b"A" * 16)) # fixext 16
check(b"\xc7\x03\x42ABC", ExtType(0x42, b"ABC")) # ext 8
check(b"\xc8\x01\x23\x42" + b"A" * 0x0123, ExtType(0x42, b"A" * 0x0123)) # ext 16
check(
b"\xc9\x00\x01\x23\x45\x42" + b"A" * 0x00012345,
ExtType(0x42, b"A" * 0x00012345),
) # ext 32
def test_extension_type():
2013-10-20 20:28:32 +09:00
def default(obj):
2019-12-05 18:51:45 +09:00
print("default called", obj)
2013-10-20 20:28:32 +09:00
if isinstance(obj, array.array):
2019-12-05 18:51:45 +09:00
typecode = 123 # application specific typecode
2019-01-25 20:52:57 +09:00
try:
data = obj.tobytes()
except AttributeError:
data = obj.tostring()
2013-10-20 20:28:32 +09:00
return ExtType(typecode, data)
raise TypeError(f"Unknown type object {obj!r}")
2013-10-20 20:28:32 +09:00
def ext_hook(code, data):
2019-12-05 18:51:45 +09:00
print("ext_hook called", code, data)
2013-10-20 20:28:32 +09:00
assert code == 123
2019-12-05 18:51:45 +09:00
obj = array.array("d")
obj.frombytes(data)
2013-10-20 20:28:32 +09:00
return obj
2019-12-05 18:51:45 +09:00
obj = [42, b"hello", array.array("d", [1.1, 2.2, 3.3])]
2013-10-20 20:28:32 +09:00
s = msgpack.packb(obj, default=default)
obj2 = msgpack.unpackb(s, ext_hook=ext_hook)
assert obj == obj2
2019-12-05 18:51:45 +09:00
def test_overriding_hooks():
def default(obj):
if isinstance(obj, int):
return {"__type__": "long", "__data__": str(obj)}
else:
return obj
obj = {"testval": 1823746192837461928374619}
refobj = {"testval": default(obj["testval"])}
refout = msgpack.packb(refobj)
assert isinstance(refout, (str, bytes))
testout = msgpack.packb(obj, default=default)
assert refout == testout