Browse Source

client disconnect does not take namespace as argument

Fixes #259
pull/269/head
Miguel Grinberg 6 years ago
parent
commit
c35451421d
No known key found for this signature in database GPG Key ID: 36848B262DF5F06C
  1. 5
      socketio/asyncio_namespace.py
  2. 4
      socketio/namespace.py
  3. 4
      tests/asyncio/test_asyncio_namespace.py
  4. 4
      tests/common/test_namespace.py

5
socketio/asyncio_namespace.py

@ -192,7 +192,7 @@ class AsyncClientNamespace(namespace.ClientNamespace):
namespace=namespace or self.namespace,
callback=callback)
async def disconnect(self, namespace=None):
async def disconnect(self):
"""Disconnect a client.
The only difference with the :func:`socketio.Client.disconnect` method
@ -201,5 +201,4 @@ class AsyncClientNamespace(namespace.ClientNamespace):
Note: this method is a coroutine.
"""
return await self.client.disconnect(
namespace=namespace or self.namespace)
return await self.client.disconnect()

4
socketio/namespace.py

@ -181,11 +181,11 @@ class ClientNamespace(BaseNamespace):
return self.client.send(data, namespace=namespace or self.namespace,
callback=callback)
def disconnect(self, namespace=None):
def disconnect(self):
"""Disconnect from the server.
The only difference with the :func:`socketio.Client.disconnect` method
is that when the ``namespace`` argument is not given the namespace
associated with the class is used.
"""
return self.client.disconnect(namespace=namespace or self.namespace)
return self.client.disconnect()

4
tests/asyncio/test_asyncio_namespace.py

@ -257,6 +257,4 @@ class TestAsyncNamespace(unittest.TestCase):
mock_client.disconnect = AsyncMock()
ns._set_client(mock_client)
_run(ns.disconnect())
ns.client.disconnect.mock.assert_called_with(namespace='/foo')
_run(ns.disconnect(namespace='/bar'))
ns.client.disconnect.mock.assert_called_with(namespace='/bar')
ns.client.disconnect.mock.assert_called_with()

4
tests/common/test_namespace.py

@ -170,6 +170,4 @@ class TestNamespace(unittest.TestCase):
ns = namespace.ClientNamespace('/foo')
ns._set_client(mock.MagicMock())
ns.disconnect()
ns.client.disconnect.assert_called_with(namespace='/foo')
ns.disconnect(namespace='/bar')
ns.client.disconnect.assert_called_with(namespace='/bar')
ns.client.disconnect.assert_called_with()

Loading…
Cancel
Save