summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonio Cuni <anto.cuni@gmail.com>2013-10-19 11:34:28 +0200
committerAntonio Cuni <anto.cuni@gmail.com>2013-10-19 11:34:28 +0200
commit985d4c1496d8c9186079ebc4e42aee319e67c385 (patch)
treee8603c6f8db5dc8b2dbf98ac2d63b6cb8f408baa
parentff858387d37d37ec4472f6b6ac7010d8f2b0744f (diff)
downloadmsgpack-python-985d4c1496d8c9186079ebc4e42aee319e67c385.tar.gz
add a test for unpacking extended types
-rw-r--r--test/test_extension.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/test_extension.py b/test/test_extension.py
index 9ec1153..96944a3 100644
--- a/test/test_extension.py
+++ b/test/test_extension.py
@@ -16,6 +16,28 @@ def test_pack_extended_type():
assert p('A'*0x0123) == '\xc8\x01\x23\x42' + 'A'*0x0123 # ext 16
assert p('A'*0x00012345) == '\xc9\x00\x01\x23\x45\x42' + 'A'*0x00012345 # ext 32
+def test_unpack_extended_type():
+ class MyUnpacker(msgpack.Unpacker):
+ def read_extended_type(self, typecode, data):
+ return (typecode, data)
+
+ def u(s):
+ unpacker = MyUnpacker()
+ unpacker.feed(s)
+ return unpacker.unpack_one()
+
+ assert u('\xd4\x42A') == (0x42, 'A') # fixext 1
+ assert u('\xd5\x42AB') == (0x42, 'AB') # fixext 2
+ assert u('\xd6\x42ABCD') == (0x42, 'ABCD') # fixext 4
+ assert u('\xd7\x42ABCDEFGH') == (0x42, 'ABCDEFGH') # fixext 8
+ assert u('\xd8\x42' + 'A'*16) == (0x42, 'A'*16) # fixext 16
+ assert u('\xc7\x03\x42ABC') == (0x42, 'ABC') # ext 8
+ assert (u('\xc8\x01\x23\x42' + 'A'*0x0123) ==
+ (0x42, 'A'*0x0123)) # ext 16
+ assert (u('\xc9\x00\x01\x23\x45\x42' + 'A'*0x00012345) ==
+ (0x42, 'A'*0x00012345)) # ext 32
+
+
def test_extension_type():
class MyPacker(msgpack.Packer):
def handle_unknown_type(self, obj):