|
|
@ -58,6 +58,7 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
transports='transports', |
|
|
|
namespaces=['/foo', '/', '/bar'], |
|
|
|
socketio_path='path', |
|
|
|
wait=False, |
|
|
|
) |
|
|
|
) |
|
|
|
assert c.connection_url == 'url' |
|
|
@ -82,6 +83,7 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
transports='transports', |
|
|
|
namespaces='/foo', |
|
|
|
socketio_path='path', |
|
|
|
wait=False, |
|
|
|
) |
|
|
|
) |
|
|
|
assert c.connection_url == 'url' |
|
|
@ -107,6 +109,7 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
headers='headers', |
|
|
|
transports='transports', |
|
|
|
socketio_path='path', |
|
|
|
wait=False, |
|
|
|
) |
|
|
|
) |
|
|
|
assert c.connection_url == 'url' |
|
|
@ -131,6 +134,7 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
headers='headers', |
|
|
|
transports='transports', |
|
|
|
socketio_path='path', |
|
|
|
wait=False, |
|
|
|
) |
|
|
|
) |
|
|
|
assert c.connection_url == 'url' |
|
|
@ -159,9 +163,86 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
headers='headers', |
|
|
|
transports='transports', |
|
|
|
socketio_path='path', |
|
|
|
wait=False, |
|
|
|
) |
|
|
|
) |
|
|
|
|
|
|
|
def test_connect_twice(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
|
c.eio.connect = AsyncMock() |
|
|
|
_run( |
|
|
|
c.connect( |
|
|
|
'url', |
|
|
|
wait=False, |
|
|
|
) |
|
|
|
) |
|
|
|
with pytest.raises(exceptions.ConnectionError): |
|
|
|
_run( |
|
|
|
c.connect( |
|
|
|
'url', |
|
|
|
wait=False, |
|
|
|
) |
|
|
|
) |
|
|
|
|
|
|
|
def test_connect_wait_single_namespace(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
|
c.eio.connect = AsyncMock() |
|
|
|
c._connect_event = mock.MagicMock() |
|
|
|
|
|
|
|
async def mock_connect(): |
|
|
|
c.namespaces = {'/': '123'} |
|
|
|
return True |
|
|
|
|
|
|
|
c._connect_event.wait = mock_connect |
|
|
|
_run( |
|
|
|
c.connect( |
|
|
|
'url', |
|
|
|
wait=True, |
|
|
|
wait_timeout=0.01, |
|
|
|
) |
|
|
|
) |
|
|
|
assert c.connected is True |
|
|
|
|
|
|
|
def test_connect_wait_two_namespaces(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
|
c.eio.connect = AsyncMock() |
|
|
|
c._connect_event = mock.MagicMock() |
|
|
|
|
|
|
|
async def mock_connect(): |
|
|
|
if c.namespaces == {}: |
|
|
|
c.namespaces = {'/bar': '123'} |
|
|
|
return True |
|
|
|
elif c.namespaces == {'/bar': '123'}: |
|
|
|
c.namespaces = {'/bar': '123', '/foo': '456'} |
|
|
|
return True |
|
|
|
return False |
|
|
|
|
|
|
|
c._connect_event.wait = mock_connect |
|
|
|
_run( |
|
|
|
c.connect( |
|
|
|
'url', |
|
|
|
namespaces=['/foo', '/bar'], |
|
|
|
wait=True, |
|
|
|
wait_timeout=0.01, |
|
|
|
) |
|
|
|
) |
|
|
|
assert c.connected is True |
|
|
|
assert c.namespaces == {'/bar': '123', '/foo': '456'} |
|
|
|
|
|
|
|
def test_connect_timeout(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
|
c.eio.connect = AsyncMock() |
|
|
|
c.disconnect = AsyncMock() |
|
|
|
with pytest.raises(exceptions.ConnectionError): |
|
|
|
_run( |
|
|
|
c.connect( |
|
|
|
'url', |
|
|
|
wait=True, |
|
|
|
wait_timeout=0.01, |
|
|
|
) |
|
|
|
) |
|
|
|
c.disconnect.mock.assert_called_once_with() |
|
|
|
|
|
|
|
def test_wait_no_reconnect(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
|
c.eio.wait = AsyncMock() |
|
|
@ -486,29 +567,35 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
|
|
|
|
def test_handle_connect(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
|
c._connect_event = mock.MagicMock() |
|
|
|
c._trigger_event = AsyncMock() |
|
|
|
c._send_packet = AsyncMock() |
|
|
|
_run(c._handle_connect('/', {'sid': '123'})) |
|
|
|
c._connect_event.set.assert_called_once_with() |
|
|
|
c._trigger_event.mock.assert_called_once_with('connect', namespace='/') |
|
|
|
c._send_packet.mock.assert_not_called() |
|
|
|
|
|
|
|
def test_handle_connect_with_namespaces(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
|
c.namespaces = {'/foo': '1', '/bar': '2'} |
|
|
|
c._connect_event = mock.MagicMock() |
|
|
|
c._trigger_event = AsyncMock() |
|
|
|
c._send_packet = AsyncMock() |
|
|
|
_run(c._handle_connect('/', {'sid': '3'})) |
|
|
|
c._connect_event.set.assert_called_once_with() |
|
|
|
c._trigger_event.mock.assert_called_once_with('connect', namespace='/') |
|
|
|
assert c.namespaces == {'/': '3', '/foo': '1', '/bar': '2'} |
|
|
|
|
|
|
|
def test_handle_connect_namespace(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
|
c.namespaces = {'/foo': '1'} |
|
|
|
c._connect_event = mock.MagicMock() |
|
|
|
c._trigger_event = AsyncMock() |
|
|
|
c._send_packet = AsyncMock() |
|
|
|
_run(c._handle_connect('/foo', {'sid': '123'})) |
|
|
|
_run(c._handle_connect('/bar', {'sid': '2'})) |
|
|
|
assert c._trigger_event.mock.call_count == 1 |
|
|
|
c._connect_event.set.assert_called_once_with() |
|
|
|
c._trigger_event.mock.assert_called_once_with( |
|
|
|
'connect', namespace='/bar') |
|
|
|
assert c.namespaces == {'/foo': '1', '/bar': '2'} |
|
|
@ -658,11 +745,13 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
def test_handle_error(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
|
c.connected = True |
|
|
|
c._connect_event = mock.MagicMock() |
|
|
|
c._trigger_event = AsyncMock() |
|
|
|
c.namespaces = {'/foo': '1', '/bar': '2'} |
|
|
|
_run(c._handle_error('/', 'error')) |
|
|
|
assert c.namespaces == {} |
|
|
|
assert not c.connected |
|
|
|
c._connect_event.set.assert_called_once_with() |
|
|
|
c._trigger_event.mock.assert_called_once_with( |
|
|
|
'connect_error', '/', 'error' |
|
|
|
) |
|
|
@ -670,21 +759,25 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
def test_handle_error_with_no_arguments(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
|
c.connected = True |
|
|
|
c._connect_event = mock.MagicMock() |
|
|
|
c._trigger_event = AsyncMock() |
|
|
|
c.namespaces = {'/foo': '1', '/bar': '2'} |
|
|
|
_run(c._handle_error('/', None)) |
|
|
|
assert c.namespaces == {} |
|
|
|
assert not c.connected |
|
|
|
c._connect_event.set.assert_called_once_with() |
|
|
|
c._trigger_event.mock.assert_called_once_with('connect_error', '/') |
|
|
|
|
|
|
|
def test_handle_error_namespace(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
|
c.connected = True |
|
|
|
c.namespaces = {'/foo': '1', '/bar': '2'} |
|
|
|
c._connect_event = mock.MagicMock() |
|
|
|
c._trigger_event = AsyncMock() |
|
|
|
_run(c._handle_error('/bar', ['error', 'message'])) |
|
|
|
assert c.namespaces == {'/foo': '1'} |
|
|
|
assert c.connected |
|
|
|
c._connect_event.set.assert_called_once_with() |
|
|
|
c._trigger_event.mock.assert_called_once_with( |
|
|
|
'connect_error', '/bar', 'error', 'message' |
|
|
|
) |
|
|
@ -693,19 +786,23 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
|
c.connected = True |
|
|
|
c.namespaces = {'/foo': '1', '/bar': '2'} |
|
|
|
c._connect_event = mock.MagicMock() |
|
|
|
c._trigger_event = AsyncMock() |
|
|
|
_run(c._handle_error('/bar', None)) |
|
|
|
assert c.namespaces == {'/foo': '1'} |
|
|
|
assert c.connected |
|
|
|
c._connect_event.set.assert_called_once_with() |
|
|
|
c._trigger_event.mock.assert_called_once_with('connect_error', '/bar') |
|
|
|
|
|
|
|
def test_handle_error_unknown_namespace(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
|
c.connected = True |
|
|
|
c.namespaces = {'/foo': '1', '/bar': '2'} |
|
|
|
c._connect_event = mock.MagicMock() |
|
|
|
_run(c._handle_error('/baz', 'error')) |
|
|
|
assert c.namespaces == {'/foo': '1', '/bar': '2'} |
|
|
|
assert c.connected |
|
|
|
c._connect_event.set.assert_called_once_with() |
|
|
|
|
|
|
|
def test_trigger_event(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
|