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
|
import asyncio
from unittest.mock import Mock
import pytest
import async_timeout
import pytest_asyncio
from faker import Faker
from h2.events import StreamReset, StreamEnded
from multidict import MultiDict
from h2.settings import SettingCodes
from grpclib.const import Status, Cardinality
from grpclib.client import Stream
from grpclib.events import _DispatchChannelEvents
from grpclib.metadata import USER_AGENT
from grpclib.exceptions import GRPCError, StreamTerminatedError, ProtocolError
from grpclib.encoding.proto import ProtoCodec
from conn import ClientStream, ClientConn, grpc_encode
from dummy_pb2 import DummyRequest, DummyReply
fake = Faker()
@pytest_asyncio.fixture(name='cs')
async def client_stream_fixture():
return ClientStream(send_type=DummyRequest, recv_type=DummyReply)
class ClientError(Exception):
pass
class ErrorDetected(Exception):
pass
@pytest.mark.asyncio
async def test_unary_unary(cs: ClientStream):
async with cs.client_stream as stream:
await stream.send_message(DummyRequest(value='ping'))
events = cs.client_conn.to_server_transport.events()
event = events[-1]
assert isinstance(event, StreamEnded)
stream_id = event.stream_id
cs.client_conn.server_h2c.send_headers(
stream_id,
[(':status', '200'),
('content-type', 'application/grpc+proto')],
)
cs.client_conn.server_h2c.send_data(
stream_id,
grpc_encode(DummyReply(value='pong'), DummyReply),
)
cs.client_conn.server_h2c.send_headers(
stream_id,
[('grpc-status', str(Status.OK.value))],
end_stream=True,
)
cs.client_conn.server_flush()
assert await stream.recv_message() == DummyReply(value='pong')
@pytest.mark.asyncio
async def test_no_request(cs: ClientStream):
async with cs.client_stream:
pass
@pytest.mark.asyncio
async def test_no_end():
cs = ClientStream(send_type=DummyRequest, recv_type=DummyReply,
cardinality=Cardinality.STREAM_UNARY)
with pytest.raises(ProtocolError) as exc:
async with cs.client_stream as stream:
await stream.send_request()
await stream.send_message(DummyRequest(value='ping')) # no end
events = cs.client_conn.to_server_transport.events()
stream_id = events[-1].stream_id
cs.client_conn.server_h2c.send_headers(
stream_id,
[(':status', '200'),
('content-type', 'application/grpc+proto')],
)
cs.client_conn.server_flush()
await stream.recv_initial_metadata()
cs.client_conn.server_h2c.send_data(
stream_id,
grpc_encode(DummyReply(value='pong'), DummyReply),
)
cs.client_conn.server_flush()
assert await stream.recv_message() == DummyReply(value='pong')
await stream.recv_trailing_metadata()
exc.match('Outgoing stream was not ended')
@pytest.mark.asyncio
async def test_connection_error():
class BrokenChannel:
_calls_started = 0
def __connect__(self):
raise IOError('Intentionally broken connection')
stream = Stream(BrokenChannel(), '/foo/bar', MultiDict(),
Cardinality.UNARY_UNARY, DummyRequest, DummyReply,
codec=ProtoCodec(), status_details_codec=None,
dispatch=_DispatchChannelEvents())
with pytest.raises(IOError) as err:
async with stream:
await stream.send_request()
err.match('Intentionally broken connection')
@pytest.mark.asyncio
async def test_ctx_exit_with_error_and_closed_stream(cs):
with pytest.raises(ClientError):
async with cs.client_stream as stream:
await stream.send_request()
events = cs.client_conn.to_server_transport.events()
cs.client_conn.server_h2c.reset_stream(events[-1].stream_id)
cs.client_conn.server_flush()
raise ClientError()
@pytest.mark.asyncio
async def test_ctx_exit_with_error_and_closed_connection(cs):
with pytest.raises(ClientError):
async with cs.client_stream as stream:
await stream.send_request()
cs.client_conn.server_h2c.close_connection()
cs.client_conn.server_flush()
raise ClientError()
@pytest.mark.asyncio
async def test_outbound_streams_limit(loop):
client_conn = ClientConn()
client_conn.server_h2c.update_settings({
SettingCodes.MAX_CONCURRENT_STREAMS: 1,
})
client_conn.server_flush()
async def worker1():
cs = ClientStream(client_conn=client_conn,
send_type=DummyRequest, recv_type=DummyReply)
async with cs.client_stream as stream:
await stream.send_message(DummyRequest(value='ping'), end=True)
assert await stream.recv_message() == DummyReply(value='pong')
async def worker2():
cs = ClientStream(client_conn=client_conn,
send_type=DummyRequest, recv_type=DummyReply)
async with cs.client_stream as stream:
await stream.send_message(DummyRequest(value='ping'), end=True)
assert await stream.recv_message() == DummyReply(value='pong')
def send_response(stream_id):
client_conn.server_h2c.send_headers(
stream_id,
[
(':status', '200'),
('content-type', 'application/grpc+proto'),
],
)
client_conn.server_h2c.send_data(
stream_id,
grpc_encode(DummyReply(value='pong'), DummyReply),
)
client_conn.server_h2c.send_headers(
stream_id,
[
('grpc-status', str(Status.OK.value)),
],
end_stream=True,
)
client_conn.server_flush()
w1 = loop.create_task(worker1())
w2 = loop.create_task(worker2())
done, pending = await asyncio.wait([w1, w2], timeout=0.001)
assert not done and pending == {w1, w2}
send_response(1)
await asyncio.wait_for(w1, 0.1)
send_response(3)
await asyncio.wait_for(w2, 0.1)
@pytest.mark.asyncio
async def test_deadline_during_send_request():
cs = ClientStream(timeout=0.01, connect_time=1,
send_type=DummyRequest, recv_type=DummyReply)
with pytest.raises(ErrorDetected):
async with async_timeout.timeout(5) as safety_timeout:
async with cs.client_stream as stream:
try:
await stream.send_request()
except asyncio.TimeoutError:
if safety_timeout.expired:
raise
else:
raise ErrorDetected()
@pytest.mark.asyncio
async def test_deadline_during_send_message():
cs = ClientStream(timeout=0.01,
send_type=DummyRequest, recv_type=DummyReply)
with pytest.raises(ErrorDetected):
async with async_timeout.timeout(5) as safety_timeout:
async with cs.client_stream as stream:
await stream.send_request()
cs.client_conn.client_proto.connection.write_ready.clear()
try:
await stream.send_message(DummyRequest(value='ping'),
end=True)
except asyncio.TimeoutError:
if safety_timeout.expired:
raise
else:
raise ErrorDetected()
@pytest.mark.asyncio
async def test_deadline_during_recv_initial_metadata():
cs = ClientStream(timeout=0.01,
send_type=DummyRequest, recv_type=DummyReply)
with pytest.raises(ErrorDetected):
async with async_timeout.timeout(5) as safety_timeout:
async with cs.client_stream as stream:
await stream.send_message(DummyRequest(value='ping'),
end=True)
try:
await stream.recv_initial_metadata()
except asyncio.TimeoutError:
if safety_timeout.expired:
raise
else:
raise ErrorDetected()
@pytest.mark.asyncio
async def test_deadline_during_recv_message():
cs = ClientStream(timeout=0.01,
send_type=DummyRequest, recv_type=DummyReply)
with pytest.raises(ErrorDetected):
async with async_timeout.timeout(5) as safety_timeout:
async with cs.client_stream as stream:
await stream.send_message(DummyRequest(value='ping'), end=True)
events = cs.client_conn.to_server_transport.events()
stream_id = events[-1].stream_id
cs.client_conn.server_h2c.send_headers(
stream_id,
[(':status', '200'),
('content-type', 'application/grpc+proto')],
)
cs.client_conn.server_flush()
await stream.recv_initial_metadata()
try:
await stream.recv_message()
except asyncio.TimeoutError:
if safety_timeout.expired:
raise
else:
raise ErrorDetected()
@pytest.mark.asyncio
async def test_deadline_during_recv_trailing_metadata():
cs = ClientStream(timeout=0.01,
send_type=DummyRequest, recv_type=DummyReply)
with pytest.raises(ErrorDetected):
async with async_timeout.timeout(5) as safety_timeout:
async with cs.client_stream as stream:
await stream.send_message(DummyRequest(value='ping'), end=True)
events = cs.client_conn.to_server_transport.events()
stream_id = events[-1].stream_id
cs.client_conn.server_h2c.send_headers(
stream_id,
[(':status', '200'),
('content-type', 'application/grpc+proto')],
)
cs.client_conn.server_flush()
await stream.recv_initial_metadata()
cs.client_conn.server_h2c.send_data(
stream_id,
grpc_encode(DummyReply(value='pong'), DummyReply),
)
cs.client_conn.server_flush()
await stream.recv_message()
try:
await stream.recv_trailing_metadata()
except asyncio.TimeoutError:
if safety_timeout.expired:
raise
else:
raise ErrorDetected()
@pytest.mark.asyncio
async def test_deadline_during_cancel():
cs = ClientStream(timeout=0.01,
send_type=DummyRequest, recv_type=DummyReply)
with pytest.raises(ErrorDetected):
async with async_timeout.timeout(5) as safety_timeout:
async with cs.client_stream as stream:
await stream.send_request()
cs.client_conn.client_proto.connection.write_ready.clear()
try:
await stream.cancel()
except asyncio.TimeoutError:
if safety_timeout.expired:
raise
else:
raise ErrorDetected()
@pytest.mark.asyncio
async def test_stream_reset_during_send_message(loop, cs: ClientStream):
with pytest.raises(ErrorDetected):
async with cs.client_stream as stream:
await stream.send_request()
events = cs.client_conn.to_server_transport.events()
stream_id = events[-1].stream_id
cs.client_conn.client_proto.connection.write_ready.clear()
task = loop.create_task(
stream.send_message(DummyRequest(value='ping'), end=True)
)
cs.client_conn.server_h2c.reset_stream(stream_id)
cs.client_conn.server_flush()
try:
await asyncio.wait_for(task, timeout=1)
except StreamTerminatedError:
raise ErrorDetected()
@pytest.mark.asyncio
async def test_connection_close_during_send_message(loop, cs: ClientStream):
with pytest.raises(ErrorDetected):
async with cs.client_stream as stream:
await stream.send_request()
cs.client_conn.client_proto.connection.write_ready.clear()
task = loop.create_task(
stream.send_message(DummyRequest(value='ping'), end=True)
)
cs.client_conn.server_h2c.close_connection()
cs.client_conn.server_flush()
try:
await asyncio.wait_for(task, timeout=1)
except StreamTerminatedError:
raise ErrorDetected()
@pytest.mark.asyncio
async def test_unimplemented_error(cs: ClientStream):
with pytest.raises(ErrorDetected):
async with cs.client_stream as stream:
await stream.send_request()
events = cs.client_conn.to_server_transport.events()
stream_id = events[-1].stream_id
cs.client_conn.server_h2c.send_headers(stream_id, [
(':status', '200'),
('content-type', 'application/grpc+proto'),
('grpc-status', str(Status.UNIMPLEMENTED.value)),
], end_stream=True)
cs.client_conn.server_flush()
try:
await stream.recv_initial_metadata()
except GRPCError as exc:
assert exc and exc.status == Status.UNIMPLEMENTED
raise ErrorDetected()
@pytest.mark.asyncio
async def test_unimplemented_error_with_stream_reset(cs: ClientStream):
with pytest.raises(GRPCError) as err:
async with cs.client_stream as stream:
await stream.send_request()
events = cs.client_conn.to_server_transport.events()
stream_id = events[-1].stream_id
cs.client_conn.server_h2c.send_headers(stream_id, [
(':status', '200'),
('content-type', 'application/grpc+proto'),
('grpc-status', str(Status.UNIMPLEMENTED.value)),
], end_stream=True)
cs.client_conn.server_h2c.reset_stream(stream_id)
cs.client_conn.server_flush()
assert err.value.status == Status.UNIMPLEMENTED
@pytest.mark.asyncio
@pytest.mark.parametrize('status, grpc_status', [
('401', Status.UNAUTHENTICATED),
('404', Status.UNIMPLEMENTED),
('429', Status.UNAVAILABLE),
('508', Status.UNKNOWN),
])
async def test_non_ok_status(cs: ClientStream, status, grpc_status):
with pytest.raises(GRPCError) as err:
async with cs.client_stream as stream:
await stream.send_request()
events = cs.client_conn.to_server_transport.events()
stream_id = events[-1].stream_id
cs.client_conn.server_h2c.send_headers(stream_id, [
(':status', status),
], end_stream=True)
cs.client_conn.server_h2c.reset_stream(stream_id)
cs.client_conn.server_flush()
assert err.value.status == grpc_status
assert err.value.message == 'Received :status = {!r}'.format(status)
@pytest.mark.asyncio
async def test_reset_after_headers(cs: ClientStream):
with pytest.raises(StreamTerminatedError):
async with cs.client_stream as stream:
await stream.send_request()
events = cs.client_conn.to_server_transport.events()
stream_id = events[-1].stream_id
cs.client_conn.server_h2c.send_headers(stream_id, [
(':status', '200'),
])
cs.client_conn.server_h2c.reset_stream(stream_id)
cs.client_conn.server_flush()
@pytest.mark.asyncio
async def test_missing_grpc_status(cs: ClientStream):
with pytest.raises(ErrorDetected):
async with cs.client_stream as stream:
await stream.send_request()
await stream.send_message(DummyRequest(value='ping'), end=True)
events = cs.client_conn.to_server_transport.events()
stream_id = events[-1].stream_id
cs.client_conn.server_h2c.send_headers(stream_id, [
(':status', '200'),
('content-type', 'application/grpc+proto'),
])
cs.client_conn.server_h2c.send_data(
stream_id,
grpc_encode(DummyReply(value='pong'), DummyReply),
)
cs.client_conn.server_h2c.send_headers(stream_id, [
('foo', 'bar'),
], end_stream=True)
cs.client_conn.server_flush()
await stream.recv_initial_metadata()
await stream.recv_message()
try:
await stream.recv_trailing_metadata()
except GRPCError as exc:
assert exc
assert exc.status == Status.UNKNOWN
assert exc.message == 'Missing grpc-status header'
raise ErrorDetected()
@pytest.mark.asyncio
@pytest.mark.parametrize('grpc_status', ['invalid_number', '-42'])
async def test_invalid_grpc_status_in_headers(cs: ClientStream, grpc_status):
with pytest.raises(ErrorDetected):
async with cs.client_stream as stream:
await stream.send_request()
await stream.send_message(DummyRequest(value='ping'), end=True)
events = cs.client_conn.to_server_transport.events()
stream_id = events[-1].stream_id
cs.client_conn.server_h2c.send_headers(stream_id, [
(':status', '200'),
('content-type', 'application/grpc+proto'),
('grpc-status', grpc_status),
], end_stream=True)
cs.client_conn.server_flush()
try:
await stream.recv_initial_metadata()
except GRPCError as exc:
assert exc
assert exc.status == Status.UNKNOWN
assert exc.message == ('Invalid grpc-status: {!r}'
.format(grpc_status))
raise ErrorDetected()
@pytest.mark.asyncio
@pytest.mark.parametrize('grpc_status', ['invalid_number', '-42'])
async def test_invalid_grpc_status_in_trailers(cs: ClientStream, grpc_status):
with pytest.raises(ErrorDetected):
async with cs.client_stream as stream:
await stream.send_request()
await stream.send_message(DummyRequest(value='ping'), end=True)
events = cs.client_conn.to_server_transport.events()
stream_id = events[-1].stream_id
cs.client_conn.server_h2c.send_headers(stream_id, [
(':status', '200'),
('content-type', 'application/grpc+proto'),
])
cs.client_conn.server_h2c.send_data(
stream_id,
grpc_encode(DummyReply(value='pong'), DummyReply),
)
cs.client_conn.server_h2c.send_headers(stream_id, [
('grpc-status', grpc_status),
], end_stream=True)
cs.client_conn.server_flush()
await stream.recv_initial_metadata()
await stream.recv_message()
try:
await stream.recv_trailing_metadata()
except GRPCError as exc:
assert exc
assert exc.status == Status.UNKNOWN
assert exc.message == ('Invalid grpc-status: {!r}'
.format(grpc_status))
raise ErrorDetected()
@pytest.mark.asyncio
@pytest.mark.parametrize('grpc_message', [None, fake.pystr()])
async def test_non_ok_grpc_status_in_headers(cs: ClientStream, grpc_message):
with pytest.raises(ErrorDetected):
async with cs.client_stream as stream:
await stream.send_request()
await stream.send_message(DummyRequest(value='ping'), end=True)
events = cs.client_conn.to_server_transport.events()
stream_id = events[-1].stream_id
headers = [
(':status', '200'),
('content-type', 'application/grpc+proto'),
('grpc-status', str(Status.DATA_LOSS.value)),
]
if grpc_message is not None:
headers.append(('grpc-message', grpc_message))
cs.client_conn.server_h2c.send_headers(stream_id, headers,
end_stream=True)
cs.client_conn.server_flush()
try:
await stream.recv_initial_metadata()
except GRPCError as exc:
assert exc
assert exc.status == Status.DATA_LOSS
assert exc.message == grpc_message
raise ErrorDetected()
@pytest.mark.asyncio
@pytest.mark.parametrize('grpc_message', [None, fake.pystr()])
async def test_non_ok_grpc_status_in_trailers(cs: ClientStream, grpc_message):
with pytest.raises(ErrorDetected):
async with cs.client_stream as stream:
await stream.send_request()
await stream.send_message(DummyRequest(value='ping'), end=True)
events = cs.client_conn.to_server_transport.events()
stream_id = events[-1].stream_id
cs.client_conn.server_h2c.send_headers(stream_id, [
(':status', '200'),
('content-type', 'application/grpc+proto'),
])
cs.client_conn.server_h2c.send_data(
stream_id,
grpc_encode(DummyReply(value='pong'), DummyReply),
)
headers = [
('grpc-status', str(Status.DATA_LOSS.value)),
]
if grpc_message is not None:
headers.append(('grpc-message', grpc_message))
cs.client_conn.server_h2c.send_headers(stream_id, headers,
end_stream=True)
cs.client_conn.server_flush()
await stream.recv_initial_metadata()
await stream.recv_message()
try:
await stream.recv_trailing_metadata()
except GRPCError as exc:
assert exc
assert exc.status == Status.DATA_LOSS
assert exc.message == grpc_message
raise ErrorDetected()
@pytest.mark.asyncio
async def test_missing_content_type(cs: ClientStream):
with pytest.raises(ErrorDetected):
async with cs.client_stream as stream:
await stream.send_request()
await stream.send_message(DummyRequest(value='ping'), end=True)
events = cs.client_conn.to_server_transport.events()
stream_id = events[-1].stream_id
cs.client_conn.server_h2c.send_headers(stream_id, [
(':status', '200'),
('grpc-status', str(Status.OK.value)),
])
cs.client_conn.server_flush()
try:
await stream.recv_initial_metadata()
except GRPCError as exc:
assert exc
assert exc.status == Status.UNKNOWN
assert exc.message == "Missing content-type header"
raise ErrorDetected()
@pytest.mark.asyncio
async def test_invalid_content_type(cs: ClientStream):
with pytest.raises(ErrorDetected):
async with cs.client_stream as stream:
await stream.send_request()
await stream.send_message(DummyRequest(value='ping'), end=True)
events = cs.client_conn.to_server_transport.events()
stream_id = events[-1].stream_id
cs.client_conn.server_h2c.send_headers(stream_id, [
(':status', '200'),
('grpc-status', str(Status.OK.value)),
('content-type', 'text/invalid'),
])
cs.client_conn.server_flush()
try:
await stream.recv_initial_metadata()
except GRPCError as exc:
assert exc
assert exc.status == Status.UNKNOWN
assert exc.message == "Invalid content-type: 'text/invalid'"
raise ErrorDetected()
@pytest.mark.asyncio
async def test_request_headers(cs: ClientStream):
async with cs.client_stream as stream:
await stream.send_request()
events = cs.client_conn.to_server_transport.events()
request_received = events[-1]
assert request_received.headers == [
(':method', 'POST'),
(':scheme', 'http'),
(':path', '/foo/bar'),
(':authority', 'test.com'),
('te', 'trailers'),
('content-type', 'application/grpc'),
('user-agent', USER_AGENT),
]
await stream.cancel()
@pytest.mark.asyncio
async def test_request_headers_with_deadline():
deadline = Mock()
deadline.time_remaining.return_value = 0.1
cs = ClientStream(deadline=deadline)
async with cs.client_stream as stream:
await stream.send_request()
events = cs.client_conn.to_server_transport.events()
request_received = events[-1]
assert request_received.headers == [
(':method', 'POST'),
(':scheme', 'http'),
(':path', '/foo/bar'),
(':authority', 'test.com'),
('grpc-timeout', '100m'),
('te', 'trailers'),
('content-type', 'application/grpc'),
('user-agent', USER_AGENT),
]
await stream.cancel()
@pytest.mark.asyncio
async def test_no_messages_for_unary(loop, cs: ClientStream):
with pytest.raises(ProtocolError, match='Unary request requires'):
async with cs.client_stream as stream:
await stream.send_request()
cs.client_conn.to_server_transport.events()
await stream.end()
reset_event, = cs.client_conn.to_server_transport.events()
assert isinstance(reset_event, StreamReset)
@pytest.mark.asyncio
async def test_empty_request():
cs = ClientStream(cardinality=Cardinality.STREAM_UNARY,
send_type=DummyRequest, recv_type=DummyReply)
async with cs.client_stream as stream:
await stream.send_request(end=True)
events = cs.client_conn.to_server_transport.events()
stream_ended = events[-1]
assert isinstance(stream_ended, StreamEnded)
stream_id = stream_ended.stream_id
cs.client_conn.server_h2c.send_headers(stream_id, [
(':status', '200'),
('content-type', 'application/grpc+proto'),
])
cs.client_conn.server_h2c.send_data(
stream_id,
grpc_encode(DummyReply(value='pong'), DummyReply),
)
cs.client_conn.server_h2c.send_headers(stream_id, [
('grpc-status', str(Status.OK.value)),
], end_stream=True)
cs.client_conn.server_flush()
reply = await stream.recv_message()
assert reply == DummyReply(value='pong')
@pytest.mark.asyncio
async def test_empty_response():
cs = ClientStream(cardinality=Cardinality.UNARY_STREAM,
send_type=DummyRequest, recv_type=DummyReply)
async with cs.client_stream as stream:
await stream.send_message(DummyRequest(value='ping'), end=True)
events = cs.client_conn.to_server_transport.events()
stream_id = events[-1].stream_id
cs.client_conn.server_h2c.send_headers(stream_id, [
(':status', '200'),
('content-type', 'application/grpc+proto'),
])
cs.client_conn.server_h2c.send_headers(stream_id, [
('grpc-status', str(Status.OK.value)),
], end_stream=True)
cs.client_conn.server_flush()
reply = await stream.recv_message()
assert reply is None
@pytest.mark.asyncio
async def test_empty_trailers_only_response():
cs = ClientStream(cardinality=Cardinality.UNARY_STREAM,
send_type=DummyRequest, recv_type=DummyReply)
async with cs.client_stream as stream:
await stream.send_message(DummyRequest(value='ping'), end=True)
events = cs.client_conn.to_server_transport.events()
stream_id = events[-1].stream_id
cs.client_conn.server_h2c.send_headers(stream_id, [
(':status', '200'),
('content-type', 'application/grpc+proto'),
('grpc-status', str(Status.OK.value)),
], end_stream=True)
cs.client_conn.server_flush()
reply = await stream.recv_message()
assert reply is None
await stream.recv_trailing_metadata() # should be noop
|