Browse Source

Add a shutdown() function for the server

pull/1241/head
Miguel Grinberg 2 years ago
parent
commit
c419fc5481
Failed to extract signature
  1. 9
      src/socketio/asyncio_server.py
  2. 9
      src/socketio/server.py
  3. 6
      tests/asyncio/test_asyncio_server.py
  4. 5
      tests/common/test_server.py

9
src/socketio/asyncio_server.py

@ -387,6 +387,15 @@ class AsyncServer(server.Server):
await self.manager.disconnect(sid, namespace=namespace,
ignore_queue=True)
async def shutdown(self):
"""Stop Socket.IO background tasks.
This method stops all background activity initiated by the Socket.IO
server. It must be called before shutting down the web server.
"""
self.logger.info('Socket.IO is shutting down')
await self.eio.shutdown()
async def handle_request(self, *args, **kwargs):
"""Handle an HTTP request from the client.

9
src/socketio/server.py

@ -570,6 +570,15 @@ class Server(object):
self.manager.disconnect(sid, namespace=namespace,
ignore_queue=True)
def shutdown(self):
"""Stop Socket.IO background tasks.
This method stops all background activity initiated by the Socket.IO
server. It must be called before shutting down the web server.
"""
self.logger.info('Socket.IO is shutting down')
self.eio.shutdown()
def transport(self, sid):
"""Return the name of the transport used by the client.

6
tests/asyncio/test_asyncio_server.py

@ -981,6 +981,12 @@ class TestAsyncServer(unittest.TestCase):
None,
)
def test_shutdown(self, eio):
s = asyncio_server.AsyncServer()
s.eio.shutdown = AsyncMock()
_run(s.shutdown())
s.eio.shutdown.mock.assert_called_once_with()
def test_start_background_task(self, eio):
s = asyncio_server.AsyncServer()
s.start_background_task('foo', 'bar', baz='baz')

5
tests/common/test_server.py

@ -917,6 +917,11 @@ class TestServer(unittest.TestCase):
None,
)
def test_shutdown(self, eio):
s = server.Server()
s.shutdown()
s.eio.shutdown.assert_called_once_with()
def test_start_background_task(self, eio):
s = server.Server()
s.start_background_task('foo', 'bar', baz='baz')

Loading…
Cancel
Save