circuitpython/tests/extmod/ssl_cadata.py

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

19 lines
374 B
Python
Raw Permalink Normal View History

# Test ssl.wrap_socket() with cadata passed in.
try:
import io
import ssl
except ImportError:
print("SKIP")
raise SystemExit
# Invalid cadata.
try:
ssl.wrap_socket(io.BytesIO(), cadata=b"!")
except TypeError:
# "cadata" keyword argument is not supported by axtls.
print("SKIP")
raise SystemExit
except ValueError as er:
print(repr(er))