test(websocket): ping pong test

This commit is contained in:
Houkime 2024-05-15 18:31:16 +00:00 committed by Inex Code
parent 9add0b1dc1
commit a2a4b461e7

View file

@ -29,7 +29,7 @@ def test_websocket_connection_bare(authorized_client):
assert websocket.scope is not None
def test_websocket_graphql_init(authorized_client):
def test_websocket_graphql_ping(authorized_client):
client = authorized_client
with client.websocket_connect(
"/graphql", subprotocols=["graphql-transport-ws"]
@ -38,6 +38,11 @@ def test_websocket_graphql_init(authorized_client):
ack = websocket.receive_json()
assert ack == {"type": "connection_ack"}
# https://github.com/enisdenjo/graphql-ws/blob/master/PROTOCOL.md#ping
websocket.send_json({"type": "ping", "payload": {}})
pong = websocket.receive_json()
assert pong == {"type": "pong"}
# def test_websocket_subscription(authorized_client):
# client = authorized_client