diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-09-08 13:12:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-08 13:12:29 (GMT) |
commit | c9dc2bc0de367308fbac1ab01a3e9ccb8cd6f5ba (patch) | |
tree | 963d03aaec3dc64e4460fb7afbdde0a2dcadf54e /Lib/test/test_asyncio/test_sslproto.py | |
parent | 579d78227627abf7edca0637de167e27946dc276 (diff) | |
download | cpython-c9dc2bc0de367308fbac1ab01a3e9ccb8cd6f5ba.zip cpython-c9dc2bc0de367308fbac1ab01a3e9ccb8cd6f5ba.tar.gz cpython-c9dc2bc0de367308fbac1ab01a3e9ccb8cd6f5ba.tar.bz2 |
[3.12] gh-109015: Add test.support.socket_helper.tcp_blackhole() (GH-109016) (#109041)
gh-109015: Add test.support.socket_helper.tcp_blackhole() (GH-109016)
Skip test_asyncio, test_imaplib and test_socket tests if FreeBSD TCP
blackhole is enabled (net.inet.tcp.blackhole=2).
(cherry picked from commit a52a3509770f29f940cda9307704908949912276)
Co-authored-by: Victor Stinner <vstinner@python.org>
Diffstat (limited to 'Lib/test/test_asyncio/test_sslproto.py')
-rw-r--r-- | Lib/test/test_asyncio/test_sslproto.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_asyncio/test_sslproto.py b/Lib/test/test_asyncio/test_sslproto.py index 52a45f1..37d0153 100644 --- a/Lib/test/test_asyncio/test_sslproto.py +++ b/Lib/test/test_asyncio/test_sslproto.py @@ -5,6 +5,7 @@ import socket import unittest import weakref from test import support +from test.support import socket_helper from unittest import mock try: import ssl @@ -350,6 +351,7 @@ class BaseStartTLS(func_tests.FunctionalTestCaseMixin): support.gc_collect() self.assertIsNone(client_context()) + @socket_helper.skip_if_tcp_blackhole def test_start_tls_client_buf_proto_1(self): HELLO_MSG = b'1' * self.PAYLOAD_SIZE @@ -502,6 +504,7 @@ class BaseStartTLS(func_tests.FunctionalTestCaseMixin): asyncio.wait_for(client(srv.addr), timeout=support.SHORT_TIMEOUT)) + @socket_helper.skip_if_tcp_blackhole def test_start_tls_server_1(self): HELLO_MSG = b'1' * self.PAYLOAD_SIZE ANSWER = b'answer' |