|
|
@ -429,7 +429,8 @@ class TestAsyncServer(unittest.TestCase): |
|
|
|
_run(s._handle_eio_message('123', '0')) |
|
|
|
assert not s.manager.is_connected('1', '/foo') |
|
|
|
handler.assert_called_once_with('1', 'environ') |
|
|
|
s.eio.send.mock.assert_called_once_with('123', '4') |
|
|
|
s.eio.send.mock.assert_called_once_with( |
|
|
|
'123', '4{"message":"Connection rejected by server"}') |
|
|
|
assert s.environ == {'123': 'environ'} |
|
|
|
|
|
|
|
def test_handle_connect_namespace_rejected(self, eio): |
|
|
@ -441,7 +442,8 @@ class TestAsyncServer(unittest.TestCase): |
|
|
|
_run(s._handle_eio_message('123', '0/foo')) |
|
|
|
assert not s.manager.is_connected('1', '/foo') |
|
|
|
handler.assert_called_once_with('1', 'environ') |
|
|
|
s.eio.send.mock.assert_any_call('123', '4/foo') |
|
|
|
s.eio.send.mock.assert_any_call( |
|
|
|
'123', '4/foo,{"message":"Connection rejected by server"}') |
|
|
|
assert s.environ == {'123': 'environ'} |
|
|
|
|
|
|
|
def test_handle_connect_rejected_always_connect(self, eio): |
|
|
@ -454,7 +456,8 @@ class TestAsyncServer(unittest.TestCase): |
|
|
|
assert not s.manager.is_connected('1', '/') |
|
|
|
handler.assert_called_once_with('1', 'environ') |
|
|
|
s.eio.send.mock.assert_any_call('123', '0{"sid":"1"}') |
|
|
|
s.eio.send.mock.assert_any_call('123', '1') |
|
|
|
s.eio.send.mock.assert_any_call( |
|
|
|
'123', '1{"message":"Connection rejected by server"}') |
|
|
|
assert s.environ == {'123': 'environ'} |
|
|
|
|
|
|
|
def test_handle_connect_namespace_rejected_always_connect(self, eio): |
|
|
@ -467,7 +470,8 @@ class TestAsyncServer(unittest.TestCase): |
|
|
|
assert not s.manager.is_connected('1', '/foo') |
|
|
|
handler.assert_called_once_with('1', 'environ') |
|
|
|
s.eio.send.mock.assert_any_call('123', '0/foo,{"sid":"1"}') |
|
|
|
s.eio.send.mock.assert_any_call('123', '1/foo') |
|
|
|
s.eio.send.mock.assert_any_call( |
|
|
|
'123', '1/foo,{"message":"Connection rejected by server"}') |
|
|
|
assert s.environ == {'123': 'environ'} |
|
|
|
|
|
|
|
def test_handle_connect_rejected_with_exception(self, eio): |
|
|
@ -481,7 +485,8 @@ class TestAsyncServer(unittest.TestCase): |
|
|
|
_run(s._handle_eio_message('123', '0')) |
|
|
|
assert not s.manager.is_connected('1', '/') |
|
|
|
handler.assert_called_once_with('1', 'environ') |
|
|
|
s.eio.send.mock.assert_called_once_with('123', '4"fail_reason"') |
|
|
|
s.eio.send.mock.assert_called_once_with( |
|
|
|
'123', '4{"message":"fail_reason"}') |
|
|
|
assert s.environ == {'123': 'environ'} |
|
|
|
|
|
|
|
def test_handle_connect_rejected_with_empty_exception(self, eio): |
|
|
@ -495,22 +500,24 @@ class TestAsyncServer(unittest.TestCase): |
|
|
|
_run(s._handle_eio_message('123', '0')) |
|
|
|
assert not s.manager.is_connected('1', '/') |
|
|
|
handler.assert_called_once_with('1', 'environ') |
|
|
|
s.eio.send.mock.assert_called_once_with('123', '4') |
|
|
|
s.eio.send.mock.assert_called_once_with( |
|
|
|
'123', '4{"message":"Connection rejected by server"}') |
|
|
|
assert s.environ == {'123': 'environ'} |
|
|
|
|
|
|
|
def test_handle_connect_namespace_rejected_with_exception(self, eio): |
|
|
|
eio.return_value.send = AsyncMock() |
|
|
|
s = asyncio_server.AsyncServer() |
|
|
|
handler = mock.MagicMock( |
|
|
|
side_effect=exceptions.ConnectionRefusedError('fail_reason', 1) |
|
|
|
side_effect=exceptions.ConnectionRefusedError( |
|
|
|
'fail_reason', 1, '2') |
|
|
|
) |
|
|
|
s.on('connect', handler, namespace='/foo') |
|
|
|
_run(s._handle_eio_connect('123', 'environ')) |
|
|
|
_run(s._handle_eio_message('123', '0/foo')) |
|
|
|
assert not s.manager.is_connected('1', '/foo') |
|
|
|
handler.assert_called_once_with('1', 'environ') |
|
|
|
s.eio.send.mock.assert_called_once_with('123', |
|
|
|
'4/foo,["fail_reason",1]') |
|
|
|
s.eio.send.mock.assert_called_once_with( |
|
|
|
'123', '4/foo,{"message":"fail_reason","data":[1,"2"]}') |
|
|
|
assert s.environ == {'123': 'environ'} |
|
|
|
|
|
|
|
def test_handle_connect_namespace_rejected_with_empty_exception(self, eio): |
|
|
@ -524,7 +531,8 @@ class TestAsyncServer(unittest.TestCase): |
|
|
|
_run(s._handle_eio_message('123', '0/foo')) |
|
|
|
assert not s.manager.is_connected('1', '/foo') |
|
|
|
handler.assert_called_once_with('1', 'environ') |
|
|
|
s.eio.send.mock.assert_called_once_with('123', '4/foo') |
|
|
|
s.eio.send.mock.assert_called_once_with( |
|
|
|
'123', '4/foo,{"message":"Connection rejected by server"}') |
|
|
|
assert s.environ == {'123': 'environ'} |
|
|
|
|
|
|
|
def test_handle_disconnect(self, eio): |
|
|
|