summaryrefslogtreecommitdiffstatshomepage
path: root/tests/multi_net/asyncio_tls_server_client_readline.py.exp
diff options
context:
space:
mode:
authorCarlosgg <carlosgilglez@gmail.com>2023-11-30 16:44:48 +0000
committerDamien George <damien@micropython.org>2023-12-14 12:20:19 +1100
commitbfd6ad94ff950a4b7e3a2125db1539c5e4ca333a (patch)
treed208c64df8939dec43f3576f033c87eb228d5537 /tests/multi_net/asyncio_tls_server_client_readline.py.exp
parentf33dfb966a1432281809e372b9d3803e7fd3cb2f (diff)
downloadmicropython-bfd6ad94ff950a4b7e3a2125db1539c5e4ca333a.tar.gz
micropython-bfd6ad94ff950a4b7e3a2125db1539c5e4ca333a.zip
extmod/asyncio: Add ssl support with SSLContext.
This adds asyncio ssl support with SSLContext and the corresponding tests in `tests/net_inet` and `tests/multi_net`. Note that not doing the handshake on connect will delegate the handshake to the following `mbedtls_ssl_read/write` calls. However if the handshake fails when a client certificate is required and not presented by the peer, it needs to be notified of this handshake error (otherwise it will hang until timeout if any). Finally at MicroPython side raise the proper mbedtls error code and message. Signed-off-by: Carlos Gil <carlosgilglez@gmail.com>
Diffstat (limited to 'tests/multi_net/asyncio_tls_server_client_readline.py.exp')
-rw-r--r--tests/multi_net/asyncio_tls_server_client_readline.py.exp10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/multi_net/asyncio_tls_server_client_readline.py.exp b/tests/multi_net/asyncio_tls_server_client_readline.py.exp
new file mode 100644
index 0000000000..4c93c5729a
--- /dev/null
+++ b/tests/multi_net/asyncio_tls_server_client_readline.py.exp
@@ -0,0 +1,10 @@
+--- instance0 ---
+server running
+echo: b'client data\n'
+echo: b'client data2\n'
+close
+done
+--- instance1 ---
+write: b'client data\nclient data2\n'
+read: b'client data\n'
+read: b'client data2\n'