Browse Source
better handling of packets with no data
pull/213/head
Miguel Grinberg
7 years ago
No known key found for this signature in database
GPG Key ID: 36848B262DF5F06C
2 changed files with
15 additions and
3 deletions
-
socketio/packet.py
-
tests/test_packet.py
|
|
@ -88,9 +88,9 @@ class Packet(object): |
|
|
|
self.namespace = None |
|
|
|
self.data = None |
|
|
|
ep = ep[1:] |
|
|
|
dash = (ep + '-').find('-') |
|
|
|
dash = ep.find('-') |
|
|
|
attachment_count = 0 |
|
|
|
if ep[0:dash].isdigit(): |
|
|
|
if dash > 0 and ep[0:dash].isdigit(): |
|
|
|
attachment_count = int(ep[0:dash]) |
|
|
|
ep = ep[dash + 1:] |
|
|
|
if ep and ep[0:1] == '/': |
|
|
@ -106,7 +106,7 @@ class Packet(object): |
|
|
|
self.namespace = self.namespace[0:q] |
|
|
|
if ep and ep[0].isdigit(): |
|
|
|
self.id = 0 |
|
|
|
while ep[0].isdigit(): |
|
|
|
while ep and ep[0].isdigit(): |
|
|
|
self.id = self.id * 10 + int(ep[0]) |
|
|
|
ep = ep[1:] |
|
|
|
if ep: |
|
|
|
|
|
@ -146,6 +146,18 @@ class TestPacket(unittest.TestCase): |
|
|
|
self.assertEqual(pkt.id, 123) |
|
|
|
self.assertEqual(pkt.encode(), '2123["foo"]') |
|
|
|
|
|
|
|
def test_encode_id_no_data(self): |
|
|
|
pkt = packet.Packet(packet_type=packet.EVENT, id=123) |
|
|
|
self.assertEqual(pkt.id, 123) |
|
|
|
self.assertIsNone(pkt.data) |
|
|
|
self.assertEqual(pkt.encode(), '2123') |
|
|
|
|
|
|
|
def test_decode_id_no_data(self): |
|
|
|
pkt = packet.Packet(encoded_packet='2123') |
|
|
|
self.assertEqual(pkt.id, 123) |
|
|
|
self.assertIsNone(pkt.data) |
|
|
|
self.assertEqual(pkt.encode(), '2123') |
|
|
|
|
|
|
|
def test_encode_namespace_and_id(self): |
|
|
|
pkt = packet.Packet(packet_type=packet.EVENT, |
|
|
|
data=[six.text_type('foo')], namespace='/bar', |
|
|
|