diff options
author | Yury Selivanov <yury@magic.io> | 2018-05-28 14:31:28 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-28 14:31:28 -0400 |
commit | dbf102271fcc316f353c7e0a283811b661d128f2 (patch) | |
tree | 8807a0305490616dc3b480fae5e50e98c80b4fa8 /Lib/test/test_asyncio/test_events.py | |
parent | e549c4be5fb010f5faf12236af8faa720a1429be (diff) | |
download | cpython-dbf102271fcc316f353c7e0a283811b661d128f2.tar.gz cpython-dbf102271fcc316f353c7e0a283811b661d128f2.zip |
bpo-33654: Support BufferedProtocol in set_protocol() and start_tls() (GH-7130)
In this commit:
* Support BufferedProtocol in set_protocol() and start_tls()
* Fix proactor to cancel readers reliably
* Update tests to be compatible with OpenSSL 1.1.1
* Clarify BufferedProtocol docs
* Bump TLS tests timeouts to 60 seconds; eliminate possible race from start_serving
* Rewrite test_start_tls_server_1
Diffstat (limited to 'Lib/test/test_asyncio/test_events.py')
-rw-r--r-- | Lib/test/test_asyncio/test_events.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_asyncio/test_events.py b/Lib/test/test_asyncio/test_events.py index 64d726d16d1..d7b0a665a0a 100644 --- a/Lib/test/test_asyncio/test_events.py +++ b/Lib/test/test_asyncio/test_events.py @@ -2095,7 +2095,7 @@ class SubprocessTestsMixin: class SendfileBase: - DATA = b"12345abcde" * 16 * 1024 # 160 KiB + DATA = b"12345abcde" * 64 * 1024 # 64 KiB (don't use smaller sizes) @classmethod def setUpClass(cls): @@ -2452,7 +2452,7 @@ class SendfileMixin(SendfileBase): self.assertEqual(srv_proto.data, self.DATA) self.assertEqual(self.file.tell(), len(self.DATA)) - def test_sendfile_close_peer_in_middle_of_receiving(self): + def test_sendfile_close_peer_in_the_middle_of_receiving(self): srv_proto, cli_proto = self.prepare_sendfile(close_after=1024) with self.assertRaises(ConnectionError): self.run_loop( @@ -2465,7 +2465,7 @@ class SendfileMixin(SendfileBase): self.file.tell()) self.assertTrue(cli_proto.transport.is_closing()) - def test_sendfile_fallback_close_peer_in_middle_of_receiving(self): + def test_sendfile_fallback_close_peer_in_the_middle_of_receiving(self): def sendfile_native(transp, file, offset, count): # to raise SendfileNotAvailableError |