diff --git a/src/socketio/pubsub_manager.py b/src/socketio/pubsub_manager.py index 97cdf1e..9b6f36d 100644 --- a/src/socketio/pubsub_manager.py +++ b/src/socketio/pubsub_manager.py @@ -75,6 +75,10 @@ class PubSubManager(BaseManager): self._publish({'method': 'disconnect', 'sid': sid, 'namespace': namespace or '/'}) + def disconnect(self, sid, namespace=None): + self._publish({'method': 'disconnect', 'sid': sid, + 'namespace': namespace or '/'}) + def close_room(self, room, namespace=None): self._publish({'method': 'close_room', 'room': room, 'namespace': namespace or '/'}) diff --git a/tests/common/test_pubsub_manager.py b/tests/common/test_pubsub_manager.py index be76d9e..066349f 100644 --- a/tests/common/test_pubsub_manager.py +++ b/tests/common/test_pubsub_manager.py @@ -169,6 +169,12 @@ class TestPubSubManager(unittest.TestCase): {'method': 'disconnect', 'sid': sid, 'namespace': '/foo'} ) + def test_disconnect(self): + self.pm.disconnect('foo') + self.pm._publish.assert_called_once_with( + {'method': 'disconnect', 'sid': 'foo', 'namespace': '/'} + ) + def test_close_room(self): self.pm.close_room('foo') self.pm._publish.assert_called_once_with(