Browse Source

Allow custom client subclasses to be used in SimpleClient and AsyncSimpleClient (Fixes #1432)

pull/1439/head
Miguel Grinberg 2 months ago
parent
commit
7605630bb2
Failed to extract signature
  1. 5
      src/socketio/async_simple_client.py
  2. 5
      src/socketio/simple_client.py
  3. 61
      tests/async/test_simple_client.py
  4. 44
      tests/common/test_simple_client.py

5
src/socketio/async_simple_client.py

@ -12,6 +12,8 @@ class AsyncSimpleClient:
The positional and keyword arguments given in the constructor are passed
to the underlying :func:`socketio.AsyncClient` object.
"""
client_class = AsyncClient
def __init__(self, *args, **kwargs):
self.client_args = args
self.client_kwargs = kwargs
@ -60,7 +62,8 @@ class AsyncSimpleClient:
self.namespace = namespace
self.input_buffer = []
self.input_event.clear()
self.client = AsyncClient(*self.client_args, **self.client_kwargs)
self.client = self.client_class(
*self.client_args, **self.client_kwargs)
@self.client.event(namespace=self.namespace)
def connect(): # pragma: no cover

5
src/socketio/simple_client.py

@ -12,6 +12,8 @@ class SimpleClient:
The positional and keyword arguments given in the constructor are passed
to the underlying :func:`socketio.Client` object.
"""
client_class = Client
def __init__(self, *args, **kwargs):
self.client_args = args
self.client_kwargs = kwargs
@ -58,7 +60,8 @@ class SimpleClient:
self.namespace = namespace
self.input_buffer = []
self.input_event.clear()
self.client = Client(*self.client_args, **self.client_kwargs)
self.client = self.client_class(
*self.client_args, **self.client_kwargs)
@self.client.event(namespace=self.namespace)
def connect(): # pragma: no cover

61
tests/async/test_simple_client.py

@ -16,46 +16,51 @@ class TestAsyncAsyncSimpleClient:
assert not client.connected
async def test_connect(self):
mock_client = mock.MagicMock()
original_client_class = AsyncSimpleClient.client_class
AsyncSimpleClient.client_class = mock_client
client = AsyncSimpleClient(123, a='b')
with mock.patch('socketio.async_simple_client.AsyncClient') \
as mock_client:
mock_client.return_value.connect = mock.AsyncMock()
await client.connect('url', headers='h', auth='a', transports='t',
namespace='n', socketio_path='s',
wait_timeout='w')
mock_client.assert_called_once_with(123, a='b')
assert client.client == mock_client()
mock_client().connect.assert_awaited_once_with(
'url', headers='h', auth='a', transports='t',
namespaces=['n'], socketio_path='s', wait_timeout='w')
mock_client().event.call_count == 3
mock_client().on.assert_called_once_with('*', namespace='n')
assert client.namespace == 'n'
assert not client.input_event.is_set()
AsyncSimpleClient.client_class = original_client_class
async def test_connect_context_manager(self):
mock_client = mock.MagicMock()
original_client_class = AsyncSimpleClient.client_class
AsyncSimpleClient.client_class = mock_client
async with AsyncSimpleClient(123, a='b') as client:
mock_client.return_value.connect = mock.AsyncMock()
await client.connect('url', headers='h', auth='a', transports='t',
namespace='n', socketio_path='s',
wait_timeout='w')
await client.connect('url', headers='h', auth='a',
transports='t', namespace='n',
socketio_path='s', wait_timeout='w')
mock_client.assert_called_once_with(123, a='b')
assert client.client == mock_client()
mock_client().connect.assert_awaited_once_with(
'url', headers='h', auth='a', transports='t',
namespaces=['n'], socketio_path='s', wait_timeout='w')
mock_client().event.call_count == 3
mock_client().on.assert_called_once_with('*', namespace='n')
mock_client().on.assert_called_once_with(
'*', namespace='n')
assert client.namespace == 'n'
assert not client.input_event.is_set()
async def test_connect_context_manager(self):
async def _t():
async with AsyncSimpleClient(123, a='b') as client:
with mock.patch('socketio.async_simple_client.AsyncClient') \
as mock_client:
mock_client.return_value.connect = mock.AsyncMock()
await client.connect('url', headers='h', auth='a',
transports='t', namespace='n',
socketio_path='s', wait_timeout='w')
mock_client.assert_called_once_with(123, a='b')
assert client.client == mock_client()
mock_client().connect.assert_awaited_once_with(
'url', headers='h', auth='a', transports='t',
namespaces=['n'], socketio_path='s', wait_timeout='w')
mock_client().event.call_count == 3
mock_client().on.assert_called_once_with(
'*', namespace='n')
assert client.namespace == 'n'
assert not client.input_event.is_set()
await _t()
AsyncSimpleClient.client_class = original_client_class
async def test_connect_twice(self):
client = AsyncSimpleClient(123, a='b')

44
tests/common/test_simple_client.py

@ -14,10 +14,34 @@ class TestSimpleClient:
assert not client.connected
def test_connect(self):
mock_client = mock.MagicMock()
original_client_class = SimpleClient.client_class
SimpleClient.client_class = mock_client
client = SimpleClient(123, a='b')
with mock.patch('socketio.simple_client.Client') as mock_client:
client.connect('url', headers='h', auth='a', transports='t',
namespace='n', socketio_path='s', wait_timeout='w')
mock_client.assert_called_once_with(123, a='b')
assert client.client == mock_client()
mock_client().connect.assert_called_once_with(
'url', headers='h', auth='a', transports='t',
namespaces=['n'], socketio_path='s', wait_timeout='w')
mock_client().event.call_count == 3
mock_client().on.assert_called_once_with('*', namespace='n')
assert client.namespace == 'n'
assert not client.input_event.is_set()
SimpleClient.client_class = original_client_class
def test_connect_context_manager(self):
mock_client = mock.MagicMock()
original_client_class = SimpleClient.client_class
SimpleClient.client_class = mock_client
with SimpleClient(123, a='b') as client:
client.connect('url', headers='h', auth='a', transports='t',
namespace='n', socketio_path='s', wait_timeout='w')
namespace='n', socketio_path='s',
wait_timeout='w')
mock_client.assert_called_once_with(123, a='b')
assert client.client == mock_client()
mock_client().connect.assert_called_once_with(
@ -28,21 +52,7 @@ class TestSimpleClient:
assert client.namespace == 'n'
assert not client.input_event.is_set()
def test_connect_context_manager(self):
with SimpleClient(123, a='b') as client:
with mock.patch('socketio.simple_client.Client') as mock_client:
client.connect('url', headers='h', auth='a', transports='t',
namespace='n', socketio_path='s',
wait_timeout='w')
mock_client.assert_called_once_with(123, a='b')
assert client.client == mock_client()
mock_client().connect.assert_called_once_with(
'url', headers='h', auth='a', transports='t',
namespaces=['n'], socketio_path='s', wait_timeout='w')
mock_client().event.call_count == 3
mock_client().on.assert_called_once_with('*', namespace='n')
assert client.namespace == 'n'
assert not client.input_event.is_set()
SimpleClient.client_class = original_client_class
def test_connect_twice(self):
client = SimpleClient(123, a='b')

Loading…
Cancel
Save