Browse Source

Conversion from Socket.IO sid to Engine.IO sid

pull/599/head
Miguel Grinberg 4 years ago
parent
commit
805b33fa7d
No known key found for this signature in database GPG Key ID: 36848B262DF5F06C
  1. 2
      README.rst
  2. 4
      socketio/base_manager.py
  3. 5
      tests/common/test_base_manager.py

2
README.rst

@ -21,7 +21,7 @@ is to use the same version of this package for the client and the server. If you
using this package with a different client or server, then you must ensure the
versions are compatible.
The version compatiblity chart below maps versions of this package to versions
The version compatibility chart below maps versions of this package to versions
of the JavaScript reference implementation and the versions of the Socket.IO and
Engine.IO protocols.

4
socketio/base_manager.py

@ -62,6 +62,10 @@ class BaseManager(object):
if namespace in self.rooms:
return self.rooms[namespace][None].inverse.get(eio_sid)
def eio_sid_from_sid(self, sid, namespace):
if namespace in self.rooms:
return self.rooms[namespace][None].get(sid)
def can_disconnect(self, sid, namespace):
return self.is_connected(sid, namespace)

5
tests/common/test_base_manager.py

@ -28,6 +28,11 @@ class TestBaseManager(unittest.TestCase):
assert dict(self.bm.rooms['/foo'][None]) == {sid: '123'}
assert dict(self.bm.rooms['/foo'][sid]) == {sid: '123'}
assert self.bm.sid_from_eio_sid('123', '/foo') == sid
assert self.bm.sid_from_eio_sid('1234', '/foo') is None
assert self.bm.sid_from_eio_sid('123', '/bar') is None
assert self.bm.eio_sid_from_sid(sid, '/foo') == '123'
assert self.bm.eio_sid_from_sid('x', '/foo') is None
assert self.bm.eio_sid_from_sid(sid, '/bar') is None
def test_pre_disconnect(self):
sid1 = self.bm.connect('123', '/foo')

Loading…
Cancel
Save