diff options
| author | Bernhard Boser <boser@berkeley.edu> | 2021-01-18 11:26:39 -0800 |
|---|---|---|
| committer | Bernhard Boser <boser@berkeley.edu> | 2021-01-18 11:26:39 -0800 |
| commit | e27dd26dc72b3603c0f50796d7747fb4858af113 (patch) | |
| tree | 4d139685ae771e0854e2d9187d496253106a4572 /tests | |
| parent | 1e88b9411d54e5c15a27d4a9c2748c264cb9522f (diff) | |
| parent | 6a76b60027aa163756aace389a5c9203594759ce (diff) | |
make translate, BEWARE adds the 'world'
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/extmod/umsgpack_pack.py | 30 | ||||
| -rw-r--r-- | tests/extmod/umsgpack_pack.py.ext | 5 |
2 files changed, 35 insertions, 0 deletions
diff --git a/tests/extmod/umsgpack_pack.py b/tests/extmod/umsgpack_pack.py new file mode 100644 index 000000000..d9f0005e1 --- /dev/null +++ b/tests/extmod/umsgpack_pack.py @@ -0,0 +1,30 @@ +try: + from uio import BytesIO + import umsgpack as msgpack +except: + try: + from io import BytesIO + import msgpack + except ImportError: + print("SKIP") + raise SystemExit + +b = BytesIO() +msgpack.pack(False, s) +print(b.getvalue()) + +b = BytesIO() +msgpack.pack({"a": (-1, 0, 2, [3, None], 128)}, b) +print(b.getvalue()) + +# pack to a small-int not allowed +try: + msgpack.pack(123, 1) +except (AttributeError, OSError): # CPython and uPy have different errors + print('Exception') + +# pack to an object not allowed +try: + msgpack.pack(123, {}) +except (AttributeError, OSError): # CPython and uPy have different errors + print('Exception') diff --git a/tests/extmod/umsgpack_pack.py.ext b/tests/extmod/umsgpack_pack.py.ext new file mode 100644 index 000000000..2f966be06 --- /dev/null +++ b/tests/extmod/umsgpack_pack.py.ext @@ -0,0 +1,5 @@ +b'\xc2' +b'\x82\xa1a\x96\xff\x00\x02\x92\x03\xc0\xd1\x00\x80\xc4\x07abcdefg\xa1b\xd4\x05x' +Exception ExtType +Exception to int +Exception to object |
