| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | """Tests for unix_events.py.""" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-16 19:59:34 +02:00
										 |  |  | import contextlib | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | import errno | 
					
						
							|  |  |  | import io | 
					
						
							| 
									
										
										
										
											2022-11-27 11:24:48 +05:30
										 |  |  | import multiprocessing | 
					
						
							| 
									
										
										
										
											2023-10-04 11:19:08 +02:00
										 |  |  | from multiprocessing.util import _cleanup_tests as multiprocessing_cleanup_tests | 
					
						
							| 
									
										
										
										
											2013-11-04 15:50:46 -08:00
										 |  |  | import os | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | import signal | 
					
						
							| 
									
										
										
										
											2014-02-18 12:15:06 -05:00
										 |  |  | import socket | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | import stat | 
					
						
							|  |  |  | import sys | 
					
						
							| 
									
										
										
										
											2013-11-04 15:50:46 -08:00
										 |  |  | import threading | 
					
						
							| 
									
										
										
										
											2023-09-21 23:20:29 +02:00
										 |  |  | import time | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | import unittest | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  | from unittest import mock | 
					
						
							| 
									
										
										
										
											2022-10-09 02:22:19 +05:30
										 |  |  | import warnings | 
					
						
							| 
									
										
										
										
											2023-10-04 11:19:08 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-21 23:20:29 +02:00
										 |  |  | from test import support | 
					
						
							| 
									
										
										
										
											2020-06-25 20:15:40 +08:00
										 |  |  | from test.support import os_helper | 
					
						
							| 
									
										
										
										
											2020-04-25 10:06:29 +03:00
										 |  |  | from test.support import socket_helper | 
					
						
							| 
									
										
										
										
											2022-11-27 11:24:48 +05:30
										 |  |  | from test.support import wait_process | 
					
						
							|  |  |  | from test.support import hashlib_helper | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-17 14:23:17 -07:00
										 |  |  | if sys.platform == 'win32': | 
					
						
							|  |  |  |     raise unittest.SkipTest('UNIX only') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-25 15:32:06 +01:00
										 |  |  | import asyncio | 
					
						
							|  |  |  | from asyncio import log | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | from asyncio import unix_events | 
					
						
							| 
									
										
										
										
											2017-12-11 10:04:40 -05:00
										 |  |  | from test.test_asyncio import utils as test_utils | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-10 14:57:20 +02:00
										 |  |  | def tearDownModule(): | 
					
						
							| 
									
										
										
										
											2024-12-18 11:35:29 +05:30
										 |  |  |     asyncio._set_event_loop_policy(None) | 
					
						
							| 
									
										
										
										
											2022-02-10 14:57:20 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  | MOCK_ANY = mock.ANY | 
					
						
							| 
									
										
										
										
											2014-02-18 18:02:19 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-16 12:11:24 +01:00
										 |  |  | def EXITCODE(exitcode): | 
					
						
							|  |  |  |     return 32768 + exitcode | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def SIGNAL(signum): | 
					
						
							| 
									
										
										
										
											2021-12-20 12:23:05 +02:00
										 |  |  |     if not 1 <= signum <= 68: | 
					
						
							|  |  |  |         raise AssertionError(f'invalid signum {signum}') | 
					
						
							| 
									
										
										
										
											2020-12-16 12:11:24 +01:00
										 |  |  |     return 32768 - signum | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  | def close_pipe_transport(transport): | 
					
						
							|  |  |  |     # Don't call transport.close() because the event loop and the selector | 
					
						
							|  |  |  |     # are mocked | 
					
						
							|  |  |  |     if transport._pipe is None: | 
					
						
							|  |  |  |         return | 
					
						
							|  |  |  |     transport._pipe.close() | 
					
						
							|  |  |  |     transport._pipe = None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | @unittest.skipUnless(signal, 'Signals are not supported') | 
					
						
							| 
									
										
										
										
											2014-06-18 01:36:32 +02:00
										 |  |  | class SelectorEventLoopSignalTests(test_utils.TestCase): | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def setUp(self): | 
					
						
							| 
									
										
										
										
											2016-11-04 14:29:28 -04:00
										 |  |  |         super().setUp() | 
					
						
							| 
									
										
										
										
											2014-01-25 15:32:06 +01:00
										 |  |  |         self.loop = asyncio.SelectorEventLoop() | 
					
						
							| 
									
										
										
										
											2014-06-18 01:36:32 +02:00
										 |  |  |         self.set_event_loop(self.loop) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def test_check_signal(self): | 
					
						
							|  |  |  |         self.assertRaises( | 
					
						
							|  |  |  |             TypeError, self.loop._check_signal, '1') | 
					
						
							|  |  |  |         self.assertRaises( | 
					
						
							|  |  |  |             ValueError, self.loop._check_signal, signal.NSIG + 1) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_handle_signal_no_handler(self): | 
					
						
							| 
									
										
										
										
											2014-07-17 22:43:40 +02:00
										 |  |  |         self.loop._handle_signal(signal.NSIG + 1) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def test_handle_signal_cancelled_handler(self): | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |         h = asyncio.Handle(mock.Mock(), (), | 
					
						
							|  |  |  |                            loop=mock.Mock()) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         h.cancel() | 
					
						
							|  |  |  |         self.loop._signal_handlers[signal.NSIG + 1] = h | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |         self.loop.remove_signal_handler = mock.Mock() | 
					
						
							| 
									
										
										
										
											2014-07-17 22:43:40 +02:00
										 |  |  |         self.loop._handle_signal(signal.NSIG + 1) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         self.loop.remove_signal_handler.assert_called_with(signal.NSIG + 1) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |     @mock.patch('asyncio.unix_events.signal') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |     def test_add_signal_handler_setup_error(self, m_signal): | 
					
						
							|  |  |  |         m_signal.NSIG = signal.NSIG | 
					
						
							| 
									
										
										
										
											2018-05-04 13:00:50 +02:00
										 |  |  |         m_signal.valid_signals = signal.valid_signals | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         m_signal.set_wakeup_fd.side_effect = ValueError | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.assertRaises( | 
					
						
							|  |  |  |             RuntimeError, | 
					
						
							|  |  |  |             self.loop.add_signal_handler, | 
					
						
							|  |  |  |             signal.SIGINT, lambda: True) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-14 11:45:47 -08:00
										 |  |  |     @mock.patch('asyncio.unix_events.signal') | 
					
						
							|  |  |  |     def test_add_signal_handler_coroutine_error(self, m_signal): | 
					
						
							| 
									
										
										
										
											2014-11-20 15:03:52 +01:00
										 |  |  |         m_signal.NSIG = signal.NSIG | 
					
						
							| 
									
										
										
										
											2014-11-14 11:45:47 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-09 00:23:48 +02:00
										 |  |  |         async def simple_coroutine(): | 
					
						
							|  |  |  |             pass | 
					
						
							| 
									
										
										
										
											2014-11-14 11:45:47 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-20 15:03:52 +01:00
										 |  |  |         # callback must not be a coroutine function | 
					
						
							|  |  |  |         coro_func = simple_coroutine | 
					
						
							|  |  |  |         coro_obj = coro_func() | 
					
						
							|  |  |  |         self.addCleanup(coro_obj.close) | 
					
						
							|  |  |  |         for func in (coro_func, coro_obj): | 
					
						
							|  |  |  |             self.assertRaisesRegex( | 
					
						
							|  |  |  |                 TypeError, 'coroutines cannot be used with add_signal_handler', | 
					
						
							|  |  |  |                 self.loop.add_signal_handler, | 
					
						
							|  |  |  |                 signal.SIGINT, func) | 
					
						
							| 
									
										
										
										
											2014-11-14 11:45:47 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |     @mock.patch('asyncio.unix_events.signal') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |     def test_add_signal_handler(self, m_signal): | 
					
						
							|  |  |  |         m_signal.NSIG = signal.NSIG | 
					
						
							| 
									
										
										
										
											2018-05-04 13:00:50 +02:00
										 |  |  |         m_signal.valid_signals = signal.valid_signals | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         cb = lambda: True | 
					
						
							|  |  |  |         self.loop.add_signal_handler(signal.SIGHUP, cb) | 
					
						
							|  |  |  |         h = self.loop._signal_handlers.get(signal.SIGHUP) | 
					
						
							| 
									
										
										
										
											2014-01-25 15:32:06 +01:00
										 |  |  |         self.assertIsInstance(h, asyncio.Handle) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         self.assertEqual(h._callback, cb) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |     @mock.patch('asyncio.unix_events.signal') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |     def test_add_signal_handler_install_error(self, m_signal): | 
					
						
							|  |  |  |         m_signal.NSIG = signal.NSIG | 
					
						
							| 
									
										
										
										
											2018-05-04 13:00:50 +02:00
										 |  |  |         m_signal.valid_signals = signal.valid_signals | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         def set_wakeup_fd(fd): | 
					
						
							|  |  |  |             if fd == -1: | 
					
						
							|  |  |  |                 raise ValueError() | 
					
						
							|  |  |  |         m_signal.set_wakeup_fd = set_wakeup_fd | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         class Err(OSError): | 
					
						
							|  |  |  |             errno = errno.EFAULT | 
					
						
							|  |  |  |         m_signal.signal.side_effect = Err | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.assertRaises( | 
					
						
							|  |  |  |             Err, | 
					
						
							|  |  |  |             self.loop.add_signal_handler, | 
					
						
							|  |  |  |             signal.SIGINT, lambda: True) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |     @mock.patch('asyncio.unix_events.signal') | 
					
						
							|  |  |  |     @mock.patch('asyncio.base_events.logger') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |     def test_add_signal_handler_install_error2(self, m_logging, m_signal): | 
					
						
							|  |  |  |         m_signal.NSIG = signal.NSIG | 
					
						
							| 
									
										
										
										
											2018-05-04 13:00:50 +02:00
										 |  |  |         m_signal.valid_signals = signal.valid_signals | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         class Err(OSError): | 
					
						
							|  |  |  |             errno = errno.EINVAL | 
					
						
							|  |  |  |         m_signal.signal.side_effect = Err | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.loop._signal_handlers[signal.SIGHUP] = lambda: True | 
					
						
							|  |  |  |         self.assertRaises( | 
					
						
							|  |  |  |             RuntimeError, | 
					
						
							|  |  |  |             self.loop.add_signal_handler, | 
					
						
							|  |  |  |             signal.SIGINT, lambda: True) | 
					
						
							|  |  |  |         self.assertFalse(m_logging.info.called) | 
					
						
							|  |  |  |         self.assertEqual(1, m_signal.set_wakeup_fd.call_count) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |     @mock.patch('asyncio.unix_events.signal') | 
					
						
							|  |  |  |     @mock.patch('asyncio.base_events.logger') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |     def test_add_signal_handler_install_error3(self, m_logging, m_signal): | 
					
						
							|  |  |  |         class Err(OSError): | 
					
						
							|  |  |  |             errno = errno.EINVAL | 
					
						
							|  |  |  |         m_signal.signal.side_effect = Err | 
					
						
							|  |  |  |         m_signal.NSIG = signal.NSIG | 
					
						
							| 
									
										
										
										
											2018-05-04 13:00:50 +02:00
										 |  |  |         m_signal.valid_signals = signal.valid_signals | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         self.assertRaises( | 
					
						
							|  |  |  |             RuntimeError, | 
					
						
							|  |  |  |             self.loop.add_signal_handler, | 
					
						
							|  |  |  |             signal.SIGINT, lambda: True) | 
					
						
							|  |  |  |         self.assertFalse(m_logging.info.called) | 
					
						
							|  |  |  |         self.assertEqual(2, m_signal.set_wakeup_fd.call_count) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |     @mock.patch('asyncio.unix_events.signal') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |     def test_remove_signal_handler(self, m_signal): | 
					
						
							|  |  |  |         m_signal.NSIG = signal.NSIG | 
					
						
							| 
									
										
										
										
											2018-05-04 13:00:50 +02:00
										 |  |  |         m_signal.valid_signals = signal.valid_signals | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         self.loop.add_signal_handler(signal.SIGHUP, lambda: True) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.assertTrue( | 
					
						
							|  |  |  |             self.loop.remove_signal_handler(signal.SIGHUP)) | 
					
						
							|  |  |  |         self.assertTrue(m_signal.set_wakeup_fd.called) | 
					
						
							|  |  |  |         self.assertTrue(m_signal.signal.called) | 
					
						
							|  |  |  |         self.assertEqual( | 
					
						
							|  |  |  |             (signal.SIGHUP, m_signal.SIG_DFL), m_signal.signal.call_args[0]) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |     @mock.patch('asyncio.unix_events.signal') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |     def test_remove_signal_handler_2(self, m_signal): | 
					
						
							|  |  |  |         m_signal.NSIG = signal.NSIG | 
					
						
							|  |  |  |         m_signal.SIGINT = signal.SIGINT | 
					
						
							| 
									
										
										
										
											2018-05-04 13:00:50 +02:00
										 |  |  |         m_signal.valid_signals = signal.valid_signals | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         self.loop.add_signal_handler(signal.SIGINT, lambda: True) | 
					
						
							|  |  |  |         self.loop._signal_handlers[signal.SIGHUP] = object() | 
					
						
							|  |  |  |         m_signal.set_wakeup_fd.reset_mock() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.assertTrue( | 
					
						
							|  |  |  |             self.loop.remove_signal_handler(signal.SIGINT)) | 
					
						
							|  |  |  |         self.assertFalse(m_signal.set_wakeup_fd.called) | 
					
						
							|  |  |  |         self.assertTrue(m_signal.signal.called) | 
					
						
							|  |  |  |         self.assertEqual( | 
					
						
							|  |  |  |             (signal.SIGINT, m_signal.default_int_handler), | 
					
						
							|  |  |  |             m_signal.signal.call_args[0]) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |     @mock.patch('asyncio.unix_events.signal') | 
					
						
							|  |  |  |     @mock.patch('asyncio.base_events.logger') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |     def test_remove_signal_handler_cleanup_error(self, m_logging, m_signal): | 
					
						
							|  |  |  |         m_signal.NSIG = signal.NSIG | 
					
						
							| 
									
										
										
										
											2018-05-04 13:00:50 +02:00
										 |  |  |         m_signal.valid_signals = signal.valid_signals | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         self.loop.add_signal_handler(signal.SIGHUP, lambda: True) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         m_signal.set_wakeup_fd.side_effect = ValueError | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.loop.remove_signal_handler(signal.SIGHUP) | 
					
						
							|  |  |  |         self.assertTrue(m_logging.info) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |     @mock.patch('asyncio.unix_events.signal') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |     def test_remove_signal_handler_error(self, m_signal): | 
					
						
							|  |  |  |         m_signal.NSIG = signal.NSIG | 
					
						
							| 
									
										
										
										
											2018-05-04 13:00:50 +02:00
										 |  |  |         m_signal.valid_signals = signal.valid_signals | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         self.loop.add_signal_handler(signal.SIGHUP, lambda: True) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         m_signal.signal.side_effect = OSError | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.assertRaises( | 
					
						
							|  |  |  |             OSError, self.loop.remove_signal_handler, signal.SIGHUP) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |     @mock.patch('asyncio.unix_events.signal') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |     def test_remove_signal_handler_error2(self, m_signal): | 
					
						
							|  |  |  |         m_signal.NSIG = signal.NSIG | 
					
						
							| 
									
										
										
										
											2018-05-04 13:00:50 +02:00
										 |  |  |         m_signal.valid_signals = signal.valid_signals | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         self.loop.add_signal_handler(signal.SIGHUP, lambda: True) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         class Err(OSError): | 
					
						
							|  |  |  |             errno = errno.EINVAL | 
					
						
							|  |  |  |         m_signal.signal.side_effect = Err | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.assertRaises( | 
					
						
							|  |  |  |             RuntimeError, self.loop.remove_signal_handler, signal.SIGHUP) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |     @mock.patch('asyncio.unix_events.signal') | 
					
						
							| 
									
										
										
										
											2013-11-06 20:25:50 -08:00
										 |  |  |     def test_close(self, m_signal): | 
					
						
							|  |  |  |         m_signal.NSIG = signal.NSIG | 
					
						
							| 
									
										
										
										
											2018-05-04 13:00:50 +02:00
										 |  |  |         m_signal.valid_signals = signal.valid_signals | 
					
						
							| 
									
										
										
										
											2013-11-06 20:25:50 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         self.loop.add_signal_handler(signal.SIGHUP, lambda: True) | 
					
						
							|  |  |  |         self.loop.add_signal_handler(signal.SIGCHLD, lambda: True) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.assertEqual(len(self.loop._signal_handlers), 2) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         m_signal.set_wakeup_fd.reset_mock() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.loop.close() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.assertEqual(len(self.loop._signal_handlers), 0) | 
					
						
							|  |  |  |         m_signal.set_wakeup_fd.assert_called_once_with(-1) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-26 11:53:38 +02:00
										 |  |  |     @mock.patch('asyncio.unix_events.sys') | 
					
						
							|  |  |  |     @mock.patch('asyncio.unix_events.signal') | 
					
						
							|  |  |  |     def test_close_on_finalizing(self, m_signal, m_sys): | 
					
						
							|  |  |  |         m_signal.NSIG = signal.NSIG | 
					
						
							| 
									
										
										
										
											2018-05-04 13:00:50 +02:00
										 |  |  |         m_signal.valid_signals = signal.valid_signals | 
					
						
							| 
									
										
										
										
											2017-12-26 11:53:38 +02:00
										 |  |  |         self.loop.add_signal_handler(signal.SIGHUP, lambda: True) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.assertEqual(len(self.loop._signal_handlers), 1) | 
					
						
							|  |  |  |         m_sys.is_finalizing.return_value = True | 
					
						
							|  |  |  |         m_signal.signal.reset_mock() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         with self.assertWarnsRegex(ResourceWarning, | 
					
						
							|  |  |  |                                    "skipping signal handlers removal"): | 
					
						
							|  |  |  |             self.loop.close() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.assertEqual(len(self.loop._signal_handlers), 0) | 
					
						
							|  |  |  |         self.assertFalse(m_signal.signal.called) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-18 12:15:06 -05:00
										 |  |  | @unittest.skipUnless(hasattr(socket, 'AF_UNIX'), | 
					
						
							|  |  |  |                      'UNIX Sockets are not supported') | 
					
						
							| 
									
										
										
										
											2014-06-18 01:36:32 +02:00
										 |  |  | class SelectorEventLoopUnixSocketTests(test_utils.TestCase): | 
					
						
							| 
									
										
										
										
											2014-02-18 12:15:06 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def setUp(self): | 
					
						
							| 
									
										
										
										
											2016-11-04 14:29:28 -04:00
										 |  |  |         super().setUp() | 
					
						
							| 
									
										
										
										
											2014-02-18 12:15:06 -05:00
										 |  |  |         self.loop = asyncio.SelectorEventLoop() | 
					
						
							| 
									
										
										
										
											2014-06-18 01:36:32 +02:00
										 |  |  |         self.set_event_loop(self.loop) | 
					
						
							| 
									
										
										
										
											2014-02-18 12:15:06 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-25 10:06:29 +03:00
										 |  |  |     @socket_helper.skip_unless_bind_unix_socket | 
					
						
							| 
									
										
										
										
											2014-02-18 12:15:06 -05:00
										 |  |  |     def test_create_unix_server_existing_path_sock(self): | 
					
						
							|  |  |  |         with test_utils.unix_socket_path() as path: | 
					
						
							|  |  |  |             sock = socket.socket(socket.AF_UNIX) | 
					
						
							|  |  |  |             sock.bind(path) | 
					
						
							| 
									
										
										
										
											2016-10-09 12:15:08 -04:00
										 |  |  |             sock.listen(1) | 
					
						
							|  |  |  |             sock.close() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             coro = self.loop.create_unix_server(lambda: None, path) | 
					
						
							|  |  |  |             srv = self.loop.run_until_complete(coro) | 
					
						
							|  |  |  |             srv.close() | 
					
						
							|  |  |  |             self.loop.run_until_complete(srv.wait_closed()) | 
					
						
							| 
									
										
										
										
											2014-02-18 12:15:06 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-25 10:06:29 +03:00
										 |  |  |     @socket_helper.skip_unless_bind_unix_socket | 
					
						
							| 
									
										
										
										
											2024-05-16 10:25:10 +03:00
										 |  |  |     def test_create_unix_server_pathlike(self): | 
					
						
							| 
									
										
										
										
											2016-11-15 15:26:34 -05:00
										 |  |  |         with test_utils.unix_socket_path() as path: | 
					
						
							| 
									
										
										
										
											2024-05-16 10:25:10 +03:00
										 |  |  |             path = os_helper.FakePath(path) | 
					
						
							| 
									
										
										
										
											2016-11-15 15:26:34 -05:00
										 |  |  |             srv_coro = self.loop.create_unix_server(lambda: None, path) | 
					
						
							|  |  |  |             srv = self.loop.run_until_complete(srv_coro) | 
					
						
							|  |  |  |             srv.close() | 
					
						
							|  |  |  |             self.loop.run_until_complete(srv.wait_closed()) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-16 10:25:10 +03:00
										 |  |  |     def test_create_unix_connection_pathlike(self): | 
					
						
							| 
									
										
										
										
											2017-11-20 17:26:28 -05:00
										 |  |  |         with test_utils.unix_socket_path() as path: | 
					
						
							| 
									
										
										
										
											2024-05-16 10:25:10 +03:00
										 |  |  |             path = os_helper.FakePath(path) | 
					
						
							| 
									
										
										
										
											2017-11-20 17:26:28 -05:00
										 |  |  |             coro = self.loop.create_unix_connection(lambda: None, path) | 
					
						
							|  |  |  |             with self.assertRaises(FileNotFoundError): | 
					
						
							| 
									
										
										
										
											2024-05-16 10:25:10 +03:00
										 |  |  |                 # If path-like object weren't supported, the exception would be | 
					
						
							| 
									
										
										
										
											2017-11-20 17:26:28 -05:00
										 |  |  |                 # different. | 
					
						
							|  |  |  |                 self.loop.run_until_complete(coro) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-18 12:15:06 -05:00
										 |  |  |     def test_create_unix_server_existing_path_nonsock(self): | 
					
						
							| 
									
										
										
										
											2022-06-17 13:16:51 +02:00
										 |  |  |         path = test_utils.gen_unix_socket_path() | 
					
						
							|  |  |  |         self.addCleanup(os_helper.unlink, path) | 
					
						
							|  |  |  |         # create the file | 
					
						
							|  |  |  |         open(path, "wb").close() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         coro = self.loop.create_unix_server(lambda: None, path) | 
					
						
							|  |  |  |         with self.assertRaisesRegex(OSError, | 
					
						
							|  |  |  |                                     'Address.*is already in use'): | 
					
						
							|  |  |  |             self.loop.run_until_complete(coro) | 
					
						
							| 
									
										
										
										
											2014-02-18 12:15:06 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def test_create_unix_server_ssl_bool(self): | 
					
						
							|  |  |  |         coro = self.loop.create_unix_server(lambda: None, path='spam', | 
					
						
							|  |  |  |                                             ssl=True) | 
					
						
							|  |  |  |         with self.assertRaisesRegex(TypeError, | 
					
						
							|  |  |  |                                     'ssl argument must be an SSLContext'): | 
					
						
							|  |  |  |             self.loop.run_until_complete(coro) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_create_unix_server_nopath_nosock(self): | 
					
						
							|  |  |  |         coro = self.loop.create_unix_server(lambda: None, path=None) | 
					
						
							|  |  |  |         with self.assertRaisesRegex(ValueError, | 
					
						
							|  |  |  |                                     'path was not specified, and no sock'): | 
					
						
							|  |  |  |             self.loop.run_until_complete(coro) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_create_unix_server_path_inetsock(self): | 
					
						
							| 
									
										
										
										
											2014-02-19 01:45:59 +01:00
										 |  |  |         sock = socket.socket() | 
					
						
							|  |  |  |         with sock: | 
					
						
							|  |  |  |             coro = self.loop.create_unix_server(lambda: None, path=None, | 
					
						
							|  |  |  |                                                 sock=sock) | 
					
						
							|  |  |  |             with self.assertRaisesRegex(ValueError, | 
					
						
							| 
									
										
										
										
											2016-10-07 12:39:57 -04:00
										 |  |  |                                         'A UNIX Domain Stream.*was expected'): | 
					
						
							|  |  |  |                 self.loop.run_until_complete(coro) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-09 15:47:00 -05:00
										 |  |  |     def test_create_unix_server_path_dgram(self): | 
					
						
							|  |  |  |         sock = socket.socket(socket.AF_UNIX, socket.SOCK_DGRAM) | 
					
						
							|  |  |  |         with sock: | 
					
						
							|  |  |  |             coro = self.loop.create_unix_server(lambda: None, path=None, | 
					
						
							|  |  |  |                                                 sock=sock) | 
					
						
							|  |  |  |             with self.assertRaisesRegex(ValueError, | 
					
						
							|  |  |  |                                         'A UNIX Domain Stream.*was expected'): | 
					
						
							|  |  |  |                 self.loop.run_until_complete(coro) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @unittest.skipUnless(hasattr(socket, 'SOCK_NONBLOCK'), | 
					
						
							|  |  |  |                          'no socket.SOCK_NONBLOCK (linux only)') | 
					
						
							| 
									
										
										
										
											2020-04-25 10:06:29 +03:00
										 |  |  |     @socket_helper.skip_unless_bind_unix_socket | 
					
						
							| 
									
										
										
										
											2016-11-09 15:47:00 -05:00
										 |  |  |     def test_create_unix_server_path_stream_bittype(self): | 
					
						
							| 
									
										
										
										
											2022-06-17 13:16:51 +02:00
										 |  |  |         fn = test_utils.gen_unix_socket_path() | 
					
						
							|  |  |  |         self.addCleanup(os_helper.unlink, fn) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         sock = socket.socket(socket.AF_UNIX, | 
					
						
							|  |  |  |                              socket.SOCK_STREAM | socket.SOCK_NONBLOCK) | 
					
						
							|  |  |  |         with sock: | 
					
						
							|  |  |  |             sock.bind(fn) | 
					
						
							|  |  |  |             coro = self.loop.create_unix_server(lambda: None, path=None, | 
					
						
							|  |  |  |                                                 sock=sock) | 
					
						
							|  |  |  |             srv = self.loop.run_until_complete(coro) | 
					
						
							|  |  |  |             srv.close() | 
					
						
							|  |  |  |             self.loop.run_until_complete(srv.wait_closed()) | 
					
						
							| 
									
										
										
										
											2016-11-09 15:47:00 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-20 20:24:43 +02:00
										 |  |  |     def test_create_unix_server_ssl_timeout_with_plain_sock(self): | 
					
						
							|  |  |  |         coro = self.loop.create_unix_server(lambda: None, path='spam', | 
					
						
							|  |  |  |                                             ssl_handshake_timeout=1) | 
					
						
							|  |  |  |         with self.assertRaisesRegex( | 
					
						
							|  |  |  |                 ValueError, | 
					
						
							|  |  |  |                 'ssl_handshake_timeout is only meaningful with ssl'): | 
					
						
							|  |  |  |             self.loop.run_until_complete(coro) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-07 12:39:57 -04:00
										 |  |  |     def test_create_unix_connection_path_inetsock(self): | 
					
						
							|  |  |  |         sock = socket.socket() | 
					
						
							|  |  |  |         with sock: | 
					
						
							| 
									
										
										
										
											2017-11-20 17:26:28 -05:00
										 |  |  |             coro = self.loop.create_unix_connection(lambda: None, | 
					
						
							| 
									
										
										
										
											2016-10-07 12:39:57 -04:00
										 |  |  |                                                     sock=sock) | 
					
						
							|  |  |  |             with self.assertRaisesRegex(ValueError, | 
					
						
							|  |  |  |                                         'A UNIX Domain Stream.*was expected'): | 
					
						
							| 
									
										
										
										
											2014-02-19 01:45:59 +01:00
										 |  |  |                 self.loop.run_until_complete(coro) | 
					
						
							| 
									
										
										
										
											2014-02-18 12:15:06 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-04 00:11:52 +02:00
										 |  |  |     @mock.patch('asyncio.unix_events.socket') | 
					
						
							|  |  |  |     def test_create_unix_server_bind_error(self, m_socket): | 
					
						
							|  |  |  |         # Ensure that the socket is closed on any bind error | 
					
						
							|  |  |  |         sock = mock.Mock() | 
					
						
							|  |  |  |         m_socket.socket.return_value = sock | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         sock.bind.side_effect = OSError | 
					
						
							|  |  |  |         coro = self.loop.create_unix_server(lambda: None, path="/test") | 
					
						
							|  |  |  |         with self.assertRaises(OSError): | 
					
						
							|  |  |  |             self.loop.run_until_complete(coro) | 
					
						
							|  |  |  |         self.assertTrue(sock.close.called) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         sock.bind.side_effect = MemoryError | 
					
						
							|  |  |  |         coro = self.loop.create_unix_server(lambda: None, path="/test") | 
					
						
							|  |  |  |         with self.assertRaises(MemoryError): | 
					
						
							|  |  |  |             self.loop.run_until_complete(coro) | 
					
						
							|  |  |  |         self.assertTrue(sock.close.called) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-18 12:15:06 -05:00
										 |  |  |     def test_create_unix_connection_path_sock(self): | 
					
						
							|  |  |  |         coro = self.loop.create_unix_connection( | 
					
						
							| 
									
										
										
										
											2015-02-15 13:58:23 +02:00
										 |  |  |             lambda: None, os.devnull, sock=object()) | 
					
						
							| 
									
										
										
										
											2014-02-18 12:15:06 -05:00
										 |  |  |         with self.assertRaisesRegex(ValueError, 'path and sock can not be'): | 
					
						
							|  |  |  |             self.loop.run_until_complete(coro) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_create_unix_connection_nopath_nosock(self): | 
					
						
							|  |  |  |         coro = self.loop.create_unix_connection( | 
					
						
							|  |  |  |             lambda: None, None) | 
					
						
							|  |  |  |         with self.assertRaisesRegex(ValueError, | 
					
						
							|  |  |  |                                     'no path and sock were specified'): | 
					
						
							|  |  |  |             self.loop.run_until_complete(coro) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_create_unix_connection_nossl_serverhost(self): | 
					
						
							|  |  |  |         coro = self.loop.create_unix_connection( | 
					
						
							| 
									
										
										
										
											2015-02-15 13:58:23 +02:00
										 |  |  |             lambda: None, os.devnull, server_hostname='spam') | 
					
						
							| 
									
										
										
										
											2014-02-18 12:15:06 -05:00
										 |  |  |         with self.assertRaisesRegex(ValueError, | 
					
						
							|  |  |  |                                     'server_hostname is only meaningful'): | 
					
						
							|  |  |  |             self.loop.run_until_complete(coro) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_create_unix_connection_ssl_noserverhost(self): | 
					
						
							|  |  |  |         coro = self.loop.create_unix_connection( | 
					
						
							| 
									
										
										
										
											2015-02-15 13:58:23 +02:00
										 |  |  |             lambda: None, os.devnull, ssl=True) | 
					
						
							| 
									
										
										
										
											2014-02-18 12:15:06 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-19 01:45:59 +01:00
										 |  |  |         with self.assertRaisesRegex( | 
					
						
							| 
									
										
										
										
											2014-02-18 12:15:06 -05:00
										 |  |  |             ValueError, 'you have to pass server_hostname when using ssl'): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             self.loop.run_until_complete(coro) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-20 20:24:43 +02:00
										 |  |  |     def test_create_unix_connection_ssl_timeout_with_plain_sock(self): | 
					
						
							|  |  |  |         coro = self.loop.create_unix_connection(lambda: None, path='spam', | 
					
						
							|  |  |  |                                             ssl_handshake_timeout=1) | 
					
						
							|  |  |  |         with self.assertRaisesRegex( | 
					
						
							|  |  |  |                 ValueError, | 
					
						
							|  |  |  |                 'ssl_handshake_timeout is only meaningful with ssl'): | 
					
						
							|  |  |  |             self.loop.run_until_complete(coro) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-16 19:59:34 +02:00
										 |  |  | @unittest.skipUnless(hasattr(os, 'sendfile'), | 
					
						
							|  |  |  |                      'sendfile is not supported') | 
					
						
							|  |  |  | class SelectorEventLoopUnixSockSendfileTests(test_utils.TestCase): | 
					
						
							|  |  |  |     DATA = b"12345abcde" * 16 * 1024  # 160 KiB | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     class MyProto(asyncio.Protocol): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         def __init__(self, loop): | 
					
						
							|  |  |  |             self.started = False | 
					
						
							|  |  |  |             self.closed = False | 
					
						
							|  |  |  |             self.data = bytearray() | 
					
						
							|  |  |  |             self.fut = loop.create_future() | 
					
						
							|  |  |  |             self.transport = None | 
					
						
							| 
									
										
										
										
											2018-12-29 19:18:38 +00:00
										 |  |  |             self._ready = loop.create_future() | 
					
						
							| 
									
										
										
										
											2018-01-16 19:59:34 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         def connection_made(self, transport): | 
					
						
							|  |  |  |             self.started = True | 
					
						
							|  |  |  |             self.transport = transport | 
					
						
							| 
									
										
										
										
											2018-12-29 19:18:38 +00:00
										 |  |  |             self._ready.set_result(None) | 
					
						
							| 
									
										
										
										
											2018-01-16 19:59:34 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         def data_received(self, data): | 
					
						
							|  |  |  |             self.data.extend(data) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         def connection_lost(self, exc): | 
					
						
							|  |  |  |             self.closed = True | 
					
						
							|  |  |  |             self.fut.set_result(None) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         async def wait_closed(self): | 
					
						
							|  |  |  |             await self.fut | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @classmethod | 
					
						
							|  |  |  |     def setUpClass(cls): | 
					
						
							| 
									
										
										
										
											2020-06-25 20:15:40 +08:00
										 |  |  |         with open(os_helper.TESTFN, 'wb') as fp: | 
					
						
							| 
									
										
										
										
											2018-01-16 19:59:34 +02:00
										 |  |  |             fp.write(cls.DATA) | 
					
						
							|  |  |  |         super().setUpClass() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @classmethod | 
					
						
							|  |  |  |     def tearDownClass(cls): | 
					
						
							| 
									
										
										
										
											2020-06-25 20:15:40 +08:00
										 |  |  |         os_helper.unlink(os_helper.TESTFN) | 
					
						
							| 
									
										
										
										
											2018-01-16 19:59:34 +02:00
										 |  |  |         super().tearDownClass() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def setUp(self): | 
					
						
							|  |  |  |         self.loop = asyncio.new_event_loop() | 
					
						
							|  |  |  |         self.set_event_loop(self.loop) | 
					
						
							| 
									
										
										
										
											2020-06-25 20:15:40 +08:00
										 |  |  |         self.file = open(os_helper.TESTFN, 'rb') | 
					
						
							| 
									
										
										
										
											2018-01-16 19:59:34 +02:00
										 |  |  |         self.addCleanup(self.file.close) | 
					
						
							|  |  |  |         super().setUp() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-25 19:32:14 +03:00
										 |  |  |     def make_socket(self, cleanup=True): | 
					
						
							| 
									
										
										
										
											2018-01-16 19:59:34 +02:00
										 |  |  |         sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | 
					
						
							| 
									
										
										
										
											2018-02-25 19:32:14 +03:00
										 |  |  |         sock.setblocking(False) | 
					
						
							|  |  |  |         sock.setsockopt(socket.SOL_SOCKET, socket.SO_SNDBUF, 1024) | 
					
						
							|  |  |  |         sock.setsockopt(socket.SOL_SOCKET, socket.SO_RCVBUF, 1024) | 
					
						
							|  |  |  |         if cleanup: | 
					
						
							|  |  |  |             self.addCleanup(sock.close) | 
					
						
							| 
									
										
										
										
											2018-01-16 19:59:34 +02:00
										 |  |  |         return sock | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def run_loop(self, coro): | 
					
						
							|  |  |  |         return self.loop.run_until_complete(coro) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def prepare(self): | 
					
						
							|  |  |  |         sock = self.make_socket() | 
					
						
							|  |  |  |         proto = self.MyProto(self.loop) | 
					
						
							| 
									
										
										
										
											2020-04-25 10:06:29 +03:00
										 |  |  |         port = socket_helper.find_unused_port() | 
					
						
							| 
									
										
										
										
											2018-02-25 19:32:14 +03:00
										 |  |  |         srv_sock = self.make_socket(cleanup=False) | 
					
						
							| 
									
										
										
										
											2020-04-25 10:06:29 +03:00
										 |  |  |         srv_sock.bind((socket_helper.HOST, port)) | 
					
						
							| 
									
										
										
										
											2018-01-16 19:59:34 +02:00
										 |  |  |         server = self.run_loop(self.loop.create_server( | 
					
						
							| 
									
										
										
										
											2018-02-25 19:32:14 +03:00
										 |  |  |             lambda: proto, sock=srv_sock)) | 
					
						
							| 
									
										
										
										
											2020-04-25 10:06:29 +03:00
										 |  |  |         self.run_loop(self.loop.sock_connect(sock, (socket_helper.HOST, port))) | 
					
						
							| 
									
										
										
										
											2018-12-29 19:18:38 +00:00
										 |  |  |         self.run_loop(proto._ready) | 
					
						
							| 
									
										
										
										
											2018-01-16 19:59:34 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         def cleanup(): | 
					
						
							| 
									
										
										
										
											2018-12-29 19:18:38 +00:00
										 |  |  |             proto.transport.close() | 
					
						
							|  |  |  |             self.run_loop(proto.wait_closed()) | 
					
						
							| 
									
										
										
										
											2018-01-16 19:59:34 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |             server.close() | 
					
						
							|  |  |  |             self.run_loop(server.wait_closed()) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.addCleanup(cleanup) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return sock, proto | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-24 21:40:35 +02:00
										 |  |  |     def test_sock_sendfile_not_available(self): | 
					
						
							| 
									
										
										
										
											2018-01-16 19:59:34 +02:00
										 |  |  |         sock, proto = self.prepare() | 
					
						
							|  |  |  |         with mock.patch('asyncio.unix_events.os', spec=[]): | 
					
						
							| 
									
										
										
										
											2018-09-11 10:13:04 -07:00
										 |  |  |             with self.assertRaisesRegex(asyncio.SendfileNotAvailableError, | 
					
						
							| 
									
										
										
										
											2018-01-16 19:59:34 +02:00
										 |  |  |                                         "os[.]sendfile[(][)] is not available"): | 
					
						
							|  |  |  |                 self.run_loop(self.loop._sock_sendfile_native(sock, self.file, | 
					
						
							|  |  |  |                                                               0, None)) | 
					
						
							|  |  |  |         self.assertEqual(self.file.tell(), 0) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-24 21:40:35 +02:00
										 |  |  |     def test_sock_sendfile_not_a_file(self): | 
					
						
							| 
									
										
										
										
											2018-01-16 19:59:34 +02:00
										 |  |  |         sock, proto = self.prepare() | 
					
						
							|  |  |  |         f = object() | 
					
						
							| 
									
										
										
										
											2018-09-11 10:13:04 -07:00
										 |  |  |         with self.assertRaisesRegex(asyncio.SendfileNotAvailableError, | 
					
						
							| 
									
										
										
										
											2018-01-16 19:59:34 +02:00
										 |  |  |                                     "not a regular file"): | 
					
						
							|  |  |  |             self.run_loop(self.loop._sock_sendfile_native(sock, f, | 
					
						
							|  |  |  |                                                           0, None)) | 
					
						
							|  |  |  |         self.assertEqual(self.file.tell(), 0) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-24 21:40:35 +02:00
										 |  |  |     def test_sock_sendfile_iobuffer(self): | 
					
						
							| 
									
										
										
										
											2018-01-16 19:59:34 +02:00
										 |  |  |         sock, proto = self.prepare() | 
					
						
							|  |  |  |         f = io.BytesIO() | 
					
						
							| 
									
										
										
										
											2018-09-11 10:13:04 -07:00
										 |  |  |         with self.assertRaisesRegex(asyncio.SendfileNotAvailableError, | 
					
						
							| 
									
										
										
										
											2018-01-16 19:59:34 +02:00
										 |  |  |                                     "not a regular file"): | 
					
						
							|  |  |  |             self.run_loop(self.loop._sock_sendfile_native(sock, f, | 
					
						
							|  |  |  |                                                           0, None)) | 
					
						
							|  |  |  |         self.assertEqual(self.file.tell(), 0) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-24 21:40:35 +02:00
										 |  |  |     def test_sock_sendfile_not_regular_file(self): | 
					
						
							| 
									
										
										
										
											2018-01-16 19:59:34 +02:00
										 |  |  |         sock, proto = self.prepare() | 
					
						
							|  |  |  |         f = mock.Mock() | 
					
						
							|  |  |  |         f.fileno.return_value = -1 | 
					
						
							| 
									
										
										
										
											2018-09-11 10:13:04 -07:00
										 |  |  |         with self.assertRaisesRegex(asyncio.SendfileNotAvailableError, | 
					
						
							| 
									
										
										
										
											2018-01-16 19:59:34 +02:00
										 |  |  |                                     "not a regular file"): | 
					
						
							|  |  |  |             self.run_loop(self.loop._sock_sendfile_native(sock, f, | 
					
						
							|  |  |  |                                                           0, None)) | 
					
						
							|  |  |  |         self.assertEqual(self.file.tell(), 0) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-24 21:40:35 +02:00
										 |  |  |     def test_sock_sendfile_cancel1(self): | 
					
						
							| 
									
										
										
										
											2018-01-16 19:59:34 +02:00
										 |  |  |         sock, proto = self.prepare() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         fut = self.loop.create_future() | 
					
						
							|  |  |  |         fileno = self.file.fileno() | 
					
						
							|  |  |  |         self.loop._sock_sendfile_native_impl(fut, None, sock, fileno, | 
					
						
							|  |  |  |                                              0, None, len(self.DATA), 0) | 
					
						
							|  |  |  |         fut.cancel() | 
					
						
							|  |  |  |         with contextlib.suppress(asyncio.CancelledError): | 
					
						
							|  |  |  |             self.run_loop(fut) | 
					
						
							|  |  |  |         with self.assertRaises(KeyError): | 
					
						
							|  |  |  |             self.loop._selector.get_key(sock) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-24 21:40:35 +02:00
										 |  |  |     def test_sock_sendfile_cancel2(self): | 
					
						
							| 
									
										
										
										
											2018-01-16 19:59:34 +02:00
										 |  |  |         sock, proto = self.prepare() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         fut = self.loop.create_future() | 
					
						
							|  |  |  |         fileno = self.file.fileno() | 
					
						
							|  |  |  |         self.loop._sock_sendfile_native_impl(fut, None, sock, fileno, | 
					
						
							|  |  |  |                                              0, None, len(self.DATA), 0) | 
					
						
							|  |  |  |         fut.cancel() | 
					
						
							|  |  |  |         self.loop._sock_sendfile_native_impl(fut, sock.fileno(), sock, fileno, | 
					
						
							|  |  |  |                                              0, None, len(self.DATA), 0) | 
					
						
							|  |  |  |         with self.assertRaises(KeyError): | 
					
						
							|  |  |  |             self.loop._selector.get_key(sock) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-24 21:40:35 +02:00
										 |  |  |     def test_sock_sendfile_blocking_error(self): | 
					
						
							| 
									
										
										
										
											2018-01-16 19:59:34 +02:00
										 |  |  |         sock, proto = self.prepare() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         fileno = self.file.fileno() | 
					
						
							|  |  |  |         fut = mock.Mock() | 
					
						
							|  |  |  |         fut.cancelled.return_value = False | 
					
						
							|  |  |  |         with mock.patch('os.sendfile', side_effect=BlockingIOError()): | 
					
						
							|  |  |  |             self.loop._sock_sendfile_native_impl(fut, None, sock, fileno, | 
					
						
							|  |  |  |                                                  0, None, len(self.DATA), 0) | 
					
						
							|  |  |  |         key = self.loop._selector.get_key(sock) | 
					
						
							|  |  |  |         self.assertIsNotNone(key) | 
					
						
							|  |  |  |         fut.add_done_callback.assert_called_once_with(mock.ANY) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-24 21:40:35 +02:00
										 |  |  |     def test_sock_sendfile_os_error_first_call(self): | 
					
						
							| 
									
										
										
										
											2018-01-16 19:59:34 +02:00
										 |  |  |         sock, proto = self.prepare() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         fileno = self.file.fileno() | 
					
						
							|  |  |  |         fut = self.loop.create_future() | 
					
						
							|  |  |  |         with mock.patch('os.sendfile', side_effect=OSError()): | 
					
						
							|  |  |  |             self.loop._sock_sendfile_native_impl(fut, None, sock, fileno, | 
					
						
							|  |  |  |                                                  0, None, len(self.DATA), 0) | 
					
						
							|  |  |  |         with self.assertRaises(KeyError): | 
					
						
							|  |  |  |             self.loop._selector.get_key(sock) | 
					
						
							|  |  |  |         exc = fut.exception() | 
					
						
							| 
									
										
										
										
											2018-09-11 10:13:04 -07:00
										 |  |  |         self.assertIsInstance(exc, asyncio.SendfileNotAvailableError) | 
					
						
							| 
									
										
										
										
											2018-01-16 19:59:34 +02:00
										 |  |  |         self.assertEqual(0, self.file.tell()) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-24 21:40:35 +02:00
										 |  |  |     def test_sock_sendfile_os_error_next_call(self): | 
					
						
							| 
									
										
										
										
											2018-01-16 19:59:34 +02:00
										 |  |  |         sock, proto = self.prepare() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         fileno = self.file.fileno() | 
					
						
							|  |  |  |         fut = self.loop.create_future() | 
					
						
							|  |  |  |         err = OSError() | 
					
						
							|  |  |  |         with mock.patch('os.sendfile', side_effect=err): | 
					
						
							|  |  |  |             self.loop._sock_sendfile_native_impl(fut, sock.fileno(), | 
					
						
							|  |  |  |                                                  sock, fileno, | 
					
						
							|  |  |  |                                                  1000, None, len(self.DATA), | 
					
						
							|  |  |  |                                                  1000) | 
					
						
							|  |  |  |         with self.assertRaises(KeyError): | 
					
						
							|  |  |  |             self.loop._selector.get_key(sock) | 
					
						
							|  |  |  |         exc = fut.exception() | 
					
						
							|  |  |  |         self.assertIs(exc, err) | 
					
						
							|  |  |  |         self.assertEqual(1000, self.file.tell()) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-24 21:40:35 +02:00
										 |  |  |     def test_sock_sendfile_exception(self): | 
					
						
							| 
									
										
										
										
											2018-01-16 19:59:34 +02:00
										 |  |  |         sock, proto = self.prepare() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         fileno = self.file.fileno() | 
					
						
							|  |  |  |         fut = self.loop.create_future() | 
					
						
							| 
									
										
										
										
											2018-09-11 10:13:04 -07:00
										 |  |  |         err = asyncio.SendfileNotAvailableError() | 
					
						
							| 
									
										
										
										
											2018-01-16 19:59:34 +02:00
										 |  |  |         with mock.patch('os.sendfile', side_effect=err): | 
					
						
							|  |  |  |             self.loop._sock_sendfile_native_impl(fut, sock.fileno(), | 
					
						
							|  |  |  |                                                  sock, fileno, | 
					
						
							|  |  |  |                                                  1000, None, len(self.DATA), | 
					
						
							|  |  |  |                                                  1000) | 
					
						
							|  |  |  |         with self.assertRaises(KeyError): | 
					
						
							|  |  |  |             self.loop._selector.get_key(sock) | 
					
						
							|  |  |  |         exc = fut.exception() | 
					
						
							|  |  |  |         self.assertIs(exc, err) | 
					
						
							|  |  |  |         self.assertEqual(1000, self.file.tell()) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-18 12:15:06 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-18 01:36:32 +02:00
										 |  |  | class UnixReadPipeTransportTests(test_utils.TestCase): | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def setUp(self): | 
					
						
							| 
									
										
										
										
											2016-11-04 14:29:28 -04:00
										 |  |  |         super().setUp() | 
					
						
							| 
									
										
										
										
											2014-06-18 01:36:32 +02:00
										 |  |  |         self.loop = self.new_test_loop() | 
					
						
							| 
									
										
										
										
											2014-01-25 15:32:06 +01:00
										 |  |  |         self.protocol = test_utils.make_test_protocol(asyncio.Protocol) | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |         self.pipe = mock.Mock(spec_set=io.RawIOBase) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         self.pipe.fileno.return_value = 5 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-29 18:23:43 +02:00
										 |  |  |         blocking_patcher = mock.patch('os.set_blocking') | 
					
						
							| 
									
										
										
										
											2014-07-29 23:08:00 +02:00
										 |  |  |         blocking_patcher.start() | 
					
						
							|  |  |  |         self.addCleanup(blocking_patcher.stop) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |         fstat_patcher = mock.patch('os.fstat') | 
					
						
							| 
									
										
										
										
											2013-10-21 20:37:14 -07:00
										 |  |  |         m_fstat = fstat_patcher.start() | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |         st = mock.Mock() | 
					
						
							| 
									
										
										
										
											2013-10-21 20:37:14 -07:00
										 |  |  |         st.st_mode = stat.S_IFIFO | 
					
						
							|  |  |  |         m_fstat.return_value = st | 
					
						
							|  |  |  |         self.addCleanup(fstat_patcher.stop) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  |     def read_pipe_transport(self, waiter=None): | 
					
						
							|  |  |  |         transport = unix_events._UnixReadPipeTransport(self.loop, self.pipe, | 
					
						
							|  |  |  |                                                        self.protocol, | 
					
						
							|  |  |  |                                                        waiter=waiter) | 
					
						
							|  |  |  |         self.addCleanup(close_pipe_transport, transport) | 
					
						
							|  |  |  |         return transport | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |     def test_ctor(self): | 
					
						
							| 
									
										
										
										
											2019-09-11 16:07:37 +03:00
										 |  |  |         waiter = self.loop.create_future() | 
					
						
							| 
									
										
										
										
											2015-01-29 14:15:19 +01:00
										 |  |  |         tr = self.read_pipe_transport(waiter=waiter) | 
					
						
							|  |  |  |         self.loop.run_until_complete(waiter) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-29 14:15:19 +01:00
										 |  |  |         self.protocol.connection_made.assert_called_with(tr) | 
					
						
							|  |  |  |         self.loop.assert_reader(5, tr._read_ready) | 
					
						
							|  |  |  |         self.assertIsNone(waiter.result()) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |     @mock.patch('os.read') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |     def test__read_ready(self, m_read): | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  |         tr = self.read_pipe_transport() | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         m_read.return_value = b'data' | 
					
						
							|  |  |  |         tr._read_ready() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         m_read.assert_called_with(5, tr.max_size) | 
					
						
							|  |  |  |         self.protocol.data_received.assert_called_with(b'data') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |     @mock.patch('os.read') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |     def test__read_ready_eof(self, m_read): | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  |         tr = self.read_pipe_transport() | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         m_read.return_value = b'' | 
					
						
							|  |  |  |         tr._read_ready() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         m_read.assert_called_with(5, tr.max_size) | 
					
						
							|  |  |  |         self.assertFalse(self.loop.readers) | 
					
						
							|  |  |  |         test_utils.run_briefly(self.loop) | 
					
						
							|  |  |  |         self.protocol.eof_received.assert_called_with() | 
					
						
							|  |  |  |         self.protocol.connection_lost.assert_called_with(None) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |     @mock.patch('os.read') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |     def test__read_ready_blocked(self, m_read): | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  |         tr = self.read_pipe_transport() | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         m_read.side_effect = BlockingIOError | 
					
						
							|  |  |  |         tr._read_ready() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         m_read.assert_called_with(5, tr.max_size) | 
					
						
							|  |  |  |         test_utils.run_briefly(self.loop) | 
					
						
							|  |  |  |         self.assertFalse(self.protocol.data_received.called) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |     @mock.patch('asyncio.log.logger.error') | 
					
						
							|  |  |  |     @mock.patch('os.read') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |     def test__read_ready_error(self, m_read, m_logexc): | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  |         tr = self.read_pipe_transport() | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         err = OSError() | 
					
						
							|  |  |  |         m_read.side_effect = err | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |         tr._close = mock.Mock() | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         tr._read_ready() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         m_read.assert_called_with(5, tr.max_size) | 
					
						
							|  |  |  |         tr._close.assert_called_with(err) | 
					
						
							| 
									
										
										
										
											2014-02-18 18:02:19 -05:00
										 |  |  |         m_logexc.assert_called_with( | 
					
						
							|  |  |  |             test_utils.MockPattern( | 
					
						
							| 
									
										
										
										
											2014-02-18 22:56:15 -05:00
										 |  |  |                 'Fatal read error on pipe transport' | 
					
						
							|  |  |  |                 '\nprotocol:.*\ntransport:.*'), | 
					
						
							| 
									
										
										
										
											2014-02-18 18:02:19 -05:00
										 |  |  |             exc_info=(OSError, MOCK_ANY, MOCK_ANY)) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |     @mock.patch('os.read') | 
					
						
							| 
									
										
										
										
											2013-10-18 07:58:20 -07:00
										 |  |  |     def test_pause_reading(self, m_read): | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  |         tr = self.read_pipe_transport() | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |         m = mock.Mock() | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         self.loop.add_reader(5, m) | 
					
						
							| 
									
										
										
										
											2013-10-18 07:58:20 -07:00
										 |  |  |         tr.pause_reading() | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         self.assertFalse(self.loop.readers) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |     @mock.patch('os.read') | 
					
						
							| 
									
										
										
										
											2013-10-18 07:58:20 -07:00
										 |  |  |     def test_resume_reading(self, m_read): | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  |         tr = self.read_pipe_transport() | 
					
						
							| 
									
										
										
										
											2019-09-29 15:00:35 +03:00
										 |  |  |         tr.pause_reading() | 
					
						
							| 
									
										
										
										
											2013-10-18 07:58:20 -07:00
										 |  |  |         tr.resume_reading() | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         self.loop.assert_reader(5, tr._read_ready) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |     @mock.patch('os.read') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |     def test_close(self, m_read): | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  |         tr = self.read_pipe_transport() | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |         tr._close = mock.Mock() | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         tr.close() | 
					
						
							|  |  |  |         tr._close.assert_called_with(None) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |     @mock.patch('os.read') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |     def test_close_already_closing(self, m_read): | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  |         tr = self.read_pipe_transport() | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         tr._closing = True | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |         tr._close = mock.Mock() | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         tr.close() | 
					
						
							|  |  |  |         self.assertFalse(tr._close.called) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |     @mock.patch('os.read') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |     def test__close(self, m_read): | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  |         tr = self.read_pipe_transport() | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         err = object() | 
					
						
							|  |  |  |         tr._close(err) | 
					
						
							| 
									
										
										
										
											2015-11-16 12:43:21 -05:00
										 |  |  |         self.assertTrue(tr.is_closing()) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         self.assertFalse(self.loop.readers) | 
					
						
							|  |  |  |         test_utils.run_briefly(self.loop) | 
					
						
							|  |  |  |         self.protocol.connection_lost.assert_called_with(err) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test__call_connection_lost(self): | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  |         tr = self.read_pipe_transport() | 
					
						
							| 
									
										
										
										
											2014-07-23 18:21:45 +02:00
										 |  |  |         self.assertIsNotNone(tr._protocol) | 
					
						
							|  |  |  |         self.assertIsNotNone(tr._loop) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         err = None | 
					
						
							|  |  |  |         tr._call_connection_lost(err) | 
					
						
							|  |  |  |         self.protocol.connection_lost.assert_called_with(err) | 
					
						
							|  |  |  |         self.pipe.close.assert_called_with() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.assertIsNone(tr._protocol) | 
					
						
							|  |  |  |         self.assertIsNone(tr._loop) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test__call_connection_lost_with_err(self): | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  |         tr = self.read_pipe_transport() | 
					
						
							| 
									
										
										
										
											2014-07-23 18:21:45 +02:00
										 |  |  |         self.assertIsNotNone(tr._protocol) | 
					
						
							|  |  |  |         self.assertIsNotNone(tr._loop) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         err = OSError() | 
					
						
							|  |  |  |         tr._call_connection_lost(err) | 
					
						
							|  |  |  |         self.protocol.connection_lost.assert_called_with(err) | 
					
						
							|  |  |  |         self.pipe.close.assert_called_with() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.assertIsNone(tr._protocol) | 
					
						
							|  |  |  |         self.assertIsNone(tr._loop) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-29 15:00:35 +03:00
										 |  |  |     def test_pause_reading_on_closed_pipe(self): | 
					
						
							|  |  |  |         tr = self.read_pipe_transport() | 
					
						
							|  |  |  |         tr.close() | 
					
						
							|  |  |  |         test_utils.run_briefly(self.loop) | 
					
						
							|  |  |  |         self.assertIsNone(tr._loop) | 
					
						
							|  |  |  |         tr.pause_reading() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_pause_reading_on_paused_pipe(self): | 
					
						
							|  |  |  |         tr = self.read_pipe_transport() | 
					
						
							|  |  |  |         tr.pause_reading() | 
					
						
							|  |  |  |         # the second call should do nothing | 
					
						
							|  |  |  |         tr.pause_reading() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_resume_reading_on_closed_pipe(self): | 
					
						
							|  |  |  |         tr = self.read_pipe_transport() | 
					
						
							|  |  |  |         tr.close() | 
					
						
							|  |  |  |         test_utils.run_briefly(self.loop) | 
					
						
							|  |  |  |         self.assertIsNone(tr._loop) | 
					
						
							|  |  |  |         tr.resume_reading() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_resume_reading_on_paused_pipe(self): | 
					
						
							|  |  |  |         tr = self.read_pipe_transport() | 
					
						
							|  |  |  |         # the pipe is not paused | 
					
						
							|  |  |  |         # resuming should do nothing | 
					
						
							|  |  |  |         tr.resume_reading() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-18 01:36:32 +02:00
										 |  |  | class UnixWritePipeTransportTests(test_utils.TestCase): | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def setUp(self): | 
					
						
							| 
									
										
										
										
											2016-11-04 14:29:28 -04:00
										 |  |  |         super().setUp() | 
					
						
							| 
									
										
										
										
											2014-06-18 01:36:32 +02:00
										 |  |  |         self.loop = self.new_test_loop() | 
					
						
							| 
									
										
										
										
											2014-01-25 15:32:06 +01:00
										 |  |  |         self.protocol = test_utils.make_test_protocol(asyncio.BaseProtocol) | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |         self.pipe = mock.Mock(spec_set=io.RawIOBase) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         self.pipe.fileno.return_value = 5 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-29 18:23:43 +02:00
										 |  |  |         blocking_patcher = mock.patch('os.set_blocking') | 
					
						
							| 
									
										
										
										
											2014-07-29 23:08:00 +02:00
										 |  |  |         blocking_patcher.start() | 
					
						
							|  |  |  |         self.addCleanup(blocking_patcher.stop) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |         fstat_patcher = mock.patch('os.fstat') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         m_fstat = fstat_patcher.start() | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |         st = mock.Mock() | 
					
						
							| 
									
										
										
										
											2013-11-25 09:43:52 -08:00
										 |  |  |         st.st_mode = stat.S_IFSOCK | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         m_fstat.return_value = st | 
					
						
							|  |  |  |         self.addCleanup(fstat_patcher.stop) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  |     def write_pipe_transport(self, waiter=None): | 
					
						
							|  |  |  |         transport = unix_events._UnixWritePipeTransport(self.loop, self.pipe, | 
					
						
							|  |  |  |                                                         self.protocol, | 
					
						
							|  |  |  |                                                         waiter=waiter) | 
					
						
							|  |  |  |         self.addCleanup(close_pipe_transport, transport) | 
					
						
							|  |  |  |         return transport | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |     def test_ctor(self): | 
					
						
							| 
									
										
										
										
											2019-09-11 16:07:37 +03:00
										 |  |  |         waiter = self.loop.create_future() | 
					
						
							| 
									
										
										
										
											2015-01-29 14:15:19 +01:00
										 |  |  |         tr = self.write_pipe_transport(waiter=waiter) | 
					
						
							|  |  |  |         self.loop.run_until_complete(waiter) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-29 14:15:19 +01:00
										 |  |  |         self.protocol.connection_made.assert_called_with(tr) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         self.loop.assert_reader(5, tr._read_ready) | 
					
						
							| 
									
										
										
										
											2015-01-29 14:15:19 +01:00
										 |  |  |         self.assertEqual(None, waiter.result()) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def test_can_write_eof(self): | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  |         tr = self.write_pipe_transport() | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         self.assertTrue(tr.can_write_eof()) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |     @mock.patch('os.write') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |     def test_write(self, m_write): | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  |         tr = self.write_pipe_transport() | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         m_write.return_value = 4 | 
					
						
							|  |  |  |         tr.write(b'data') | 
					
						
							|  |  |  |         m_write.assert_called_with(5, b'data') | 
					
						
							|  |  |  |         self.assertFalse(self.loop.writers) | 
					
						
							| 
									
										
										
										
											2016-09-15 16:51:48 -04:00
										 |  |  |         self.assertEqual(bytearray(), tr._buffer) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |     @mock.patch('os.write') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |     def test_write_no_data(self, m_write): | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  |         tr = self.write_pipe_transport() | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         tr.write(b'') | 
					
						
							|  |  |  |         self.assertFalse(m_write.called) | 
					
						
							|  |  |  |         self.assertFalse(self.loop.writers) | 
					
						
							| 
									
										
										
										
											2016-09-15 16:51:48 -04:00
										 |  |  |         self.assertEqual(bytearray(b''), tr._buffer) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |     @mock.patch('os.write') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |     def test_write_partial(self, m_write): | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  |         tr = self.write_pipe_transport() | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         m_write.return_value = 2 | 
					
						
							|  |  |  |         tr.write(b'data') | 
					
						
							|  |  |  |         self.loop.assert_writer(5, tr._write_ready) | 
					
						
							| 
									
										
										
										
											2016-09-15 16:51:48 -04:00
										 |  |  |         self.assertEqual(bytearray(b'ta'), tr._buffer) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |     @mock.patch('os.write') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |     def test_write_buffer(self, m_write): | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  |         tr = self.write_pipe_transport() | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         self.loop.add_writer(5, tr._write_ready) | 
					
						
							| 
									
										
										
										
											2016-09-15 16:51:48 -04:00
										 |  |  |         tr._buffer = bytearray(b'previous') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         tr.write(b'data') | 
					
						
							|  |  |  |         self.assertFalse(m_write.called) | 
					
						
							|  |  |  |         self.loop.assert_writer(5, tr._write_ready) | 
					
						
							| 
									
										
										
										
											2016-09-15 16:51:48 -04:00
										 |  |  |         self.assertEqual(bytearray(b'previousdata'), tr._buffer) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |     @mock.patch('os.write') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |     def test_write_again(self, m_write): | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  |         tr = self.write_pipe_transport() | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         m_write.side_effect = BlockingIOError() | 
					
						
							|  |  |  |         tr.write(b'data') | 
					
						
							| 
									
										
										
										
											2016-09-15 16:51:48 -04:00
										 |  |  |         m_write.assert_called_with(5, bytearray(b'data')) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         self.loop.assert_writer(5, tr._write_ready) | 
					
						
							| 
									
										
										
										
											2016-09-15 16:51:48 -04:00
										 |  |  |         self.assertEqual(bytearray(b'data'), tr._buffer) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |     @mock.patch('asyncio.unix_events.logger') | 
					
						
							|  |  |  |     @mock.patch('os.write') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |     def test_write_err(self, m_write, m_log): | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  |         tr = self.write_pipe_transport() | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         err = OSError() | 
					
						
							|  |  |  |         m_write.side_effect = err | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |         tr._fatal_error = mock.Mock() | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         tr.write(b'data') | 
					
						
							|  |  |  |         m_write.assert_called_with(5, b'data') | 
					
						
							|  |  |  |         self.assertFalse(self.loop.writers) | 
					
						
							| 
									
										
										
										
											2016-09-15 16:51:48 -04:00
										 |  |  |         self.assertEqual(bytearray(), tr._buffer) | 
					
						
							| 
									
										
										
										
											2014-02-19 01:40:41 +01:00
										 |  |  |         tr._fatal_error.assert_called_with( | 
					
						
							|  |  |  |                             err, | 
					
						
							|  |  |  |                             'Fatal write error on pipe transport') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         self.assertEqual(1, tr._conn_lost) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         tr.write(b'data') | 
					
						
							|  |  |  |         self.assertEqual(2, tr._conn_lost) | 
					
						
							|  |  |  |         tr.write(b'data') | 
					
						
							|  |  |  |         tr.write(b'data') | 
					
						
							|  |  |  |         tr.write(b'data') | 
					
						
							|  |  |  |         tr.write(b'data') | 
					
						
							|  |  |  |         # This is a bit overspecified. :-( | 
					
						
							|  |  |  |         m_log.warning.assert_called_with( | 
					
						
							|  |  |  |             'pipe closed by peer or os.write(pipe, data) raised exception.') | 
					
						
							| 
									
										
										
										
											2015-01-15 00:04:21 +01:00
										 |  |  |         tr.close() | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |     @mock.patch('os.write') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |     def test_write_close(self, m_write): | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  |         tr = self.write_pipe_transport() | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         tr._read_ready()  # pipe was closed by peer | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         tr.write(b'data') | 
					
						
							|  |  |  |         self.assertEqual(tr._conn_lost, 1) | 
					
						
							|  |  |  |         tr.write(b'data') | 
					
						
							|  |  |  |         self.assertEqual(tr._conn_lost, 2) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test__read_ready(self): | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  |         tr = self.write_pipe_transport() | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         tr._read_ready() | 
					
						
							|  |  |  |         self.assertFalse(self.loop.readers) | 
					
						
							|  |  |  |         self.assertFalse(self.loop.writers) | 
					
						
							| 
									
										
										
										
											2015-11-16 12:43:21 -05:00
										 |  |  |         self.assertTrue(tr.is_closing()) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         test_utils.run_briefly(self.loop) | 
					
						
							|  |  |  |         self.protocol.connection_lost.assert_called_with(None) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |     @mock.patch('os.write') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |     def test__write_ready(self, m_write): | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  |         tr = self.write_pipe_transport() | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         self.loop.add_writer(5, tr._write_ready) | 
					
						
							| 
									
										
										
										
											2016-09-15 16:51:48 -04:00
										 |  |  |         tr._buffer = bytearray(b'data') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         m_write.return_value = 4 | 
					
						
							|  |  |  |         tr._write_ready() | 
					
						
							|  |  |  |         self.assertFalse(self.loop.writers) | 
					
						
							| 
									
										
										
										
											2016-09-15 16:51:48 -04:00
										 |  |  |         self.assertEqual(bytearray(), tr._buffer) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |     @mock.patch('os.write') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |     def test__write_ready_partial(self, m_write): | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  |         tr = self.write_pipe_transport() | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         self.loop.add_writer(5, tr._write_ready) | 
					
						
							| 
									
										
										
										
											2016-09-15 16:51:48 -04:00
										 |  |  |         tr._buffer = bytearray(b'data') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         m_write.return_value = 3 | 
					
						
							|  |  |  |         tr._write_ready() | 
					
						
							|  |  |  |         self.loop.assert_writer(5, tr._write_ready) | 
					
						
							| 
									
										
										
										
											2016-09-15 16:51:48 -04:00
										 |  |  |         self.assertEqual(bytearray(b'a'), tr._buffer) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |     @mock.patch('os.write') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |     def test__write_ready_again(self, m_write): | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  |         tr = self.write_pipe_transport() | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         self.loop.add_writer(5, tr._write_ready) | 
					
						
							| 
									
										
										
										
											2016-09-15 16:51:48 -04:00
										 |  |  |         tr._buffer = bytearray(b'data') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         m_write.side_effect = BlockingIOError() | 
					
						
							|  |  |  |         tr._write_ready() | 
					
						
							| 
									
										
										
										
											2016-09-15 16:51:48 -04:00
										 |  |  |         m_write.assert_called_with(5, bytearray(b'data')) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         self.loop.assert_writer(5, tr._write_ready) | 
					
						
							| 
									
										
										
										
											2016-09-15 16:51:48 -04:00
										 |  |  |         self.assertEqual(bytearray(b'data'), tr._buffer) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |     @mock.patch('os.write') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |     def test__write_ready_empty(self, m_write): | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  |         tr = self.write_pipe_transport() | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         self.loop.add_writer(5, tr._write_ready) | 
					
						
							| 
									
										
										
										
											2016-09-15 16:51:48 -04:00
										 |  |  |         tr._buffer = bytearray(b'data') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         m_write.return_value = 0 | 
					
						
							|  |  |  |         tr._write_ready() | 
					
						
							| 
									
										
										
										
											2016-09-15 16:51:48 -04:00
										 |  |  |         m_write.assert_called_with(5, bytearray(b'data')) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         self.loop.assert_writer(5, tr._write_ready) | 
					
						
							| 
									
										
										
										
											2016-09-15 16:51:48 -04:00
										 |  |  |         self.assertEqual(bytearray(b'data'), tr._buffer) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |     @mock.patch('asyncio.log.logger.error') | 
					
						
							|  |  |  |     @mock.patch('os.write') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |     def test__write_ready_err(self, m_write, m_logexc): | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  |         tr = self.write_pipe_transport() | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         self.loop.add_writer(5, tr._write_ready) | 
					
						
							| 
									
										
										
										
											2016-09-15 16:51:48 -04:00
										 |  |  |         tr._buffer = bytearray(b'data') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         m_write.side_effect = err = OSError() | 
					
						
							|  |  |  |         tr._write_ready() | 
					
						
							|  |  |  |         self.assertFalse(self.loop.writers) | 
					
						
							|  |  |  |         self.assertFalse(self.loop.readers) | 
					
						
							| 
									
										
										
										
											2016-09-15 16:51:48 -04:00
										 |  |  |         self.assertEqual(bytearray(), tr._buffer) | 
					
						
							| 
									
										
										
										
											2015-11-16 12:43:21 -05:00
										 |  |  |         self.assertTrue(tr.is_closing()) | 
					
						
							| 
									
										
										
										
											2019-05-27 16:28:34 +03:00
										 |  |  |         m_logexc.assert_not_called() | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         self.assertEqual(1, tr._conn_lost) | 
					
						
							|  |  |  |         test_utils.run_briefly(self.loop) | 
					
						
							|  |  |  |         self.protocol.connection_lost.assert_called_with(err) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |     @mock.patch('os.write') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |     def test__write_ready_closing(self, m_write): | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  |         tr = self.write_pipe_transport() | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         self.loop.add_writer(5, tr._write_ready) | 
					
						
							|  |  |  |         tr._closing = True | 
					
						
							| 
									
										
										
										
											2016-09-15 16:51:48 -04:00
										 |  |  |         tr._buffer = bytearray(b'data') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         m_write.return_value = 4 | 
					
						
							|  |  |  |         tr._write_ready() | 
					
						
							|  |  |  |         self.assertFalse(self.loop.writers) | 
					
						
							|  |  |  |         self.assertFalse(self.loop.readers) | 
					
						
							| 
									
										
										
										
											2016-09-15 16:51:48 -04:00
										 |  |  |         self.assertEqual(bytearray(), tr._buffer) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         self.protocol.connection_lost.assert_called_with(None) | 
					
						
							|  |  |  |         self.pipe.close.assert_called_with() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |     @mock.patch('os.write') | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |     def test_abort(self, m_write): | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  |         tr = self.write_pipe_transport() | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         self.loop.add_writer(5, tr._write_ready) | 
					
						
							|  |  |  |         self.loop.add_reader(5, tr._read_ready) | 
					
						
							|  |  |  |         tr._buffer = [b'da', b'ta'] | 
					
						
							|  |  |  |         tr.abort() | 
					
						
							|  |  |  |         self.assertFalse(m_write.called) | 
					
						
							|  |  |  |         self.assertFalse(self.loop.readers) | 
					
						
							|  |  |  |         self.assertFalse(self.loop.writers) | 
					
						
							|  |  |  |         self.assertEqual([], tr._buffer) | 
					
						
							| 
									
										
										
										
											2015-11-16 12:43:21 -05:00
										 |  |  |         self.assertTrue(tr.is_closing()) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         test_utils.run_briefly(self.loop) | 
					
						
							|  |  |  |         self.protocol.connection_lost.assert_called_with(None) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test__call_connection_lost(self): | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  |         tr = self.write_pipe_transport() | 
					
						
							| 
									
										
										
										
											2014-07-23 18:21:45 +02:00
										 |  |  |         self.assertIsNotNone(tr._protocol) | 
					
						
							|  |  |  |         self.assertIsNotNone(tr._loop) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         err = None | 
					
						
							|  |  |  |         tr._call_connection_lost(err) | 
					
						
							|  |  |  |         self.protocol.connection_lost.assert_called_with(err) | 
					
						
							|  |  |  |         self.pipe.close.assert_called_with() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.assertIsNone(tr._protocol) | 
					
						
							|  |  |  |         self.assertIsNone(tr._loop) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test__call_connection_lost_with_err(self): | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  |         tr = self.write_pipe_transport() | 
					
						
							| 
									
										
										
										
											2014-07-23 18:21:45 +02:00
										 |  |  |         self.assertIsNotNone(tr._protocol) | 
					
						
							|  |  |  |         self.assertIsNotNone(tr._loop) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         err = OSError() | 
					
						
							|  |  |  |         tr._call_connection_lost(err) | 
					
						
							|  |  |  |         self.protocol.connection_lost.assert_called_with(err) | 
					
						
							|  |  |  |         self.pipe.close.assert_called_with() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.assertIsNone(tr._protocol) | 
					
						
							|  |  |  |         self.assertIsNone(tr._loop) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_close(self): | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  |         tr = self.write_pipe_transport() | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |         tr.write_eof = mock.Mock() | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         tr.close() | 
					
						
							|  |  |  |         tr.write_eof.assert_called_with() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-15 13:16:50 +01:00
										 |  |  |         # closing the transport twice must not fail | 
					
						
							|  |  |  |         tr.close() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |     def test_close_closing(self): | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  |         tr = self.write_pipe_transport() | 
					
						
							| 
									
										
										
										
											2014-02-26 10:25:02 +01:00
										 |  |  |         tr.write_eof = mock.Mock() | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         tr._closing = True | 
					
						
							|  |  |  |         tr.close() | 
					
						
							|  |  |  |         self.assertFalse(tr.write_eof.called) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_write_eof(self): | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  |         tr = self.write_pipe_transport() | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         tr.write_eof() | 
					
						
							| 
									
										
										
										
											2015-11-16 12:43:21 -05:00
										 |  |  |         self.assertTrue(tr.is_closing()) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         self.assertFalse(self.loop.readers) | 
					
						
							|  |  |  |         test_utils.run_briefly(self.loop) | 
					
						
							|  |  |  |         self.protocol.connection_lost.assert_called_with(None) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_write_eof_pending(self): | 
					
						
							| 
									
										
										
										
											2015-01-15 13:18:32 +01:00
										 |  |  |         tr = self.write_pipe_transport() | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         tr._buffer = [b'data'] | 
					
						
							|  |  |  |         tr.write_eof() | 
					
						
							| 
									
										
										
										
											2015-11-16 12:43:21 -05:00
										 |  |  |         self.assertTrue(tr.is_closing()) | 
					
						
							| 
									
										
										
										
											2013-10-17 13:40:50 -07:00
										 |  |  |         self.assertFalse(self.protocol.connection_lost.called) | 
					
						
							| 
									
										
										
										
											2013-10-20 21:02:53 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-13 13:38:22 -05:00
										 |  |  | class TestFunctional(unittest.TestCase): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def setUp(self): | 
					
						
							|  |  |  |         self.loop = asyncio.new_event_loop() | 
					
						
							| 
									
										
										
										
											2024-12-24 19:24:28 +05:30
										 |  |  |         asyncio._set_event_loop(self.loop) | 
					
						
							| 
									
										
										
										
											2017-11-13 13:38:22 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def tearDown(self): | 
					
						
							|  |  |  |         self.loop.close() | 
					
						
							| 
									
										
										
										
											2024-12-24 19:24:28 +05:30
										 |  |  |         asyncio._set_event_loop(None) | 
					
						
							| 
									
										
										
										
											2017-11-13 13:38:22 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def test_add_reader_invalid_argument(self): | 
					
						
							|  |  |  |         def assert_raises(): | 
					
						
							|  |  |  |             return self.assertRaisesRegex(ValueError, r'Invalid file object') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         cb = lambda: None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         with assert_raises(): | 
					
						
							|  |  |  |             self.loop.add_reader(object(), cb) | 
					
						
							|  |  |  |         with assert_raises(): | 
					
						
							|  |  |  |             self.loop.add_writer(object(), cb) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         with assert_raises(): | 
					
						
							|  |  |  |             self.loop.remove_reader(object()) | 
					
						
							|  |  |  |         with assert_raises(): | 
					
						
							|  |  |  |             self.loop.remove_writer(object()) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_add_reader_or_writer_transport_fd(self): | 
					
						
							|  |  |  |         def assert_raises(): | 
					
						
							|  |  |  |             return self.assertRaisesRegex( | 
					
						
							|  |  |  |                 RuntimeError, | 
					
						
							|  |  |  |                 r'File descriptor .* is used by transport') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         async def runner(): | 
					
						
							|  |  |  |             tr, pr = await self.loop.create_connection( | 
					
						
							|  |  |  |                 lambda: asyncio.Protocol(), sock=rsock) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 cb = lambda: None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 with assert_raises(): | 
					
						
							|  |  |  |                     self.loop.add_reader(rsock, cb) | 
					
						
							|  |  |  |                 with assert_raises(): | 
					
						
							|  |  |  |                     self.loop.add_reader(rsock.fileno(), cb) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 with assert_raises(): | 
					
						
							|  |  |  |                     self.loop.remove_reader(rsock) | 
					
						
							|  |  |  |                 with assert_raises(): | 
					
						
							|  |  |  |                     self.loop.remove_reader(rsock.fileno()) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 with assert_raises(): | 
					
						
							|  |  |  |                     self.loop.add_writer(rsock, cb) | 
					
						
							|  |  |  |                 with assert_raises(): | 
					
						
							|  |  |  |                     self.loop.add_writer(rsock.fileno(), cb) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 with assert_raises(): | 
					
						
							|  |  |  |                     self.loop.remove_writer(rsock) | 
					
						
							|  |  |  |                 with assert_raises(): | 
					
						
							|  |  |  |                     self.loop.remove_writer(rsock.fileno()) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             finally: | 
					
						
							|  |  |  |                 tr.close() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         rsock, wsock = socket.socketpair() | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             self.loop.run_until_complete(runner()) | 
					
						
							|  |  |  |         finally: | 
					
						
							|  |  |  |             rsock.close() | 
					
						
							|  |  |  |             wsock.close() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-05 08:04:57 +08:00
										 |  |  | @support.requires_fork() | 
					
						
							| 
									
										
										
										
											2022-11-27 11:24:48 +05:30
										 |  |  | class TestFork(unittest.IsolatedAsyncioTestCase): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     async def test_fork_not_share_event_loop(self): | 
					
						
							|  |  |  |         # The forked process should not share the event loop with the parent | 
					
						
							|  |  |  |         loop = asyncio.get_running_loop() | 
					
						
							|  |  |  |         r, w = os.pipe() | 
					
						
							|  |  |  |         self.addCleanup(os.close, r) | 
					
						
							|  |  |  |         self.addCleanup(os.close, w) | 
					
						
							|  |  |  |         pid = os.fork() | 
					
						
							|  |  |  |         if pid == 0: | 
					
						
							|  |  |  |             # child | 
					
						
							|  |  |  |             try: | 
					
						
							| 
									
										
										
										
											2024-11-04 14:21:20 +05:30
										 |  |  |                 loop = asyncio.get_event_loop() | 
					
						
							| 
									
										
										
										
											2023-01-13 14:40:29 +02:00
										 |  |  |                 os.write(w, b'LOOP:' + str(id(loop)).encode()) | 
					
						
							| 
									
										
										
										
											2022-12-06 19:42:12 +02:00
										 |  |  |             except RuntimeError: | 
					
						
							|  |  |  |                 os.write(w, b'NO LOOP') | 
					
						
							| 
									
										
										
										
											2023-03-18 07:19:38 +00:00
										 |  |  |             except BaseException as e: | 
					
						
							|  |  |  |                 os.write(w, b'ERROR:' + ascii(e).encode()) | 
					
						
							| 
									
										
										
										
											2022-11-27 11:24:48 +05:30
										 |  |  |             finally: | 
					
						
							|  |  |  |                 os._exit(0) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             # parent | 
					
						
							| 
									
										
										
										
											2023-01-13 14:40:29 +02:00
										 |  |  |             result = os.read(r, 100) | 
					
						
							| 
									
										
										
										
											2024-11-04 14:21:20 +05:30
										 |  |  |             self.assertEqual(result, b'NO LOOP') | 
					
						
							| 
									
										
										
										
											2022-11-27 11:24:48 +05:30
										 |  |  |             wait_process(pid, exitcode=0) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @hashlib_helper.requires_hashdigest('md5') | 
					
						
							| 
									
										
										
										
											2024-07-23 16:30:49 -04:00
										 |  |  |     @support.skip_if_sanitizer("TSAN doesn't support threads after fork", thread=True) | 
					
						
							| 
									
										
										
										
											2022-11-27 11:24:48 +05:30
										 |  |  |     def test_fork_signal_handling(self): | 
					
						
							| 
									
										
										
										
											2023-10-04 11:19:08 +02:00
										 |  |  |         self.addCleanup(multiprocessing_cleanup_tests) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-27 11:24:48 +05:30
										 |  |  |         # Sending signal to the forked process should not affect the parent | 
					
						
							|  |  |  |         # process | 
					
						
							|  |  |  |         ctx = multiprocessing.get_context('fork') | 
					
						
							|  |  |  |         manager = ctx.Manager() | 
					
						
							|  |  |  |         self.addCleanup(manager.shutdown) | 
					
						
							|  |  |  |         child_started = manager.Event() | 
					
						
							|  |  |  |         child_handled = manager.Event() | 
					
						
							|  |  |  |         parent_handled = manager.Event() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         def child_main(): | 
					
						
							| 
									
										
										
										
											2023-09-21 23:20:29 +02:00
										 |  |  |             def on_sigterm(*args): | 
					
						
							|  |  |  |                 child_handled.set() | 
					
						
							|  |  |  |                 sys.exit() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             signal.signal(signal.SIGTERM, on_sigterm) | 
					
						
							| 
									
										
										
										
											2022-11-27 11:24:48 +05:30
										 |  |  |             child_started.set() | 
					
						
							| 
									
										
										
										
											2023-09-21 23:20:29 +02:00
										 |  |  |             while True: | 
					
						
							|  |  |  |                 time.sleep(1) | 
					
						
							| 
									
										
										
										
											2022-11-27 11:24:48 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  |         async def main(): | 
					
						
							|  |  |  |             loop = asyncio.get_running_loop() | 
					
						
							|  |  |  |             loop.add_signal_handler(signal.SIGTERM, lambda *args: parent_handled.set()) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             process = ctx.Process(target=child_main) | 
					
						
							|  |  |  |             process.start() | 
					
						
							|  |  |  |             child_started.wait() | 
					
						
							|  |  |  |             os.kill(process.pid, signal.SIGTERM) | 
					
						
							| 
									
										
										
										
											2023-09-21 23:20:29 +02:00
										 |  |  |             process.join(timeout=support.SHORT_TIMEOUT) | 
					
						
							| 
									
										
										
										
											2022-11-27 11:24:48 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  |             async def func(): | 
					
						
							|  |  |  |                 await asyncio.sleep(0.1) | 
					
						
							|  |  |  |                 return 42 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             # Test parent's loop is still functional | 
					
						
							|  |  |  |             self.assertEqual(await asyncio.create_task(func()), 42) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         asyncio.run(main()) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-21 23:20:29 +02:00
										 |  |  |         child_handled.wait(timeout=support.SHORT_TIMEOUT) | 
					
						
							| 
									
										
										
										
											2022-11-27 11:24:48 +05:30
										 |  |  |         self.assertFalse(parent_handled.is_set()) | 
					
						
							|  |  |  |         self.assertTrue(child_handled.is_set()) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @hashlib_helper.requires_hashdigest('md5') | 
					
						
							| 
									
										
										
										
											2024-07-23 16:30:49 -04:00
										 |  |  |     @support.skip_if_sanitizer("TSAN doesn't support threads after fork", thread=True) | 
					
						
							| 
									
										
										
										
											2022-11-27 11:24:48 +05:30
										 |  |  |     def test_fork_asyncio_run(self): | 
					
						
							| 
									
										
										
										
											2023-10-04 11:19:08 +02:00
										 |  |  |         self.addCleanup(multiprocessing_cleanup_tests) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-27 11:24:48 +05:30
										 |  |  |         ctx = multiprocessing.get_context('fork') | 
					
						
							|  |  |  |         manager = ctx.Manager() | 
					
						
							|  |  |  |         self.addCleanup(manager.shutdown) | 
					
						
							|  |  |  |         result = manager.Value('i', 0) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         async def child_main(): | 
					
						
							|  |  |  |             await asyncio.sleep(0.1) | 
					
						
							|  |  |  |             result.value = 42 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         process = ctx.Process(target=lambda: asyncio.run(child_main())) | 
					
						
							|  |  |  |         process.start() | 
					
						
							|  |  |  |         process.join() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.assertEqual(result.value, 42) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @hashlib_helper.requires_hashdigest('md5') | 
					
						
							| 
									
										
										
										
											2024-07-23 16:30:49 -04:00
										 |  |  |     @support.skip_if_sanitizer("TSAN doesn't support threads after fork", thread=True) | 
					
						
							| 
									
										
										
										
											2022-11-27 11:24:48 +05:30
										 |  |  |     def test_fork_asyncio_subprocess(self): | 
					
						
							| 
									
										
										
										
											2023-10-04 11:19:08 +02:00
										 |  |  |         self.addCleanup(multiprocessing_cleanup_tests) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-27 11:24:48 +05:30
										 |  |  |         ctx = multiprocessing.get_context('fork') | 
					
						
							|  |  |  |         manager = ctx.Manager() | 
					
						
							|  |  |  |         self.addCleanup(manager.shutdown) | 
					
						
							|  |  |  |         result = manager.Value('i', 1) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         async def child_main(): | 
					
						
							|  |  |  |             proc = await asyncio.create_subprocess_exec(sys.executable, '-c', 'pass') | 
					
						
							|  |  |  |             result.value = await proc.wait() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         process = ctx.Process(target=lambda: asyncio.run(child_main())) | 
					
						
							|  |  |  |         process.start() | 
					
						
							|  |  |  |         process.join() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.assertEqual(result.value, 0) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-20 21:02:53 +02:00
										 |  |  | if __name__ == '__main__': | 
					
						
							|  |  |  |     unittest.main() |