Browse Source

v5 protocol: rename ERROR packet to CONNECT_ERROR

pull/599/head
Miguel Grinberg 4 years ago
parent
commit
4940fc1e1e
No known key found for this signature in database GPG Key ID: 36848B262DF5F06C
  1. 2
      socketio/asyncio_client.py
  2. 7
      socketio/asyncio_server.py
  3. 2
      socketio/client.py
  4. 4
      socketio/packet.py
  5. 7
      socketio/server.py
  6. 2
      tests/common/test_packet.py

2
socketio/asyncio_client.py

@ -450,7 +450,7 @@ class AsyncClient(client.Client):
elif pkt.packet_type == packet.BINARY_EVENT or \ elif pkt.packet_type == packet.BINARY_EVENT or \
pkt.packet_type == packet.BINARY_ACK: pkt.packet_type == packet.BINARY_ACK:
self._binary_packet = pkt self._binary_packet = pkt
elif pkt.packet_type == packet.ERROR: elif pkt.packet_type == packet.CONNECT_ERROR:
await self._handle_error(pkt.namespace, pkt.data) await self._handle_error(pkt.namespace, pkt.data)
else: else:
raise ValueError('Unknown packet type.') raise ValueError('Unknown packet type.')

7
socketio/asyncio_server.py

@ -427,7 +427,8 @@ class AsyncServer(server.Server):
packet.DISCONNECT, data=fail_reason, namespace=namespace)) packet.DISCONNECT, data=fail_reason, namespace=namespace))
elif namespace != '/': elif namespace != '/':
await self._send_packet(sid, packet.Packet( await self._send_packet(sid, packet.Packet(
packet.ERROR, data=fail_reason, namespace=namespace)) packet.CONNECT_ERROR, data=fail_reason,
namespace=namespace))
self.manager.disconnect(sid, namespace) self.manager.disconnect(sid, namespace)
if namespace == '/' and sid in self.environ: # pragma: no cover if namespace == '/' and sid in self.environ: # pragma: no cover
del self.environ[sid] del self.environ[sid]
@ -541,8 +542,8 @@ class AsyncServer(server.Server):
elif pkt.packet_type == packet.BINARY_EVENT or \ elif pkt.packet_type == packet.BINARY_EVENT or \
pkt.packet_type == packet.BINARY_ACK: pkt.packet_type == packet.BINARY_ACK:
self._binary_packet[sid] = pkt self._binary_packet[sid] = pkt
elif pkt.packet_type == packet.ERROR: elif pkt.packet_type == packet.CONNECT_ERROR:
raise ValueError('Unexpected ERROR packet.') raise ValueError('Unexpected CONNECT_ERROR packet.')
else: else:
raise ValueError('Unknown packet type.') raise ValueError('Unknown packet type.')

2
socketio/client.py

@ -605,7 +605,7 @@ class Client(object):
elif pkt.packet_type == packet.BINARY_EVENT or \ elif pkt.packet_type == packet.BINARY_EVENT or \
pkt.packet_type == packet.BINARY_ACK: pkt.packet_type == packet.BINARY_ACK:
self._binary_packet = pkt self._binary_packet = pkt
elif pkt.packet_type == packet.ERROR: elif pkt.packet_type == packet.CONNECT_ERROR:
self._handle_error(pkt.namespace, pkt.data) self._handle_error(pkt.namespace, pkt.data)
else: else:
raise ValueError('Unknown packet type.') raise ValueError('Unknown packet type.')

4
socketio/packet.py

@ -3,9 +3,9 @@ import json as _json
import six import six
(CONNECT, DISCONNECT, EVENT, ACK, ERROR, BINARY_EVENT, BINARY_ACK) = \ (CONNECT, DISCONNECT, EVENT, ACK, CONNECT_ERROR, BINARY_EVENT, BINARY_ACK) = \
(0, 1, 2, 3, 4, 5, 6) (0, 1, 2, 3, 4, 5, 6)
packet_names = ['CONNECT', 'DISCONNECT', 'EVENT', 'ACK', 'ERROR', packet_names = ['CONNECT', 'DISCONNECT', 'EVENT', 'ACK', 'CONNECT_ERROR',
'BINARY_EVENT', 'BINARY_ACK'] 'BINARY_EVENT', 'BINARY_ACK']

7
socketio/server.py

@ -625,7 +625,8 @@ class Server(object):
packet.DISCONNECT, data=fail_reason, namespace=namespace)) packet.DISCONNECT, data=fail_reason, namespace=namespace))
elif namespace != '/': elif namespace != '/':
self._send_packet(sid, packet.Packet( self._send_packet(sid, packet.Packet(
packet.ERROR, data=fail_reason, namespace=namespace)) packet.CONNECT_ERROR, data=fail_reason,
namespace=namespace))
self.manager.disconnect(sid, namespace) self.manager.disconnect(sid, namespace)
if namespace == '/' and sid in self.environ: # pragma: no cover if namespace == '/' and sid in self.environ: # pragma: no cover
del self.environ[sid] del self.environ[sid]
@ -729,8 +730,8 @@ class Server(object):
elif pkt.packet_type == packet.BINARY_EVENT or \ elif pkt.packet_type == packet.BINARY_EVENT or \
pkt.packet_type == packet.BINARY_ACK: pkt.packet_type == packet.BINARY_ACK:
self._binary_packet[sid] = pkt self._binary_packet[sid] = pkt
elif pkt.packet_type == packet.ERROR: elif pkt.packet_type == packet.CONNECT_ERROR:
raise ValueError('Unexpected ERROR packet.') raise ValueError('Unexpected CONNECT_ERROR packet.')
else: else:
raise ValueError('Unknown packet type.') raise ValueError('Unknown packet type.')

2
tests/common/test_packet.py

@ -87,7 +87,7 @@ class TestPacket(unittest.TestCase):
def test_invalid_binary_packet(self): def test_invalid_binary_packet(self):
with pytest.raises(ValueError): with pytest.raises(ValueError):
packet.Packet(packet_type=packet.ERROR, data=b'123') packet.Packet(packet_type=packet.CONNECT_ERROR, data=b'123')
def test_encode_namespace(self): def test_encode_namespace(self):
pkt = packet.Packet( pkt = packet.Packet(

Loading…
Cancel
Save