summaryrefslogtreecommitdiff
path: root/test/test_pack.py
diff options
context:
space:
mode:
authorInada Naoki <songofacandy@gmail.com>2019-01-25 20:52:57 +0900
committerInada Naoki <songofacandy@gmail.com>2019-01-25 20:52:57 +0900
commit464fe277e1165a5870d4edc040be9c9ac1c1df0c (patch)
tree8b31a4007c926dd44300825431363c9a1c2e0709 /test/test_pack.py
parent28b5f46a34933cc177aca333203d1344b5e3639a (diff)
downloadmsgpack-python-464fe277e1165a5870d4edc040be9c9ac1c1df0c.tar.gz
Remove pytest warnings
Diffstat (limited to 'test/test_pack.py')
-rw-r--r--test/test_pack.py23
1 files changed, 15 insertions, 8 deletions
diff --git a/test/test_pack.py b/test/test_pack.py
index 4608083..3658a97 100644
--- a/test/test_pack.py
+++ b/test/test_pack.py
@@ -2,13 +2,15 @@
# coding: utf-8
from __future__ import absolute_import, division, print_function, unicode_literals
+from collections import OrderedDict
+from io import BytesIO
import struct
+
+import pytest
from pytest import raises, xfail
from msgpack import packb, unpackb, Unpacker, Packer, pack
-from collections import OrderedDict
-from io import BytesIO
def check(data, use_list=False):
re = unpackb(packb(data), use_list=use_list)
@@ -47,7 +49,8 @@ def testPackUTF32(): # deprecated
"Русский текст",
]
for td in test_data:
- re = unpackb(packb(td, encoding='utf-32'), use_list=1, encoding='utf-32')
+ with pytest.deprecated_call():
+ re = unpackb(packb(td, encoding='utf-32'), use_list=1, encoding='utf-32')
assert re == td
except LookupError as e:
xfail(e)
@@ -67,19 +70,23 @@ def testPackByteArrays():
check(td)
def testIgnoreUnicodeErrors(): # deprecated
- re = unpackb(packb(b'abc\xeddef'), encoding='utf-8', unicode_errors='ignore', use_list=1)
+ with pytest.deprecated_call():
+ re = unpackb(packb(b'abc\xeddef'), encoding='utf-8', unicode_errors='ignore', use_list=1)
assert re == "abcdef"
def testStrictUnicodeUnpack():
- with raises(UnicodeDecodeError):
- unpackb(packb(b'abc\xeddef'), raw=False, use_list=1)
+ packed = packb(b'abc\xeddef')
+ with pytest.raises(UnicodeDecodeError):
+ unpackb(packed, raw=False, use_list=1)
def testStrictUnicodePack(): # deprecated
with raises(UnicodeEncodeError):
- packb("abc\xeddef", encoding='ascii', unicode_errors='strict')
+ with pytest.deprecated_call():
+ packb("abc\xeddef", encoding='ascii', unicode_errors='strict')
def testIgnoreErrorsPack(): # deprecated
- re = unpackb(packb("abcФФФdef", encoding='ascii', unicode_errors='ignore'), raw=False, use_list=1)
+ with pytest.deprecated_call():
+ re = unpackb(packb("abcФФФdef", encoding='ascii', unicode_errors='ignore'), raw=False, use_list=1)
assert re == "abcdef"
def testDecodeBinary():