Browse Source

Require a recipient in `call()` method (Fixes #476)

pull/488/head
tt2468 5 years ago
committed by Miguel Grinberg
parent
commit
bbb9a7f0b6
No known key found for this signature in database GPG Key ID: 36848B262DF5F06C
  1. 2
      socketio/asyncio_server.py
  2. 2
      socketio/server.py
  3. 4
      tests/asyncio/test_asyncio_server.py
  4. 4
      tests/common/test_server.py

2
socketio/asyncio_server.py

@ -209,6 +209,8 @@ class AsyncServer(server.Server):
Note 2: this method is a coroutine. 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: if not self.async_handlers:
raise RuntimeError( raise RuntimeError(
'Cannot use call() when async_handlers is False.') 'Cannot use call() when async_handlers is False.')

2
socketio/server.py

@ -365,6 +365,8 @@ class Server(object):
standard concurrency solutions (such as a Lock object) to prevent this standard concurrency solutions (such as a Lock object) to prevent this
situation. situation.
""" """
if to is None and sid is None:
raise ValueError('Cannot use call() to broadcast.')
if not self.async_handlers: if not self.async_handlers:
raise RuntimeError( raise RuntimeError(
'Cannot use call() when async_handlers is False.') 'Cannot use call() when async_handlers is False.')

4
tests/asyncio/test_asyncio_server.py

@ -146,6 +146,10 @@ class TestAsyncServer(unittest.TestCase):
self.assertRaises(exceptions.TimeoutError, _run, self.assertRaises(exceptions.TimeoutError, _run,
s.call('foo', sid='123', timeout=0.01)) 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): def test_call_without_async_handlers(self, eio):
mgr = self._get_mock_manager() mgr = self._get_mock_manager()
s = asyncio_server.AsyncServer(client_manager=mgr, s = asyncio_server.AsyncServer(client_manager=mgr,

4
tests/common/test_server.py

@ -138,6 +138,10 @@ class TestServer(unittest.TestCase):
self.assertRaises(exceptions.TimeoutError, s.call, 'foo', self.assertRaises(exceptions.TimeoutError, s.call, 'foo',
sid='123', timeout=12) 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): def test_call_without_async_handlers(self, eio):
mgr = mock.MagicMock() mgr = mock.MagicMock()
s = server.Server(client_manager=mgr, async_handlers=False) s = server.Server(client_manager=mgr, async_handlers=False)

Loading…
Cancel
Save