diff options
| author | inada-n <inada-n@hornet.(none)> | 2009-07-13 14:40:02 +0900 |
|---|---|---|
| committer | inada-n <inada-n@hornet.(none)> | 2009-07-13 14:40:02 +0900 |
| commit | 63a507a123396191c0867ebfa09e9bdfd09b3da4 (patch) | |
| tree | d670bde34063d9ad7379d0eac1577bb4fb3d5e85 /python/test/test_sequnpack.py | |
| parent | 661f27348188d15e841467ececd75e27cd77980b (diff) | |
| parent | 294e3fe7ab01ef9273b364b0d3d9df4e9b275158 (diff) | |
| download | msgpack-python-63a507a123396191c0867ebfa09e9bdfd09b3da4.tar.gz | |
merge python binding from bzr.
Diffstat (limited to 'python/test/test_sequnpack.py')
| -rw-r--r-- | python/test/test_sequnpack.py | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/python/test/test_sequnpack.py b/python/test/test_sequnpack.py new file mode 100644 index 0000000..789ccd2 --- /dev/null +++ b/python/test/test_sequnpack.py @@ -0,0 +1,36 @@ +#!/usr/bin/env python +# coding: utf-8 + +from __future__ import unicode_literals, print_function + +from msgpack import Unpacker + +def test_foobar(): + unpacker = Unpacker(read_size=3) + unpacker.feed(b'foobar') + assert unpacker.unpack() == ord('f') + assert unpacker.unpack() == ord('o') + assert unpacker.unpack() == ord('o') + assert unpacker.unpack() == ord('b') + assert unpacker.unpack() == ord('a') + assert unpacker.unpack() == ord('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 == ord(e) + k += 1 + assert k == len(b'foobar') + +if __name__ == '__main__': + test_foobar() + |
