Router: fixing crash after WebSocket processing.
After WebSocket processing, the application port was released with incorrect
reason ("got request"), unnecessarily decrementing the active request counter.
The assertion was triggered only on application removal; a test was added
for this case.
This commit is contained in:
@@ -63,6 +63,9 @@ class TestASGIWebsockets(TestApplicationPython):
|
||||
key
|
||||
), 'key'
|
||||
|
||||
# remove "mirror" application
|
||||
self.load('websockets/subprotocol')
|
||||
|
||||
def test_asgi_websockets_subprotocol(self):
|
||||
self.load('websockets/subprotocol')
|
||||
|
||||
@@ -92,6 +95,27 @@ class TestASGIWebsockets(TestApplicationPython):
|
||||
|
||||
sock.close()
|
||||
|
||||
def test_asgi_websockets_mirror_app_change(self):
|
||||
self.load('websockets/mirror')
|
||||
|
||||
message = 'blah'
|
||||
|
||||
_, sock, _ = self.ws.upgrade()
|
||||
|
||||
self.ws.frame_write(sock, self.ws.OP_TEXT, message)
|
||||
frame = self.ws.frame_read(sock)
|
||||
|
||||
assert message == frame['data'].decode('utf-8'), 'mirror'
|
||||
|
||||
self.load('websockets/subprotocol')
|
||||
|
||||
self.ws.frame_write(sock, self.ws.OP_TEXT, message)
|
||||
frame = self.ws.frame_read(sock)
|
||||
|
||||
assert message == frame['data'].decode('utf-8'), 'mirror 2'
|
||||
|
||||
sock.close()
|
||||
|
||||
def test_asgi_websockets_no_mask(self):
|
||||
self.load('websockets/mirror')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user