Browse Source

missing unit tests #nolog

pull/449/head
Miguel Grinberg 5 years ago
parent
commit
f1a2e545c8
  1. 7
      tests/asyncio/test_asyncio_server.py
  2. 6
      tests/common/test_server.py

7
tests/asyncio/test_asyncio_server.py

@ -229,6 +229,13 @@ class TestAsyncServer(unittest.TestCase):
s.eio.send.mock.assert_called_once_with( s.eio.send.mock.assert_called_once_with(
'123', '2/foo,["my event",["foo","bar"]]', binary=False) '123', '2/foo,["my event",["foo","bar"]]', binary=False)
def test_emit_internal_with_none(self, eio):
eio.return_value.send = AsyncMock()
s = asyncio_server.AsyncServer()
_run(s._emit_internal('123', 'my event', None, namespace='/foo'))
s.eio.send.mock.assert_called_once_with(
'123', '2/foo,["my event"]', binary=False)
def test_emit_internal_with_callback(self, eio): def test_emit_internal_with_callback(self, eio):
eio.return_value.send = AsyncMock() eio.return_value.send = AsyncMock()
s = asyncio_server.AsyncServer() s = asyncio_server.AsyncServer()

6
tests/common/test_server.py

@ -219,6 +219,12 @@ class TestServer(unittest.TestCase):
'2/foo,["my event",["foo","bar"]]', '2/foo,["my event",["foo","bar"]]',
binary=False) binary=False)
def test_emit_internal_with_none(self, eio):
s = server.Server()
s._emit_internal('123', 'my event', None, namespace='/foo')
s.eio.send.assert_called_once_with('123', '2/foo,["my event"]',
binary=False)
def test_emit_internal_with_callback(self, eio): def test_emit_internal_with_callback(self, eio):
s = server.Server() s = server.Server()
id = s.manager._generate_ack_id('123', '/foo', 'cb') id = s.manager._generate_ack_id('123', '/foo', 'cb')

Loading…
Cancel
Save