Browse Source

do not allow callbacks outside of a server context

pull/9/head
Miguel Grinberg 9 years ago
parent
commit
6ae89688d7
  1. 3
      socketio/pubsub_manager.py
  2. 5
      tests/test_pubsub_manager.py

3
socketio/pubsub_manager.py

@ -46,6 +46,9 @@ class PubSubManager(BaseManager):
""" """
namespace = namespace or '/' namespace = namespace or '/'
if callback is not None: if callback is not None:
if self.server is None:
raise RuntimeError('Callbacks can only be issued from the '
'context of a server.')
if room is None: if room is None:
raise ValueError('Cannot use callback without a room set.') raise ValueError('Cannot use callback without a room set.')
id = self._generate_ack_id(room, namespace, callback) id = self._generate_ack_id(room, namespace, callback)

5
tests/test_pubsub_manager.py

@ -66,6 +66,11 @@ class TestBaseManager(unittest.TestCase):
'namespace': '/', 'room': 'baz', 'skip_sid': None, 'namespace': '/', 'room': 'baz', 'skip_sid': None,
'callback': ('baz', '/', '123')}) 'callback': ('baz', '/', '123')})
def test_emit_with_callback_without_server(self):
standalone_pm = pubsub_manager.PubSubManager()
self.assertRaises(RuntimeError, standalone_pm.emit, 'foo', 'bar',
callback='cb')
def test_emit_with_callback_missing_room(self): def test_emit_with_callback_missing_room(self):
with mock.patch.object(self.pm, '_generate_ack_id', with mock.patch.object(self.pm, '_generate_ack_id',
return_value='123'): return_value='123'):

Loading…
Cancel
Save