|
|
@ -169,13 +169,15 @@ class TestPubSubManager(unittest.TestCase): |
|
|
|
assert self.pm.can_disconnect(sid, '/') |
|
|
|
self.pm.can_disconnect(sid, '/foo') |
|
|
|
self.pm._publish.assert_called_once_with( |
|
|
|
{'method': 'disconnect', 'sid': sid, 'namespace': '/foo'} |
|
|
|
{'method': 'disconnect', 'sid': sid, 'namespace': '/foo', |
|
|
|
'host_id': '123456'} |
|
|
|
) |
|
|
|
|
|
|
|
def test_disconnect(self): |
|
|
|
self.pm.disconnect('foo') |
|
|
|
self.pm._publish.assert_called_once_with( |
|
|
|
{'method': 'disconnect', 'sid': 'foo', 'namespace': '/'} |
|
|
|
{'method': 'disconnect', 'sid': 'foo', 'namespace': '/', |
|
|
|
'host_id': '123456'} |
|
|
|
) |
|
|
|
|
|
|
|
def test_disconnect_ignore_queue(self): |
|
|
@ -188,13 +190,15 @@ class TestPubSubManager(unittest.TestCase): |
|
|
|
def test_close_room(self): |
|
|
|
self.pm.close_room('foo') |
|
|
|
self.pm._publish.assert_called_once_with( |
|
|
|
{'method': 'close_room', 'room': 'foo', 'namespace': '/'} |
|
|
|
{'method': 'close_room', 'room': 'foo', 'namespace': '/', |
|
|
|
'host_id': '123456'} |
|
|
|
) |
|
|
|
|
|
|
|
def test_close_room_with_namespace(self): |
|
|
|
self.pm.close_room('foo', '/bar') |
|
|
|
self.pm._publish.assert_called_once_with( |
|
|
|
{'method': 'close_room', 'room': 'foo', 'namespace': '/bar'} |
|
|
|
{'method': 'close_room', 'room': 'foo', 'namespace': '/bar', |
|
|
|
'host_id': '123456'} |
|
|
|
) |
|
|
|
|
|
|
|
def test_handle_emit(self): |
|
|
@ -251,8 +255,7 @@ class TestPubSubManager(unittest.TestCase): |
|
|
|
callback=None, |
|
|
|
) |
|
|
|
|
|
|
|
def test_handle_emit_with_callback(self): |
|
|
|
host_id = self.pm.host_id |
|
|
|
def test_handle_emit_with_remote_callback(self): |
|
|
|
with mock.patch.object(base_manager.BaseManager, 'emit') as super_emit: |
|
|
|
self.pm._handle_emit( |
|
|
|
{ |
|
|
@ -260,7 +263,7 @@ class TestPubSubManager(unittest.TestCase): |
|
|
|
'data': 'bar', |
|
|
|
'namespace': '/baz', |
|
|
|
'callback': ('sid', '/baz', 123), |
|
|
|
'host_id': host_id, |
|
|
|
'host_id': 'x', |
|
|
|
} |
|
|
|
) |
|
|
|
assert super_emit.call_count == 1 |
|
|
@ -275,7 +278,7 @@ class TestPubSubManager(unittest.TestCase): |
|
|
|
self.pm._publish.assert_called_once_with( |
|
|
|
{ |
|
|
|
'method': 'callback', |
|
|
|
'host_id': host_id, |
|
|
|
'host_id': 'x', |
|
|
|
'sid': 'sid', |
|
|
|
'namespace': '/baz', |
|
|
|
'id': 123, |
|
|
@ -283,6 +286,28 @@ class TestPubSubManager(unittest.TestCase): |
|
|
|
} |
|
|
|
) |
|
|
|
|
|
|
|
def test_handle_emit_with_local_callback(self): |
|
|
|
with mock.patch.object(base_manager.BaseManager, 'emit') as super_emit: |
|
|
|
self.pm._handle_emit( |
|
|
|
{ |
|
|
|
'event': 'foo', |
|
|
|
'data': 'bar', |
|
|
|
'namespace': '/baz', |
|
|
|
'callback': ('sid', '/baz', 123), |
|
|
|
'host_id': self.pm.host_id, |
|
|
|
} |
|
|
|
) |
|
|
|
assert super_emit.call_count == 1 |
|
|
|
assert super_emit.call_args[0] == ('foo', 'bar') |
|
|
|
assert super_emit.call_args[1]['namespace'] == '/baz' |
|
|
|
assert super_emit.call_args[1]['room'] is None |
|
|
|
assert super_emit.call_args[1]['skip_sid'] is None |
|
|
|
assert isinstance( |
|
|
|
super_emit.call_args[1]['callback'], functools.partial |
|
|
|
) |
|
|
|
super_emit.call_args[1]['callback']('one', 2, 'three') |
|
|
|
self.pm._publish.assert_not_called() |
|
|
|
|
|
|
|
def test_handle_callback(self): |
|
|
|
host_id = self.pm.host_id |
|
|
|
with mock.patch.object(self.pm, 'trigger_callback') as trigger: |
|
|
@ -373,19 +398,31 @@ class TestPubSubManager(unittest.TestCase): |
|
|
|
self.pm._handle_callback = mock.MagicMock() |
|
|
|
self.pm._handle_disconnect = mock.MagicMock() |
|
|
|
self.pm._handle_close_room = mock.MagicMock() |
|
|
|
host_id = self.pm.host_id |
|
|
|
|
|
|
|
def messages(): |
|
|
|
import pickle |
|
|
|
|
|
|
|
yield {'method': 'emit', 'value': 'foo'} |
|
|
|
yield {'missing': 'method'} |
|
|
|
yield '{"method": "callback", "value": "bar"}' |
|
|
|
yield {'method': 'disconnect', 'sid': '123', 'namespace': '/foo'} |
|
|
|
yield {'method': 'bogus'} |
|
|
|
yield pickle.dumps({'method': 'close_room', 'value': 'baz'}) |
|
|
|
yield {'method': 'emit', 'value': 'foo', 'host_id': 'x'} |
|
|
|
yield {'missing': 'method', 'host_id': 'x'} |
|
|
|
yield '{"method": "callback", "value": "bar", "host_id": "x"}' |
|
|
|
yield {'method': 'disconnect', 'sid': '123', 'namespace': '/foo', |
|
|
|
'host_id': 'x'} |
|
|
|
yield {'method': 'bogus', 'host_id': 'x'} |
|
|
|
yield pickle.dumps({'method': 'close_room', 'value': 'baz', |
|
|
|
'host_id': 'x'}) |
|
|
|
yield 'bad json' |
|
|
|
yield b'bad pickled' |
|
|
|
|
|
|
|
# these should not publish anything on the queue, as they come from |
|
|
|
# the same host |
|
|
|
yield {'method': 'emit', 'value': 'foo', 'host_id': host_id} |
|
|
|
yield {'method': 'callback', 'value': 'bar', 'host_id': host_id} |
|
|
|
yield {'method': 'disconnect', 'sid': '123', 'namespace': '/foo', |
|
|
|
'host_id': host_id} |
|
|
|
yield pickle.dumps({'method': 'close_room', 'value': 'baz', |
|
|
|
'host_id': host_id}) |
|
|
|
|
|
|
|
self.pm._listen = mock.MagicMock(side_effect=messages) |
|
|
|
try: |
|
|
|
self.pm._thread() |
|
|
@ -393,24 +430,28 @@ class TestPubSubManager(unittest.TestCase): |
|
|
|
pass |
|
|
|
|
|
|
|
self.pm._handle_emit.assert_called_once_with( |
|
|
|
{'method': 'emit', 'value': 'foo'} |
|
|
|
{'method': 'emit', 'value': 'foo', 'host_id': 'x'} |
|
|
|
) |
|
|
|
self.pm._handle_callback.assert_any_call( |
|
|
|
{'method': 'callback', 'value': 'bar', 'host_id': 'x'} |
|
|
|
) |
|
|
|
self.pm._handle_callback.assert_called_once_with( |
|
|
|
{'method': 'callback', 'value': 'bar'} |
|
|
|
self.pm._handle_callback.assert_any_call( |
|
|
|
{'method': 'callback', 'value': 'bar', 'host_id': host_id} |
|
|
|
) |
|
|
|
self.pm._handle_disconnect.assert_called_once_with( |
|
|
|
{'method': 'disconnect', 'sid': '123', 'namespace': '/foo'} |
|
|
|
{'method': 'disconnect', 'sid': '123', 'namespace': '/foo', |
|
|
|
'host_id': 'x'} |
|
|
|
) |
|
|
|
self.pm._handle_close_room.assert_called_once_with( |
|
|
|
{'method': 'close_room', 'value': 'baz'} |
|
|
|
{'method': 'close_room', 'value': 'baz', 'host_id': 'x'} |
|
|
|
) |
|
|
|
|
|
|
|
def test_background_thread_exception(self): |
|
|
|
self.pm._handle_emit = mock.MagicMock(side_effect=[ValueError(), None]) |
|
|
|
|
|
|
|
def messages(): |
|
|
|
yield {'method': 'emit', 'value': 'foo'} |
|
|
|
yield {'method': 'emit', 'value': 'bar'} |
|
|
|
yield {'method': 'emit', 'value': 'foo', 'host_id': 'x'} |
|
|
|
yield {'method': 'emit', 'value': 'bar', 'host_id': 'x'} |
|
|
|
|
|
|
|
self.pm._listen = mock.MagicMock(side_effect=messages) |
|
|
|
try: |
|
|
@ -419,8 +460,8 @@ class TestPubSubManager(unittest.TestCase): |
|
|
|
pass |
|
|
|
|
|
|
|
self.pm._handle_emit.assert_any_call( |
|
|
|
{'method': 'emit', 'value': 'foo'} |
|
|
|
{'method': 'emit', 'value': 'foo', 'host_id': 'x'} |
|
|
|
) |
|
|
|
self.pm._handle_emit.assert_called_with( |
|
|
|
{'method': 'emit', 'value': 'bar'} |
|
|
|
{'method': 'emit', 'value': 'bar', 'host_id': 'x'} |
|
|
|
) |
|
|
|