Browse Source

Enable emitting to single client in AsyncPubSubManager

pull/1374/head
Pavel Mikhalkevich 8 months ago
parent
commit
79e1adb0de
  1. 3
      src/socketio/async_pubsub_manager.py
  2. 17
      tests/async/test_pubsub_manager.py

3
src/socketio/async_pubsub_manager.py

@ -38,7 +38,7 @@ class AsyncPubSubManager(AsyncManager):
self._get_logger().info(self.name + ' backend initialized.')
async def emit(self, event, data, namespace=None, room=None, skip_sid=None,
callback=None, **kwargs):
callback=None, to=None, **kwargs):
"""Emit a message to a single client, a room, or all the clients
connected to the namespace.
@ -49,6 +49,7 @@ class AsyncPubSubManager(AsyncManager):
Note: this method is a coroutine.
"""
room = to or room
if kwargs.get('ignore_queue'):
return await super().emit(
event, data, namespace=namespace, room=room, skip_sid=skip_sid,

17
tests/async/test_pubsub_manager.py

@ -67,6 +67,23 @@ class TestAsyncPubSubManager(unittest.TestCase):
}
)
def test_emit_single_client(self):
sid = 'room-mate'
_run(self.pm.emit('foo', 'bar', to=sid))
self.pm._publish.mock.assert_called_once_with(
{
'method': 'emit',
'event': 'foo',
'data': 'bar',
'namespace': '/',
'room': sid,
'skip_sid': None,
'callback': None,
'host_id': '123456',
}
)
def test_emit_with_namespace(self):
_run(self.pm.emit('foo', 'bar', namespace='/baz'))
self.pm._publish.mock.assert_called_once_with(

Loading…
Cancel
Save