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
|
import asyncio
import base64
import hashlib
import os
from unittest import mock
import pytest
import aiohttp
from aiohttp import client, hdrs
from aiohttp.http import WS_KEY
from aiohttp.streams import EofStream
from aiohttp.test_utils import make_mocked_coro
@pytest.fixture
def key_data():
return os.urandom(16)
@pytest.fixture
def key(key_data):
return base64.b64encode(key_data)
@pytest.fixture
def ws_key(key):
return base64.b64encode(hashlib.sha1(key + WS_KEY).digest()).decode()
async def test_ws_connect(ws_key, loop, key_data) -> None:
resp = mock.Mock()
resp.status = 101
resp.headers = {
hdrs.UPGRADE: "websocket",
hdrs.CONNECTION: "upgrade",
hdrs.SEC_WEBSOCKET_ACCEPT: ws_key,
hdrs.SEC_WEBSOCKET_PROTOCOL: "chat",
}
with mock.patch("aiohttp.client.os") as m_os:
with mock.patch("aiohttp.client.ClientSession.request") as m_req:
m_os.urandom.return_value = key_data
m_req.return_value = loop.create_future()
m_req.return_value.set_result(resp)
res = await aiohttp.ClientSession(loop=loop).ws_connect(
"http://test.org", protocols=("t1", "t2", "chat")
)
assert isinstance(res, client.ClientWebSocketResponse)
assert res.protocol == "chat"
assert hdrs.ORIGIN not in m_req.call_args[1]["headers"]
async def test_ws_connect_with_origin(key_data, loop) -> None:
resp = mock.Mock()
resp.status = 403
with mock.patch("aiohttp.client.os") as m_os:
with mock.patch("aiohttp.client.ClientSession.request") as m_req:
m_os.urandom.return_value = key_data
m_req.return_value = loop.create_future()
m_req.return_value.set_result(resp)
origin = "https://example.org/page.html"
with pytest.raises(client.WSServerHandshakeError):
await aiohttp.ClientSession(loop=loop).ws_connect(
"http://test.org", origin=origin
)
assert hdrs.ORIGIN in m_req.call_args[1]["headers"]
assert m_req.call_args[1]["headers"][hdrs.ORIGIN] == origin
async def test_ws_connect_with_params(ws_key, loop, key_data) -> None:
params = {"key1": "value1", "key2": "value2"}
resp = mock.Mock()
resp.status = 101
resp.headers = {
hdrs.UPGRADE: "websocket",
hdrs.CONNECTION: "upgrade",
hdrs.SEC_WEBSOCKET_ACCEPT: ws_key,
hdrs.SEC_WEBSOCKET_PROTOCOL: "chat",
}
with mock.patch("aiohttp.client.os") as m_os:
with mock.patch("aiohttp.client.ClientSession.request") as m_req:
m_os.urandom.return_value = key_data
m_req.return_value = loop.create_future()
m_req.return_value.set_result(resp)
await aiohttp.ClientSession().ws_connect(
"http://test.org", protocols=("t1", "t2", "chat"), params=params
)
assert m_req.call_args[1]["params"] == params
async def test_ws_connect_custom_response(loop, ws_key, key_data) -> None:
class CustomResponse(client.ClientWebSocketResponse):
def read(self, decode=False):
return "customized!"
resp = mock.Mock()
resp.status = 101
resp.headers = {
hdrs.UPGRADE: "websocket",
hdrs.CONNECTION: "upgrade",
hdrs.SEC_WEBSOCKET_ACCEPT: ws_key,
}
with mock.patch("aiohttp.client.os") as m_os:
with mock.patch("aiohttp.client.ClientSession.request") as m_req:
m_os.urandom.return_value = key_data
m_req.return_value = loop.create_future()
m_req.return_value.set_result(resp)
res = await aiohttp.ClientSession(
ws_response_class=CustomResponse, loop=loop
).ws_connect("http://test.org")
assert res.read() == "customized!"
async def test_ws_connect_err_status(loop, ws_key, key_data) -> None:
resp = mock.Mock()
resp.status = 500
resp.headers = {
hdrs.UPGRADE: "websocket",
hdrs.CONNECTION: "upgrade",
hdrs.SEC_WEBSOCKET_ACCEPT: ws_key,
}
with mock.patch("aiohttp.client.os") as m_os:
with mock.patch("aiohttp.client.ClientSession.request") as m_req:
m_os.urandom.return_value = key_data
m_req.return_value = loop.create_future()
m_req.return_value.set_result(resp)
with pytest.raises(client.WSServerHandshakeError) as ctx:
await aiohttp.ClientSession(loop=loop).ws_connect(
"http://test.org", protocols=("t1", "t2", "chat")
)
assert ctx.value.message == "Invalid response status"
async def test_ws_connect_err_upgrade(loop, ws_key, key_data) -> None:
resp = mock.Mock()
resp.status = 101
resp.headers = {
hdrs.UPGRADE: "test",
hdrs.CONNECTION: "upgrade",
hdrs.SEC_WEBSOCKET_ACCEPT: ws_key,
}
with mock.patch("aiohttp.client.os") as m_os:
with mock.patch("aiohttp.client.ClientSession.request") as m_req:
m_os.urandom.return_value = key_data
m_req.return_value = loop.create_future()
m_req.return_value.set_result(resp)
with pytest.raises(client.WSServerHandshakeError) as ctx:
await aiohttp.ClientSession(loop=loop).ws_connect(
"http://test.org", protocols=("t1", "t2", "chat")
)
assert ctx.value.message == "Invalid upgrade header"
async def test_ws_connect_err_conn(loop, ws_key, key_data) -> None:
resp = mock.Mock()
resp.status = 101
resp.headers = {
hdrs.UPGRADE: "websocket",
hdrs.CONNECTION: "close",
hdrs.SEC_WEBSOCKET_ACCEPT: ws_key,
}
with mock.patch("aiohttp.client.os") as m_os:
with mock.patch("aiohttp.client.ClientSession.request") as m_req:
m_os.urandom.return_value = key_data
m_req.return_value = loop.create_future()
m_req.return_value.set_result(resp)
with pytest.raises(client.WSServerHandshakeError) as ctx:
await aiohttp.ClientSession(loop=loop).ws_connect(
"http://test.org", protocols=("t1", "t2", "chat")
)
assert ctx.value.message == "Invalid connection header"
async def test_ws_connect_err_challenge(loop, ws_key, key_data) -> None:
resp = mock.Mock()
resp.status = 101
resp.headers = {
hdrs.UPGRADE: "websocket",
hdrs.CONNECTION: "upgrade",
hdrs.SEC_WEBSOCKET_ACCEPT: "asdfasdfasdfasdfasdfasdf",
}
with mock.patch("aiohttp.client.os") as m_os:
with mock.patch("aiohttp.client.ClientSession.request") as m_req:
m_os.urandom.return_value = key_data
m_req.return_value = loop.create_future()
m_req.return_value.set_result(resp)
with pytest.raises(client.WSServerHandshakeError) as ctx:
await aiohttp.ClientSession(loop=loop).ws_connect(
"http://test.org", protocols=("t1", "t2", "chat")
)
assert ctx.value.message == "Invalid challenge response"
async def test_ws_connect_common_headers(ws_key, loop, key_data) -> None:
# Emulate a headers dict being reused for a second ws_connect.
# In this scenario, we need to ensure that the newly generated secret key
# is sent to the server, not the stale key.
headers = {}
async def test_connection() -> None:
async def mock_get(*args, **kwargs):
resp = mock.Mock()
resp.status = 101
key = kwargs.get("headers").get(hdrs.SEC_WEBSOCKET_KEY)
accept = base64.b64encode(
hashlib.sha1(base64.b64encode(base64.b64decode(key)) + WS_KEY).digest()
).decode()
resp.headers = {
hdrs.UPGRADE: "websocket",
hdrs.CONNECTION: "upgrade",
hdrs.SEC_WEBSOCKET_ACCEPT: accept,
hdrs.SEC_WEBSOCKET_PROTOCOL: "chat",
}
return resp
with mock.patch("aiohttp.client.os") as m_os:
with mock.patch(
"aiohttp.client.ClientSession.request", side_effect=mock_get
) as m_req:
m_os.urandom.return_value = key_data
res = await aiohttp.ClientSession(loop=loop).ws_connect(
"http://test.org", protocols=("t1", "t2", "chat"), headers=headers
)
assert isinstance(res, client.ClientWebSocketResponse)
assert res.protocol == "chat"
assert hdrs.ORIGIN not in m_req.call_args[1]["headers"]
await test_connection()
# Generate a new ws key
key_data = os.urandom(16)
await test_connection()
async def test_close(loop, ws_key, key_data) -> None:
resp = mock.Mock()
resp.status = 101
resp.headers = {
hdrs.UPGRADE: "websocket",
hdrs.CONNECTION: "upgrade",
hdrs.SEC_WEBSOCKET_ACCEPT: ws_key,
}
with mock.patch("aiohttp.client.WebSocketWriter") as WebSocketWriter:
with mock.patch("aiohttp.client.os") as m_os:
with mock.patch("aiohttp.client.ClientSession.request") as m_req:
m_os.urandom.return_value = key_data
m_req.return_value = loop.create_future()
m_req.return_value.set_result(resp)
writer = mock.Mock()
WebSocketWriter.return_value = writer
writer.close = make_mocked_coro()
session = aiohttp.ClientSession(loop=loop)
resp = await session.ws_connect("http://test.org")
assert not resp.closed
resp._reader.feed_data(
aiohttp.WSMessage(aiohttp.WSMsgType.CLOSE, b"", b""), 0
)
res = await resp.close()
writer.close.assert_called_with(1000, b"")
assert resp.closed
assert res
assert resp.exception() is None
# idempotent
res = await resp.close()
assert not res
assert writer.close.call_count == 1
await session.close()
async def test_close_eofstream(loop, ws_key, key_data) -> None:
resp = mock.Mock()
resp.status = 101
resp.headers = {
hdrs.UPGRADE: "websocket",
hdrs.CONNECTION: "upgrade",
hdrs.SEC_WEBSOCKET_ACCEPT: ws_key,
}
with mock.patch("aiohttp.client.WebSocketWriter") as WebSocketWriter:
with mock.patch("aiohttp.client.os") as m_os:
with mock.patch("aiohttp.client.ClientSession.request") as m_req:
m_os.urandom.return_value = key_data
m_req.return_value = loop.create_future()
m_req.return_value.set_result(resp)
writer = WebSocketWriter.return_value = mock.Mock()
session = aiohttp.ClientSession(loop=loop)
resp = await session.ws_connect("http://test.org")
assert not resp.closed
exc = EofStream()
resp._reader.set_exception(exc)
await resp.receive()
writer.close.assert_called_with(1000, b"")
assert resp.closed
await session.close()
async def test_close_exc(loop, ws_key, key_data) -> None:
resp = mock.Mock()
resp.status = 101
resp.headers = {
hdrs.UPGRADE: "websocket",
hdrs.CONNECTION: "upgrade",
hdrs.SEC_WEBSOCKET_ACCEPT: ws_key,
}
with mock.patch("aiohttp.client.WebSocketWriter") as WebSocketWriter:
with mock.patch("aiohttp.client.os") as m_os:
with mock.patch("aiohttp.client.ClientSession.request") as m_req:
m_os.urandom.return_value = key_data
m_req.return_value = loop.create_future()
m_req.return_value.set_result(resp)
writer = mock.Mock()
WebSocketWriter.return_value = writer
writer.close = make_mocked_coro()
session = aiohttp.ClientSession(loop=loop)
resp = await session.ws_connect("http://test.org")
assert not resp.closed
exc = ValueError()
resp._reader.set_exception(exc)
await resp.close()
assert resp.closed
assert resp.exception() is exc
await session.close()
async def test_close_exc2(loop, ws_key, key_data) -> None:
resp = mock.Mock()
resp.status = 101
resp.headers = {
hdrs.UPGRADE: "websocket",
hdrs.CONNECTION: "upgrade",
hdrs.SEC_WEBSOCKET_ACCEPT: ws_key,
}
with mock.patch("aiohttp.client.WebSocketWriter") as WebSocketWriter:
with mock.patch("aiohttp.client.os") as m_os:
with mock.patch("aiohttp.client.ClientSession.request") as m_req:
m_os.urandom.return_value = key_data
m_req.return_value = loop.create_future()
m_req.return_value.set_result(resp)
writer = WebSocketWriter.return_value = mock.Mock()
resp = await aiohttp.ClientSession(loop=loop).ws_connect(
"http://test.org"
)
assert not resp.closed
exc = ValueError()
writer.close.side_effect = exc
await resp.close()
assert resp.closed
assert resp.exception() is exc
resp._closed = False
writer.close.side_effect = asyncio.CancelledError()
with pytest.raises(asyncio.CancelledError):
await resp.close()
async def test_send_data_after_close(ws_key, key_data, loop) -> None:
resp = mock.Mock()
resp.status = 101
resp.headers = {
hdrs.UPGRADE: "websocket",
hdrs.CONNECTION: "upgrade",
hdrs.SEC_WEBSOCKET_ACCEPT: ws_key,
}
with mock.patch("aiohttp.client.os") as m_os:
with mock.patch("aiohttp.client.ClientSession.request") as m_req:
m_os.urandom.return_value = key_data
m_req.return_value = loop.create_future()
m_req.return_value.set_result(resp)
resp = await aiohttp.ClientSession(loop=loop).ws_connect("http://test.org")
resp._writer._closing = True
for meth, args in (
(resp.ping, ()),
(resp.pong, ()),
(resp.send_str, ("s",)),
(resp.send_bytes, (b"b",)),
(resp.send_json, ({},)),
):
with pytest.raises(ConnectionResetError):
await meth(*args)
async def test_send_data_type_errors(ws_key, key_data, loop) -> None:
resp = mock.Mock()
resp.status = 101
resp.headers = {
hdrs.UPGRADE: "websocket",
hdrs.CONNECTION: "upgrade",
hdrs.SEC_WEBSOCKET_ACCEPT: ws_key,
}
with mock.patch("aiohttp.client.WebSocketWriter") as WebSocketWriter:
with mock.patch("aiohttp.client.os") as m_os:
with mock.patch("aiohttp.client.ClientSession.request") as m_req:
m_os.urandom.return_value = key_data
m_req.return_value = loop.create_future()
m_req.return_value.set_result(resp)
WebSocketWriter.return_value = mock.Mock()
resp = await aiohttp.ClientSession(loop=loop).ws_connect(
"http://test.org"
)
with pytest.raises(TypeError):
await resp.send_str(b"s")
with pytest.raises(TypeError):
await resp.send_bytes("b")
with pytest.raises(TypeError):
await resp.send_json(set())
async def test_reader_read_exception(ws_key, key_data, loop) -> None:
hresp = mock.Mock()
hresp.status = 101
hresp.headers = {
hdrs.UPGRADE: "websocket",
hdrs.CONNECTION: "upgrade",
hdrs.SEC_WEBSOCKET_ACCEPT: ws_key,
}
with mock.patch("aiohttp.client.WebSocketWriter") as WebSocketWriter:
with mock.patch("aiohttp.client.os") as m_os:
with mock.patch("aiohttp.client.ClientSession.request") as m_req:
m_os.urandom.return_value = key_data
m_req.return_value = loop.create_future()
m_req.return_value.set_result(hresp)
writer = mock.Mock()
WebSocketWriter.return_value = writer
writer.close = make_mocked_coro()
session = aiohttp.ClientSession(loop=loop)
resp = await session.ws_connect("http://test.org")
exc = ValueError()
resp._reader.set_exception(exc)
msg = await resp.receive()
assert msg.type == aiohttp.WSMsgType.ERROR
assert resp.exception() is exc
await session.close()
async def test_receive_runtime_err(loop) -> None:
resp = client.ClientWebSocketResponse(
mock.Mock(), mock.Mock(), mock.Mock(), mock.Mock(), 10.0, True, True, loop
)
resp._waiting = True
with pytest.raises(RuntimeError):
await resp.receive()
async def test_ws_connect_close_resp_on_err(loop, ws_key, key_data) -> None:
resp = mock.Mock()
resp.status = 500
resp.headers = {
hdrs.UPGRADE: "websocket",
hdrs.CONNECTION: "upgrade",
hdrs.SEC_WEBSOCKET_ACCEPT: ws_key,
}
with mock.patch("aiohttp.client.os") as m_os:
with mock.patch("aiohttp.client.ClientSession.request") as m_req:
m_os.urandom.return_value = key_data
m_req.return_value = loop.create_future()
m_req.return_value.set_result(resp)
with pytest.raises(client.WSServerHandshakeError):
await aiohttp.ClientSession(loop=loop).ws_connect(
"http://test.org", protocols=("t1", "t2", "chat")
)
resp.close.assert_called_with()
async def test_ws_connect_non_overlapped_protocols(ws_key, loop, key_data) -> None:
resp = mock.Mock()
resp.status = 101
resp.headers = {
hdrs.UPGRADE: "websocket",
hdrs.CONNECTION: "upgrade",
hdrs.SEC_WEBSOCKET_ACCEPT: ws_key,
hdrs.SEC_WEBSOCKET_PROTOCOL: "other,another",
}
with mock.patch("aiohttp.client.os") as m_os:
with mock.patch("aiohttp.client.ClientSession.request") as m_req:
m_os.urandom.return_value = key_data
m_req.return_value = loop.create_future()
m_req.return_value.set_result(resp)
res = await aiohttp.ClientSession(loop=loop).ws_connect(
"http://test.org", protocols=("t1", "t2", "chat")
)
assert res.protocol is None
async def test_ws_connect_non_overlapped_protocols_2(ws_key, loop, key_data) -> None:
resp = mock.Mock()
resp.status = 101
resp.headers = {
hdrs.UPGRADE: "websocket",
hdrs.CONNECTION: "upgrade",
hdrs.SEC_WEBSOCKET_ACCEPT: ws_key,
hdrs.SEC_WEBSOCKET_PROTOCOL: "other,another",
}
with mock.patch("aiohttp.client.os") as m_os:
with mock.patch("aiohttp.client.ClientSession.request") as m_req:
m_os.urandom.return_value = key_data
m_req.return_value = loop.create_future()
m_req.return_value.set_result(resp)
connector = aiohttp.TCPConnector(loop=loop, force_close=True)
res = await aiohttp.ClientSession(
connector=connector, loop=loop
).ws_connect("http://test.org", protocols=("t1", "t2", "chat"))
assert res.protocol is None
del res
async def test_ws_connect_deflate(loop, ws_key, key_data) -> None:
resp = mock.Mock()
resp.status = 101
resp.headers = {
hdrs.UPGRADE: "websocket",
hdrs.CONNECTION: "upgrade",
hdrs.SEC_WEBSOCKET_ACCEPT: ws_key,
hdrs.SEC_WEBSOCKET_EXTENSIONS: "permessage-deflate",
}
with mock.patch("aiohttp.client.os") as m_os:
with mock.patch("aiohttp.client.ClientSession.request") as m_req:
m_os.urandom.return_value = key_data
m_req.return_value = loop.create_future()
m_req.return_value.set_result(resp)
res = await aiohttp.ClientSession(loop=loop).ws_connect(
"http://test.org", compress=15
)
assert res.compress == 15
assert res.client_notakeover is False
async def test_ws_connect_deflate_per_message(loop, ws_key, key_data) -> None:
resp = mock.Mock()
resp.status = 101
resp.headers = {
hdrs.UPGRADE: "websocket",
hdrs.CONNECTION: "upgrade",
hdrs.SEC_WEBSOCKET_ACCEPT: ws_key,
hdrs.SEC_WEBSOCKET_EXTENSIONS: "permessage-deflate",
}
with mock.patch("aiohttp.client.WebSocketWriter") as WebSocketWriter:
with mock.patch("aiohttp.client.os") as m_os:
with mock.patch("aiohttp.client.ClientSession.request") as m_req:
m_os.urandom.return_value = key_data
m_req.return_value = loop.create_future()
m_req.return_value.set_result(resp)
writer = WebSocketWriter.return_value = mock.Mock()
send = writer.send = make_mocked_coro()
session = aiohttp.ClientSession(loop=loop)
resp = await session.ws_connect("http://test.org")
await resp.send_str("string", compress=-1)
send.assert_called_with("string", binary=False, compress=-1)
await resp.send_bytes(b"bytes", compress=15)
send.assert_called_with(b"bytes", binary=True, compress=15)
await resp.send_json([{}], compress=-9)
send.assert_called_with("[{}]", binary=False, compress=-9)
await session.close()
async def test_ws_connect_deflate_server_not_support(loop, ws_key, key_data) -> None:
resp = mock.Mock()
resp.status = 101
resp.headers = {
hdrs.UPGRADE: "websocket",
hdrs.CONNECTION: "upgrade",
hdrs.SEC_WEBSOCKET_ACCEPT: ws_key,
}
with mock.patch("aiohttp.client.os") as m_os:
with mock.patch("aiohttp.client.ClientSession.request") as m_req:
m_os.urandom.return_value = key_data
m_req.return_value = loop.create_future()
m_req.return_value.set_result(resp)
res = await aiohttp.ClientSession(loop=loop).ws_connect(
"http://test.org", compress=15
)
assert res.compress == 0
assert res.client_notakeover is False
async def test_ws_connect_deflate_notakeover(loop, ws_key, key_data) -> None:
resp = mock.Mock()
resp.status = 101
resp.headers = {
hdrs.UPGRADE: "websocket",
hdrs.CONNECTION: "upgrade",
hdrs.SEC_WEBSOCKET_ACCEPT: ws_key,
hdrs.SEC_WEBSOCKET_EXTENSIONS: "permessage-deflate; "
"client_no_context_takeover",
}
with mock.patch("aiohttp.client.os") as m_os:
with mock.patch("aiohttp.client.ClientSession.request") as m_req:
m_os.urandom.return_value = key_data
m_req.return_value = loop.create_future()
m_req.return_value.set_result(resp)
res = await aiohttp.ClientSession(loop=loop).ws_connect(
"http://test.org", compress=15
)
assert res.compress == 15
assert res.client_notakeover is True
async def test_ws_connect_deflate_client_wbits(loop, ws_key, key_data) -> None:
resp = mock.Mock()
resp.status = 101
resp.headers = {
hdrs.UPGRADE: "websocket",
hdrs.CONNECTION: "upgrade",
hdrs.SEC_WEBSOCKET_ACCEPT: ws_key,
hdrs.SEC_WEBSOCKET_EXTENSIONS: "permessage-deflate; "
"client_max_window_bits=10",
}
with mock.patch("aiohttp.client.os") as m_os:
with mock.patch("aiohttp.client.ClientSession.request") as m_req:
m_os.urandom.return_value = key_data
m_req.return_value = loop.create_future()
m_req.return_value.set_result(resp)
res = await aiohttp.ClientSession(loop=loop).ws_connect(
"http://test.org", compress=15
)
assert res.compress == 10
assert res.client_notakeover is False
async def test_ws_connect_deflate_client_wbits_bad(loop, ws_key, key_data) -> None:
resp = mock.Mock()
resp.status = 101
resp.headers = {
hdrs.UPGRADE: "websocket",
hdrs.CONNECTION: "upgrade",
hdrs.SEC_WEBSOCKET_ACCEPT: ws_key,
hdrs.SEC_WEBSOCKET_EXTENSIONS: "permessage-deflate; "
"client_max_window_bits=6",
}
with mock.patch("aiohttp.client.os") as m_os:
with mock.patch("aiohttp.client.ClientSession.request") as m_req:
m_os.urandom.return_value = key_data
m_req.return_value = loop.create_future()
m_req.return_value.set_result(resp)
with pytest.raises(client.WSServerHandshakeError):
await aiohttp.ClientSession(loop=loop).ws_connect(
"http://test.org", compress=15
)
async def test_ws_connect_deflate_server_ext_bad(loop, ws_key, key_data) -> None:
resp = mock.Mock()
resp.status = 101
resp.headers = {
hdrs.UPGRADE: "websocket",
hdrs.CONNECTION: "upgrade",
hdrs.SEC_WEBSOCKET_ACCEPT: ws_key,
hdrs.SEC_WEBSOCKET_EXTENSIONS: "permessage-deflate; bad",
}
with mock.patch("aiohttp.client.os") as m_os:
with mock.patch("aiohttp.client.ClientSession.request") as m_req:
m_os.urandom.return_value = key_data
m_req.return_value = loop.create_future()
m_req.return_value.set_result(resp)
with pytest.raises(client.WSServerHandshakeError):
await aiohttp.ClientSession(loop=loop).ws_connect(
"http://test.org", compress=15
)
|