|
|
@ -4,6 +4,7 @@ import sys |
|
|
|
import unittest |
|
|
|
|
|
|
|
import six |
|
|
|
|
|
|
|
if six.PY3: |
|
|
|
from unittest import mock |
|
|
|
else: |
|
|
@ -14,6 +15,7 @@ from socketio import asyncio_namespace |
|
|
|
from engineio import exceptions as engineio_exceptions |
|
|
|
from socketio import exceptions |
|
|
|
from socketio import packet |
|
|
|
import pytest |
|
|
|
|
|
|
|
|
|
|
|
def AsyncMock(*args, **kwargs): |
|
|
@ -49,67 +51,100 @@ def _run(coro): |
|
|
|
class TestAsyncClient(unittest.TestCase): |
|
|
|
def test_is_asyncio_based(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
|
self.assertEqual(c.is_asyncio_based(), True) |
|
|
|
assert c.is_asyncio_based() |
|
|
|
|
|
|
|
def test_connect(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
|
c.eio.connect = AsyncMock() |
|
|
|
_run(c.connect('url', headers='headers', transports='transports', |
|
|
|
namespaces=['/foo', '/', '/bar'], |
|
|
|
socketio_path='path')) |
|
|
|
self.assertEqual(c.connection_url, 'url') |
|
|
|
self.assertEqual(c.connection_headers, 'headers') |
|
|
|
self.assertEqual(c.connection_transports, 'transports') |
|
|
|
self.assertEqual(c.connection_namespaces, ['/foo', '/', '/bar']) |
|
|
|
self.assertEqual(c.socketio_path, 'path') |
|
|
|
self.assertEqual(c.namespaces, ['/foo', '/bar']) |
|
|
|
_run( |
|
|
|
c.connect( |
|
|
|
'url', |
|
|
|
headers='headers', |
|
|
|
transports='transports', |
|
|
|
namespaces=['/foo', '/', '/bar'], |
|
|
|
socketio_path='path', |
|
|
|
) |
|
|
|
) |
|
|
|
assert c.connection_url == 'url' |
|
|
|
assert c.connection_headers == 'headers' |
|
|
|
assert c.connection_transports == 'transports' |
|
|
|
assert c.connection_namespaces == ['/foo', '/', '/bar'] |
|
|
|
assert c.socketio_path == 'path' |
|
|
|
assert c.namespaces == ['/foo', '/bar'] |
|
|
|
c.eio.connect.mock.assert_called_once_with( |
|
|
|
'url', headers='headers', transports='transports', |
|
|
|
engineio_path='path') |
|
|
|
'url', |
|
|
|
headers='headers', |
|
|
|
transports='transports', |
|
|
|
engineio_path='path', |
|
|
|
) |
|
|
|
|
|
|
|
def test_connect_one_namespace(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
|
c.eio.connect = AsyncMock() |
|
|
|
_run(c.connect('url', headers='headers', transports='transports', |
|
|
|
namespaces='/foo', |
|
|
|
socketio_path='path')) |
|
|
|
self.assertEqual(c.connection_url, 'url') |
|
|
|
self.assertEqual(c.connection_headers, 'headers') |
|
|
|
self.assertEqual(c.connection_transports, 'transports') |
|
|
|
self.assertEqual(c.connection_namespaces, ['/foo']) |
|
|
|
self.assertEqual(c.socketio_path, 'path') |
|
|
|
self.assertEqual(c.namespaces, ['/foo']) |
|
|
|
_run( |
|
|
|
c.connect( |
|
|
|
'url', |
|
|
|
headers='headers', |
|
|
|
transports='transports', |
|
|
|
namespaces='/foo', |
|
|
|
socketio_path='path', |
|
|
|
) |
|
|
|
) |
|
|
|
assert c.connection_url == 'url' |
|
|
|
assert c.connection_headers == 'headers' |
|
|
|
assert c.connection_transports == 'transports' |
|
|
|
assert c.connection_namespaces == ['/foo'] |
|
|
|
assert c.socketio_path == 'path' |
|
|
|
assert c.namespaces == ['/foo'] |
|
|
|
c.eio.connect.mock.assert_called_once_with( |
|
|
|
'url', headers='headers', transports='transports', |
|
|
|
engineio_path='path') |
|
|
|
'url', |
|
|
|
headers='headers', |
|
|
|
transports='transports', |
|
|
|
engineio_path='path', |
|
|
|
) |
|
|
|
|
|
|
|
def test_connect_default_namespaces(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
|
c.eio.connect = AsyncMock() |
|
|
|
c.on('foo', mock.MagicMock(), namespace='/foo') |
|
|
|
c.on('bar', mock.MagicMock(), namespace='/') |
|
|
|
_run(c.connect('url', headers='headers', transports='transports', |
|
|
|
socketio_path='path')) |
|
|
|
self.assertEqual(c.connection_url, 'url') |
|
|
|
self.assertEqual(c.connection_headers, 'headers') |
|
|
|
self.assertEqual(c.connection_transports, 'transports') |
|
|
|
self.assertEqual(c.connection_namespaces, None) |
|
|
|
self.assertEqual(c.socketio_path, 'path') |
|
|
|
self.assertEqual(c.namespaces, ['/foo']) |
|
|
|
_run( |
|
|
|
c.connect( |
|
|
|
'url', |
|
|
|
headers='headers', |
|
|
|
transports='transports', |
|
|
|
socketio_path='path', |
|
|
|
) |
|
|
|
) |
|
|
|
assert c.connection_url == 'url' |
|
|
|
assert c.connection_headers == 'headers' |
|
|
|
assert c.connection_transports == 'transports' |
|
|
|
assert c.connection_namespaces is None |
|
|
|
assert c.socketio_path == 'path' |
|
|
|
assert c.namespaces == ['/foo'] |
|
|
|
c.eio.connect.mock.assert_called_once_with( |
|
|
|
'url', headers='headers', transports='transports', |
|
|
|
engineio_path='path') |
|
|
|
'url', |
|
|
|
headers='headers', |
|
|
|
transports='transports', |
|
|
|
engineio_path='path', |
|
|
|
) |
|
|
|
|
|
|
|
def test_connect_error(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
|
c.eio.connect = AsyncMock( |
|
|
|
side_effect=engineio_exceptions.ConnectionError('foo')) |
|
|
|
side_effect=engineio_exceptions.ConnectionError('foo') |
|
|
|
) |
|
|
|
c.on('foo', mock.MagicMock(), namespace='/foo') |
|
|
|
c.on('bar', mock.MagicMock(), namespace='/') |
|
|
|
self.assertRaises( |
|
|
|
exceptions.ConnectionError, _run, c.connect( |
|
|
|
'url', headers='headers', transports='transports', |
|
|
|
socketio_path='path')) |
|
|
|
with pytest.raises(exceptions.ConnectionError): |
|
|
|
_run( |
|
|
|
c.connect( |
|
|
|
'url', |
|
|
|
headers='headers', |
|
|
|
transports='transports', |
|
|
|
socketio_path='path', |
|
|
|
) |
|
|
|
) |
|
|
|
|
|
|
|
def test_wait_no_reconnect(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
@ -146,79 +181,106 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
|
|
|
|
c._reconnect_task = fake_wait() |
|
|
|
_run(c.wait()) |
|
|
|
self.assertEqual(c.eio.wait.mock.call_count, 2) |
|
|
|
self.assertEqual(c.sleep.mock.call_count, 2) |
|
|
|
assert c.eio.wait.mock.call_count == 2 |
|
|
|
assert c.sleep.mock.call_count == 2 |
|
|
|
|
|
|
|
def test_emit_no_arguments(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
|
c._send_packet = AsyncMock() |
|
|
|
_run(c.emit('foo')) |
|
|
|
expected_packet = packet.Packet(packet.EVENT, namespace='/', |
|
|
|
data=['foo'], id=None, binary=False) |
|
|
|
self.assertEqual(c._send_packet.mock.call_count, 1) |
|
|
|
self.assertEqual(c._send_packet.mock.call_args_list[0][0][0].encode(), |
|
|
|
expected_packet.encode()) |
|
|
|
expected_packet = packet.Packet( |
|
|
|
packet.EVENT, namespace='/', data=['foo'], id=None, binary=False |
|
|
|
) |
|
|
|
assert c._send_packet.mock.call_count == 1 |
|
|
|
assert ( |
|
|
|
c._send_packet.mock.call_args_list[0][0][0].encode() |
|
|
|
== expected_packet.encode() |
|
|
|
) |
|
|
|
|
|
|
|
def test_emit_one_argument(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
|
c._send_packet = AsyncMock() |
|
|
|
_run(c.emit('foo', 'bar')) |
|
|
|
expected_packet = packet.Packet(packet.EVENT, namespace='/', |
|
|
|
data=['foo', 'bar'], id=None, |
|
|
|
binary=False) |
|
|
|
self.assertEqual(c._send_packet.mock.call_count, 1) |
|
|
|
self.assertEqual(c._send_packet.mock.call_args_list[0][0][0].encode(), |
|
|
|
expected_packet.encode()) |
|
|
|
expected_packet = packet.Packet( |
|
|
|
packet.EVENT, |
|
|
|
namespace='/', |
|
|
|
data=['foo', 'bar'], |
|
|
|
id=None, |
|
|
|
binary=False, |
|
|
|
) |
|
|
|
assert c._send_packet.mock.call_count == 1 |
|
|
|
assert ( |
|
|
|
c._send_packet.mock.call_args_list[0][0][0].encode() |
|
|
|
== expected_packet.encode() |
|
|
|
) |
|
|
|
|
|
|
|
def test_emit_one_argument_list(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
|
c._send_packet = AsyncMock() |
|
|
|
_run(c.emit('foo', ['bar', 'baz'])) |
|
|
|
expected_packet = packet.Packet(packet.EVENT, namespace='/', |
|
|
|
data=['foo', ['bar', 'baz']], id=None, |
|
|
|
binary=False) |
|
|
|
self.assertEqual(c._send_packet.mock.call_count, 1) |
|
|
|
self.assertEqual(c._send_packet.mock.call_args_list[0][0][0].encode(), |
|
|
|
expected_packet.encode()) |
|
|
|
expected_packet = packet.Packet( |
|
|
|
packet.EVENT, |
|
|
|
namespace='/', |
|
|
|
data=['foo', ['bar', 'baz']], |
|
|
|
id=None, |
|
|
|
binary=False, |
|
|
|
) |
|
|
|
assert c._send_packet.mock.call_count == 1 |
|
|
|
assert ( |
|
|
|
c._send_packet.mock.call_args_list[0][0][0].encode() |
|
|
|
== expected_packet.encode() |
|
|
|
) |
|
|
|
|
|
|
|
def test_emit_two_arguments(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
|
c._send_packet = AsyncMock() |
|
|
|
_run(c.emit('foo', ('bar', 'baz'))) |
|
|
|
expected_packet = packet.Packet(packet.EVENT, namespace='/', |
|
|
|
data=['foo', 'bar', 'baz'], id=None, |
|
|
|
binary=False) |
|
|
|
self.assertEqual(c._send_packet.mock.call_count, 1) |
|
|
|
self.assertEqual(c._send_packet.mock.call_args_list[0][0][0].encode(), |
|
|
|
expected_packet.encode()) |
|
|
|
expected_packet = packet.Packet( |
|
|
|
packet.EVENT, |
|
|
|
namespace='/', |
|
|
|
data=['foo', 'bar', 'baz'], |
|
|
|
id=None, |
|
|
|
binary=False, |
|
|
|
) |
|
|
|
assert c._send_packet.mock.call_count == 1 |
|
|
|
assert ( |
|
|
|
c._send_packet.mock.call_args_list[0][0][0].encode() |
|
|
|
== expected_packet.encode() |
|
|
|
) |
|
|
|
|
|
|
|
def test_emit_namespace(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
|
c.namespaces = ['/foo'] |
|
|
|
c._send_packet = AsyncMock() |
|
|
|
_run(c.emit('foo', namespace='/foo')) |
|
|
|
expected_packet = packet.Packet(packet.EVENT, namespace='/foo', |
|
|
|
data=['foo'], id=None, binary=False) |
|
|
|
self.assertEqual(c._send_packet.mock.call_count, 1) |
|
|
|
self.assertEqual(c._send_packet.mock.call_args_list[0][0][0].encode(), |
|
|
|
expected_packet.encode()) |
|
|
|
expected_packet = packet.Packet( |
|
|
|
packet.EVENT, namespace='/foo', data=['foo'], id=None, binary=False |
|
|
|
) |
|
|
|
assert c._send_packet.mock.call_count == 1 |
|
|
|
assert ( |
|
|
|
c._send_packet.mock.call_args_list[0][0][0].encode() |
|
|
|
== expected_packet.encode() |
|
|
|
) |
|
|
|
|
|
|
|
def test_emit_unknown_namespace(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
|
c.namespaces = ['/foo'] |
|
|
|
self.assertRaises(exceptions.BadNamespaceError, _run, |
|
|
|
c.emit('foo', namespace='/bar')) |
|
|
|
with pytest.raises(exceptions.BadNamespaceError): |
|
|
|
_run(c.emit('foo', namespace='/bar')) |
|
|
|
|
|
|
|
def test_emit_with_callback(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
|
c._send_packet = AsyncMock() |
|
|
|
c._generate_ack_id = mock.MagicMock(return_value=123) |
|
|
|
_run(c.emit('foo', callback='cb')) |
|
|
|
expected_packet = packet.Packet(packet.EVENT, namespace='/', |
|
|
|
data=['foo'], id=123, binary=False) |
|
|
|
self.assertEqual(c._send_packet.mock.call_count, 1) |
|
|
|
self.assertEqual(c._send_packet.mock.call_args_list[0][0][0].encode(), |
|
|
|
expected_packet.encode()) |
|
|
|
expected_packet = packet.Packet( |
|
|
|
packet.EVENT, namespace='/', data=['foo'], id=123, binary=False |
|
|
|
) |
|
|
|
assert c._send_packet.mock.call_count == 1 |
|
|
|
assert ( |
|
|
|
c._send_packet.mock.call_args_list[0][0][0].encode() |
|
|
|
== expected_packet.encode() |
|
|
|
) |
|
|
|
c._generate_ack_id.assert_called_once_with('/', 'cb') |
|
|
|
|
|
|
|
def test_emit_namespace_with_callback(self): |
|
|
@ -227,49 +289,65 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
c._send_packet = AsyncMock() |
|
|
|
c._generate_ack_id = mock.MagicMock(return_value=123) |
|
|
|
_run(c.emit('foo', namespace='/foo', callback='cb')) |
|
|
|
expected_packet = packet.Packet(packet.EVENT, namespace='/foo', |
|
|
|
data=['foo'], id=123, binary=False) |
|
|
|
self.assertEqual(c._send_packet.mock.call_count, 1) |
|
|
|
self.assertEqual(c._send_packet.mock.call_args_list[0][0][0].encode(), |
|
|
|
expected_packet.encode()) |
|
|
|
expected_packet = packet.Packet( |
|
|
|
packet.EVENT, namespace='/foo', data=['foo'], id=123, binary=False |
|
|
|
) |
|
|
|
assert c._send_packet.mock.call_count == 1 |
|
|
|
assert ( |
|
|
|
c._send_packet.mock.call_args_list[0][0][0].encode() |
|
|
|
== expected_packet.encode() |
|
|
|
) |
|
|
|
c._generate_ack_id.assert_called_once_with('/foo', 'cb') |
|
|
|
|
|
|
|
def test_emit_binary(self): |
|
|
|
c = asyncio_client.AsyncClient(binary=True) |
|
|
|
c._send_packet = AsyncMock() |
|
|
|
_run(c.emit('foo', b'bar')) |
|
|
|
expected_packet = packet.Packet(packet.EVENT, namespace='/', |
|
|
|
data=['foo', b'bar'], id=None, |
|
|
|
binary=True) |
|
|
|
self.assertEqual(c._send_packet.mock.call_count, 1) |
|
|
|
self.assertEqual(c._send_packet.mock.call_args_list[0][0][0].encode(), |
|
|
|
expected_packet.encode()) |
|
|
|
expected_packet = packet.Packet( |
|
|
|
packet.EVENT, |
|
|
|
namespace='/', |
|
|
|
data=['foo', b'bar'], |
|
|
|
id=None, |
|
|
|
binary=True, |
|
|
|
) |
|
|
|
assert c._send_packet.mock.call_count == 1 |
|
|
|
assert ( |
|
|
|
c._send_packet.mock.call_args_list[0][0][0].encode() |
|
|
|
== expected_packet.encode() |
|
|
|
) |
|
|
|
|
|
|
|
def test_emit_not_binary(self): |
|
|
|
c = asyncio_client.AsyncClient(binary=False) |
|
|
|
c._send_packet = AsyncMock() |
|
|
|
_run(c.emit('foo', 'bar')) |
|
|
|
expected_packet = packet.Packet(packet.EVENT, namespace='/', |
|
|
|
data=['foo', 'bar'], id=None, |
|
|
|
binary=False) |
|
|
|
self.assertEqual(c._send_packet.mock.call_count, 1) |
|
|
|
self.assertEqual(c._send_packet.mock.call_args_list[0][0][0].encode(), |
|
|
|
expected_packet.encode()) |
|
|
|
expected_packet = packet.Packet( |
|
|
|
packet.EVENT, |
|
|
|
namespace='/', |
|
|
|
data=['foo', 'bar'], |
|
|
|
id=None, |
|
|
|
binary=False, |
|
|
|
) |
|
|
|
assert c._send_packet.mock.call_count == 1 |
|
|
|
assert ( |
|
|
|
c._send_packet.mock.call_args_list[0][0][0].encode() |
|
|
|
== expected_packet.encode() |
|
|
|
) |
|
|
|
|
|
|
|
def test_send(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
|
c.emit = AsyncMock() |
|
|
|
_run(c.send('data', 'namespace', 'callback')) |
|
|
|
c.emit.mock.assert_called_once_with( |
|
|
|
'message', data='data', namespace='namespace', |
|
|
|
callback='callback') |
|
|
|
'message', data='data', namespace='namespace', callback='callback' |
|
|
|
) |
|
|
|
|
|
|
|
def test_send_with_defaults(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
|
c.emit = AsyncMock() |
|
|
|
_run(c.send('data')) |
|
|
|
c.emit.mock.assert_called_once_with( |
|
|
|
'message', data='data', namespace=None, callback=None) |
|
|
|
'message', data='data', namespace=None, callback=None |
|
|
|
) |
|
|
|
|
|
|
|
def test_call(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
@ -281,12 +359,15 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
c._generate_ack_id = mock.MagicMock(return_value=123) |
|
|
|
c.eio = mock.MagicMock() |
|
|
|
c.eio.create_event.return_value.wait = fake_event_wait |
|
|
|
self.assertEqual(_run(c.call('foo')), ('foo', 321)) |
|
|
|
expected_packet = packet.Packet(packet.EVENT, namespace='/', |
|
|
|
data=['foo'], id=123, binary=False) |
|
|
|
self.assertEqual(c._send_packet.mock.call_count, 1) |
|
|
|
self.assertEqual(c._send_packet.mock.call_args_list[0][0][0].encode(), |
|
|
|
expected_packet.encode()) |
|
|
|
assert _run(c.call('foo')) == ('foo', 321) |
|
|
|
expected_packet = packet.Packet( |
|
|
|
packet.EVENT, namespace='/', data=['foo'], id=123, binary=False |
|
|
|
) |
|
|
|
assert c._send_packet.mock.call_count == 1 |
|
|
|
assert ( |
|
|
|
c._send_packet.mock.call_args_list[0][0][0].encode() |
|
|
|
== expected_packet.encode() |
|
|
|
) |
|
|
|
|
|
|
|
def test_call_with_timeout(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
@ -298,13 +379,16 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
c._generate_ack_id = mock.MagicMock(return_value=123) |
|
|
|
c.eio = mock.MagicMock() |
|
|
|
c.eio.create_event.return_value.wait = fake_event_wait |
|
|
|
self.assertRaises(exceptions.TimeoutError, _run, |
|
|
|
c.call('foo', timeout=0.01)) |
|
|
|
expected_packet = packet.Packet(packet.EVENT, namespace='/', |
|
|
|
data=['foo'], id=123, binary=False) |
|
|
|
self.assertEqual(c._send_packet.mock.call_count, 1) |
|
|
|
self.assertEqual(c._send_packet.mock.call_args_list[0][0][0].encode(), |
|
|
|
expected_packet.encode()) |
|
|
|
with pytest.raises(exceptions.TimeoutError): |
|
|
|
_run(c.call('foo', timeout=0.01)) |
|
|
|
expected_packet = packet.Packet( |
|
|
|
packet.EVENT, namespace='/', data=['foo'], id=123, binary=False |
|
|
|
) |
|
|
|
assert c._send_packet.mock.call_count == 1 |
|
|
|
assert ( |
|
|
|
c._send_packet.mock.call_args_list[0][0][0].encode() |
|
|
|
== expected_packet.encode() |
|
|
|
) |
|
|
|
|
|
|
|
def test_disconnect(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
@ -314,11 +398,13 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
c.eio.disconnect = AsyncMock() |
|
|
|
c.eio.state = 'connected' |
|
|
|
_run(c.disconnect()) |
|
|
|
self.assertEqual(c._trigger_event.mock.call_count, 0) |
|
|
|
self.assertEqual(c._send_packet.mock.call_count, 1) |
|
|
|
assert c._trigger_event.mock.call_count == 0 |
|
|
|
assert c._send_packet.mock.call_count == 1 |
|
|
|
expected_packet = packet.Packet(packet.DISCONNECT, namespace='/') |
|
|
|
self.assertEqual(c._send_packet.mock.call_args_list[0][0][0].encode(), |
|
|
|
expected_packet.encode()) |
|
|
|
assert ( |
|
|
|
c._send_packet.mock.call_args_list[0][0][0].encode() |
|
|
|
== expected_packet.encode() |
|
|
|
) |
|
|
|
c.eio.disconnect.mock.assert_called_once_with(abort=True) |
|
|
|
|
|
|
|
def test_disconnect_namespaces(self): |
|
|
@ -330,25 +416,31 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
c.eio.disconnect = AsyncMock() |
|
|
|
c.eio.state = 'connected' |
|
|
|
_run(c.disconnect()) |
|
|
|
self.assertEqual(c._trigger_event.mock.call_count, 0) |
|
|
|
self.assertEqual(c._send_packet.mock.call_count, 3) |
|
|
|
assert c._trigger_event.mock.call_count == 0 |
|
|
|
assert c._send_packet.mock.call_count == 3 |
|
|
|
expected_packet = packet.Packet(packet.DISCONNECT, namespace='/foo') |
|
|
|
self.assertEqual(c._send_packet.mock.call_args_list[0][0][0].encode(), |
|
|
|
expected_packet.encode()) |
|
|
|
assert ( |
|
|
|
c._send_packet.mock.call_args_list[0][0][0].encode() |
|
|
|
== expected_packet.encode() |
|
|
|
) |
|
|
|
expected_packet = packet.Packet(packet.DISCONNECT, namespace='/bar') |
|
|
|
self.assertEqual(c._send_packet.mock.call_args_list[1][0][0].encode(), |
|
|
|
expected_packet.encode()) |
|
|
|
assert ( |
|
|
|
c._send_packet.mock.call_args_list[1][0][0].encode() |
|
|
|
== expected_packet.encode() |
|
|
|
) |
|
|
|
expected_packet = packet.Packet(packet.DISCONNECT, namespace='/') |
|
|
|
self.assertEqual(c._send_packet.mock.call_args_list[2][0][0].encode(), |
|
|
|
expected_packet.encode()) |
|
|
|
assert ( |
|
|
|
c._send_packet.mock.call_args_list[2][0][0].encode() |
|
|
|
== expected_packet.encode() |
|
|
|
) |
|
|
|
|
|
|
|
def test_start_background_task(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
|
c.eio.start_background_task = mock.MagicMock(return_value='foo') |
|
|
|
self.assertEqual(c.start_background_task('foo', 'bar', baz='baz'), |
|
|
|
'foo') |
|
|
|
c.eio.start_background_task.assert_called_once_with('foo', 'bar', |
|
|
|
baz='baz') |
|
|
|
assert c.start_background_task('foo', 'bar', baz='baz') == 'foo' |
|
|
|
c.eio.start_background_task.assert_called_once_with( |
|
|
|
'foo', 'bar', baz='baz' |
|
|
|
) |
|
|
|
|
|
|
|
def test_sleep(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
@ -366,13 +458,13 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
|
c.eio.send = AsyncMock() |
|
|
|
_run(c._send_packet(packet.Packet(packet.EVENT, b'foo', binary=True))) |
|
|
|
self.assertTrue(c.eio.send.mock.call_args_list == [ |
|
|
|
assert c.eio.send.mock.call_args_list == [ |
|
|
|
mock.call('51-{"_placeholder":true,"num":0}', binary=False), |
|
|
|
mock.call(b'foo', binary=True) |
|
|
|
mock.call(b'foo', binary=True), |
|
|
|
] or c.eio.send.mock.call_args_list == [ |
|
|
|
mock.call('51-{"num":0,"_placeholder":true}', binary=False), |
|
|
|
mock.call(b'foo', binary=True) |
|
|
|
]) |
|
|
|
mock.call(b'foo', binary=True), |
|
|
|
] |
|
|
|
|
|
|
|
def test_send_packet_default_binary_py3(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
@ -395,13 +487,17 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
c._send_packet = AsyncMock() |
|
|
|
_run(c._handle_connect('/')) |
|
|
|
c._trigger_event.mock.assert_called_once_with('connect', namespace='/') |
|
|
|
self.assertEqual(c._send_packet.mock.call_count, 2) |
|
|
|
assert c._send_packet.mock.call_count == 2 |
|
|
|
expected_packet = packet.Packet(packet.CONNECT, namespace='/foo') |
|
|
|
self.assertEqual(c._send_packet.mock.call_args_list[0][0][0].encode(), |
|
|
|
expected_packet.encode()) |
|
|
|
assert ( |
|
|
|
c._send_packet.mock.call_args_list[0][0][0].encode() |
|
|
|
== expected_packet.encode() |
|
|
|
) |
|
|
|
expected_packet = packet.Packet(packet.CONNECT, namespace='/bar') |
|
|
|
self.assertEqual(c._send_packet.mock.call_args_list[1][0][0].encode(), |
|
|
|
expected_packet.encode()) |
|
|
|
assert ( |
|
|
|
c._send_packet.mock.call_args_list[1][0][0].encode() |
|
|
|
== expected_packet.encode() |
|
|
|
) |
|
|
|
|
|
|
|
def test_handle_connect_namespace(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
@ -410,12 +506,12 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
c._send_packet = AsyncMock() |
|
|
|
_run(c._handle_connect('/foo')) |
|
|
|
_run(c._handle_connect('/bar')) |
|
|
|
self.assertEqual(c._trigger_event.mock.call_args_list, [ |
|
|
|
assert c._trigger_event.mock.call_args_list == [ |
|
|
|
mock.call('connect', namespace='/foo'), |
|
|
|
mock.call('connect', namespace='/bar') |
|
|
|
]) |
|
|
|
mock.call('connect', namespace='/bar'), |
|
|
|
] |
|
|
|
c._send_packet.mock.assert_not_called() |
|
|
|
self.assertEqual(c.namespaces, ['/foo', '/bar']) |
|
|
|
assert c.namespaces == ['/foo', '/bar'] |
|
|
|
|
|
|
|
def test_handle_disconnect(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
@ -423,10 +519,11 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
c._trigger_event = AsyncMock() |
|
|
|
_run(c._handle_disconnect('/')) |
|
|
|
c._trigger_event.mock.assert_called_once_with( |
|
|
|
'disconnect', namespace='/') |
|
|
|
self.assertFalse(c.connected) |
|
|
|
'disconnect', namespace='/' |
|
|
|
) |
|
|
|
assert not c.connected |
|
|
|
_run(c._handle_disconnect('/')) |
|
|
|
self.assertEqual(c._trigger_event.mock.call_count, 1) |
|
|
|
assert c._trigger_event.mock.call_count == 1 |
|
|
|
|
|
|
|
def test_handle_disconnect_namespace(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
@ -435,9 +532,10 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
c._trigger_event = AsyncMock() |
|
|
|
_run(c._handle_disconnect('/foo')) |
|
|
|
c._trigger_event.mock.assert_called_once_with( |
|
|
|
'disconnect', namespace='/foo') |
|
|
|
self.assertEqual(c.namespaces, ['/bar']) |
|
|
|
self.assertTrue(c.connected) |
|
|
|
'disconnect', namespace='/foo' |
|
|
|
) |
|
|
|
assert c.namespaces == ['/bar'] |
|
|
|
assert c.connected |
|
|
|
|
|
|
|
def test_handle_disconnect_unknown_namespace(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
@ -446,9 +544,10 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
c._trigger_event = AsyncMock() |
|
|
|
_run(c._handle_disconnect('/baz')) |
|
|
|
c._trigger_event.mock.assert_called_once_with( |
|
|
|
'disconnect', namespace='/baz') |
|
|
|
self.assertEqual(c.namespaces, ['/foo', '/bar']) |
|
|
|
self.assertTrue(c.connected) |
|
|
|
'disconnect', namespace='/baz' |
|
|
|
) |
|
|
|
assert c.namespaces == ['/foo', '/bar'] |
|
|
|
assert c.connected |
|
|
|
|
|
|
|
def test_handle_disconnect_all_namespaces(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
@ -456,21 +555,19 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
c.namespaces = ['/foo', '/bar'] |
|
|
|
c._trigger_event = AsyncMock() |
|
|
|
_run(c._handle_disconnect('/')) |
|
|
|
c._trigger_event.mock.assert_any_call( |
|
|
|
'disconnect', namespace='/') |
|
|
|
c._trigger_event.mock.assert_any_call( |
|
|
|
'disconnect', namespace='/foo') |
|
|
|
c._trigger_event.mock.assert_any_call( |
|
|
|
'disconnect', namespace='/bar') |
|
|
|
self.assertEqual(c.namespaces, []) |
|
|
|
self.assertFalse(c.connected) |
|
|
|
c._trigger_event.mock.assert_any_call('disconnect', namespace='/') |
|
|
|
c._trigger_event.mock.assert_any_call('disconnect', namespace='/foo') |
|
|
|
c._trigger_event.mock.assert_any_call('disconnect', namespace='/bar') |
|
|
|
assert c.namespaces == [] |
|
|
|
assert not c.connected |
|
|
|
|
|
|
|
def test_handle_event(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
|
c._trigger_event = AsyncMock() |
|
|
|
_run(c._handle_event('/', None, ['foo', ('bar', 'baz')])) |
|
|
|
c._trigger_event.mock.assert_called_once_with( |
|
|
|
'foo', '/', ('bar', 'baz')) |
|
|
|
'foo', '/', ('bar', 'baz') |
|
|
|
) |
|
|
|
|
|
|
|
def test_handle_event_with_id_no_arguments(self): |
|
|
|
c = asyncio_client.AsyncClient(binary=True) |
|
|
@ -478,12 +575,16 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
c._send_packet = AsyncMock() |
|
|
|
_run(c._handle_event('/', 123, ['foo', ('bar', 'baz')])) |
|
|
|
c._trigger_event.mock.assert_called_once_with( |
|
|
|
'foo', '/', ('bar', 'baz')) |
|
|
|
self.assertEqual(c._send_packet.mock.call_count, 1) |
|
|
|
expected_packet = packet.Packet(packet.ACK, namespace='/', id=123, |
|
|
|
data=[], binary=None) |
|
|
|
self.assertEqual(c._send_packet.mock.call_args_list[0][0][0].encode(), |
|
|
|
expected_packet.encode()) |
|
|
|
'foo', '/', ('bar', 'baz') |
|
|
|
) |
|
|
|
assert c._send_packet.mock.call_count == 1 |
|
|
|
expected_packet = packet.Packet( |
|
|
|
packet.ACK, namespace='/', id=123, data=[], binary=None |
|
|
|
) |
|
|
|
assert ( |
|
|
|
c._send_packet.mock.call_args_list[0][0][0].encode() |
|
|
|
== expected_packet.encode() |
|
|
|
) |
|
|
|
|
|
|
|
def test_handle_event_with_id_one_argument(self): |
|
|
|
c = asyncio_client.AsyncClient(binary=True) |
|
|
@ -491,12 +592,16 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
c._send_packet = AsyncMock() |
|
|
|
_run(c._handle_event('/', 123, ['foo', ('bar', 'baz')])) |
|
|
|
c._trigger_event.mock.assert_called_once_with( |
|
|
|
'foo', '/', ('bar', 'baz')) |
|
|
|
self.assertEqual(c._send_packet.mock.call_count, 1) |
|
|
|
expected_packet = packet.Packet(packet.ACK, namespace='/', id=123, |
|
|
|
data=['ret'], binary=None) |
|
|
|
self.assertEqual(c._send_packet.mock.call_args_list[0][0][0].encode(), |
|
|
|
expected_packet.encode()) |
|
|
|
'foo', '/', ('bar', 'baz') |
|
|
|
) |
|
|
|
assert c._send_packet.mock.call_count == 1 |
|
|
|
expected_packet = packet.Packet( |
|
|
|
packet.ACK, namespace='/', id=123, data=['ret'], binary=None |
|
|
|
) |
|
|
|
assert ( |
|
|
|
c._send_packet.mock.call_args_list[0][0][0].encode() |
|
|
|
== expected_packet.encode() |
|
|
|
) |
|
|
|
|
|
|
|
def test_handle_event_with_id_one_list_argument(self): |
|
|
|
c = asyncio_client.AsyncClient(binary=True) |
|
|
@ -504,12 +609,16 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
c._send_packet = AsyncMock() |
|
|
|
_run(c._handle_event('/', 123, ['foo', ('bar', 'baz')])) |
|
|
|
c._trigger_event.mock.assert_called_once_with( |
|
|
|
'foo', '/', ('bar', 'baz')) |
|
|
|
self.assertEqual(c._send_packet.mock.call_count, 1) |
|
|
|
expected_packet = packet.Packet(packet.ACK, namespace='/', id=123, |
|
|
|
data=[['a', 'b']], binary=None) |
|
|
|
self.assertEqual(c._send_packet.mock.call_args_list[0][0][0].encode(), |
|
|
|
expected_packet.encode()) |
|
|
|
'foo', '/', ('bar', 'baz') |
|
|
|
) |
|
|
|
assert c._send_packet.mock.call_count == 1 |
|
|
|
expected_packet = packet.Packet( |
|
|
|
packet.ACK, namespace='/', id=123, data=[['a', 'b']], binary=None |
|
|
|
) |
|
|
|
assert ( |
|
|
|
c._send_packet.mock.call_args_list[0][0][0].encode() |
|
|
|
== expected_packet.encode() |
|
|
|
) |
|
|
|
|
|
|
|
def test_handle_event_with_id_two_arguments(self): |
|
|
|
c = asyncio_client.AsyncClient(binary=True) |
|
|
@ -517,12 +626,16 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
c._send_packet = AsyncMock() |
|
|
|
_run(c._handle_event('/', 123, ['foo', ('bar', 'baz')])) |
|
|
|
c._trigger_event.mock.assert_called_once_with( |
|
|
|
'foo', '/', ('bar', 'baz')) |
|
|
|
self.assertEqual(c._send_packet.mock.call_count, 1) |
|
|
|
expected_packet = packet.Packet(packet.ACK, namespace='/', id=123, |
|
|
|
data=['a', 'b'], binary=None) |
|
|
|
self.assertEqual(c._send_packet.mock.call_args_list[0][0][0].encode(), |
|
|
|
expected_packet.encode()) |
|
|
|
'foo', '/', ('bar', 'baz') |
|
|
|
) |
|
|
|
assert c._send_packet.mock.call_count == 1 |
|
|
|
expected_packet = packet.Packet( |
|
|
|
packet.ACK, namespace='/', id=123, data=['a', 'b'], binary=None |
|
|
|
) |
|
|
|
assert ( |
|
|
|
c._send_packet.mock.call_args_list[0][0][0].encode() |
|
|
|
== expected_packet.encode() |
|
|
|
) |
|
|
|
|
|
|
|
def test_handle_ack(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
@ -530,7 +643,7 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
c.callbacks['/foo'] = {123: mock_cb} |
|
|
|
_run(c._handle_ack('/foo', 123, ['bar', 'baz'])) |
|
|
|
mock_cb.assert_called_once_with('bar', 'baz') |
|
|
|
self.assertNotIn(123, c.callbacks['/foo']) |
|
|
|
assert 123 not in c.callbacks['/foo'] |
|
|
|
|
|
|
|
def test_handle_ack_async(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
@ -538,7 +651,7 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
c.callbacks['/foo'] = {123: mock_cb} |
|
|
|
_run(c._handle_ack('/foo', 123, ['bar', 'baz'])) |
|
|
|
mock_cb.mock.assert_called_once_with('bar', 'baz') |
|
|
|
self.assertNotIn(123, c.callbacks['/foo']) |
|
|
|
assert 123 not in c.callbacks['/foo'] |
|
|
|
|
|
|
|
def test_handle_ack_not_found(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
@ -546,7 +659,7 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
c.callbacks['/foo'] = {123: mock_cb} |
|
|
|
_run(c._handle_ack('/foo', 124, ['bar', 'baz'])) |
|
|
|
mock_cb.assert_not_called() |
|
|
|
self.assertIn(123, c.callbacks['/foo']) |
|
|
|
assert 123 in c.callbacks['/foo'] |
|
|
|
|
|
|
|
def test_handle_error(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
@ -554,10 +667,11 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
c._trigger_event = AsyncMock() |
|
|
|
c.namespaces = ['/foo', '/bar'] |
|
|
|
_run(c._handle_error('/', 'error')) |
|
|
|
self.assertEqual(c.namespaces, []) |
|
|
|
self.assertFalse(c.connected) |
|
|
|
c._trigger_event.mock.assert_called_once_with('connect_error', '/', |
|
|
|
'error') |
|
|
|
assert c.namespaces == [] |
|
|
|
assert not c.connected |
|
|
|
c._trigger_event.mock.assert_called_once_with( |
|
|
|
'connect_error', '/', 'error' |
|
|
|
) |
|
|
|
|
|
|
|
def test_handle_error_with_no_arguments(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
@ -565,8 +679,8 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
c._trigger_event = AsyncMock() |
|
|
|
c.namespaces = ['/foo', '/bar'] |
|
|
|
_run(c._handle_error('/', None)) |
|
|
|
self.assertEqual(c.namespaces, []) |
|
|
|
self.assertFalse(c.connected) |
|
|
|
assert c.namespaces == [] |
|
|
|
assert not c.connected |
|
|
|
c._trigger_event.mock.assert_called_once_with('connect_error', '/') |
|
|
|
|
|
|
|
def test_handle_error_namespace(self): |
|
|
@ -575,10 +689,11 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
c.namespaces = ['/foo', '/bar'] |
|
|
|
c._trigger_event = AsyncMock() |
|
|
|
_run(c._handle_error('/bar', ['error', 'message'])) |
|
|
|
self.assertEqual(c.namespaces, ['/foo']) |
|
|
|
self.assertTrue(c.connected) |
|
|
|
c._trigger_event.mock.assert_called_once_with('connect_error', '/bar', |
|
|
|
'error', 'message') |
|
|
|
assert c.namespaces == ['/foo'] |
|
|
|
assert c.connected |
|
|
|
c._trigger_event.mock.assert_called_once_with( |
|
|
|
'connect_error', '/bar', 'error', 'message' |
|
|
|
) |
|
|
|
|
|
|
|
def test_handle_error_namespace_with_no_arguments(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
@ -586,8 +701,8 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
c.namespaces = ['/foo', '/bar'] |
|
|
|
c._trigger_event = AsyncMock() |
|
|
|
_run(c._handle_error('/bar', None)) |
|
|
|
self.assertEqual(c.namespaces, ['/foo']) |
|
|
|
self.assertTrue(c.connected) |
|
|
|
assert c.namespaces == ['/foo'] |
|
|
|
assert c.connected |
|
|
|
c._trigger_event.mock.assert_called_once_with('connect_error', '/bar') |
|
|
|
|
|
|
|
def test_handle_error_unknown_namespace(self): |
|
|
@ -595,8 +710,8 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
c.connected = True |
|
|
|
c.namespaces = ['/foo', '/bar'] |
|
|
|
_run(c._handle_error('/baz', 'error')) |
|
|
|
self.assertEqual(c.namespaces, ['/foo', '/bar']) |
|
|
|
self.assertTrue(c.connected) |
|
|
|
assert c.namespaces == ['/foo', '/bar'] |
|
|
|
assert c.connected |
|
|
|
|
|
|
|
def test_trigger_event(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
@ -623,7 +738,7 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
|
|
|
|
c.register_namespace(MyNamespace('/')) |
|
|
|
_run(c._trigger_event('foo', '/', 1, '2')) |
|
|
|
self.assertEqual(result, [1, '2']) |
|
|
|
assert result == [1, '2'] |
|
|
|
|
|
|
|
def test_trigger_event_unknown_namespace(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
@ -636,74 +751,96 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
|
|
|
|
c.register_namespace(MyNamespace('/')) |
|
|
|
_run(c._trigger_event('foo', '/bar', 1, '2')) |
|
|
|
self.assertEqual(result, []) |
|
|
|
assert result == [] |
|
|
|
|
|
|
|
@mock.patch('asyncio.wait_for', new_callable=AsyncMock, |
|
|
|
side_effect=asyncio.TimeoutError) |
|
|
|
@mock.patch( |
|
|
|
'asyncio.wait_for', |
|
|
|
new_callable=AsyncMock, |
|
|
|
side_effect=asyncio.TimeoutError, |
|
|
|
) |
|
|
|
@mock.patch('socketio.client.random.random', side_effect=[1, 0, 0.5]) |
|
|
|
def test_handle_reconnect(self, random, wait_for): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
|
c._reconnect_task = 'foo' |
|
|
|
c.connect = AsyncMock( |
|
|
|
side_effect=[ValueError, exceptions.ConnectionError, None]) |
|
|
|
side_effect=[ValueError, exceptions.ConnectionError, None] |
|
|
|
) |
|
|
|
_run(c._handle_reconnect()) |
|
|
|
self.assertEqual(wait_for.mock.call_count, 3) |
|
|
|
self.assertEqual( |
|
|
|
[x[0][1] for x in asyncio.wait_for.mock.call_args_list], |
|
|
|
[1.5, 1.5, 4.0]) |
|
|
|
self.assertEqual(c._reconnect_task, None) |
|
|
|
|
|
|
|
@mock.patch('asyncio.wait_for', new_callable=AsyncMock, |
|
|
|
side_effect=asyncio.TimeoutError) |
|
|
|
assert wait_for.mock.call_count == 3 |
|
|
|
assert [x[0][1] for x in asyncio.wait_for.mock.call_args_list] == [ |
|
|
|
1.5, |
|
|
|
1.5, |
|
|
|
4.0, |
|
|
|
] |
|
|
|
assert c._reconnect_task is None |
|
|
|
|
|
|
|
@mock.patch( |
|
|
|
'asyncio.wait_for', |
|
|
|
new_callable=AsyncMock, |
|
|
|
side_effect=asyncio.TimeoutError, |
|
|
|
) |
|
|
|
@mock.patch('socketio.client.random.random', side_effect=[1, 0, 0.5]) |
|
|
|
def test_handle_reconnect_max_delay(self, random, wait_for): |
|
|
|
c = asyncio_client.AsyncClient(reconnection_delay_max=3) |
|
|
|
c._reconnect_task = 'foo' |
|
|
|
c.connect = AsyncMock( |
|
|
|
side_effect=[ValueError, exceptions.ConnectionError, None]) |
|
|
|
side_effect=[ValueError, exceptions.ConnectionError, None] |
|
|
|
) |
|
|
|
_run(c._handle_reconnect()) |
|
|
|
self.assertEqual(wait_for.mock.call_count, 3) |
|
|
|
self.assertEqual( |
|
|
|
[x[0][1] for x in asyncio.wait_for.mock.call_args_list], |
|
|
|
[1.5, 1.5, 3.0]) |
|
|
|
self.assertEqual(c._reconnect_task, None) |
|
|
|
|
|
|
|
@mock.patch('asyncio.wait_for', new_callable=AsyncMock, |
|
|
|
side_effect=asyncio.TimeoutError) |
|
|
|
assert wait_for.mock.call_count == 3 |
|
|
|
assert [x[0][1] for x in asyncio.wait_for.mock.call_args_list] == [ |
|
|
|
1.5, |
|
|
|
1.5, |
|
|
|
3.0, |
|
|
|
] |
|
|
|
assert c._reconnect_task is None |
|
|
|
|
|
|
|
@mock.patch( |
|
|
|
'asyncio.wait_for', |
|
|
|
new_callable=AsyncMock, |
|
|
|
side_effect=asyncio.TimeoutError, |
|
|
|
) |
|
|
|
@mock.patch('socketio.client.random.random', side_effect=[1, 0, 0.5]) |
|
|
|
def test_handle_reconnect_max_attempts(self, random, wait_for): |
|
|
|
c = asyncio_client.AsyncClient(reconnection_attempts=2) |
|
|
|
c._reconnect_task = 'foo' |
|
|
|
c.connect = AsyncMock( |
|
|
|
side_effect=[ValueError, exceptions.ConnectionError, None]) |
|
|
|
side_effect=[ValueError, exceptions.ConnectionError, None] |
|
|
|
) |
|
|
|
_run(c._handle_reconnect()) |
|
|
|
self.assertEqual(wait_for.mock.call_count, 2) |
|
|
|
self.assertEqual( |
|
|
|
[x[0][1] for x in asyncio.wait_for.mock.call_args_list], |
|
|
|
[1.5, 1.5]) |
|
|
|
self.assertEqual(c._reconnect_task, 'foo') |
|
|
|
|
|
|
|
@mock.patch('asyncio.wait_for', new_callable=AsyncMock, |
|
|
|
side_effect=[asyncio.TimeoutError, None]) |
|
|
|
assert wait_for.mock.call_count == 2 |
|
|
|
assert [x[0][1] for x in asyncio.wait_for.mock.call_args_list] == [ |
|
|
|
1.5, |
|
|
|
1.5, |
|
|
|
] |
|
|
|
assert c._reconnect_task == 'foo' |
|
|
|
|
|
|
|
@mock.patch( |
|
|
|
'asyncio.wait_for', |
|
|
|
new_callable=AsyncMock, |
|
|
|
side_effect=[asyncio.TimeoutError, None], |
|
|
|
) |
|
|
|
@mock.patch('socketio.client.random.random', side_effect=[1, 0, 0.5]) |
|
|
|
def test_handle_reconnect_aborted(self, random, wait_for): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
|
c._reconnect_task = 'foo' |
|
|
|
c.connect = AsyncMock( |
|
|
|
side_effect=[ValueError, exceptions.ConnectionError, None]) |
|
|
|
side_effect=[ValueError, exceptions.ConnectionError, None] |
|
|
|
) |
|
|
|
_run(c._handle_reconnect()) |
|
|
|
self.assertEqual(wait_for.mock.call_count, 2) |
|
|
|
self.assertEqual( |
|
|
|
[x[0][1] for x in asyncio.wait_for.mock.call_args_list], |
|
|
|
[1.5, 1.5]) |
|
|
|
self.assertEqual(c._reconnect_task, 'foo') |
|
|
|
assert wait_for.mock.call_count == 2 |
|
|
|
assert [x[0][1] for x in asyncio.wait_for.mock.call_args_list] == [ |
|
|
|
1.5, |
|
|
|
1.5, |
|
|
|
] |
|
|
|
assert c._reconnect_task == 'foo' |
|
|
|
|
|
|
|
def test_eio_connect(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
|
c.eio.sid = 'foo' |
|
|
|
self.assertIsNone(c.sid) |
|
|
|
assert c.sid is None |
|
|
|
c._handle_eio_connect() |
|
|
|
self.assertEqual(c.sid, 'foo') |
|
|
|
assert c.sid == 'foo' |
|
|
|
|
|
|
|
def test_handle_eio_message(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
@ -736,18 +873,23 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
_run(c._handle_eio_message('4/foo,["foo","bar"]')) |
|
|
|
c._handle_error.mock.assert_called_with('/foo', ['foo', 'bar']) |
|
|
|
_run(c._handle_eio_message('51-{"_placeholder":true,"num":0}')) |
|
|
|
self.assertEqual(c._binary_packet.packet_type, packet.BINARY_EVENT) |
|
|
|
assert c._binary_packet.packet_type == packet.BINARY_EVENT |
|
|
|
_run(c._handle_eio_message(b'foo')) |
|
|
|
c._handle_event.mock.assert_called_with(None, None, b'foo') |
|
|
|
_run(c._handle_eio_message( |
|
|
|
'62-/foo,{"1":{"_placeholder":true,"num":1},' |
|
|
|
'"2":{"_placeholder":true,"num":0}}')) |
|
|
|
self.assertEqual(c._binary_packet.packet_type, packet.BINARY_ACK) |
|
|
|
_run( |
|
|
|
c._handle_eio_message( |
|
|
|
'62-/foo,{"1":{"_placeholder":true,"num":1},' |
|
|
|
'"2":{"_placeholder":true,"num":0}}' |
|
|
|
) |
|
|
|
) |
|
|
|
assert c._binary_packet.packet_type == packet.BINARY_ACK |
|
|
|
_run(c._handle_eio_message(b'bar')) |
|
|
|
_run(c._handle_eio_message(b'foo')) |
|
|
|
c._handle_ack.mock.assert_called_with('/foo', None, {'1': b'foo', |
|
|
|
'2': b'bar'}) |
|
|
|
self.assertRaises(ValueError, _run, c._handle_eio_message('9')) |
|
|
|
c._handle_ack.mock.assert_called_with( |
|
|
|
'/foo', None, {'1': b'foo', '2': b'bar'} |
|
|
|
) |
|
|
|
with pytest.raises(ValueError): |
|
|
|
_run(c._handle_eio_message('9')) |
|
|
|
|
|
|
|
def test_eio_disconnect(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
@ -757,9 +899,10 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
c.eio.state = 'connected' |
|
|
|
_run(c._handle_eio_disconnect()) |
|
|
|
c._trigger_event.mock.assert_called_once_with( |
|
|
|
'disconnect', namespace='/') |
|
|
|
self.assertIsNone(c.sid) |
|
|
|
self.assertFalse(c.connected) |
|
|
|
'disconnect', namespace='/' |
|
|
|
) |
|
|
|
assert c.sid is None |
|
|
|
assert not c.connected |
|
|
|
|
|
|
|
def test_eio_disconnect_namespaces(self): |
|
|
|
c = asyncio_client.AsyncClient() |
|
|
@ -772,8 +915,8 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
c._trigger_event.mock.assert_any_call('disconnect', namespace='/foo') |
|
|
|
c._trigger_event.mock.assert_any_call('disconnect', namespace='/bar') |
|
|
|
c._trigger_event.mock.assert_any_call('disconnect', namespace='/') |
|
|
|
self.assertIsNone(c.sid) |
|
|
|
self.assertFalse(c.connected) |
|
|
|
assert c.sid is None |
|
|
|
assert not c.connected |
|
|
|
|
|
|
|
def test_eio_disconnect_reconnect(self): |
|
|
|
c = asyncio_client.AsyncClient(reconnection=True) |
|
|
|