Browse Source
Made parsing of id field of Socket.IO packet faster and more robust
pull/683/head
Miguel Grinberg
4 years ago
No known key found for this signature in database
GPG Key ID: 36848B262DF5F06C
2 changed files with
20 additions and
4 deletions
-
socketio/packet.py
-
tests/common/test_packet.py
|
|
@ -95,10 +95,16 @@ class Packet(object): |
|
|
|
if q != -1: |
|
|
|
self.namespace = self.namespace[0:q] |
|
|
|
if ep and ep[0].isdigit(): |
|
|
|
self.id = 0 |
|
|
|
while ep and ep[0].isdigit(): |
|
|
|
self.id = self.id * 10 + int(ep[0]) |
|
|
|
ep = ep[1:] |
|
|
|
i = 1 |
|
|
|
end = len(ep) |
|
|
|
while i < end: |
|
|
|
if not ep[i].isdigit() or i >= 100: |
|
|
|
break |
|
|
|
i += 1 |
|
|
|
self.id = int(ep[:i]) |
|
|
|
ep = ep[i:] |
|
|
|
if len(ep) > 0 and ep[0].isdigit(): |
|
|
|
raise ValueError('id field is too long') |
|
|
|
if ep: |
|
|
|
self.data = self.json.loads(ep) |
|
|
|
return attachment_count |
|
|
|
|
|
@ -157,6 +157,16 @@ class TestPacket(unittest.TestCase): |
|
|
|
assert pkt.id == 123 |
|
|
|
assert pkt.encode() == '2123["foo"]' |
|
|
|
|
|
|
|
def test_decode_id_long(self): |
|
|
|
pkt = packet.Packet(encoded_packet='2' + '1' * 100 + '["foo"]') |
|
|
|
assert pkt.id == int('1' * 100) |
|
|
|
assert pkt.data == ['foo'] |
|
|
|
|
|
|
|
def test_decode_id_too_long(self): |
|
|
|
with pytest.raises(ValueError): |
|
|
|
packet.Packet(encoded_packet='2' + '1' * 101) |
|
|
|
packet.Packet(encoded_packet='2' + '1' * 101 + '["foo"]') |
|
|
|
|
|
|
|
def test_encode_id_no_data(self): |
|
|
|
pkt = packet.Packet(packet_type=packet.EVENT, id=123) |
|
|
|
assert pkt.id == 123 |
|
|
|