|
3 | 3 | from msgpack import Unpacker, packb, OutOfData, ExtType
|
4 | 4 | from pytest import raises, mark
|
5 | 5 |
|
| 6 | +try: |
| 7 | + from itertools import izip as zip |
| 8 | +except ImportError: |
| 9 | + pass |
| 10 | + |
6 | 11 |
|
7 | 12 | def test_unpack_array_header_from_file():
|
8 | 13 | f = BytesIO(packb([1, 2, 3, 4]))
|
@@ -64,7 +69,31 @@ def _hook(self, code, data):
|
64 | 69 | assert unpacker.unpack() == {"a": ExtType(2, b"321")}
|
65 | 70 |
|
66 | 71 |
|
| 72 | +def test_unpacker_tell(): |
| 73 | + objects = 1, 2, u"abc", u"def", u"ghi" |
| 74 | + packed = b"\x01\x02\xa3abc\xa3def\xa3ghi" |
| 75 | + positions = 1, 2, 6, 10, 14 |
| 76 | + unpacker = Unpacker(BytesIO(packed)) |
| 77 | + for obj, unp, pos in zip(objects, unpacker, positions): |
| 78 | + assert obj == unp |
| 79 | + assert pos == unpacker.tell() |
| 80 | + |
| 81 | + |
| 82 | +def test_unpacker_tell_read_bytes(): |
| 83 | + objects = 1, u"abc", u"ghi" |
| 84 | + packed = b"\x01\x02\xa3abc\xa3def\xa3ghi" |
| 85 | + raw_data = b"\x02", b"\xa3def", b"" |
| 86 | + lenghts = 1, 4, 999 |
| 87 | + positions = 1, 6, 14 |
| 88 | + unpacker = Unpacker(BytesIO(packed)) |
| 89 | + for obj, unp, pos, n, raw in zip(objects, unpacker, positions, lenghts, raw_data): |
| 90 | + assert obj == unp |
| 91 | + assert pos == unpacker.tell() |
| 92 | + assert unpacker.read_bytes(n) == raw |
| 93 | + |
| 94 | + |
67 | 95 | if __name__ == "__main__":
|
68 | 96 | test_unpack_array_header_from_file()
|
69 | 97 | test_unpacker_hook_refcnt()
|
70 | 98 | test_unpacker_ext_hook()
|
| 99 | + test_unpacker_tell() |
0 commit comments