Browse Source

Unit test fixes for the new simple clients (Fixes #1265)

pull/1267/head
Miguel Grinberg 1 year ago
parent
commit
66b9586a65
Failed to extract signature
  1. 12
      tests/async/test_simple_client.py
  2. 10
      tests/common/test_simple_client.py

12
tests/async/test_simple_client.py

@ -32,7 +32,7 @@ class TestAsyncAsyncSimpleClient(unittest.TestCase):
'url', headers='h', auth='a', transports='t', 'url', headers='h', auth='a', transports='t',
namespaces=['n'], socketio_path='s', wait_timeout='w') namespaces=['n'], socketio_path='s', wait_timeout='w')
mock_client().event.call_count == 3 mock_client().event.call_count == 3
mock_client().on.called_once_with('*') mock_client().on.assert_called_once_with('*', namespace='n')
assert client.namespace == 'n' assert client.namespace == 'n'
assert not client.input_event.is_set() assert not client.input_event.is_set()
@ -52,7 +52,8 @@ class TestAsyncAsyncSimpleClient(unittest.TestCase):
'url', headers='h', auth='a', transports='t', 'url', headers='h', auth='a', transports='t',
namespaces=['n'], socketio_path='s', wait_timeout='w') namespaces=['n'], socketio_path='s', wait_timeout='w')
mock_client().event.call_count == 3 mock_client().event.call_count == 3
mock_client().on.called_once_with('*') mock_client().on.assert_called_once_with(
'*', namespace='n')
assert client.namespace == 'n' assert client.namespace == 'n'
assert not client.input_event.is_set() assert not client.input_event.is_set()
@ -85,7 +86,7 @@ class TestAsyncAsyncSimpleClient(unittest.TestCase):
client.connected = True client.connected = True
_run(client.emit('foo', 'bar')) _run(client.emit('foo', 'bar'))
assert client.client.emit.mock.called_once_with('foo', 'bar', client.client.emit.mock.assert_called_once_with('foo', 'bar',
namespace='/ns') namespace='/ns')
def test_emit_disconnected(self): def test_emit_disconnected(self):
@ -116,9 +117,8 @@ class TestAsyncAsyncSimpleClient(unittest.TestCase):
client.connected = True client.connected = True
assert _run(client.call('foo', 'bar')) == 'result' assert _run(client.call('foo', 'bar')) == 'result'
assert client.client.call.mock.called_once_with('foo', 'bar', client.client.call.mock.assert_called_once_with(
namespace='/ns', 'foo', 'bar', namespace='/ns', timeout=60)
timeout=60)
def test_call_disconnected(self): def test_call_disconnected(self):
client = AsyncSimpleClient() client = AsyncSimpleClient()

10
tests/common/test_simple_client.py

@ -25,7 +25,7 @@ class TestSimpleClient(unittest.TestCase):
'url', headers='h', auth='a', transports='t', 'url', headers='h', auth='a', transports='t',
namespaces=['n'], socketio_path='s', wait_timeout='w') namespaces=['n'], socketio_path='s', wait_timeout='w')
mock_client().event.call_count == 3 mock_client().event.call_count == 3
mock_client().on.called_once_with('*') mock_client().on.assert_called_once_with('*', namespace='n')
assert client.namespace == 'n' assert client.namespace == 'n'
assert not client.input_event.is_set() assert not client.input_event.is_set()
@ -41,7 +41,7 @@ class TestSimpleClient(unittest.TestCase):
'url', headers='h', auth='a', transports='t', 'url', headers='h', auth='a', transports='t',
namespaces=['n'], socketio_path='s', wait_timeout='w') namespaces=['n'], socketio_path='s', wait_timeout='w')
mock_client().event.call_count == 3 mock_client().event.call_count == 3
mock_client().on.called_once_with('*') mock_client().on.assert_called_once_with('*', namespace='n')
assert client.namespace == 'n' assert client.namespace == 'n'
assert not client.input_event.is_set() assert not client.input_event.is_set()
@ -71,7 +71,7 @@ class TestSimpleClient(unittest.TestCase):
client.connected = True client.connected = True
client.emit('foo', 'bar') client.emit('foo', 'bar')
assert client.client.emit.called_once_with('foo', 'bar', client.client.emit.assert_called_once_with('foo', 'bar',
namespace='/ns') namespace='/ns')
def test_emit_disconnected(self): def test_emit_disconnected(self):
@ -100,8 +100,8 @@ class TestSimpleClient(unittest.TestCase):
client.connected = True client.connected = True
assert client.call('foo', 'bar') == 'result' assert client.call('foo', 'bar') == 'result'
client.client.call.called_once_with('foo', 'bar', namespace='/ns', client.client.call.assert_called_once_with('foo', 'bar',
timeout=60) namespace='/ns', timeout=60)
def test_call_disconnected(self): def test_call_disconnected(self):
client = SimpleClient() client = SimpleClient()

Loading…
Cancel
Save