summaryrefslogtreecommitdiff
path: root/test3/test_sequnpack.py
diff options
context:
space:
mode:
authorINADA Naoki <songofacandy@gmail.com>2010-09-02 02:16:28 +0900
committerINADA Naoki <songofacandy@gmail.com>2010-09-02 02:16:28 +0900
commit039542ebcb8ca923c4414a414ecd62df43ff3f24 (patch)
treef83d588c3b227b1f55874bbd63d3e68c19799b26 /test3/test_sequnpack.py
parent1e8eeb8ebed50e8d39c69be653df06a10730631e (diff)
downloadmsgpack-python-039542ebcb8ca923c4414a414ecd62df43ff3f24.tar.gz
python: Add test for python3 and fix found problems.
Diffstat (limited to 'test3/test_sequnpack.py')
-rw-r--r--test3/test_sequnpack.py36
1 files changed, 36 insertions, 0 deletions
diff --git a/test3/test_sequnpack.py b/test3/test_sequnpack.py
new file mode 100644
index 0000000..5fd377c
--- /dev/null
+++ b/test3/test_sequnpack.py
@@ -0,0 +1,36 @@
+#!/usr/bin/env python
+# coding: utf-8
+
+
+
+from msgpack import Unpacker
+
+def test_foobar():
+ unpacker = Unpacker(read_size=3)
+ unpacker.feed(b'foobar')
+ assert unpacker.unpack() == ord(b'f')
+ assert unpacker.unpack() == ord(b'o')
+ assert unpacker.unpack() == ord(b'o')
+ assert unpacker.unpack() == ord(b'b')
+ assert unpacker.unpack() == ord(b'a')
+ assert unpacker.unpack() == ord(b'r')
+ try:
+ o = unpacker.unpack()
+ print(("Oops!", o))
+ assert 0
+ except StopIteration:
+ assert 1
+ else:
+ assert 0
+ unpacker.feed(b'foo')
+ unpacker.feed(b'bar')
+
+ k = 0
+ for o, e in zip(unpacker, b'foobarbaz'):
+ assert o == e
+ k += 1
+ assert k == len(b'foobar')
+
+if __name__ == '__main__':
+ test_foobar()
+