2013-10-17 17:40:50 -03:00
|
|
|
"""Tests for base_events.py"""
|
|
|
|
|
2013-11-01 18:12:50 -03:00
|
|
|
import errno
|
2013-10-17 17:40:50 -03:00
|
|
|
import logging
|
|
|
|
import socket
|
2014-02-11 06:44:56 -04:00
|
|
|
import sys
|
2013-10-17 17:40:50 -03:00
|
|
|
import time
|
|
|
|
import unittest
|
2014-02-26 05:25:02 -04:00
|
|
|
from unittest import mock
|
2014-02-26 06:07:42 -04:00
|
|
|
from test.support import IPV6_ENABLED
|
2013-10-17 17:40:50 -03:00
|
|
|
|
2014-01-25 10:32:06 -04:00
|
|
|
import asyncio
|
2014-01-25 17:22:18 -04:00
|
|
|
from asyncio import base_events
|
2013-11-01 18:12:50 -03:00
|
|
|
from asyncio import constants
|
2013-10-17 17:40:50 -03:00
|
|
|
from asyncio import test_utils
|
|
|
|
|
|
|
|
|
2014-02-26 05:25:02 -04:00
|
|
|
MOCK_ANY = mock.ANY
|
2014-02-18 19:02:19 -04:00
|
|
|
PY34 = sys.version_info >= (3, 4)
|
|
|
|
|
|
|
|
|
2013-10-17 17:40:50 -03:00
|
|
|
class BaseEventLoopTests(unittest.TestCase):
|
|
|
|
|
|
|
|
def setUp(self):
|
2014-01-25 17:22:18 -04:00
|
|
|
self.loop = base_events.BaseEventLoop()
|
2014-02-26 05:25:02 -04:00
|
|
|
self.loop._selector = mock.Mock()
|
2014-01-25 10:32:06 -04:00
|
|
|
asyncio.set_event_loop(None)
|
2013-10-17 17:40:50 -03:00
|
|
|
|
|
|
|
def test_not_implemented(self):
|
2014-02-26 05:25:02 -04:00
|
|
|
m = mock.Mock()
|
2013-10-17 17:40:50 -03:00
|
|
|
self.assertRaises(
|
|
|
|
NotImplementedError,
|
|
|
|
self.loop._make_socket_transport, m, m)
|
|
|
|
self.assertRaises(
|
|
|
|
NotImplementedError,
|
|
|
|
self.loop._make_ssl_transport, m, m, m, m)
|
|
|
|
self.assertRaises(
|
|
|
|
NotImplementedError,
|
|
|
|
self.loop._make_datagram_transport, m, m)
|
|
|
|
self.assertRaises(
|
|
|
|
NotImplementedError, self.loop._process_events, [])
|
|
|
|
self.assertRaises(
|
|
|
|
NotImplementedError, self.loop._write_to_self)
|
|
|
|
self.assertRaises(
|
|
|
|
NotImplementedError, self.loop._read_from_self)
|
|
|
|
self.assertRaises(
|
|
|
|
NotImplementedError,
|
|
|
|
self.loop._make_read_pipe_transport, m, m)
|
|
|
|
self.assertRaises(
|
|
|
|
NotImplementedError,
|
|
|
|
self.loop._make_write_pipe_transport, m, m)
|
|
|
|
gen = self.loop._make_subprocess_transport(m, m, m, m, m, m, m)
|
|
|
|
self.assertRaises(NotImplementedError, next, iter(gen))
|
|
|
|
|
2014-06-10 05:23:10 -03:00
|
|
|
def test_close(self):
|
|
|
|
self.assertFalse(self.loop.is_closed())
|
|
|
|
self.loop.close()
|
|
|
|
self.assertTrue(self.loop.is_closed())
|
|
|
|
|
|
|
|
# it should be possible to call close() more than once
|
|
|
|
self.loop.close()
|
|
|
|
self.loop.close()
|
|
|
|
|
|
|
|
# operation blocked when the loop is closed
|
|
|
|
f = asyncio.Future(loop=self.loop)
|
|
|
|
self.assertRaises(RuntimeError, self.loop.run_forever)
|
|
|
|
self.assertRaises(RuntimeError, self.loop.run_until_complete, f)
|
|
|
|
|
2013-10-17 17:40:50 -03:00
|
|
|
def test__add_callback_handle(self):
|
2014-02-18 19:02:19 -04:00
|
|
|
h = asyncio.Handle(lambda: False, (), self.loop)
|
2013-10-17 17:40:50 -03:00
|
|
|
|
|
|
|
self.loop._add_callback(h)
|
|
|
|
self.assertFalse(self.loop._scheduled)
|
|
|
|
self.assertIn(h, self.loop._ready)
|
|
|
|
|
|
|
|
def test__add_callback_timer(self):
|
2014-02-18 19:02:19 -04:00
|
|
|
h = asyncio.TimerHandle(time.monotonic()+10, lambda: False, (),
|
|
|
|
self.loop)
|
2013-10-17 17:40:50 -03:00
|
|
|
|
|
|
|
self.loop._add_callback(h)
|
|
|
|
self.assertIn(h, self.loop._scheduled)
|
|
|
|
|
|
|
|
def test__add_callback_cancelled_handle(self):
|
2014-02-18 19:02:19 -04:00
|
|
|
h = asyncio.Handle(lambda: False, (), self.loop)
|
2013-10-17 17:40:50 -03:00
|
|
|
h.cancel()
|
|
|
|
|
|
|
|
self.loop._add_callback(h)
|
|
|
|
self.assertFalse(self.loop._scheduled)
|
|
|
|
self.assertFalse(self.loop._ready)
|
|
|
|
|
|
|
|
def test_set_default_executor(self):
|
2014-02-26 05:25:02 -04:00
|
|
|
executor = mock.Mock()
|
2013-10-17 17:40:50 -03:00
|
|
|
self.loop.set_default_executor(executor)
|
|
|
|
self.assertIs(executor, self.loop._default_executor)
|
|
|
|
|
|
|
|
def test_getnameinfo(self):
|
2014-02-26 05:25:02 -04:00
|
|
|
sockaddr = mock.Mock()
|
|
|
|
self.loop.run_in_executor = mock.Mock()
|
2013-10-17 17:40:50 -03:00
|
|
|
self.loop.getnameinfo(sockaddr)
|
|
|
|
self.assertEqual(
|
|
|
|
(None, socket.getnameinfo, sockaddr, 0),
|
|
|
|
self.loop.run_in_executor.call_args[0])
|
|
|
|
|
|
|
|
def test_call_soon(self):
|
|
|
|
def cb():
|
|
|
|
pass
|
|
|
|
|
|
|
|
h = self.loop.call_soon(cb)
|
|
|
|
self.assertEqual(h._callback, cb)
|
2014-01-25 10:32:06 -04:00
|
|
|
self.assertIsInstance(h, asyncio.Handle)
|
2013-10-17 17:40:50 -03:00
|
|
|
self.assertIn(h, self.loop._ready)
|
|
|
|
|
|
|
|
def test_call_later(self):
|
|
|
|
def cb():
|
|
|
|
pass
|
|
|
|
|
|
|
|
h = self.loop.call_later(10.0, cb)
|
2014-01-25 10:32:06 -04:00
|
|
|
self.assertIsInstance(h, asyncio.TimerHandle)
|
2013-10-17 17:40:50 -03:00
|
|
|
self.assertIn(h, self.loop._scheduled)
|
|
|
|
self.assertNotIn(h, self.loop._ready)
|
|
|
|
|
|
|
|
def test_call_later_negative_delays(self):
|
|
|
|
calls = []
|
|
|
|
|
|
|
|
def cb(arg):
|
|
|
|
calls.append(arg)
|
|
|
|
|
2014-02-26 05:25:02 -04:00
|
|
|
self.loop._process_events = mock.Mock()
|
2013-10-17 17:40:50 -03:00
|
|
|
self.loop.call_later(-1, cb, 'a')
|
|
|
|
self.loop.call_later(-2, cb, 'b')
|
|
|
|
test_utils.run_briefly(self.loop)
|
|
|
|
self.assertEqual(calls, ['b', 'a'])
|
|
|
|
|
|
|
|
def test_time_and_call_at(self):
|
|
|
|
def cb():
|
|
|
|
self.loop.stop()
|
|
|
|
|
2014-02-26 05:25:02 -04:00
|
|
|
self.loop._process_events = mock.Mock()
|
2014-02-03 18:59:52 -04:00
|
|
|
delay = 0.1
|
|
|
|
|
|
|
|
when = self.loop.time() + delay
|
2013-10-17 17:40:50 -03:00
|
|
|
self.loop.call_at(when, cb)
|
|
|
|
t0 = self.loop.time()
|
|
|
|
self.loop.run_forever()
|
2014-01-31 11:39:10 -04:00
|
|
|
dt = self.loop.time() - t0
|
2014-02-03 18:59:52 -04:00
|
|
|
|
2014-02-07 18:34:58 -04:00
|
|
|
# 50 ms: maximum granularity of the event loop
|
|
|
|
self.assertGreaterEqual(dt, delay - 0.050, dt)
|
2014-02-03 18:59:52 -04:00
|
|
|
# tolerate a difference of +800 ms because some Python buildbots
|
|
|
|
# are really slow
|
|
|
|
self.assertLessEqual(dt, 0.9, dt)
|
2013-10-17 17:40:50 -03:00
|
|
|
|
2014-03-21 06:00:52 -03:00
|
|
|
def test_assert_is_current_event_loop(self):
|
|
|
|
def cb():
|
|
|
|
pass
|
|
|
|
|
|
|
|
other_loop = base_events.BaseEventLoop()
|
2014-05-20 10:57:08 -03:00
|
|
|
other_loop._selector = mock.Mock()
|
2014-03-21 06:00:52 -03:00
|
|
|
asyncio.set_event_loop(other_loop)
|
|
|
|
|
|
|
|
# raise RuntimeError if the event loop is different in debug mode
|
|
|
|
self.loop.set_debug(True)
|
|
|
|
with self.assertRaises(RuntimeError):
|
|
|
|
self.loop.call_soon(cb)
|
|
|
|
with self.assertRaises(RuntimeError):
|
|
|
|
self.loop.call_later(60, cb)
|
|
|
|
with self.assertRaises(RuntimeError):
|
|
|
|
self.loop.call_at(self.loop.time() + 60, cb)
|
|
|
|
|
|
|
|
# check disabled if debug mode is disabled
|
|
|
|
self.loop.set_debug(False)
|
|
|
|
self.loop.call_soon(cb)
|
|
|
|
self.loop.call_later(60, cb)
|
|
|
|
self.loop.call_at(self.loop.time() + 60, cb)
|
|
|
|
|
2013-10-17 17:40:50 -03:00
|
|
|
def test_run_once_in_executor_handle(self):
|
|
|
|
def cb():
|
|
|
|
pass
|
|
|
|
|
|
|
|
self.assertRaises(
|
|
|
|
AssertionError, self.loop.run_in_executor,
|
2014-02-18 19:02:19 -04:00
|
|
|
None, asyncio.Handle(cb, (), self.loop), ('',))
|
2013-10-17 17:40:50 -03:00
|
|
|
self.assertRaises(
|
|
|
|
AssertionError, self.loop.run_in_executor,
|
2014-02-18 19:02:19 -04:00
|
|
|
None, asyncio.TimerHandle(10, cb, (), self.loop))
|
2013-10-17 17:40:50 -03:00
|
|
|
|
|
|
|
def test_run_once_in_executor_cancelled(self):
|
|
|
|
def cb():
|
|
|
|
pass
|
2014-02-18 19:02:19 -04:00
|
|
|
h = asyncio.Handle(cb, (), self.loop)
|
2013-10-17 17:40:50 -03:00
|
|
|
h.cancel()
|
|
|
|
|
|
|
|
f = self.loop.run_in_executor(None, h)
|
2014-01-25 10:32:06 -04:00
|
|
|
self.assertIsInstance(f, asyncio.Future)
|
2013-10-17 17:40:50 -03:00
|
|
|
self.assertTrue(f.done())
|
|
|
|
self.assertIsNone(f.result())
|
|
|
|
|
|
|
|
def test_run_once_in_executor_plain(self):
|
|
|
|
def cb():
|
|
|
|
pass
|
2014-02-18 19:02:19 -04:00
|
|
|
h = asyncio.Handle(cb, (), self.loop)
|
2014-01-25 10:32:06 -04:00
|
|
|
f = asyncio.Future(loop=self.loop)
|
2014-02-26 05:25:02 -04:00
|
|
|
executor = mock.Mock()
|
2013-10-17 17:40:50 -03:00
|
|
|
executor.submit.return_value = f
|
|
|
|
|
|
|
|
self.loop.set_default_executor(executor)
|
|
|
|
|
|
|
|
res = self.loop.run_in_executor(None, h)
|
|
|
|
self.assertIs(f, res)
|
|
|
|
|
2014-02-26 05:25:02 -04:00
|
|
|
executor = mock.Mock()
|
2013-10-17 17:40:50 -03:00
|
|
|
executor.submit.return_value = f
|
|
|
|
res = self.loop.run_in_executor(executor, h)
|
|
|
|
self.assertIs(f, res)
|
|
|
|
self.assertTrue(executor.submit.called)
|
|
|
|
|
|
|
|
f.cancel() # Don't complain about abandoned Future.
|
|
|
|
|
|
|
|
def test__run_once(self):
|
2014-02-18 19:02:19 -04:00
|
|
|
h1 = asyncio.TimerHandle(time.monotonic() + 5.0, lambda: True, (),
|
|
|
|
self.loop)
|
|
|
|
h2 = asyncio.TimerHandle(time.monotonic() + 10.0, lambda: True, (),
|
|
|
|
self.loop)
|
2013-10-17 17:40:50 -03:00
|
|
|
|
|
|
|
h1.cancel()
|
|
|
|
|
2014-02-26 05:25:02 -04:00
|
|
|
self.loop._process_events = mock.Mock()
|
2013-10-17 17:40:50 -03:00
|
|
|
self.loop._scheduled.append(h1)
|
|
|
|
self.loop._scheduled.append(h2)
|
|
|
|
self.loop._run_once()
|
|
|
|
|
|
|
|
t = self.loop._selector.select.call_args[0][0]
|
2013-11-23 13:20:12 -04:00
|
|
|
self.assertTrue(9.5 < t < 10.5, t)
|
2013-10-17 17:40:50 -03:00
|
|
|
self.assertEqual([h2], self.loop._scheduled)
|
|
|
|
self.assertTrue(self.loop._process_events.called)
|
|
|
|
|
2014-02-19 18:15:02 -04:00
|
|
|
def test_set_debug(self):
|
|
|
|
self.loop.set_debug(True)
|
|
|
|
self.assertTrue(self.loop.get_debug())
|
|
|
|
self.loop.set_debug(False)
|
|
|
|
self.assertFalse(self.loop.get_debug())
|
|
|
|
|
2014-02-26 05:25:02 -04:00
|
|
|
@mock.patch('asyncio.base_events.logger')
|
2014-06-17 20:22:15 -03:00
|
|
|
def test__run_once_logging(self, m_logger):
|
|
|
|
def slow_select(timeout):
|
|
|
|
time.sleep(1.0)
|
|
|
|
return []
|
2013-10-17 17:40:50 -03:00
|
|
|
|
2014-06-17 20:22:15 -03:00
|
|
|
# Log to INFO level if timeout > 1.0 sec.
|
|
|
|
self.loop._selector.select = slow_select
|
2014-02-26 05:25:02 -04:00
|
|
|
self.loop._process_events = mock.Mock()
|
2013-10-17 17:40:50 -03:00
|
|
|
self.loop._run_once()
|
2014-02-04 18:27:14 -04:00
|
|
|
self.assertEqual(logging.INFO, m_logger.log.call_args[0][0])
|
2013-10-17 17:40:50 -03:00
|
|
|
|
2014-06-17 20:22:15 -03:00
|
|
|
def fast_select(timeout):
|
|
|
|
time.sleep(0.001)
|
|
|
|
return []
|
|
|
|
|
|
|
|
self.loop._selector.select = fast_select
|
2013-10-17 17:40:50 -03:00
|
|
|
self.loop._run_once()
|
2014-02-04 18:27:14 -04:00
|
|
|
self.assertEqual(logging.DEBUG, m_logger.log.call_args[0][0])
|
2013-10-17 17:40:50 -03:00
|
|
|
|
|
|
|
def test__run_once_schedule_handle(self):
|
|
|
|
handle = None
|
|
|
|
processed = False
|
|
|
|
|
|
|
|
def cb(loop):
|
|
|
|
nonlocal processed, handle
|
|
|
|
processed = True
|
|
|
|
handle = loop.call_soon(lambda: True)
|
|
|
|
|
2014-02-18 19:02:19 -04:00
|
|
|
h = asyncio.TimerHandle(time.monotonic() - 1, cb, (self.loop,),
|
|
|
|
self.loop)
|
2013-10-17 17:40:50 -03:00
|
|
|
|
2014-02-26 05:25:02 -04:00
|
|
|
self.loop._process_events = mock.Mock()
|
2013-10-17 17:40:50 -03:00
|
|
|
self.loop._scheduled.append(h)
|
|
|
|
self.loop._run_once()
|
|
|
|
|
|
|
|
self.assertTrue(processed)
|
|
|
|
self.assertEqual([handle], list(self.loop._ready))
|
|
|
|
|
|
|
|
def test_run_until_complete_type_error(self):
|
2014-02-11 06:44:56 -04:00
|
|
|
self.assertRaises(TypeError,
|
|
|
|
self.loop.run_until_complete, 'blah')
|
|
|
|
|
|
|
|
def test_subprocess_exec_invalid_args(self):
|
|
|
|
args = [sys.executable, '-c', 'pass']
|
|
|
|
|
|
|
|
# missing program parameter (empty args)
|
|
|
|
self.assertRaises(TypeError,
|
|
|
|
self.loop.run_until_complete, self.loop.subprocess_exec,
|
|
|
|
asyncio.SubprocessProtocol)
|
|
|
|
|
|
|
|
# exepected multiple arguments, not a list
|
|
|
|
self.assertRaises(TypeError,
|
|
|
|
self.loop.run_until_complete, self.loop.subprocess_exec,
|
|
|
|
asyncio.SubprocessProtocol, args)
|
|
|
|
|
|
|
|
# program arguments must be strings, not int
|
|
|
|
self.assertRaises(TypeError,
|
|
|
|
self.loop.run_until_complete, self.loop.subprocess_exec,
|
|
|
|
asyncio.SubprocessProtocol, sys.executable, 123)
|
|
|
|
|
|
|
|
# universal_newlines, shell, bufsize must not be set
|
|
|
|
self.assertRaises(TypeError,
|
|
|
|
self.loop.run_until_complete, self.loop.subprocess_exec,
|
|
|
|
asyncio.SubprocessProtocol, *args, universal_newlines=True)
|
|
|
|
self.assertRaises(TypeError,
|
|
|
|
self.loop.run_until_complete, self.loop.subprocess_exec,
|
|
|
|
asyncio.SubprocessProtocol, *args, shell=True)
|
|
|
|
self.assertRaises(TypeError,
|
|
|
|
self.loop.run_until_complete, self.loop.subprocess_exec,
|
|
|
|
asyncio.SubprocessProtocol, *args, bufsize=4096)
|
|
|
|
|
|
|
|
def test_subprocess_shell_invalid_args(self):
|
2014-02-18 23:27:48 -04:00
|
|
|
# expected a string, not an int or a list
|
2014-02-11 06:44:56 -04:00
|
|
|
self.assertRaises(TypeError,
|
|
|
|
self.loop.run_until_complete, self.loop.subprocess_shell,
|
|
|
|
asyncio.SubprocessProtocol, 123)
|
|
|
|
self.assertRaises(TypeError,
|
|
|
|
self.loop.run_until_complete, self.loop.subprocess_shell,
|
|
|
|
asyncio.SubprocessProtocol, [sys.executable, '-c', 'pass'])
|
|
|
|
|
|
|
|
# universal_newlines, shell, bufsize must not be set
|
|
|
|
self.assertRaises(TypeError,
|
|
|
|
self.loop.run_until_complete, self.loop.subprocess_shell,
|
|
|
|
asyncio.SubprocessProtocol, 'exit 0', universal_newlines=True)
|
|
|
|
self.assertRaises(TypeError,
|
|
|
|
self.loop.run_until_complete, self.loop.subprocess_shell,
|
|
|
|
asyncio.SubprocessProtocol, 'exit 0', shell=True)
|
|
|
|
self.assertRaises(TypeError,
|
|
|
|
self.loop.run_until_complete, self.loop.subprocess_shell,
|
|
|
|
asyncio.SubprocessProtocol, 'exit 0', bufsize=4096)
|
2013-10-17 17:40:50 -03:00
|
|
|
|
2014-02-18 19:02:19 -04:00
|
|
|
def test_default_exc_handler_callback(self):
|
2014-02-26 05:25:02 -04:00
|
|
|
self.loop._process_events = mock.Mock()
|
2014-02-18 19:02:19 -04:00
|
|
|
|
|
|
|
def zero_error(fut):
|
|
|
|
fut.set_result(True)
|
|
|
|
1/0
|
|
|
|
|
|
|
|
# Test call_soon (events.Handle)
|
2014-02-26 05:25:02 -04:00
|
|
|
with mock.patch('asyncio.base_events.logger') as log:
|
2014-02-18 19:02:19 -04:00
|
|
|
fut = asyncio.Future(loop=self.loop)
|
|
|
|
self.loop.call_soon(zero_error, fut)
|
|
|
|
fut.add_done_callback(lambda fut: self.loop.stop())
|
|
|
|
self.loop.run_forever()
|
|
|
|
log.error.assert_called_with(
|
|
|
|
test_utils.MockPattern('Exception in callback.*zero'),
|
|
|
|
exc_info=(ZeroDivisionError, MOCK_ANY, MOCK_ANY))
|
|
|
|
|
|
|
|
# Test call_later (events.TimerHandle)
|
2014-02-26 05:25:02 -04:00
|
|
|
with mock.patch('asyncio.base_events.logger') as log:
|
2014-02-18 19:02:19 -04:00
|
|
|
fut = asyncio.Future(loop=self.loop)
|
|
|
|
self.loop.call_later(0.01, zero_error, fut)
|
|
|
|
fut.add_done_callback(lambda fut: self.loop.stop())
|
|
|
|
self.loop.run_forever()
|
|
|
|
log.error.assert_called_with(
|
|
|
|
test_utils.MockPattern('Exception in callback.*zero'),
|
|
|
|
exc_info=(ZeroDivisionError, MOCK_ANY, MOCK_ANY))
|
|
|
|
|
|
|
|
def test_default_exc_handler_coro(self):
|
2014-02-26 05:25:02 -04:00
|
|
|
self.loop._process_events = mock.Mock()
|
2014-02-18 19:02:19 -04:00
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
def zero_error_coro():
|
|
|
|
yield from asyncio.sleep(0.01, loop=self.loop)
|
|
|
|
1/0
|
|
|
|
|
|
|
|
# Test Future.__del__
|
2014-02-26 05:25:02 -04:00
|
|
|
with mock.patch('asyncio.base_events.logger') as log:
|
2014-02-18 19:02:19 -04:00
|
|
|
fut = asyncio.async(zero_error_coro(), loop=self.loop)
|
|
|
|
fut.add_done_callback(lambda *args: self.loop.stop())
|
|
|
|
self.loop.run_forever()
|
|
|
|
fut = None # Trigger Future.__del__ or futures._TracebackLogger
|
|
|
|
if PY34:
|
|
|
|
# Future.__del__ in Python 3.4 logs error with
|
|
|
|
# an actual exception context
|
|
|
|
log.error.assert_called_with(
|
|
|
|
test_utils.MockPattern('.*exception was never retrieved'),
|
|
|
|
exc_info=(ZeroDivisionError, MOCK_ANY, MOCK_ANY))
|
|
|
|
else:
|
|
|
|
# futures._TracebackLogger logs only textual traceback
|
|
|
|
log.error.assert_called_with(
|
|
|
|
test_utils.MockPattern(
|
|
|
|
'.*exception was never retrieved.*ZeroDiv'),
|
|
|
|
exc_info=False)
|
|
|
|
|
|
|
|
def test_set_exc_handler_invalid(self):
|
|
|
|
with self.assertRaisesRegex(TypeError, 'A callable object or None'):
|
|
|
|
self.loop.set_exception_handler('spam')
|
|
|
|
|
|
|
|
def test_set_exc_handler_custom(self):
|
|
|
|
def zero_error():
|
|
|
|
1/0
|
|
|
|
|
|
|
|
def run_loop():
|
|
|
|
self.loop.call_soon(zero_error)
|
|
|
|
self.loop._run_once()
|
|
|
|
|
2014-02-26 05:25:02 -04:00
|
|
|
self.loop._process_events = mock.Mock()
|
2014-02-18 19:02:19 -04:00
|
|
|
|
2014-02-26 05:25:02 -04:00
|
|
|
mock_handler = mock.Mock()
|
2014-02-18 19:02:19 -04:00
|
|
|
self.loop.set_exception_handler(mock_handler)
|
|
|
|
run_loop()
|
|
|
|
mock_handler.assert_called_with(self.loop, {
|
|
|
|
'exception': MOCK_ANY,
|
|
|
|
'message': test_utils.MockPattern(
|
|
|
|
'Exception in callback.*zero_error'),
|
|
|
|
'handle': MOCK_ANY,
|
|
|
|
})
|
|
|
|
mock_handler.reset_mock()
|
|
|
|
|
|
|
|
self.loop.set_exception_handler(None)
|
2014-02-26 05:25:02 -04:00
|
|
|
with mock.patch('asyncio.base_events.logger') as log:
|
2014-02-18 19:02:19 -04:00
|
|
|
run_loop()
|
|
|
|
log.error.assert_called_with(
|
|
|
|
test_utils.MockPattern(
|
|
|
|
'Exception in callback.*zero'),
|
|
|
|
exc_info=(ZeroDivisionError, MOCK_ANY, MOCK_ANY))
|
|
|
|
|
|
|
|
assert not mock_handler.called
|
|
|
|
|
|
|
|
def test_set_exc_handler_broken(self):
|
|
|
|
def run_loop():
|
|
|
|
def zero_error():
|
|
|
|
1/0
|
|
|
|
self.loop.call_soon(zero_error)
|
|
|
|
self.loop._run_once()
|
|
|
|
|
|
|
|
def handler(loop, context):
|
|
|
|
raise AttributeError('spam')
|
|
|
|
|
2014-02-26 05:25:02 -04:00
|
|
|
self.loop._process_events = mock.Mock()
|
2014-02-18 19:02:19 -04:00
|
|
|
|
|
|
|
self.loop.set_exception_handler(handler)
|
|
|
|
|
2014-02-26 05:25:02 -04:00
|
|
|
with mock.patch('asyncio.base_events.logger') as log:
|
2014-02-18 19:02:19 -04:00
|
|
|
run_loop()
|
|
|
|
log.error.assert_called_with(
|
|
|
|
test_utils.MockPattern(
|
|
|
|
'Unhandled error in exception handler'),
|
|
|
|
exc_info=(AttributeError, MOCK_ANY, MOCK_ANY))
|
|
|
|
|
|
|
|
def test_default_exc_handler_broken(self):
|
|
|
|
_context = None
|
|
|
|
|
|
|
|
class Loop(base_events.BaseEventLoop):
|
|
|
|
|
2014-02-26 05:25:02 -04:00
|
|
|
_selector = mock.Mock()
|
|
|
|
_process_events = mock.Mock()
|
2014-02-18 19:02:19 -04:00
|
|
|
|
|
|
|
def default_exception_handler(self, context):
|
|
|
|
nonlocal _context
|
|
|
|
_context = context
|
|
|
|
# Simulates custom buggy "default_exception_handler"
|
|
|
|
raise ValueError('spam')
|
|
|
|
|
|
|
|
loop = Loop()
|
|
|
|
asyncio.set_event_loop(loop)
|
|
|
|
|
|
|
|
def run_loop():
|
|
|
|
def zero_error():
|
|
|
|
1/0
|
|
|
|
loop.call_soon(zero_error)
|
|
|
|
loop._run_once()
|
|
|
|
|
2014-02-26 05:25:02 -04:00
|
|
|
with mock.patch('asyncio.base_events.logger') as log:
|
2014-02-18 19:02:19 -04:00
|
|
|
run_loop()
|
|
|
|
log.error.assert_called_with(
|
|
|
|
'Exception in default exception handler',
|
|
|
|
exc_info=True)
|
|
|
|
|
|
|
|
def custom_handler(loop, context):
|
|
|
|
raise ValueError('ham')
|
|
|
|
|
|
|
|
_context = None
|
|
|
|
loop.set_exception_handler(custom_handler)
|
2014-02-26 05:25:02 -04:00
|
|
|
with mock.patch('asyncio.base_events.logger') as log:
|
2014-02-18 19:02:19 -04:00
|
|
|
run_loop()
|
|
|
|
log.error.assert_called_with(
|
|
|
|
test_utils.MockPattern('Exception in default exception.*'
|
|
|
|
'while handling.*in custom'),
|
|
|
|
exc_info=True)
|
|
|
|
|
|
|
|
# Check that original context was passed to default
|
|
|
|
# exception handler.
|
|
|
|
self.assertIn('context', _context)
|
|
|
|
self.assertIs(type(_context['context']['exception']),
|
|
|
|
ZeroDivisionError)
|
|
|
|
|
2013-10-17 17:40:50 -03:00
|
|
|
|
2014-01-25 10:32:06 -04:00
|
|
|
class MyProto(asyncio.Protocol):
|
2013-10-17 17:40:50 -03:00
|
|
|
done = None
|
|
|
|
|
|
|
|
def __init__(self, create_future=False):
|
|
|
|
self.state = 'INITIAL'
|
|
|
|
self.nbytes = 0
|
|
|
|
if create_future:
|
2014-01-25 10:32:06 -04:00
|
|
|
self.done = asyncio.Future()
|
2013-10-17 17:40:50 -03:00
|
|
|
|
|
|
|
def connection_made(self, transport):
|
|
|
|
self.transport = transport
|
|
|
|
assert self.state == 'INITIAL', self.state
|
|
|
|
self.state = 'CONNECTED'
|
|
|
|
transport.write(b'GET / HTTP/1.0\r\nHost: example.com\r\n\r\n')
|
|
|
|
|
|
|
|
def data_received(self, data):
|
|
|
|
assert self.state == 'CONNECTED', self.state
|
|
|
|
self.nbytes += len(data)
|
|
|
|
|
|
|
|
def eof_received(self):
|
|
|
|
assert self.state == 'CONNECTED', self.state
|
|
|
|
self.state = 'EOF'
|
|
|
|
|
|
|
|
def connection_lost(self, exc):
|
|
|
|
assert self.state in ('CONNECTED', 'EOF'), self.state
|
|
|
|
self.state = 'CLOSED'
|
|
|
|
if self.done:
|
|
|
|
self.done.set_result(None)
|
|
|
|
|
|
|
|
|
2014-01-25 10:32:06 -04:00
|
|
|
class MyDatagramProto(asyncio.DatagramProtocol):
|
2013-10-17 17:40:50 -03:00
|
|
|
done = None
|
|
|
|
|
|
|
|
def __init__(self, create_future=False):
|
|
|
|
self.state = 'INITIAL'
|
|
|
|
self.nbytes = 0
|
|
|
|
if create_future:
|
2014-01-25 10:32:06 -04:00
|
|
|
self.done = asyncio.Future()
|
2013-10-17 17:40:50 -03:00
|
|
|
|
|
|
|
def connection_made(self, transport):
|
|
|
|
self.transport = transport
|
|
|
|
assert self.state == 'INITIAL', self.state
|
|
|
|
self.state = 'INITIALIZED'
|
|
|
|
|
|
|
|
def datagram_received(self, data, addr):
|
|
|
|
assert self.state == 'INITIALIZED', self.state
|
|
|
|
self.nbytes += len(data)
|
|
|
|
|
2013-11-15 20:51:48 -04:00
|
|
|
def error_received(self, exc):
|
2013-10-17 17:40:50 -03:00
|
|
|
assert self.state == 'INITIALIZED', self.state
|
|
|
|
|
|
|
|
def connection_lost(self, exc):
|
|
|
|
assert self.state == 'INITIALIZED', self.state
|
|
|
|
self.state = 'CLOSED'
|
|
|
|
if self.done:
|
|
|
|
self.done.set_result(None)
|
|
|
|
|
|
|
|
|
|
|
|
class BaseEventLoopWithSelectorTests(unittest.TestCase):
|
|
|
|
|
|
|
|
def setUp(self):
|
2014-01-25 10:32:06 -04:00
|
|
|
self.loop = asyncio.new_event_loop()
|
|
|
|
asyncio.set_event_loop(None)
|
2013-10-17 17:40:50 -03:00
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
self.loop.close()
|
|
|
|
|
2014-02-26 05:25:02 -04:00
|
|
|
@mock.patch('asyncio.base_events.socket')
|
2013-10-17 17:40:50 -03:00
|
|
|
def test_create_connection_multiple_errors(self, m_socket):
|
|
|
|
|
2014-01-25 10:32:06 -04:00
|
|
|
class MyProto(asyncio.Protocol):
|
2013-10-17 17:40:50 -03:00
|
|
|
pass
|
|
|
|
|
2014-01-25 10:32:06 -04:00
|
|
|
@asyncio.coroutine
|
2013-10-17 17:40:50 -03:00
|
|
|
def getaddrinfo(*args, **kw):
|
|
|
|
yield from []
|
|
|
|
return [(2, 1, 6, '', ('107.6.106.82', 80)),
|
|
|
|
(2, 1, 6, '', ('107.6.106.82', 80))]
|
|
|
|
|
|
|
|
def getaddrinfo_task(*args, **kwds):
|
2014-01-25 10:32:06 -04:00
|
|
|
return asyncio.Task(getaddrinfo(*args, **kwds), loop=self.loop)
|
2013-10-17 17:40:50 -03:00
|
|
|
|
|
|
|
idx = -1
|
|
|
|
errors = ['err1', 'err2']
|
|
|
|
|
|
|
|
def _socket(*args, **kw):
|
|
|
|
nonlocal idx, errors
|
|
|
|
idx += 1
|
|
|
|
raise OSError(errors[idx])
|
|
|
|
|
|
|
|
m_socket.socket = _socket
|
|
|
|
|
|
|
|
self.loop.getaddrinfo = getaddrinfo_task
|
|
|
|
|
|
|
|
coro = self.loop.create_connection(MyProto, 'example.com', 80)
|
|
|
|
with self.assertRaises(OSError) as cm:
|
|
|
|
self.loop.run_until_complete(coro)
|
|
|
|
|
|
|
|
self.assertEqual(str(cm.exception), 'Multiple exceptions: err1, err2')
|
|
|
|
|
2014-06-03 19:11:52 -03:00
|
|
|
@mock.patch('asyncio.base_events.socket')
|
|
|
|
def test_create_connection_timeout(self, m_socket):
|
|
|
|
# Ensure that the socket is closed on timeout
|
|
|
|
sock = mock.Mock()
|
|
|
|
m_socket.socket.return_value = sock
|
|
|
|
|
|
|
|
def getaddrinfo(*args, **kw):
|
|
|
|
fut = asyncio.Future(loop=self.loop)
|
|
|
|
addr = (socket.AF_INET, socket.SOCK_STREAM, 0, '',
|
|
|
|
('127.0.0.1', 80))
|
|
|
|
fut.set_result([addr])
|
|
|
|
return fut
|
|
|
|
self.loop.getaddrinfo = getaddrinfo
|
|
|
|
|
|
|
|
with mock.patch.object(self.loop, 'sock_connect',
|
|
|
|
side_effect=asyncio.TimeoutError):
|
|
|
|
coro = self.loop.create_connection(MyProto, '127.0.0.1', 80)
|
2014-06-03 19:18:41 -03:00
|
|
|
with self.assertRaises(asyncio.TimeoutError):
|
2014-06-03 19:11:52 -03:00
|
|
|
self.loop.run_until_complete(coro)
|
|
|
|
self.assertTrue(sock.close.called)
|
|
|
|
|
2013-10-17 17:40:50 -03:00
|
|
|
def test_create_connection_host_port_sock(self):
|
|
|
|
coro = self.loop.create_connection(
|
|
|
|
MyProto, 'example.com', 80, sock=object())
|
|
|
|
self.assertRaises(ValueError, self.loop.run_until_complete, coro)
|
|
|
|
|
|
|
|
def test_create_connection_no_host_port_sock(self):
|
|
|
|
coro = self.loop.create_connection(MyProto)
|
|
|
|
self.assertRaises(ValueError, self.loop.run_until_complete, coro)
|
|
|
|
|
|
|
|
def test_create_connection_no_getaddrinfo(self):
|
2014-01-25 10:32:06 -04:00
|
|
|
@asyncio.coroutine
|
2013-10-17 17:40:50 -03:00
|
|
|
def getaddrinfo(*args, **kw):
|
|
|
|
yield from []
|
|
|
|
|
|
|
|
def getaddrinfo_task(*args, **kwds):
|
2014-01-25 10:32:06 -04:00
|
|
|
return asyncio.Task(getaddrinfo(*args, **kwds), loop=self.loop)
|
2013-10-17 17:40:50 -03:00
|
|
|
|
|
|
|
self.loop.getaddrinfo = getaddrinfo_task
|
|
|
|
coro = self.loop.create_connection(MyProto, 'example.com', 80)
|
|
|
|
self.assertRaises(
|
|
|
|
OSError, self.loop.run_until_complete, coro)
|
|
|
|
|
|
|
|
def test_create_connection_connect_err(self):
|
2014-01-25 10:32:06 -04:00
|
|
|
@asyncio.coroutine
|
2013-10-17 17:40:50 -03:00
|
|
|
def getaddrinfo(*args, **kw):
|
|
|
|
yield from []
|
|
|
|
return [(2, 1, 6, '', ('107.6.106.82', 80))]
|
|
|
|
|
|
|
|
def getaddrinfo_task(*args, **kwds):
|
2014-01-25 10:32:06 -04:00
|
|
|
return asyncio.Task(getaddrinfo(*args, **kwds), loop=self.loop)
|
2013-10-17 17:40:50 -03:00
|
|
|
|
|
|
|
self.loop.getaddrinfo = getaddrinfo_task
|
2014-02-26 05:25:02 -04:00
|
|
|
self.loop.sock_connect = mock.Mock()
|
2013-10-17 17:40:50 -03:00
|
|
|
self.loop.sock_connect.side_effect = OSError
|
|
|
|
|
|
|
|
coro = self.loop.create_connection(MyProto, 'example.com', 80)
|
|
|
|
self.assertRaises(
|
|
|
|
OSError, self.loop.run_until_complete, coro)
|
|
|
|
|
|
|
|
def test_create_connection_multiple(self):
|
2014-01-25 10:32:06 -04:00
|
|
|
@asyncio.coroutine
|
2013-10-17 17:40:50 -03:00
|
|
|
def getaddrinfo(*args, **kw):
|
|
|
|
return [(2, 1, 6, '', ('0.0.0.1', 80)),
|
|
|
|
(2, 1, 6, '', ('0.0.0.2', 80))]
|
|
|
|
|
|
|
|
def getaddrinfo_task(*args, **kwds):
|
2014-01-25 10:32:06 -04:00
|
|
|
return asyncio.Task(getaddrinfo(*args, **kwds), loop=self.loop)
|
2013-10-17 17:40:50 -03:00
|
|
|
|
|
|
|
self.loop.getaddrinfo = getaddrinfo_task
|
2014-02-26 05:25:02 -04:00
|
|
|
self.loop.sock_connect = mock.Mock()
|
2013-10-17 17:40:50 -03:00
|
|
|
self.loop.sock_connect.side_effect = OSError
|
|
|
|
|
|
|
|
coro = self.loop.create_connection(
|
|
|
|
MyProto, 'example.com', 80, family=socket.AF_INET)
|
|
|
|
with self.assertRaises(OSError):
|
|
|
|
self.loop.run_until_complete(coro)
|
|
|
|
|
2014-02-26 05:25:02 -04:00
|
|
|
@mock.patch('asyncio.base_events.socket')
|
2013-10-17 17:40:50 -03:00
|
|
|
def test_create_connection_multiple_errors_local_addr(self, m_socket):
|
|
|
|
|
|
|
|
def bind(addr):
|
|
|
|
if addr[0] == '0.0.0.1':
|
|
|
|
err = OSError('Err')
|
|
|
|
err.strerror = 'Err'
|
|
|
|
raise err
|
|
|
|
|
|
|
|
m_socket.socket.return_value.bind = bind
|
|
|
|
|
2014-01-25 10:32:06 -04:00
|
|
|
@asyncio.coroutine
|
2013-10-17 17:40:50 -03:00
|
|
|
def getaddrinfo(*args, **kw):
|
|
|
|
return [(2, 1, 6, '', ('0.0.0.1', 80)),
|
|
|
|
(2, 1, 6, '', ('0.0.0.2', 80))]
|
|
|
|
|
|
|
|
def getaddrinfo_task(*args, **kwds):
|
2014-01-25 10:32:06 -04:00
|
|
|
return asyncio.Task(getaddrinfo(*args, **kwds), loop=self.loop)
|
2013-10-17 17:40:50 -03:00
|
|
|
|
|
|
|
self.loop.getaddrinfo = getaddrinfo_task
|
2014-02-26 05:25:02 -04:00
|
|
|
self.loop.sock_connect = mock.Mock()
|
2013-10-17 17:40:50 -03:00
|
|
|
self.loop.sock_connect.side_effect = OSError('Err2')
|
|
|
|
|
|
|
|
coro = self.loop.create_connection(
|
|
|
|
MyProto, 'example.com', 80, family=socket.AF_INET,
|
|
|
|
local_addr=(None, 8080))
|
|
|
|
with self.assertRaises(OSError) as cm:
|
|
|
|
self.loop.run_until_complete(coro)
|
|
|
|
|
|
|
|
self.assertTrue(str(cm.exception).startswith('Multiple exceptions: '))
|
|
|
|
self.assertTrue(m_socket.socket.return_value.close.called)
|
|
|
|
|
|
|
|
def test_create_connection_no_local_addr(self):
|
2014-01-25 10:32:06 -04:00
|
|
|
@asyncio.coroutine
|
2013-10-17 17:40:50 -03:00
|
|
|
def getaddrinfo(host, *args, **kw):
|
|
|
|
if host == 'example.com':
|
|
|
|
return [(2, 1, 6, '', ('107.6.106.82', 80)),
|
|
|
|
(2, 1, 6, '', ('107.6.106.82', 80))]
|
|
|
|
else:
|
|
|
|
return []
|
|
|
|
|
|
|
|
def getaddrinfo_task(*args, **kwds):
|
2014-01-25 10:32:06 -04:00
|
|
|
return asyncio.Task(getaddrinfo(*args, **kwds), loop=self.loop)
|
2013-10-17 17:40:50 -03:00
|
|
|
self.loop.getaddrinfo = getaddrinfo_task
|
|
|
|
|
|
|
|
coro = self.loop.create_connection(
|
|
|
|
MyProto, 'example.com', 80, family=socket.AF_INET,
|
|
|
|
local_addr=(None, 8080))
|
|
|
|
self.assertRaises(
|
|
|
|
OSError, self.loop.run_until_complete, coro)
|
|
|
|
|
2013-11-01 18:24:28 -03:00
|
|
|
def test_create_connection_ssl_server_hostname_default(self):
|
2014-02-26 05:25:02 -04:00
|
|
|
self.loop.getaddrinfo = mock.Mock()
|
2013-11-01 18:20:55 -03:00
|
|
|
|
2013-11-01 18:16:54 -03:00
|
|
|
def mock_getaddrinfo(*args, **kwds):
|
2014-01-25 10:32:06 -04:00
|
|
|
f = asyncio.Future(loop=self.loop)
|
2013-11-01 18:16:54 -03:00
|
|
|
f.set_result([(socket.AF_INET, socket.SOCK_STREAM,
|
|
|
|
socket.SOL_TCP, '', ('1.2.3.4', 80))])
|
|
|
|
return f
|
2013-11-01 18:20:55 -03:00
|
|
|
|
2013-11-01 18:16:54 -03:00
|
|
|
self.loop.getaddrinfo.side_effect = mock_getaddrinfo
|
2014-02-26 05:25:02 -04:00
|
|
|
self.loop.sock_connect = mock.Mock()
|
2013-11-01 18:16:54 -03:00
|
|
|
self.loop.sock_connect.return_value = ()
|
2014-02-26 05:25:02 -04:00
|
|
|
self.loop._make_ssl_transport = mock.Mock()
|
2013-11-01 18:20:55 -03:00
|
|
|
|
2013-11-14 14:06:18 -04:00
|
|
|
class _SelectorTransportMock:
|
|
|
|
_sock = None
|
|
|
|
|
|
|
|
def close(self):
|
|
|
|
self._sock.close()
|
|
|
|
|
2013-11-01 18:20:55 -03:00
|
|
|
def mock_make_ssl_transport(sock, protocol, sslcontext, waiter,
|
|
|
|
**kwds):
|
2013-11-01 18:16:54 -03:00
|
|
|
waiter.set_result(None)
|
2013-11-14 14:06:18 -04:00
|
|
|
transport = _SelectorTransportMock()
|
|
|
|
transport._sock = sock
|
|
|
|
return transport
|
2013-11-01 18:20:55 -03:00
|
|
|
|
2013-11-01 18:16:54 -03:00
|
|
|
self.loop._make_ssl_transport.side_effect = mock_make_ssl_transport
|
2014-02-26 05:25:02 -04:00
|
|
|
ANY = mock.ANY
|
2013-11-01 18:16:54 -03:00
|
|
|
# First try the default server_hostname.
|
|
|
|
self.loop._make_ssl_transport.reset_mock()
|
|
|
|
coro = self.loop.create_connection(MyProto, 'python.org', 80, ssl=True)
|
2013-11-14 14:06:18 -04:00
|
|
|
transport, _ = self.loop.run_until_complete(coro)
|
|
|
|
transport.close()
|
2013-11-01 18:20:55 -03:00
|
|
|
self.loop._make_ssl_transport.assert_called_with(
|
|
|
|
ANY, ANY, ANY, ANY,
|
|
|
|
server_side=False,
|
|
|
|
server_hostname='python.org')
|
2013-11-01 18:16:54 -03:00
|
|
|
# Next try an explicit server_hostname.
|
|
|
|
self.loop._make_ssl_transport.reset_mock()
|
|
|
|
coro = self.loop.create_connection(MyProto, 'python.org', 80, ssl=True,
|
|
|
|
server_hostname='perl.com')
|
2013-11-14 14:06:18 -04:00
|
|
|
transport, _ = self.loop.run_until_complete(coro)
|
|
|
|
transport.close()
|
2013-11-01 18:20:55 -03:00
|
|
|
self.loop._make_ssl_transport.assert_called_with(
|
|
|
|
ANY, ANY, ANY, ANY,
|
|
|
|
server_side=False,
|
|
|
|
server_hostname='perl.com')
|
2013-11-01 18:16:54 -03:00
|
|
|
# Finally try an explicit empty server_hostname.
|
|
|
|
self.loop._make_ssl_transport.reset_mock()
|
|
|
|
coro = self.loop.create_connection(MyProto, 'python.org', 80, ssl=True,
|
|
|
|
server_hostname='')
|
2013-11-14 14:06:18 -04:00
|
|
|
transport, _ = self.loop.run_until_complete(coro)
|
|
|
|
transport.close()
|
2013-11-01 18:16:54 -03:00
|
|
|
self.loop._make_ssl_transport.assert_called_with(ANY, ANY, ANY, ANY,
|
|
|
|
server_side=False,
|
|
|
|
server_hostname='')
|
|
|
|
|
2013-11-01 18:24:28 -03:00
|
|
|
def test_create_connection_no_ssl_server_hostname_errors(self):
|
|
|
|
# When not using ssl, server_hostname must be None.
|
2013-11-01 18:20:55 -03:00
|
|
|
coro = self.loop.create_connection(MyProto, 'python.org', 80,
|
|
|
|
server_hostname='')
|
2013-11-01 18:16:54 -03:00
|
|
|
self.assertRaises(ValueError, self.loop.run_until_complete, coro)
|
2013-11-01 18:20:55 -03:00
|
|
|
coro = self.loop.create_connection(MyProto, 'python.org', 80,
|
|
|
|
server_hostname='python.org')
|
2013-11-01 18:16:54 -03:00
|
|
|
self.assertRaises(ValueError, self.loop.run_until_complete, coro)
|
|
|
|
|
2013-11-01 18:24:28 -03:00
|
|
|
def test_create_connection_ssl_server_hostname_errors(self):
|
2013-11-01 18:16:54 -03:00
|
|
|
# When using ssl, server_hostname may be None if host is non-empty.
|
|
|
|
coro = self.loop.create_connection(MyProto, '', 80, ssl=True)
|
|
|
|
self.assertRaises(ValueError, self.loop.run_until_complete, coro)
|
|
|
|
coro = self.loop.create_connection(MyProto, None, 80, ssl=True)
|
|
|
|
self.assertRaises(ValueError, self.loop.run_until_complete, coro)
|
2013-11-14 14:06:18 -04:00
|
|
|
sock = socket.socket()
|
2013-11-01 18:20:55 -03:00
|
|
|
coro = self.loop.create_connection(MyProto, None, None,
|
2013-11-14 14:06:18 -04:00
|
|
|
ssl=True, sock=sock)
|
|
|
|
self.addCleanup(sock.close)
|
2013-11-01 18:16:54 -03:00
|
|
|
self.assertRaises(ValueError, self.loop.run_until_complete, coro)
|
|
|
|
|
2013-10-17 17:40:50 -03:00
|
|
|
def test_create_server_empty_host(self):
|
|
|
|
# if host is empty string use None instead
|
|
|
|
host = object()
|
|
|
|
|
2014-01-25 10:32:06 -04:00
|
|
|
@asyncio.coroutine
|
2013-10-17 17:40:50 -03:00
|
|
|
def getaddrinfo(*args, **kw):
|
|
|
|
nonlocal host
|
|
|
|
host = args[0]
|
|
|
|
yield from []
|
|
|
|
|
|
|
|
def getaddrinfo_task(*args, **kwds):
|
2014-01-25 10:32:06 -04:00
|
|
|
return asyncio.Task(getaddrinfo(*args, **kwds), loop=self.loop)
|
2013-10-17 17:40:50 -03:00
|
|
|
|
|
|
|
self.loop.getaddrinfo = getaddrinfo_task
|
|
|
|
fut = self.loop.create_server(MyProto, '', 0)
|
|
|
|
self.assertRaises(OSError, self.loop.run_until_complete, fut)
|
|
|
|
self.assertIsNone(host)
|
|
|
|
|
|
|
|
def test_create_server_host_port_sock(self):
|
|
|
|
fut = self.loop.create_server(
|
|
|
|
MyProto, '0.0.0.0', 0, sock=object())
|
|
|
|
self.assertRaises(ValueError, self.loop.run_until_complete, fut)
|
|
|
|
|
|
|
|
def test_create_server_no_host_port_sock(self):
|
|
|
|
fut = self.loop.create_server(MyProto)
|
|
|
|
self.assertRaises(ValueError, self.loop.run_until_complete, fut)
|
|
|
|
|
|
|
|
def test_create_server_no_getaddrinfo(self):
|
2014-02-26 05:25:02 -04:00
|
|
|
getaddrinfo = self.loop.getaddrinfo = mock.Mock()
|
2013-10-17 17:40:50 -03:00
|
|
|
getaddrinfo.return_value = []
|
|
|
|
|
|
|
|
f = self.loop.create_server(MyProto, '0.0.0.0', 0)
|
|
|
|
self.assertRaises(OSError, self.loop.run_until_complete, f)
|
|
|
|
|
2014-02-26 05:25:02 -04:00
|
|
|
@mock.patch('asyncio.base_events.socket')
|
2013-10-17 17:40:50 -03:00
|
|
|
def test_create_server_cant_bind(self, m_socket):
|
|
|
|
|
|
|
|
class Err(OSError):
|
|
|
|
strerror = 'error'
|
|
|
|
|
|
|
|
m_socket.getaddrinfo.return_value = [
|
|
|
|
(2, 1, 6, '', ('127.0.0.1', 10100))]
|
2014-02-11 06:34:30 -04:00
|
|
|
m_socket.getaddrinfo._is_coroutine = False
|
2014-02-26 05:25:02 -04:00
|
|
|
m_sock = m_socket.socket.return_value = mock.Mock()
|
2013-10-17 17:40:50 -03:00
|
|
|
m_sock.bind.side_effect = Err
|
|
|
|
|
|
|
|
fut = self.loop.create_server(MyProto, '0.0.0.0', 0)
|
|
|
|
self.assertRaises(OSError, self.loop.run_until_complete, fut)
|
|
|
|
self.assertTrue(m_sock.close.called)
|
|
|
|
|
2014-02-26 05:25:02 -04:00
|
|
|
@mock.patch('asyncio.base_events.socket')
|
2013-10-17 17:40:50 -03:00
|
|
|
def test_create_datagram_endpoint_no_addrinfo(self, m_socket):
|
|
|
|
m_socket.getaddrinfo.return_value = []
|
2014-02-11 06:34:30 -04:00
|
|
|
m_socket.getaddrinfo._is_coroutine = False
|
2013-10-17 17:40:50 -03:00
|
|
|
|
|
|
|
coro = self.loop.create_datagram_endpoint(
|
|
|
|
MyDatagramProto, local_addr=('localhost', 0))
|
|
|
|
self.assertRaises(
|
|
|
|
OSError, self.loop.run_until_complete, coro)
|
|
|
|
|
|
|
|
def test_create_datagram_endpoint_addr_error(self):
|
|
|
|
coro = self.loop.create_datagram_endpoint(
|
|
|
|
MyDatagramProto, local_addr='localhost')
|
|
|
|
self.assertRaises(
|
|
|
|
AssertionError, self.loop.run_until_complete, coro)
|
|
|
|
coro = self.loop.create_datagram_endpoint(
|
|
|
|
MyDatagramProto, local_addr=('localhost', 1, 2, 3))
|
|
|
|
self.assertRaises(
|
|
|
|
AssertionError, self.loop.run_until_complete, coro)
|
|
|
|
|
|
|
|
def test_create_datagram_endpoint_connect_err(self):
|
2014-02-26 05:25:02 -04:00
|
|
|
self.loop.sock_connect = mock.Mock()
|
2013-10-17 17:40:50 -03:00
|
|
|
self.loop.sock_connect.side_effect = OSError
|
|
|
|
|
|
|
|
coro = self.loop.create_datagram_endpoint(
|
2014-01-25 10:32:06 -04:00
|
|
|
asyncio.DatagramProtocol, remote_addr=('127.0.0.1', 0))
|
2013-10-17 17:40:50 -03:00
|
|
|
self.assertRaises(
|
|
|
|
OSError, self.loop.run_until_complete, coro)
|
|
|
|
|
2014-02-26 05:25:02 -04:00
|
|
|
@mock.patch('asyncio.base_events.socket')
|
2013-10-17 17:40:50 -03:00
|
|
|
def test_create_datagram_endpoint_socket_err(self, m_socket):
|
|
|
|
m_socket.getaddrinfo = socket.getaddrinfo
|
|
|
|
m_socket.socket.side_effect = OSError
|
|
|
|
|
|
|
|
coro = self.loop.create_datagram_endpoint(
|
2014-01-25 10:32:06 -04:00
|
|
|
asyncio.DatagramProtocol, family=socket.AF_INET)
|
2013-10-17 17:40:50 -03:00
|
|
|
self.assertRaises(
|
|
|
|
OSError, self.loop.run_until_complete, coro)
|
|
|
|
|
|
|
|
coro = self.loop.create_datagram_endpoint(
|
2014-01-25 10:32:06 -04:00
|
|
|
asyncio.DatagramProtocol, local_addr=('127.0.0.1', 0))
|
2013-10-17 17:40:50 -03:00
|
|
|
self.assertRaises(
|
|
|
|
OSError, self.loop.run_until_complete, coro)
|
|
|
|
|
2013-10-20 16:45:29 -03:00
|
|
|
@unittest.skipUnless(IPV6_ENABLED, 'IPv6 not supported or enabled')
|
2013-10-17 17:40:50 -03:00
|
|
|
def test_create_datagram_endpoint_no_matching_family(self):
|
|
|
|
coro = self.loop.create_datagram_endpoint(
|
2014-01-25 10:32:06 -04:00
|
|
|
asyncio.DatagramProtocol,
|
2013-10-17 17:40:50 -03:00
|
|
|
remote_addr=('127.0.0.1', 0), local_addr=('::1', 0))
|
|
|
|
self.assertRaises(
|
|
|
|
ValueError, self.loop.run_until_complete, coro)
|
|
|
|
|
2014-02-26 05:25:02 -04:00
|
|
|
@mock.patch('asyncio.base_events.socket')
|
2013-10-17 17:40:50 -03:00
|
|
|
def test_create_datagram_endpoint_setblk_err(self, m_socket):
|
|
|
|
m_socket.socket.return_value.setblocking.side_effect = OSError
|
|
|
|
|
|
|
|
coro = self.loop.create_datagram_endpoint(
|
2014-01-25 10:32:06 -04:00
|
|
|
asyncio.DatagramProtocol, family=socket.AF_INET)
|
2013-10-17 17:40:50 -03:00
|
|
|
self.assertRaises(
|
|
|
|
OSError, self.loop.run_until_complete, coro)
|
|
|
|
self.assertTrue(
|
|
|
|
m_socket.socket.return_value.close.called)
|
|
|
|
|
|
|
|
def test_create_datagram_endpoint_noaddr_nofamily(self):
|
|
|
|
coro = self.loop.create_datagram_endpoint(
|
2014-01-25 10:32:06 -04:00
|
|
|
asyncio.DatagramProtocol)
|
2013-10-17 17:40:50 -03:00
|
|
|
self.assertRaises(ValueError, self.loop.run_until_complete, coro)
|
|
|
|
|
2014-02-26 05:25:02 -04:00
|
|
|
@mock.patch('asyncio.base_events.socket')
|
2013-10-17 17:40:50 -03:00
|
|
|
def test_create_datagram_endpoint_cant_bind(self, m_socket):
|
|
|
|
class Err(OSError):
|
|
|
|
pass
|
|
|
|
|
|
|
|
m_socket.AF_INET6 = socket.AF_INET6
|
|
|
|
m_socket.getaddrinfo = socket.getaddrinfo
|
2014-02-26 05:25:02 -04:00
|
|
|
m_sock = m_socket.socket.return_value = mock.Mock()
|
2013-10-17 17:40:50 -03:00
|
|
|
m_sock.bind.side_effect = Err
|
|
|
|
|
|
|
|
fut = self.loop.create_datagram_endpoint(
|
|
|
|
MyDatagramProto,
|
|
|
|
local_addr=('127.0.0.1', 0), family=socket.AF_INET)
|
|
|
|
self.assertRaises(Err, self.loop.run_until_complete, fut)
|
|
|
|
self.assertTrue(m_sock.close.called)
|
|
|
|
|
|
|
|
def test_accept_connection_retry(self):
|
2014-02-26 05:25:02 -04:00
|
|
|
sock = mock.Mock()
|
2013-10-17 17:40:50 -03:00
|
|
|
sock.accept.side_effect = BlockingIOError()
|
|
|
|
|
|
|
|
self.loop._accept_connection(MyProto, sock)
|
|
|
|
self.assertFalse(sock.close.called)
|
|
|
|
|
2014-02-26 05:25:02 -04:00
|
|
|
@mock.patch('asyncio.base_events.logger')
|
2013-10-17 17:40:50 -03:00
|
|
|
def test_accept_connection_exception(self, m_log):
|
2014-02-26 05:25:02 -04:00
|
|
|
sock = mock.Mock()
|
2013-10-17 17:40:50 -03:00
|
|
|
sock.fileno.return_value = 10
|
2013-11-01 18:12:50 -03:00
|
|
|
sock.accept.side_effect = OSError(errno.EMFILE, 'Too many open files')
|
2014-02-26 05:25:02 -04:00
|
|
|
self.loop.remove_reader = mock.Mock()
|
|
|
|
self.loop.call_later = mock.Mock()
|
2013-10-17 17:40:50 -03:00
|
|
|
|
|
|
|
self.loop._accept_connection(MyProto, sock)
|
2014-02-18 19:02:19 -04:00
|
|
|
self.assertTrue(m_log.error.called)
|
2013-11-01 18:12:50 -03:00
|
|
|
self.assertFalse(sock.close.called)
|
|
|
|
self.loop.remove_reader.assert_called_with(10)
|
|
|
|
self.loop.call_later.assert_called_with(constants.ACCEPT_RETRY_DELAY,
|
|
|
|
# self.loop._start_serving
|
2014-02-26 05:25:02 -04:00
|
|
|
mock.ANY,
|
2013-11-01 18:12:50 -03:00
|
|
|
MyProto, sock, None, None)
|
2013-10-20 16:02:53 -03:00
|
|
|
|
2014-02-11 06:34:30 -04:00
|
|
|
def test_call_coroutine(self):
|
|
|
|
@asyncio.coroutine
|
|
|
|
def coroutine_function():
|
|
|
|
pass
|
|
|
|
|
|
|
|
with self.assertRaises(TypeError):
|
|
|
|
self.loop.call_soon(coroutine_function)
|
|
|
|
with self.assertRaises(TypeError):
|
|
|
|
self.loop.call_soon_threadsafe(coroutine_function)
|
|
|
|
with self.assertRaises(TypeError):
|
|
|
|
self.loop.call_later(60, coroutine_function)
|
|
|
|
with self.assertRaises(TypeError):
|
|
|
|
self.loop.call_at(self.loop.time() + 60, coroutine_function)
|
|
|
|
with self.assertRaises(TypeError):
|
|
|
|
self.loop.run_in_executor(None, coroutine_function)
|
|
|
|
|
2013-10-20 16:02:53 -03:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|