1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876
|
import asyncio
import json
import sys
import warnings
from typing import List
import pytest
from parse import search
from gql import Client, gql
from gql.transport.exceptions import TransportServerError
from .conftest import MS, WebSocketServerHelper
# Marking all tests in this file with the aiohttp AND websockets marker
pytestmark = [pytest.mark.aiohttp, pytest.mark.websockets]
countdown_server_answer = (
'{{"type":"next","id":"{query_id}","payload":{{"data":{{"number":{number}}}}}}}'
)
COUNTING_DELAY = 20 * MS
PING_SENDING_DELAY = 50 * MS
PONG_TIMEOUT = 100 * MS
# List which can used to store received messages by the server
logged_messages: List[str] = []
def server_countdown_factory(
keepalive=False, answer_pings=True, simulate_disconnect=False
):
async def server_countdown_template(ws):
import websockets
logged_messages.clear()
try:
await WebSocketServerHelper.send_connection_ack(
ws, payload="dummy_connection_ack_payload"
)
result = await ws.recv()
logged_messages.append(result)
json_result = json.loads(result)
assert json_result["type"] == "subscribe"
payload = json_result["payload"]
query = payload["query"]
query_id = json_result["id"]
count_found = search("count: {:d}", query)
count = count_found[0]
print(f" Server: Countdown started from: {count}")
if simulate_disconnect and count == 8:
await ws.close()
pong_received: asyncio.Event = asyncio.Event()
async def counting_coro():
print(" Server: counting task started")
try:
for number in range(count, -1, -1):
await ws.send(
countdown_server_answer.format(
query_id=query_id, number=number
)
)
await asyncio.sleep(COUNTING_DELAY)
finally:
print(" Server: counting task ended")
print(" Server: starting counting task")
counting_task = asyncio.ensure_future(counting_coro())
async def keepalive_coro():
print(" Server: keepalive task started")
try:
while True:
await asyncio.sleep(PING_SENDING_DELAY)
try:
# Send a ping
await WebSocketServerHelper.send_ping(
ws, payload="dummy_ping_payload"
)
# Wait for a pong
try:
await asyncio.wait_for(
pong_received.wait(), PONG_TIMEOUT
)
except asyncio.TimeoutError:
print(
"\n Server: No pong received in time!\n"
)
break
pong_received.clear()
except websockets.exceptions.ConnectionClosed:
break
finally:
print(" Server: keepalive task ended")
if keepalive:
print(" Server: starting keepalive task")
keepalive_task = asyncio.ensure_future(keepalive_coro())
async def receiving_coro():
print(" Server: receiving task started")
try:
nonlocal counting_task
while True:
try:
result = await ws.recv()
logged_messages.append(result)
except websockets.exceptions.ConnectionClosed:
break
json_result = json.loads(result)
answer_type = json_result["type"]
if answer_type == "complete" and json_result["id"] == str(
query_id
):
print("Cancelling counting task now")
counting_task.cancel()
if keepalive:
print("Cancelling keep alive task now")
keepalive_task.cancel()
elif answer_type == "ping":
if answer_pings:
payload = json_result.get("payload", None)
await WebSocketServerHelper.send_pong(
ws, payload=payload
)
elif answer_type == "pong":
pong_received.set()
finally:
print(" Server: receiving task ended")
if keepalive:
keepalive_task.cancel()
print(" Server: starting receiving task")
receiving_task = asyncio.ensure_future(receiving_coro())
try:
print(" Server: waiting for counting task to complete")
await counting_task
except asyncio.CancelledError:
print(" Server: Now counting task is cancelled")
print(" Server: sending complete message")
await WebSocketServerHelper.send_complete(ws, query_id)
if keepalive:
print(" Server: cancelling keepalive task")
keepalive_task.cancel()
try:
await keepalive_task
except asyncio.CancelledError:
print(" Server: Now keepalive task is cancelled")
print(" Server: waiting for client to close the connection")
try:
await asyncio.wait_for(receiving_task, 1000 * MS)
except asyncio.TimeoutError:
pass
print(" Server: cancelling receiving task")
receiving_task.cancel()
try:
await receiving_task
except asyncio.CancelledError:
print(" Server: Now receiving task is cancelled")
except websockets.exceptions.ConnectionClosedOK:
pass
except AssertionError as e:
print(f"\n Server: Assertion failed: {e!s}\n")
finally:
print(" Server: waiting for websocket connection to close")
await ws.wait_closed()
print(" Server: connection closed")
return server_countdown_template
async def server_countdown(ws):
server = server_countdown_factory()
await server(ws)
async def server_countdown_keepalive(ws):
server = server_countdown_factory(keepalive=True)
await server(ws)
async def server_countdown_dont_answer_pings(ws):
server = server_countdown_factory(answer_pings=False)
await server(ws)
async def server_countdown_disconnect(ws):
server = server_countdown_factory(simulate_disconnect=True)
await server(ws)
countdown_subscription_str = """
subscription {{
countdown (count: {count}) {{
number
}}
}}
"""
@pytest.mark.asyncio
@pytest.mark.parametrize("graphqlws_server", [server_countdown], indirect=True)
@pytest.mark.parametrize("subscription_str", [countdown_subscription_str])
async def test_aiohttp_websocket_graphqlws_subscription(
event_loop, client_and_aiohttp_websocket_graphql_server, subscription_str
):
session, server = client_and_aiohttp_websocket_graphql_server
count = 10
subscription = gql(subscription_str.format(count=count))
async for result in session.subscribe(subscription):
number = result["number"]
print(f"Number received: {number}")
assert number == count
count -= 1
assert count == -1
@pytest.mark.asyncio
@pytest.mark.parametrize("graphqlws_server", [server_countdown], indirect=True)
@pytest.mark.parametrize("subscription_str", [countdown_subscription_str])
async def test_aiohttp_websocket_graphqlws_subscription_break(
event_loop, client_and_aiohttp_websocket_graphql_server, subscription_str
):
session, server = client_and_aiohttp_websocket_graphql_server
count = 10
subscription = gql(subscription_str.format(count=count))
async for result in session.subscribe(subscription):
number = result["number"]
print(f"Number received: {number}")
assert number == count
if count <= 5:
break
count -= 1
assert count == 5
@pytest.mark.asyncio
@pytest.mark.parametrize("graphqlws_server", [server_countdown], indirect=True)
@pytest.mark.parametrize("subscription_str", [countdown_subscription_str])
async def test_aiohttp_websocket_graphqlws_subscription_task_cancel(
event_loop, client_and_aiohttp_websocket_graphql_server, subscription_str
):
session, server = client_and_aiohttp_websocket_graphql_server
count = 10
subscription = gql(subscription_str.format(count=count))
async def task_coro():
nonlocal count
async for result in session.subscribe(subscription):
number = result["number"]
print(f"Number received: {number}")
assert number == count
count -= 1
task = asyncio.ensure_future(task_coro())
async def cancel_task_coro():
nonlocal task
await asyncio.sleep(5.5 * COUNTING_DELAY)
task.cancel()
cancel_task = asyncio.ensure_future(cancel_task_coro())
await asyncio.gather(task, cancel_task)
assert count > 0
@pytest.mark.asyncio
@pytest.mark.parametrize("graphqlws_server", [server_countdown], indirect=True)
@pytest.mark.parametrize("subscription_str", [countdown_subscription_str])
async def test_aiohttp_websocket_graphqlws_subscription_close_transport(
event_loop, client_and_aiohttp_websocket_graphql_server, subscription_str
):
session, server = client_and_aiohttp_websocket_graphql_server
count = 10
subscription = gql(subscription_str.format(count=count))
async def task_coro():
nonlocal count
async for result in session.subscribe(subscription):
number = result["number"]
print(f"Number received: {number}")
assert number == count
count -= 1
task = asyncio.ensure_future(task_coro())
async def close_transport_task_coro():
nonlocal task
await asyncio.sleep(5.5 * COUNTING_DELAY)
await session.transport.close()
close_transport_task = asyncio.ensure_future(close_transport_task_coro())
await asyncio.gather(task, close_transport_task)
assert count > 0
async def server_countdown_close_connection_in_middle(ws):
await WebSocketServerHelper.send_connection_ack(ws)
result = await ws.recv()
json_result = json.loads(result)
assert json_result["type"] == "subscribe"
payload = json_result["payload"]
query = payload["query"]
query_id = json_result["id"]
count_found = search("count: {:d}", query)
count = count_found[0]
stopping_before = count // 2
print(f"Countdown started from: {count}, stopping server before {stopping_before}")
for number in range(count, stopping_before, -1):
await ws.send(countdown_server_answer.format(query_id=query_id, number=number))
await asyncio.sleep(COUNTING_DELAY)
print("Closing server while subscription is still running now")
await ws.close()
await ws.wait_closed()
print("Server is now closed")
@pytest.mark.asyncio
@pytest.mark.parametrize(
"graphqlws_server", [server_countdown_close_connection_in_middle], indirect=True
)
@pytest.mark.parametrize("subscription_str", [countdown_subscription_str])
async def test_aiohttp_websocket_graphqlws_subscription_server_connection_closed(
event_loop, client_and_aiohttp_websocket_graphql_server, subscription_str
):
session, _ = client_and_aiohttp_websocket_graphql_server
count = 10
subscription = gql(subscription_str.format(count=count))
with pytest.raises(ConnectionResetError):
async for result in session.subscribe(subscription):
number = result["number"]
print(f"Number received: {number}")
assert number == count
count -= 1
@pytest.mark.asyncio
@pytest.mark.parametrize("graphqlws_server", [server_countdown], indirect=True)
@pytest.mark.parametrize("subscription_str", [countdown_subscription_str])
async def test_aiohttp_websocket_graphqlws_subscription_with_operation_name(
event_loop, client_and_aiohttp_websocket_graphql_server, subscription_str
):
session, server = client_and_aiohttp_websocket_graphql_server
count = 10
subscription = gql(subscription_str.format(count=count))
async for result in session.subscribe(
subscription, operation_name="CountdownSubscription"
):
number = result["number"]
print(f"Number received: {number}")
assert number == count
count -= 1
assert count == -1
# Check that the query contains the operationName
assert '"operationName": "CountdownSubscription"' in logged_messages[0]
@pytest.mark.asyncio
@pytest.mark.parametrize(
"graphqlws_server", [server_countdown_keepalive], indirect=True
)
@pytest.mark.parametrize("subscription_str", [countdown_subscription_str])
async def test_aiohttp_websocket_graphqlws_subscription_with_keepalive(
event_loop, client_and_aiohttp_websocket_graphql_server, subscription_str
):
session, server = client_and_aiohttp_websocket_graphql_server
count = 10
subscription = gql(subscription_str.format(count=count))
async for result in session.subscribe(subscription):
number = result["number"]
print(f"Number received: {number}")
assert number == count
count -= 1
assert count == -1
assert "ping" in session.transport.payloads
assert session.transport.payloads["ping"] == "dummy_ping_payload"
assert (
session.transport.payloads["connection_ack"] == "dummy_connection_ack_payload"
)
@pytest.mark.asyncio
@pytest.mark.parametrize(
"graphqlws_server", [server_countdown_keepalive], indirect=True
)
@pytest.mark.parametrize("subscription_str", [countdown_subscription_str])
async def test_aiohttp_websocket_graphqlws_subscription_with_keepalive_with_timeout_ok(
event_loop, graphqlws_server, subscription_str
):
from gql.transport.aiohttp_websockets import AIOHTTPWebsocketsTransport
path = "/graphql"
url = f"ws://{graphqlws_server.hostname}:{graphqlws_server.port}{path}"
transport = AIOHTTPWebsocketsTransport(
url=url, keep_alive_timeout=(5 * COUNTING_DELAY)
)
client = Client(transport=transport)
count = 10
subscription = gql(subscription_str.format(count=count))
async with client as session:
async for result in session.subscribe(subscription):
number = result["number"]
print(f"Number received: {number}")
assert number == count
count -= 1
assert count == -1
@pytest.mark.asyncio
@pytest.mark.parametrize(
"graphqlws_server", [server_countdown_keepalive], indirect=True
)
@pytest.mark.parametrize("subscription_str", [countdown_subscription_str])
async def test_aiohttp_websocket_graphqlws_subscription_with_keepalive_with_timeout_nok(
event_loop, graphqlws_server, subscription_str
):
from gql.transport.aiohttp_websockets import AIOHTTPWebsocketsTransport
path = "/graphql"
url = f"ws://{graphqlws_server.hostname}:{graphqlws_server.port}{path}"
transport = AIOHTTPWebsocketsTransport(
url=url, keep_alive_timeout=(COUNTING_DELAY / 2)
)
client = Client(transport=transport)
count = 10
subscription = gql(subscription_str.format(count=count))
async with client as session:
with pytest.raises(TransportServerError) as exc_info:
async for result in session.subscribe(subscription):
number = result["number"]
print(f"Number received: {number}")
assert number == count
count -= 1
assert "No keep-alive message has been received" in str(exc_info.value)
@pytest.mark.asyncio
@pytest.mark.parametrize(
"graphqlws_server", [server_countdown_keepalive], indirect=True
)
@pytest.mark.parametrize("subscription_str", [countdown_subscription_str])
async def test_aiohttp_websocket_graphqlws_subscription_with_ping_interval_ok(
event_loop, graphqlws_server, subscription_str
):
from gql.transport.aiohttp_websockets import AIOHTTPWebsocketsTransport
path = "/graphql"
url = f"ws://{graphqlws_server.hostname}:{graphqlws_server.port}{path}"
transport = AIOHTTPWebsocketsTransport(
url=url,
ping_interval=(10 * COUNTING_DELAY),
pong_timeout=(8 * COUNTING_DELAY),
)
client = Client(transport=transport)
count = 10
subscription = gql(subscription_str.format(count=count))
async with client as session:
async for result in session.subscribe(subscription):
number = result["number"]
print(f"Number received: {number}")
assert number == count
count -= 1
assert count == -1
@pytest.mark.asyncio
@pytest.mark.parametrize(
"graphqlws_server", [server_countdown_dont_answer_pings], indirect=True
)
@pytest.mark.parametrize("subscription_str", [countdown_subscription_str])
async def test_aiohttp_websocket_graphqlws_subscription_with_ping_interval_nok(
event_loop, graphqlws_server, subscription_str
):
from gql.transport.aiohttp_websockets import AIOHTTPWebsocketsTransport
path = "/graphql"
url = f"ws://{graphqlws_server.hostname}:{graphqlws_server.port}{path}"
transport = AIOHTTPWebsocketsTransport(url=url, ping_interval=(5 * COUNTING_DELAY))
client = Client(transport=transport)
count = 10
subscription = gql(subscription_str.format(count=count))
async with client as session:
with pytest.raises(TransportServerError) as exc_info:
async for result in session.subscribe(subscription):
number = result["number"]
print(f"Number received: {number}")
assert number == count
count -= 1
assert "No pong received" in str(exc_info.value)
@pytest.mark.asyncio
@pytest.mark.parametrize(
"graphqlws_server", [server_countdown_keepalive], indirect=True
)
@pytest.mark.parametrize("subscription_str", [countdown_subscription_str])
async def test_aiohttp_websocket_graphqlws_subscription_manual_pings_with_payload(
event_loop, graphqlws_server, subscription_str
):
from gql.transport.aiohttp_websockets import AIOHTTPWebsocketsTransport
path = "/graphql"
url = f"ws://{graphqlws_server.hostname}:{graphqlws_server.port}{path}"
transport = AIOHTTPWebsocketsTransport(url=url)
client = Client(transport=transport)
count = 10
subscription = gql(subscription_str.format(count=count))
async with client as session:
async for result in session.subscribe(subscription):
number = result["number"]
print(f"Number received: {number}")
payload = {"count_received": count}
await transport.send_ping(payload=payload)
await asyncio.wait_for(transport.pong_received.wait(), 10000 * MS)
transport.pong_received.clear()
assert transport.payloads["pong"] == payload
assert number == count
count -= 1
assert count == -1
@pytest.mark.asyncio
@pytest.mark.parametrize(
"graphqlws_server", [server_countdown_keepalive], indirect=True
)
@pytest.mark.parametrize("subscription_str", [countdown_subscription_str])
async def test_aiohttp_websocket_graphqlws_subscription_manual_pong_with_payload(
event_loop, graphqlws_server, subscription_str
):
from gql.transport.aiohttp_websockets import AIOHTTPWebsocketsTransport
path = "/graphql"
url = f"ws://{graphqlws_server.hostname}:{graphqlws_server.port}{path}"
transport = AIOHTTPWebsocketsTransport(url=url, answer_pings=False)
client = Client(transport=transport)
count = 10
subscription = gql(subscription_str.format(count=count))
async with client as session:
async def answer_ping_coro():
while True:
await transport.ping_received.wait()
transport.ping_received.clear()
await transport.send_pong(payload={"some": "data"})
answer_ping_task = asyncio.ensure_future(answer_ping_coro())
try:
async for result in session.subscribe(subscription):
number = result["number"]
print(f"Number received: {number}")
assert number == count
count -= 1
finally:
answer_ping_task.cancel()
assert count == -1
@pytest.mark.parametrize(
"graphqlws_server", [server_countdown_keepalive], indirect=True
)
@pytest.mark.parametrize("subscription_str", [countdown_subscription_str])
def test_aiohttp_websocket_graphqlws_subscription_sync(
graphqlws_server, subscription_str
):
from gql.transport.aiohttp_websockets import AIOHTTPWebsocketsTransport
url = f"ws://{graphqlws_server.hostname}:{graphqlws_server.port}/graphql"
print(f"url = {url}")
transport = AIOHTTPWebsocketsTransport(url=url)
client = Client(transport=transport)
count = 10
subscription = gql(subscription_str.format(count=count))
for result in client.subscribe(subscription):
number = result["number"]
print(f"Number received: {number}")
assert number == count
count -= 1
assert count == -1
@pytest.mark.skipif(sys.platform.startswith("win"), reason="test failing on windows")
@pytest.mark.parametrize(
"graphqlws_server", [server_countdown_keepalive], indirect=True
)
@pytest.mark.parametrize("subscription_str", [countdown_subscription_str])
def test_aiohttp_websocket_graphqlws_subscription_sync_graceful_shutdown(
graphqlws_server, subscription_str
):
"""Note: this test will simulate a control-C happening while a sync subscription
is in progress. To do that we will throw a KeyboardInterrupt exception inside
the subscription async generator.
The code should then do a clean close:
- send stop messages for each active query
- send a connection_terminate message
Then the KeyboardInterrupt will be reraise (to warn potential user code)
This test does not work on Windows but the behaviour with Windows is correct.
"""
from gql.transport.aiohttp_websockets import AIOHTTPWebsocketsTransport
url = f"ws://{graphqlws_server.hostname}:{graphqlws_server.port}/graphql"
print(f"url = {url}")
transport = AIOHTTPWebsocketsTransport(url=url)
client = Client(transport=transport)
count = 10
subscription = gql(subscription_str.format(count=count))
with pytest.raises(KeyboardInterrupt):
for result in client.subscribe(subscription):
number = result["number"]
print(f"Number received: {number}")
assert number == count
if count == 5:
# Simulate a KeyboardInterrupt in the generator
with warnings.catch_warnings():
warnings.filterwarnings(
"ignore", message="There is no current event loop"
)
asyncio.ensure_future(
client.session._generator.athrow(KeyboardInterrupt)
)
count -= 1
assert count == 4
# Check that the server received a connection_terminate message last
# assert logged_messages.pop() == '{"type": "connection_terminate"}'
@pytest.mark.asyncio
@pytest.mark.parametrize(
"graphqlws_server", [server_countdown_keepalive], indirect=True
)
@pytest.mark.parametrize("subscription_str", [countdown_subscription_str])
async def test_aiohttp_websocket_graphqlws_subscription_running_in_thread(
event_loop, graphqlws_server, subscription_str, run_sync_test
):
from gql.transport.aiohttp_websockets import AIOHTTPWebsocketsTransport
def test_code():
path = "/graphql"
url = f"ws://{graphqlws_server.hostname}:{graphqlws_server.port}{path}"
transport = AIOHTTPWebsocketsTransport(url=url)
client = Client(transport=transport)
count = 10
subscription = gql(subscription_str.format(count=count))
for result in client.subscribe(subscription):
number = result["number"]
print(f"Number received: {number}")
assert number == count
count -= 1
assert count == -1
await run_sync_test(event_loop, graphqlws_server, test_code)
@pytest.mark.asyncio
@pytest.mark.parametrize(
"graphqlws_server", [server_countdown_disconnect], indirect=True
)
@pytest.mark.parametrize("subscription_str", [countdown_subscription_str])
@pytest.mark.parametrize("execute_instead_of_subscribe", [False, True])
async def test_aiohttp_websocket_graphqlws_subscription_reconnecting_session(
event_loop, graphqlws_server, subscription_str, execute_instead_of_subscribe
):
from gql.transport.exceptions import TransportClosed
from gql.transport.aiohttp_websockets import AIOHTTPWebsocketsTransport
path = "/graphql"
url = f"ws://{graphqlws_server.hostname}:{graphqlws_server.port}{path}"
transport = AIOHTTPWebsocketsTransport(url=url)
client = Client(transport=transport)
count = 8
subscription_with_disconnect = gql(subscription_str.format(count=count))
count = 10
subscription = gql(subscription_str.format(count=count))
session = await client.connect_async(
reconnecting=True, retry_connect=False, retry_execute=False
)
# First we make a subscription which will cause a disconnect in the backend
# (count=8)
try:
print("\nSUBSCRIPTION_1_WITH_DISCONNECT\n")
async for result in session.subscribe(subscription_with_disconnect):
pass
except ConnectionResetError:
pass
await asyncio.sleep(50 * MS)
# Then with the same session handle, we make a subscription or an execute
# which will detect that the transport is closed so that the client could
# try to reconnect
try:
if execute_instead_of_subscribe:
print("\nEXECUTION_2\n")
await session.execute(subscription)
else:
print("\nSUBSCRIPTION_2\n")
async for result in session.subscribe(subscription):
pass
except TransportClosed:
pass
await asyncio.sleep(50 * MS)
# And finally with the same session handle, we make a subscription
# which works correctly
print("\nSUBSCRIPTION_3\n")
async for result in session.subscribe(subscription):
number = result["number"]
print(f"Number received: {number}")
assert number == count
count -= 1
assert count == -1
await client.close_async()
|