circuitpython/tests/extmod/ubinascii_unhexlify.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
595 B
Python
Raw Normal View History

try:
2017-02-15 01:56:22 +03:00
try:
import ubinascii as binascii
except ImportError:
import binascii
except ImportError:
2017-02-15 01:56:22 +03:00
print("SKIP")
raise SystemExit
for x in (
b"0001020304050607",
b"08090a0b0c0d0e0f",
b"7f80ff",
b"313233344142434461626364",
):
print(binascii.unhexlify(x))
# Unicode strings can be decoded
2021-03-15 19:27:36 +05:30
print(binascii.unhexlify("313233344142434461626364"))
try:
2021-03-15 19:27:36 +05:30
a = binascii.unhexlify(b"0") # odd buffer length
except ValueError:
2021-03-15 19:27:36 +05:30
print("ValueError")
try:
2021-03-15 19:27:36 +05:30
a = binascii.unhexlify(b"gg") # digit not hex
except ValueError:
2021-03-15 19:27:36 +05:30
print("ValueError")