tt2468
5 years ago
committed by
Miguel Grinberg
No known key found for this signature in database
GPG Key ID: 36848B262DF5F06C
4 changed files with
12 additions and
0 deletions
-
socketio/asyncio_server.py
-
socketio/server.py
-
tests/asyncio/test_asyncio_server.py
-
tests/common/test_server.py
|
|
@ -209,6 +209,8 @@ class AsyncServer(server.Server): |
|
|
|
|
|
|
|
Note 2: this method is a coroutine. |
|
|
|
""" |
|
|
|
if to is None and sid is None: |
|
|
|
raise ValueError('Cannot use call() to broadcast.') |
|
|
|
if not self.async_handlers: |
|
|
|
raise RuntimeError( |
|
|
|
'Cannot use call() when async_handlers is False.') |
|
|
|
|
|
@ -365,6 +365,8 @@ class Server(object): |
|
|
|
standard concurrency solutions (such as a Lock object) to prevent this |
|
|
|
situation. |
|
|
|
""" |
|
|
|
if to is None and sid is None: |
|
|
|
raise ValueError('Cannot use call() to broadcast.') |
|
|
|
if not self.async_handlers: |
|
|
|
raise RuntimeError( |
|
|
|
'Cannot use call() when async_handlers is False.') |
|
|
|
|
|
@ -146,6 +146,10 @@ class TestAsyncServer(unittest.TestCase): |
|
|
|
self.assertRaises(exceptions.TimeoutError, _run, |
|
|
|
s.call('foo', sid='123', timeout=0.01)) |
|
|
|
|
|
|
|
def test_call_with_broadcast(self, eio): |
|
|
|
s = asyncio_server.AsyncServer() |
|
|
|
self.assertRaises(ValueError, _run, s.call('foo')) |
|
|
|
|
|
|
|
def test_call_without_async_handlers(self, eio): |
|
|
|
mgr = self._get_mock_manager() |
|
|
|
s = asyncio_server.AsyncServer(client_manager=mgr, |
|
|
|
|
|
@ -138,6 +138,10 @@ class TestServer(unittest.TestCase): |
|
|
|
self.assertRaises(exceptions.TimeoutError, s.call, 'foo', |
|
|
|
sid='123', timeout=12) |
|
|
|
|
|
|
|
def test_call_with_broadcast(self, eio): |
|
|
|
s = server.Server() |
|
|
|
self.assertRaises(ValueError, s.call, 'foo') |
|
|
|
|
|
|
|
def test_call_without_async_handlers(self, eio): |
|
|
|
mgr = mock.MagicMock() |
|
|
|
s = server.Server(client_manager=mgr, async_handlers=False) |
|
|
|