Browse Source

support packets with empty payload given as an integer

pull/5/merge
Miguel Grinberg 10 years ago
parent
commit
d31d167c78
  1. 6
      socketio/packet.py
  2. 7
      tests/test_packet.py

6
socketio/packet.py

@ -69,7 +69,11 @@ class Packet(object):
necessary to fully decode the packet.
"""
ep = encoded_packet
self.packet_type = int(ep[0:1])
try:
self.packet_type = int(ep[0:1])
except TypeError:
self.packet_type = ep
ep = ''
self.namespace = None
self.data = None
ep = ep[1:]

7
tests/test_packet.py

@ -32,6 +32,13 @@ class TestPacket(unittest.TestCase):
self.assertEqual(pkt.data, ['foo'])
self.assertEqual(pkt.encode(), '2["foo"]')
def test_decode_empty_event_packet(self):
pkt = packet.Packet(encoded_packet='1')
self.assertEqual(pkt.packet_type, packet.DISCONNECT)
# same thing, but with a numeric payload
pkt = packet.Packet(encoded_packet=1)
self.assertEqual(pkt.packet_type, packet.DISCONNECT)
def test_encode_binary_event_packet(self):
pkt = packet.Packet(packet_type=packet.EVENT, data=b'1234')
self.assertEqual(pkt.packet_type, packet.BINARY_EVENT)

Loading…
Cancel
Save