2016-01-25 02:18:25 +09:00
|
|
|
from collections import namedtuple
|
2024-05-06 11:46:31 +09:00
|
|
|
|
|
|
|
from msgpack import ExtType, packb, unpackb
|
2016-01-25 02:18:25 +09:00
|
|
|
|
|
|
|
|
|
|
|
def test_namedtuple():
|
2019-12-05 18:51:45 +09:00
|
|
|
T = namedtuple("T", "foo bar")
|
|
|
|
|
2016-01-25 02:18:25 +09:00
|
|
|
def default(o):
|
|
|
|
if isinstance(o, T):
|
|
|
|
return dict(o._asdict())
|
2023-05-23 18:41:08 +02:00
|
|
|
raise TypeError(f"Unsupported type {type(o)}")
|
2019-12-05 18:51:45 +09:00
|
|
|
|
2016-01-25 02:18:25 +09:00
|
|
|
packed = packb(T(1, 42), strict_types=True, use_bin_type=True, default=default)
|
2018-01-12 19:22:36 +09:00
|
|
|
unpacked = unpackb(packed, raw=False)
|
2019-12-05 18:51:45 +09:00
|
|
|
assert unpacked == {"foo": 1, "bar": 42}
|
2017-09-30 08:23:55 +01:00
|
|
|
|
|
|
|
|
|
|
|
def test_tuple():
|
2019-12-05 18:51:45 +09:00
|
|
|
t = ("one", 2, b"three", (4,))
|
2017-09-30 08:23:55 +01:00
|
|
|
|
|
|
|
def default(o):
|
|
|
|
if isinstance(o, tuple):
|
2020-02-06 22:11:04 +09:00
|
|
|
return {"__type__": "tuple", "value": list(o)}
|
2023-05-23 18:41:08 +02:00
|
|
|
raise TypeError(f"Unsupported type {type(o)}")
|
2017-09-30 08:23:55 +01:00
|
|
|
|
|
|
|
def convert(o):
|
2019-12-05 18:51:45 +09:00
|
|
|
if o.get("__type__") == "tuple":
|
|
|
|
return tuple(o["value"])
|
2017-09-30 08:23:55 +01:00
|
|
|
return o
|
|
|
|
|
|
|
|
data = packb(t, strict_types=True, use_bin_type=True, default=default)
|
2018-01-12 19:22:36 +09:00
|
|
|
expected = unpackb(data, raw=False, object_hook=convert)
|
2017-09-30 08:23:55 +01:00
|
|
|
|
|
|
|
assert expected == t
|
|
|
|
|
|
|
|
|
|
|
|
def test_tuple_ext():
|
2019-12-05 18:51:45 +09:00
|
|
|
t = ("one", 2, b"three", (4,))
|
2017-09-30 08:23:55 +01:00
|
|
|
|
|
|
|
MSGPACK_EXT_TYPE_TUPLE = 0
|
|
|
|
|
|
|
|
def default(o):
|
|
|
|
if isinstance(o, tuple):
|
|
|
|
# Convert to list and pack
|
2023-05-23 18:41:08 +02:00
|
|
|
payload = packb(list(o), strict_types=True, use_bin_type=True, default=default)
|
2017-09-30 08:23:55 +01:00
|
|
|
return ExtType(MSGPACK_EXT_TYPE_TUPLE, payload)
|
|
|
|
raise TypeError(repr(o))
|
|
|
|
|
|
|
|
def convert(code, payload):
|
|
|
|
if code == MSGPACK_EXT_TYPE_TUPLE:
|
|
|
|
# Unpack and convert to tuple
|
2018-01-12 19:22:36 +09:00
|
|
|
return tuple(unpackb(payload, raw=False, ext_hook=convert))
|
2023-05-23 18:41:08 +02:00
|
|
|
raise ValueError(f"Unknown Ext code {code}")
|
2017-09-30 08:23:55 +01:00
|
|
|
|
|
|
|
data = packb(t, strict_types=True, use_bin_type=True, default=default)
|
2018-01-12 19:22:36 +09:00
|
|
|
expected = unpackb(data, raw=False, ext_hook=convert)
|
2017-09-30 08:23:55 +01:00
|
|
|
|
|
|
|
assert expected == t
|