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 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/390223051): Remove C-library calls to fix the errors.
#pragma allow_unsafe_libc_calls
#endif
#include "net/quic/quic_chromium_client_stream.h"
#include <string>
#include <string_view>
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "base/memory/ptr_util.h"
#include "base/memory/raw_ptr.h"
#include "base/run_loop.h"
#include "base/strings/string_number_conversions.h"
#include "base/test/metrics/histogram_tester.h"
#include "net/base/io_buffer.h"
#include "net/base/net_errors.h"
#include "net/base/test_completion_callback.h"
#include "net/quic/quic_chromium_client_session.h"
#include "net/quic/quic_context.h"
#include "net/test/gtest_util.h"
#include "net/test/test_with_task_environment.h"
#include "net/third_party/quiche/src/quiche/common/http/http_header_block.h"
#include "net/third_party/quiche/src/quiche/quic/core/http/quic_spdy_client_session_base.h"
#include "net/third_party/quiche/src/quiche/quic/core/http/quic_spdy_client_stream.h"
#include "net/third_party/quiche/src/quiche/quic/core/http/spdy_utils.h"
#include "net/third_party/quiche/src/quiche/quic/core/quic_server_id.h"
#include "net/third_party/quiche/src/quiche/quic/core/quic_utils.h"
#include "net/third_party/quiche/src/quiche/quic/test_tools/crypto_test_utils.h"
#include "net/third_party/quiche/src/quiche/quic/test_tools/quic_config_peer.h"
#include "net/third_party/quiche/src/quiche/quic/test_tools/quic_connection_peer.h"
#include "net/third_party/quiche/src/quiche/quic/test_tools/quic_spdy_session_peer.h"
#include "net/third_party/quiche/src/quiche/quic/test_tools/quic_test_utils.h"
#include "net/traffic_annotation/network_traffic_annotation_test_helper.h"
#include "testing/gmock/include/gmock/gmock.h"
using testing::_;
using testing::Return;
namespace net::test {
namespace {
class EstablishedCryptoStream : public quic::test::MockQuicCryptoStream {
public:
using quic::test::MockQuicCryptoStream::MockQuicCryptoStream;
bool encryption_established() const override { return true; }
};
class MockQuicClientSessionBase : public quic::QuicSpdyClientSessionBase {
public:
explicit MockQuicClientSessionBase(quic::QuicConnection* connection);
MockQuicClientSessionBase(const MockQuicClientSessionBase&) = delete;
MockQuicClientSessionBase& operator=(const MockQuicClientSessionBase&) =
delete;
~MockQuicClientSessionBase() override;
const quic::QuicCryptoStream* GetCryptoStream() const override {
return crypto_stream_.get();
}
quic::QuicCryptoStream* GetMutableCryptoStream() override {
return crypto_stream_.get();
}
void SetCryptoStream(quic::QuicCryptoStream* crypto_stream) {
crypto_stream_.reset(crypto_stream);
}
// From quic::QuicSession.
MOCK_METHOD2(OnConnectionClosed,
void(const quic::QuicConnectionCloseFrame& frame,
quic::ConnectionCloseSource source));
MOCK_METHOD1(CreateIncomingStream,
quic::QuicSpdyStream*(quic::QuicStreamId id));
MOCK_METHOD1(CreateIncomingStream,
quic::QuicSpdyStream*(quic::PendingStream* pending));
MOCK_METHOD0(CreateOutgoingBidirectionalStream, QuicChromiumClientStream*());
MOCK_METHOD0(CreateOutgoingUnidirectionalStream, QuicChromiumClientStream*());
MOCK_METHOD6(WritevData,
quic::QuicConsumedData(quic::QuicStreamId id,
size_t write_length,
quic::QuicStreamOffset offset,
quic::StreamSendingState state,
quic::TransmissionType type,
quic::EncryptionLevel level));
MOCK_METHOD2(WriteControlFrame,
bool(const quic::QuicFrame&, quic::TransmissionType));
MOCK_METHOD4(SendRstStream,
void(quic::QuicStreamId stream_id,
quic::QuicRstStreamErrorCode error,
quic::QuicStreamOffset bytes_written,
bool send_rst_only));
MOCK_METHOD2(OnStreamHeaders,
void(quic::QuicStreamId stream_id,
std::string_view headers_data));
MOCK_METHOD2(OnStreamHeadersPriority,
void(quic::QuicStreamId stream_id,
const spdy::SpdyStreamPrecedence& precedence));
MOCK_METHOD3(OnStreamHeadersComplete,
void(quic::QuicStreamId stream_id, bool fin, size_t frame_len));
MOCK_CONST_METHOD0(OneRttKeysAvailable, bool());
// Methods taking non-copyable types like quiche::HttpHeaderBlock by value
// cannot be mocked directly.
size_t WriteHeadersOnHeadersStream(
quic::QuicStreamId id,
quiche::HttpHeaderBlock headers,
bool fin,
const spdy::SpdyStreamPrecedence& precedence,
quiche::QuicheReferenceCountedPointer<quic::QuicAckListenerInterface>
ack_listener) override {
return WriteHeadersOnHeadersStreamMock(id, headers, fin, precedence,
std::move(ack_listener));
}
MOCK_METHOD5(WriteHeadersOnHeadersStreamMock,
size_t(quic::QuicStreamId id,
const quiche::HttpHeaderBlock& headers,
bool fin,
const spdy::SpdyStreamPrecedence& precedence,
const quiche::QuicheReferenceCountedPointer<
quic::QuicAckListenerInterface>& ack_listener));
MOCK_METHOD1(OnHeadersHeadOfLineBlocking, void(quic::QuicTime::Delta delta));
using quic::QuicSession::ActivateStream;
// Returns a quic::QuicConsumedData that indicates all of |write_length| (and
// |fin| if set) has been consumed.
static quic::QuicConsumedData ConsumeAllData(
quic::QuicStreamId id,
size_t write_length,
quic::QuicStreamOffset offset,
bool fin,
quic::QuicAckListenerInterface* ack_listener);
void OnProofValid(
const quic::QuicCryptoClientConfig::CachedState& cached) override {}
void OnProofVerifyDetailsAvailable(
const quic::ProofVerifyDetails& verify_details) override {}
protected:
MOCK_METHOD1(ShouldCreateIncomingStream, bool(quic::QuicStreamId id));
MOCK_METHOD0(ShouldCreateOutgoingBidirectionalStream, bool());
MOCK_METHOD0(ShouldCreateOutgoingUnidirectionalStream, bool());
private:
std::unique_ptr<quic::QuicCryptoStream> crypto_stream_;
};
MockQuicClientSessionBase::MockQuicClientSessionBase(
quic::QuicConnection* connection)
: quic::QuicSpdyClientSessionBase(connection,
/*visitor=*/nullptr,
quic::test::DefaultQuicConfig(),
connection->supported_versions()) {
crypto_stream_ = std::make_unique<quic::test::MockQuicCryptoStream>(this);
Initialize();
ON_CALL(*this, WritevData(_, _, _, _, _, _))
.WillByDefault(testing::Return(quic::QuicConsumedData(0, false)));
}
MockQuicClientSessionBase::~MockQuicClientSessionBase() = default;
class QuicChromiumClientStreamTest
: public ::testing::TestWithParam<quic::ParsedQuicVersion>,
public WithTaskEnvironment {
public:
QuicChromiumClientStreamTest()
: version_(GetParam()),
crypto_config_(
quic::test::crypto_test_utils::ProofVerifierForTesting()),
session_(new quic::test::MockQuicConnection(
&helper_,
&alarm_factory_,
quic::Perspective::IS_CLIENT,
quic::test::SupportedVersions(version_))) {
quic::test::QuicConfigPeer::SetReceivedInitialSessionFlowControlWindow(
session_.config(), quic::kMinimumFlowControlSendWindow);
quic::test::QuicConfigPeer::
SetReceivedInitialMaxStreamDataBytesOutgoingBidirectional(
session_.config(), quic::kMinimumFlowControlSendWindow);
quic::test::QuicConfigPeer::SetReceivedMaxUnidirectionalStreams(
session_.config(), 10);
session_.OnConfigNegotiated();
stream_ = new QuicChromiumClientStream(
quic::test::GetNthClientInitiatedBidirectionalStreamId(
version_.transport_version, 0),
&session_, quic::QuicServerId(), quic::BIDIRECTIONAL,
NetLogWithSource(), TRAFFIC_ANNOTATION_FOR_TESTS);
session_.ActivateStream(base::WrapUnique(stream_.get()));
handle_ = stream_->CreateHandle();
helper_.AdvanceTime(quic::QuicTime::Delta::FromSeconds(1));
session_.SetCryptoStream(new EstablishedCryptoStream(&session_));
session_.connection()->SetEncrypter(
quic::ENCRYPTION_FORWARD_SECURE,
std::make_unique<quic::test::TaggingEncrypter>(
quic::ENCRYPTION_FORWARD_SECURE));
}
void InitializeHeaders() {
headers_[":host"] = "www.google.com";
headers_[":path"] = "/index.hml";
headers_[":scheme"] = "https";
headers_[":status"] = "200";
headers_["cookie"] =
"__utma=208381060.1228362404.1372200928.1372200928.1372200928.1; "
"__utmc=160408618; "
"GX=DQAAAOEAAACWJYdewdE9rIrW6qw3PtVi2-d729qaa-74KqOsM1NVQblK4VhX"
"hoALMsy6HOdDad2Sz0flUByv7etmo3mLMidGrBoljqO9hSVA40SLqpG_iuKKSHX"
"RW3Np4bq0F0SDGDNsW0DSmTS9ufMRrlpARJDS7qAI6M3bghqJp4eABKZiRqebHT"
"pMU-RXvTI5D5oCF1vYxYofH_l1Kviuiy3oQ1kS1enqWgbhJ2t61_SNdv-1XJIS0"
"O3YeHLmVCs62O6zp89QwakfAWK9d3IDQvVSJzCQsvxvNIvaZFa567MawWlXg0Rh"
"1zFMi5vzcns38-8_Sns; "
"GA=v*2%2Fmem*57968640*47239936%2Fmem*57968640*47114716%2Fno-nm-"
"yj*15%2Fno-cc-yj*5%2Fpc-ch*133685%2Fpc-s-cr*133947%2Fpc-s-t*1339"
"47%2Fno-nm-yj*4%2Fno-cc-yj*1%2Fceft-as*1%2Fceft-nqas*0%2Fad-ra-c"
"v_p%2Fad-nr-cv_p-f*1%2Fad-v-cv_p*859%2Fad-ns-cv_p-f*1%2Ffn-v-ad%"
"2Fpc-t*250%2Fpc-cm*461%2Fpc-s-cr*722%2Fpc-s-t*722%2Fau_p*4"
"SICAID=AJKiYcHdKgxum7KMXG0ei2t1-W4OD1uW-ecNsCqC0wDuAXiDGIcT_HA2o1"
"3Rs1UKCuBAF9g8rWNOFbxt8PSNSHFuIhOo2t6bJAVpCsMU5Laa6lewuTMYI8MzdQP"
"ARHKyW-koxuhMZHUnGBJAM1gJODe0cATO_KGoX4pbbFxxJ5IicRxOrWK_5rU3cdy6"
"edlR9FsEdH6iujMcHkbE5l18ehJDwTWmBKBzVD87naobhMMrF6VvnDGxQVGp9Ir_b"
"Rgj3RWUoPumQVCxtSOBdX0GlJOEcDTNCzQIm9BSfetog_eP_TfYubKudt5eMsXmN6"
"QnyXHeGeK2UINUzJ-D30AFcpqYgH9_1BvYSpi7fc7_ydBU8TaD8ZRxvtnzXqj0RfG"
"tuHghmv3aD-uzSYJ75XDdzKdizZ86IG6Fbn1XFhYZM-fbHhm3mVEXnyRW4ZuNOLFk"
"Fas6LMcVC6Q8QLlHYbXBpdNFuGbuZGUnav5C-2I_-46lL0NGg3GewxGKGHvHEfoyn"
"EFFlEYHsBQ98rXImL8ySDycdLEFvBPdtctPmWCfTxwmoSMLHU2SCVDhbqMWU5b0yr"
"JBCScs_ejbKaqBDoB7ZGxTvqlrB__2ZmnHHjCr8RgMRtKNtIeuZAo ";
}
quiche::HttpHeaderBlock CreateResponseHeaders(
const std::string& status_code) {
quiche::HttpHeaderBlock headers;
headers[":status"] = status_code;
return headers;
}
void ReadData(std::string_view expected_data) {
auto buffer =
base::MakeRefCounted<IOBufferWithSize>(expected_data.length() + 1);
EXPECT_EQ(static_cast<int>(expected_data.length()),
stream_->Read(buffer.get(), expected_data.length() + 1));
EXPECT_EQ(expected_data,
std::string_view(buffer->data(), expected_data.length()));
}
quic::QuicHeaderList ProcessHeaders(const quiche::HttpHeaderBlock& headers) {
quic::QuicHeaderList h = quic::test::AsHeaderList(headers);
stream_->OnStreamHeaderList(false, h.uncompressed_header_bytes(), h);
return h;
}
quic::QuicHeaderList ProcessTrailers(const quiche::HttpHeaderBlock& headers) {
quic::QuicHeaderList h = quic::test::AsHeaderList(headers);
stream_->OnStreamHeaderList(true, h.uncompressed_header_bytes(), h);
return h;
}
quic::QuicHeaderList ProcessHeadersFull(
const quiche::HttpHeaderBlock& headers) {
quic::QuicHeaderList h = ProcessHeaders(headers);
TestCompletionCallback callback;
EXPECT_EQ(static_cast<int>(h.uncompressed_header_bytes()),
handle_->ReadInitialHeaders(&headers_, callback.callback()));
EXPECT_EQ(headers, headers_);
EXPECT_TRUE(stream_->header_list().empty());
return h;
}
quic::QuicStreamId GetNthClientInitiatedBidirectionalStreamId(int n) {
return quic::test::GetNthClientInitiatedBidirectionalStreamId(
session_.connection()->transport_version(), n);
}
quic::QuicStreamId GetNthServerInitiatedUnidirectionalStreamId(int n) {
return quic::test::GetNthServerInitiatedUnidirectionalStreamId(
session_.connection()->transport_version(), n);
}
void ResetStreamCallback(QuicChromiumClientStream* stream, int /*rv*/) {
stream->Reset(quic::QUIC_STREAM_CANCELLED);
}
std::string ConstructDataHeader(size_t body_len) {
quiche::QuicheBuffer buffer = quic::HttpEncoder::SerializeDataFrameHeader(
body_len, quiche::SimpleBufferAllocator::Get());
return std::string(buffer.data(), buffer.size());
}
const quic::ParsedQuicVersion version_;
quic::QuicCryptoClientConfig crypto_config_;
std::unique_ptr<QuicChromiumClientStream::Handle> handle_;
std::unique_ptr<QuicChromiumClientStream::Handle> handle2_;
quic::test::MockQuicConnectionHelper helper_;
quic::test::MockAlarmFactory alarm_factory_;
MockQuicClientSessionBase session_;
raw_ptr<QuicChromiumClientStream> stream_;
quiche::HttpHeaderBlock headers_;
quiche::HttpHeaderBlock trailers_;
base::HistogramTester histogram_tester_;
};
INSTANTIATE_TEST_SUITE_P(Version,
QuicChromiumClientStreamTest,
::testing::ValuesIn(AllSupportedQuicVersions()),
::testing::PrintToStringParamName());
TEST_P(QuicChromiumClientStreamTest, Handle) {
testing::InSequence seq;
EXPECT_TRUE(handle_->IsOpen());
EXPECT_EQ(quic::test::GetNthClientInitiatedBidirectionalStreamId(
version_.transport_version, 0),
handle_->id());
EXPECT_EQ(quic::QUIC_NO_ERROR, handle_->connection_error());
EXPECT_EQ(quic::QUIC_STREAM_NO_ERROR, handle_->stream_error());
EXPECT_TRUE(handle_->IsFirstStream());
EXPECT_FALSE(handle_->IsDoneReading());
EXPECT_FALSE(handle_->fin_sent());
EXPECT_FALSE(handle_->fin_received());
EXPECT_EQ(0u, handle_->stream_bytes_read());
EXPECT_EQ(0u, handle_->stream_bytes_written());
EXPECT_EQ(0u, handle_->NumBytesConsumed());
InitializeHeaders();
quic::QuicStreamOffset offset = 0;
ProcessHeadersFull(headers_);
quic::QuicStreamFrame frame2(
quic::test::GetNthClientInitiatedBidirectionalStreamId(
version_.transport_version, 0),
true, offset, std::string_view());
stream_->OnStreamFrame(frame2);
EXPECT_TRUE(handle_->fin_received());
handle_->OnFinRead();
const char kData1[] = "hello world";
const size_t kDataLen = std::size(kData1);
// All data written.
std::string header = ConstructDataHeader(kDataLen);
EXPECT_CALL(session_,
WritevData(stream_->id(), _, _, _, quic::NOT_RETRANSMISSION, _))
.WillOnce(Return(quic::QuicConsumedData(header.length(), false)));
EXPECT_CALL(session_,
WritevData(stream_->id(), _, _, _, quic::NOT_RETRANSMISSION, _))
.WillOnce(Return(quic::QuicConsumedData(kDataLen, true)));
TestCompletionCallback callback;
EXPECT_EQ(OK, handle_->WriteStreamData(std::string_view(kData1, kDataLen),
true, callback.callback()));
EXPECT_FALSE(handle_->IsOpen());
EXPECT_EQ(quic::test::GetNthClientInitiatedBidirectionalStreamId(
version_.transport_version, 0),
handle_->id());
EXPECT_EQ(quic::QUIC_NO_ERROR, handle_->connection_error());
EXPECT_EQ(quic::QUIC_STREAM_NO_ERROR, handle_->stream_error());
EXPECT_TRUE(handle_->IsFirstStream());
EXPECT_TRUE(handle_->IsDoneReading());
EXPECT_TRUE(handle_->fin_sent());
EXPECT_TRUE(handle_->fin_received());
EXPECT_EQ(0u, handle_->stream_bytes_read());
EXPECT_EQ(header.length() + kDataLen, handle_->stream_bytes_written());
EXPECT_EQ(0u, handle_->NumBytesConsumed());
EXPECT_EQ(ERR_CONNECTION_CLOSED,
handle_->WriteStreamData(std::string_view(kData1, kDataLen), true,
callback.callback()));
std::vector<scoped_refptr<IOBuffer>> buffers = {
base::MakeRefCounted<IOBufferWithSize>(10)};
std::vector<int> lengths = {10};
EXPECT_EQ(
ERR_CONNECTION_CLOSED,
handle_->WritevStreamData(buffers, lengths, true, callback.callback()));
quiche::HttpHeaderBlock headers;
EXPECT_EQ(0, handle_->WriteHeaders(std::move(headers), true, nullptr));
}
TEST_P(QuicChromiumClientStreamTest, HandleAfterConnectionClose) {
quic::test::QuicConnectionPeer::TearDownLocalConnectionState(
session_.connection());
quic::QuicConnectionCloseFrame frame;
frame.quic_error_code = quic::QUIC_INVALID_FRAME_DATA;
stream_->OnConnectionClosed(frame, quic::ConnectionCloseSource::FROM_PEER);
EXPECT_FALSE(handle_->IsOpen());
EXPECT_EQ(quic::QUIC_INVALID_FRAME_DATA, handle_->connection_error());
}
TEST_P(QuicChromiumClientStreamTest, HandleAfterStreamReset) {
// Make a STOP_SENDING frame and pass it to QUIC. We need both a REST_STREAM
// and a STOP_SENDING to effect a closed stream.
quic::QuicStopSendingFrame stop_sending_frame(
quic::kInvalidControlFrameId,
quic::test::GetNthClientInitiatedBidirectionalStreamId(
version_.transport_version, 0),
quic::QUIC_STREAM_CANCELLED);
session_.OnStopSendingFrame(stop_sending_frame);
// Verify that the Handle still behaves correctly after the stream is reset.
quic::QuicRstStreamFrame rst(
quic::kInvalidControlFrameId,
quic::test::GetNthClientInitiatedBidirectionalStreamId(
version_.transport_version, 0),
quic::QUIC_STREAM_CANCELLED, 0);
stream_->OnStreamReset(rst);
EXPECT_FALSE(handle_->IsOpen());
EXPECT_EQ(quic::QUIC_STREAM_CANCELLED, handle_->stream_error());
}
TEST_P(QuicChromiumClientStreamTest, OnFinRead) {
InitializeHeaders();
quic::QuicStreamOffset offset = 0;
ProcessHeadersFull(headers_);
quic::QuicStreamFrame frame2(
quic::test::GetNthClientInitiatedBidirectionalStreamId(
version_.transport_version, 0),
true, offset, std::string_view());
stream_->OnStreamFrame(frame2);
}
TEST_P(QuicChromiumClientStreamTest, OnDataAvailable) {
InitializeHeaders();
ProcessHeadersFull(headers_);
const char data[] = "hello world!";
int data_len = strlen(data);
size_t offset = 0;
std::string header = ConstructDataHeader(data_len);
stream_->OnStreamFrame(quic::QuicStreamFrame(
quic::test::GetNthClientInitiatedBidirectionalStreamId(
version_.transport_version, 0),
/*fin=*/false,
/*offset=*/offset, header));
offset += header.length();
stream_->OnStreamFrame(quic::QuicStreamFrame(
quic::test::GetNthClientInitiatedBidirectionalStreamId(
version_.transport_version, 0),
/*fin=*/false,
/*offset=*/offset, data));
// Read the body and verify that it arrives correctly.
TestCompletionCallback callback;
auto buffer = base::MakeRefCounted<IOBufferWithSize>(2 * data_len);
EXPECT_EQ(data_len,
handle_->ReadBody(buffer.get(), 2 * data_len, callback.callback()));
EXPECT_EQ(std::string_view(data), std::string_view(buffer->data(), data_len));
}
TEST_P(QuicChromiumClientStreamTest, OnDataAvailableAfterReadBody) {
InitializeHeaders();
ProcessHeadersFull(headers_);
const char data[] = "hello world!";
int data_len = strlen(data);
// Start to read the body.
TestCompletionCallback callback;
auto buffer = base::MakeRefCounted<IOBufferWithSize>(2 * data_len);
EXPECT_EQ(ERR_IO_PENDING,
handle_->ReadBody(buffer.get(), 2 * data_len, callback.callback()));
size_t offset = 0;
std::string header = ConstructDataHeader(data_len);
stream_->OnStreamFrame(quic::QuicStreamFrame(
quic::test::GetNthClientInitiatedBidirectionalStreamId(
version_.transport_version, 0),
/*fin=*/false,
/*offset=*/offset, header));
offset += header.length();
stream_->OnStreamFrame(quic::QuicStreamFrame(
quic::test::GetNthClientInitiatedBidirectionalStreamId(
version_.transport_version, 0),
/*fin=*/false,
/*offset=*/offset, data));
EXPECT_EQ(data_len, callback.WaitForResult());
EXPECT_EQ(std::string_view(data), std::string_view(buffer->data(), data_len));
base::RunLoop().RunUntilIdle();
}
TEST_P(QuicChromiumClientStreamTest, ProcessHeadersWithError) {
quiche::HttpHeaderBlock bad_headers;
bad_headers["NAME"] = "...";
EXPECT_CALL(
*static_cast<quic::test::MockQuicConnection*>(session_.connection()),
OnStreamReset(quic::test::GetNthClientInitiatedBidirectionalStreamId(
version_.transport_version, 0),
quic::QUIC_BAD_APPLICATION_PAYLOAD));
auto headers = quic::test::AsHeaderList(bad_headers);
stream_->OnStreamHeaderList(false, headers.uncompressed_header_bytes(),
headers);
base::RunLoop().RunUntilIdle();
}
TEST_P(QuicChromiumClientStreamTest, OnDataAvailableWithError) {
InitializeHeaders();
auto headers = quic::test::AsHeaderList(headers_);
ProcessHeadersFull(headers_);
const char data[] = "hello world!";
int data_len = strlen(data);
// Start to read the body.
TestCompletionCallback callback;
auto buffer = base::MakeRefCounted<IOBufferWithSize>(2 * data_len);
EXPECT_EQ(
ERR_IO_PENDING,
handle_->ReadBody(
buffer.get(), 2 * data_len,
base::BindOnce(&QuicChromiumClientStreamTest::ResetStreamCallback,
base::Unretained(this), stream_)));
EXPECT_CALL(
*static_cast<quic::test::MockQuicConnection*>(session_.connection()),
OnStreamReset(quic::test::GetNthClientInitiatedBidirectionalStreamId(
version_.transport_version, 0),
quic::QUIC_STREAM_CANCELLED));
// Receive the data and close the stream during the callback.
size_t offset = 0;
std::string header = ConstructDataHeader(data_len);
stream_->OnStreamFrame(quic::QuicStreamFrame(
quic::test::GetNthClientInitiatedBidirectionalStreamId(
version_.transport_version, 0),
/*fin=*/false,
/*offset=*/offset, header));
offset += header.length();
stream_->OnStreamFrame(quic::QuicStreamFrame(
quic::test::GetNthClientInitiatedBidirectionalStreamId(
version_.transport_version, 0),
/*fin=*/false,
/*offset=*/0, data));
base::RunLoop().RunUntilIdle();
}
TEST_P(QuicChromiumClientStreamTest, OnError) {
// EXPECT_CALL(delegate_, OnError(ERR_INTERNET_DISCONNECTED)).Times(1);
stream_->OnError(ERR_INTERNET_DISCONNECTED);
stream_->OnError(ERR_INTERNET_DISCONNECTED);
}
TEST_P(QuicChromiumClientStreamTest, OnTrailers) {
InitializeHeaders();
ProcessHeadersFull(headers_);
const char data[] = "hello world!";
int data_len = strlen(data);
size_t offset = 0;
std::string header = ConstructDataHeader(data_len);
stream_->OnStreamFrame(quic::QuicStreamFrame(
quic::test::GetNthClientInitiatedBidirectionalStreamId(
version_.transport_version, 0),
/*fin=*/false,
/*offset=*/offset, header));
offset += header.length();
stream_->OnStreamFrame(quic::QuicStreamFrame(
quic::test::GetNthClientInitiatedBidirectionalStreamId(
version_.transport_version, 0),
/*fin=*/false,
/*offset=*/offset, data));
// Read the body and verify that it arrives correctly.
TestCompletionCallback callback;
auto buffer = base::MakeRefCounted<IOBufferWithSize>(2 * data_len);
EXPECT_EQ(data_len,
handle_->ReadBody(buffer.get(), 2 * data_len, callback.callback()));
EXPECT_EQ(std::string_view(data), std::string_view(buffer->data(), data_len));
quiche::HttpHeaderBlock trailers;
trailers["bar"] = "foo";
auto t = ProcessTrailers(trailers);
TestCompletionCallback trailers_callback;
EXPECT_EQ(
static_cast<int>(t.uncompressed_header_bytes()),
handle_->ReadTrailingHeaders(&trailers_, trailers_callback.callback()));
// Read the body and verify that it arrives correctly.
EXPECT_EQ(0,
handle_->ReadBody(buffer.get(), 2 * data_len, callback.callback()));
EXPECT_EQ(trailers, trailers_);
base::RunLoop().RunUntilIdle();
}
// Tests that trailers are marked as consumed only before delegate is to be
// immediately notified about trailers.
TEST_P(QuicChromiumClientStreamTest, MarkTrailersConsumedWhenNotifyDelegate) {
InitializeHeaders();
ProcessHeadersFull(headers_);
const char data[] = "hello world!";
int data_len = strlen(data);
size_t offset = 0;
std::string header = ConstructDataHeader(data_len);
stream_->OnStreamFrame(quic::QuicStreamFrame(
quic::test::GetNthClientInitiatedBidirectionalStreamId(
version_.transport_version, 0),
/*fin=*/false,
/*offset=*/offset, header));
offset += header.length();
stream_->OnStreamFrame(quic::QuicStreamFrame(
quic::test::GetNthClientInitiatedBidirectionalStreamId(
version_.transport_version, 0),
/*fin=*/false,
/*offset=*/offset, data));
// Read the body and verify that it arrives correctly.
TestCompletionCallback callback;
auto buffer = base::MakeRefCounted<IOBufferWithSize>(2 * data_len);
EXPECT_EQ(data_len,
handle_->ReadBody(buffer.get(), 2 * data_len, callback.callback()));
EXPECT_EQ(std::string_view(data), std::string_view(buffer->data(), data_len));
// Read again, and it will be pending.
EXPECT_THAT(
handle_->ReadBody(buffer.get(), 2 * data_len, callback.callback()),
IsError(ERR_IO_PENDING));
quiche::HttpHeaderBlock trailers;
trailers["bar"] = "foo";
quic::QuicHeaderList t = ProcessTrailers(trailers);
EXPECT_FALSE(stream_->IsDoneReading());
EXPECT_EQ(static_cast<int>(t.uncompressed_header_bytes()),
handle_->ReadTrailingHeaders(&trailers_, callback.callback()));
// Read the body and verify that it arrives correctly.
EXPECT_EQ(0, callback.WaitForResult());
// Make sure the stream is properly closed since trailers and data are all
// consumed.
EXPECT_TRUE(stream_->IsDoneReading());
EXPECT_EQ(trailers, trailers_);
base::RunLoop().RunUntilIdle();
}
// Test that if Read() is called after response body is read and after trailers
// are received but not yet delivered, Read() will return ERR_IO_PENDING instead
// of 0 (EOF).
TEST_P(QuicChromiumClientStreamTest, ReadAfterTrailersReceivedButNotDelivered) {
InitializeHeaders();
ProcessHeadersFull(headers_);
const char data[] = "hello world!";
int data_len = strlen(data);
size_t offset = 0;
std::string header = ConstructDataHeader(data_len);
stream_->OnStreamFrame(quic::QuicStreamFrame(
quic::test::GetNthClientInitiatedBidirectionalStreamId(
version_.transport_version, 0),
/*fin=*/false,
/*offset=*/offset, header));
offset += header.length();
stream_->OnStreamFrame(quic::QuicStreamFrame(
quic::test::GetNthClientInitiatedBidirectionalStreamId(
version_.transport_version, 0),
/*fin=*/false,
/*offset=*/offset, data));
// Read the body and verify that it arrives correctly.
TestCompletionCallback callback;
auto buffer = base::MakeRefCounted<IOBufferWithSize>(2 * data_len);
EXPECT_EQ(data_len,
handle_->ReadBody(buffer.get(), 2 * data_len, callback.callback()));
EXPECT_EQ(std::string_view(data), std::string_view(buffer->data(), data_len));
// Deliver trailers. Delegate notification is posted asynchronously.
quiche::HttpHeaderBlock trailers;
trailers["bar"] = "foo";
quic::QuicHeaderList t = ProcessTrailers(trailers);
EXPECT_FALSE(stream_->IsDoneReading());
// Read again, it return ERR_IO_PENDING.
EXPECT_THAT(
handle_->ReadBody(buffer.get(), 2 * data_len, callback.callback()),
IsError(ERR_IO_PENDING));
// Trailers are not delivered
EXPECT_FALSE(stream_->IsDoneReading());
TestCompletionCallback callback2;
EXPECT_EQ(static_cast<int>(t.uncompressed_header_bytes()),
handle_->ReadTrailingHeaders(&trailers_, callback2.callback()));
// Read the body and verify that it arrives correctly.
// OnDataAvailable() should follow right after and Read() will return 0.
EXPECT_EQ(0, callback.WaitForResult());
// Make sure the stream is properly closed since trailers and data are all
// consumed.
EXPECT_TRUE(stream_->IsDoneReading());
EXPECT_EQ(trailers, trailers_);
base::RunLoop().RunUntilIdle();
}
TEST_P(QuicChromiumClientStreamTest, WriteStreamData) {
testing::InSequence seq;
const char kData1[] = "hello world";
const size_t kDataLen = std::size(kData1);
// All data written.
std::string header = ConstructDataHeader(kDataLen);
EXPECT_CALL(session_,
WritevData(stream_->id(), _, _, _, quic::NOT_RETRANSMISSION, _))
.WillOnce(Return(quic::QuicConsumedData(header.length(), false)));
EXPECT_CALL(session_,
WritevData(stream_->id(), _, _, _, quic::NOT_RETRANSMISSION, _))
.WillOnce(Return(quic::QuicConsumedData(kDataLen, true)));
TestCompletionCallback callback;
EXPECT_EQ(OK, handle_->WriteStreamData(std::string_view(kData1, kDataLen),
true, callback.callback()));
}
TEST_P(QuicChromiumClientStreamTest, WriteStreamDataAsync) {
testing::InSequence seq;
const char kData1[] = "hello world";
const size_t kDataLen = std::size(kData1);
// No data written.
EXPECT_CALL(session_,
WritevData(stream_->id(), _, _, _, quic::NOT_RETRANSMISSION, _))
.WillOnce(Return(quic::QuicConsumedData(0, false)));
TestCompletionCallback callback;
EXPECT_EQ(ERR_IO_PENDING,
handle_->WriteStreamData(std::string_view(kData1, kDataLen), true,
callback.callback()));
ASSERT_FALSE(callback.have_result());
// All data written.
std::string header = ConstructDataHeader(kDataLen);
EXPECT_CALL(session_,
WritevData(stream_->id(), _, _, _, quic::NOT_RETRANSMISSION, _))
.WillOnce(Return(quic::QuicConsumedData(header.length(), false)));
EXPECT_CALL(session_,
WritevData(stream_->id(), _, _, _, quic::NOT_RETRANSMISSION, _))
.WillOnce(Return(quic::QuicConsumedData(kDataLen, true)));
stream_->OnCanWrite();
// Do 2 writes in version 99.
stream_->OnCanWrite();
ASSERT_TRUE(callback.have_result());
EXPECT_THAT(callback.WaitForResult(), IsOk());
}
TEST_P(QuicChromiumClientStreamTest, WritevStreamData) {
testing::InSequence seq;
scoped_refptr<StringIOBuffer> buf1 =
base::MakeRefCounted<StringIOBuffer>("hello world!");
scoped_refptr<StringIOBuffer> buf2 =
base::MakeRefCounted<StringIOBuffer>("Just a small payload");
// All data written.
std::string header = ConstructDataHeader(buf1->size());
EXPECT_CALL(session_,
WritevData(stream_->id(), _, _, _, quic::NOT_RETRANSMISSION, _))
.WillOnce(Return(quic::QuicConsumedData(header.length(), false)));
EXPECT_CALL(session_,
WritevData(stream_->id(), _, _, _, quic::NOT_RETRANSMISSION, _))
.WillOnce(Return(quic::QuicConsumedData(buf1->size(), false)));
header = ConstructDataHeader(buf2->size());
EXPECT_CALL(session_,
WritevData(stream_->id(), _, _, _, quic::NOT_RETRANSMISSION, _))
.WillOnce(Return(quic::QuicConsumedData(header.length(), false)));
EXPECT_CALL(session_,
WritevData(stream_->id(), _, _, _, quic::NOT_RETRANSMISSION, _))
.WillOnce(Return(quic::QuicConsumedData(buf2->size(), true)));
TestCompletionCallback callback;
EXPECT_EQ(
OK, handle_->WritevStreamData({buf1, buf2}, {buf1->size(), buf2->size()},
true, callback.callback()));
}
TEST_P(QuicChromiumClientStreamTest, WritevStreamDataAsync) {
testing::InSequence seq;
scoped_refptr<StringIOBuffer> buf1 =
base::MakeRefCounted<StringIOBuffer>("hello world!");
scoped_refptr<StringIOBuffer> buf2 =
base::MakeRefCounted<StringIOBuffer>("Just a small payload");
// Only a part of the data is written.
std::string header = ConstructDataHeader(buf1->size());
EXPECT_CALL(session_,
WritevData(stream_->id(), _, _, _, quic::NOT_RETRANSMISSION, _))
.WillOnce(Return(quic::QuicConsumedData(header.length(), false)));
EXPECT_CALL(session_,
WritevData(stream_->id(), _, _, _, quic::NOT_RETRANSMISSION, _))
// First piece of data is written.
.WillOnce(Return(quic::QuicConsumedData(buf1->size(), false)));
// Second piece of data is queued.
EXPECT_CALL(session_,
WritevData(stream_->id(), _, _, _, quic::NOT_RETRANSMISSION, _))
.WillOnce(Return(quic::QuicConsumedData(0, false)));
TestCompletionCallback callback;
EXPECT_EQ(ERR_IO_PENDING,
handle_->WritevStreamData({buf1.get(), buf2.get()},
{buf1->size(), buf2->size()}, true,
callback.callback()));
ASSERT_FALSE(callback.have_result());
// The second piece of data is written.
header = ConstructDataHeader(buf2->size());
EXPECT_CALL(session_,
WritevData(stream_->id(), _, _, _, quic::NOT_RETRANSMISSION, _))
.WillOnce(Return(quic::QuicConsumedData(header.length(), false)));
EXPECT_CALL(session_,
WritevData(stream_->id(), _, _, _, quic::NOT_RETRANSMISSION, _))
.WillOnce(Return(quic::QuicConsumedData(buf2->size(), true)));
stream_->OnCanWrite();
stream_->OnCanWrite();
ASSERT_TRUE(callback.have_result());
EXPECT_THAT(callback.WaitForResult(), IsOk());
}
TEST_P(QuicChromiumClientStreamTest, WriteConnectUdpPayload) {
testing::InSequence seq;
std::string packet = {1, 2, 3, 4, 5, 6};
quic::test::QuicSpdySessionPeer::SetHttpDatagramSupport(
&session_, quic::HttpDatagramSupport::kRfc);
EXPECT_CALL(
*static_cast<quic::test::MockQuicConnection*>(session_.connection()),
SendMessage(1, _, false))
.WillOnce(Return(quic::MESSAGE_STATUS_SUCCESS));
EXPECT_EQ(OK, handle_->WriteConnectUdpPayload(packet));
histogram_tester_.ExpectBucketCount(
QuicChromiumClientStream::kHttp3DatagramDroppedHistogram, false, 1);
// Packet is dropped if session does not have HTTP3 Datagram support.
quic::test::QuicSpdySessionPeer::SetHttpDatagramSupport(
&session_, quic::HttpDatagramSupport::kNone);
EXPECT_EQ(OK, handle_->WriteConnectUdpPayload(packet));
histogram_tester_.ExpectBucketCount(
QuicChromiumClientStream::kHttp3DatagramDroppedHistogram, true, 1);
histogram_tester_.ExpectTotalCount(
QuicChromiumClientStream::kHttp3DatagramDroppedHistogram, 2);
}
TEST_P(QuicChromiumClientStreamTest, HeadersBeforeHandle) {
// We don't use stream_ because we want an incoming server push
// stream.
quic::QuicStreamId stream_id = GetNthServerInitiatedUnidirectionalStreamId(0);
QuicChromiumClientStream* stream2 = new QuicChromiumClientStream(
stream_id, &session_, quic::QuicServerId(), quic::READ_UNIDIRECTIONAL,
NetLogWithSource(), TRAFFIC_ANNOTATION_FOR_TESTS);
session_.ActivateStream(base::WrapUnique(stream2));
InitializeHeaders();
// Receive the headers before the delegate is set.
quic::QuicHeaderList header_list = quic::test::AsHeaderList(headers_);
stream2->OnStreamHeaderList(true, header_list.uncompressed_header_bytes(),
header_list);
// Now set the delegate and verify that the headers are delivered.
handle2_ = stream2->CreateHandle();
TestCompletionCallback callback;
EXPECT_EQ(static_cast<int>(header_list.uncompressed_header_bytes()),
handle2_->ReadInitialHeaders(&headers_, callback.callback()));
EXPECT_EQ(headers_, headers_);
}
TEST_P(QuicChromiumClientStreamTest, HeadersAndDataBeforeHandle) {
// We don't use stream_ because we want an incoming server push
// stream.
quic::QuicStreamId stream_id = GetNthServerInitiatedUnidirectionalStreamId(0);
QuicChromiumClientStream* stream2 = new QuicChromiumClientStream(
stream_id, &session_, quic::QuicServerId(), quic::READ_UNIDIRECTIONAL,
NetLogWithSource(), TRAFFIC_ANNOTATION_FOR_TESTS);
session_.ActivateStream(base::WrapUnique(stream2));
InitializeHeaders();
// Receive the headers and data before the delegate is set.
quic::QuicHeaderList header_list = quic::test::AsHeaderList(headers_);
stream2->OnStreamHeaderList(false, header_list.uncompressed_header_bytes(),
header_list);
const char data[] = "hello world!";
size_t offset = 0;
std::string header = ConstructDataHeader(strlen(data));
stream2->OnStreamFrame(quic::QuicStreamFrame(stream_id,
/*fin=*/false,
/*offset=*/offset, header));
offset += header.length();
stream2->OnStreamFrame(quic::QuicStreamFrame(stream_id, /*fin=*/false,
/*offset=*/offset, data));
// Now set the delegate and verify that the headers are delivered, but
// not the data, which needs to be read explicitly.
handle2_ = stream2->CreateHandle();
TestCompletionCallback callback;
EXPECT_EQ(static_cast<int>(header_list.uncompressed_header_bytes()),
handle2_->ReadInitialHeaders(&headers_, callback.callback()));
EXPECT_EQ(headers_, headers_);
base::RunLoop().RunUntilIdle();
// Now explicitly read the data.
int data_len = std::size(data) - 1;
auto buffer = base::MakeRefCounted<IOBufferWithSize>(data_len + 1);
ASSERT_EQ(data_len, stream2->Read(buffer.get(), data_len + 1));
EXPECT_EQ(std::string_view(data), std::string_view(buffer->data(), data_len));
}
// Regression test for https://crbug.com/1043531.
TEST_P(QuicChromiumClientStreamTest, ResetOnEmptyResponseHeaders) {
const quiche::HttpHeaderBlock empty_response_headers;
ProcessHeaders(empty_response_headers);
// Empty headers are allowed by QuicSpdyStream,
// but an error is generated by QuicChromiumClientStream.
int rv = handle_->ReadInitialHeaders(&headers_, CompletionOnceCallback());
EXPECT_THAT(rv, IsError(net::ERR_QUIC_PROTOCOL_ERROR));
}
// Tests that the stream resets when it receives an invalid ":status"
// pseudo-header value.
TEST_P(QuicChromiumClientStreamTest, InvalidStatus) {
quiche::HttpHeaderBlock headers = CreateResponseHeaders("xxx");
EXPECT_CALL(
*static_cast<quic::test::MockQuicConnection*>(session_.connection()),
OnStreamReset(quic::test::GetNthClientInitiatedBidirectionalStreamId(
version_.transport_version, 0),
quic::QUIC_BAD_APPLICATION_PAYLOAD));
ProcessHeaders(headers);
EXPECT_FALSE(handle_->IsOpen());
EXPECT_EQ(quic::QUIC_BAD_APPLICATION_PAYLOAD, handle_->stream_error());
}
// Tests that the stream resets when it receives 101 Switching Protocols.
TEST_P(QuicChromiumClientStreamTest, SwitchingProtocolsResponse) {
quiche::HttpHeaderBlock informational_headers = CreateResponseHeaders("101");
EXPECT_CALL(
*static_cast<quic::test::MockQuicConnection*>(session_.connection()),
OnStreamReset(quic::test::GetNthClientInitiatedBidirectionalStreamId(
version_.transport_version, 0),
quic::QUIC_BAD_APPLICATION_PAYLOAD));
ProcessHeaders(informational_headers);
EXPECT_FALSE(handle_->IsOpen());
EXPECT_EQ(quic::QUIC_BAD_APPLICATION_PAYLOAD, handle_->stream_error());
}
// Tests that the stream ignores 100 Continue response.
TEST_P(QuicChromiumClientStreamTest, ContinueResponse) {
quiche::HttpHeaderBlock informational_headers = CreateResponseHeaders("100");
// This informational headers should be ignored.
ProcessHeaders(informational_headers);
// Pass the initial headers.
InitializeHeaders();
quic::QuicHeaderList header_list = ProcessHeaders(headers_);
// Read the initial headers.
quiche::HttpHeaderBlock response_headers;
// Pass DoNothing because the initial headers is already available and the
// callback won't be called.
EXPECT_EQ(static_cast<int>(header_list.uncompressed_header_bytes()),
handle_->ReadInitialHeaders(&response_headers, base::DoNothing()));
base::RunLoop().RunUntilIdle();
EXPECT_EQ(response_headers, headers_);
}
// Tests that the stream handles 103 Early Hints responses.
TEST_P(QuicChromiumClientStreamTest, EarlyHintsResponses) {
// Pass Two Early Hints responses to the stream.
quiche::HttpHeaderBlock hints1_headers = CreateResponseHeaders("103");
hints1_headers["x-header1"] = "foo";
quic::QuicHeaderList header_list = ProcessHeaders(hints1_headers);
const size_t hints1_bytes = header_list.uncompressed_header_bytes();
quiche::HttpHeaderBlock hints2_headers = CreateResponseHeaders("103");
hints2_headers["x-header2"] = "foobarbaz";
header_list = ProcessHeaders(hints2_headers);
const size_t hints2_bytes = header_list.uncompressed_header_bytes();
// Pass the initial headers to the stream.
InitializeHeaders();
header_list = ProcessHeaders(headers_);
const size_t initial_headers_bytes = header_list.uncompressed_header_bytes();
quiche::HttpHeaderBlock headers;
// Read headers. The first two reads should return Early Hints.
EXPECT_EQ(static_cast<int>(hints1_bytes),
handle_->ReadInitialHeaders(&headers, base::DoNothing()));
base::RunLoop().RunUntilIdle();
EXPECT_EQ(headers, hints1_headers);
base::TimeTicks first_early_hints_time = handle_->first_early_hints_time();
EXPECT_FALSE(first_early_hints_time.is_null());
EXPECT_EQ(static_cast<int>(hints2_bytes),
handle_->ReadInitialHeaders(&headers, base::DoNothing()));
base::RunLoop().RunUntilIdle();
EXPECT_EQ(headers, hints2_headers);
EXPECT_EQ(first_early_hints_time, handle_->first_early_hints_time());
// The third read should return the initial headers.
EXPECT_EQ(static_cast<int>(initial_headers_bytes),
handle_->ReadInitialHeaders(&headers, base::DoNothing()));
base::RunLoop().RunUntilIdle();
EXPECT_EQ(headers, headers_);
}
// Tests that pending reads for Early Hints work.
TEST_P(QuicChromiumClientStreamTest, EarlyHintsAsync) {
quiche::HttpHeaderBlock headers;
TestCompletionCallback hints_callback;
// Try to read headers. The read should be blocked.
EXPECT_EQ(ERR_IO_PENDING,
handle_->ReadInitialHeaders(&headers, hints_callback.callback()));
// Pass an Early Hints and the initial headers.
quiche::HttpHeaderBlock hints_headers = CreateResponseHeaders("103");
hints_headers["x-header1"] = "foo";
quic::QuicHeaderList header_list = ProcessHeaders(hints_headers);
const size_t hints_bytes = header_list.uncompressed_header_bytes();
InitializeHeaders();
header_list = ProcessHeaders(headers_);
const size_t initial_headers_bytes = header_list.uncompressed_header_bytes();
// Wait for the pending headers read. The result should be the Early Hints.
const int hints_result = hints_callback.WaitForResult();
EXPECT_EQ(hints_result, static_cast<int>(hints_bytes));
EXPECT_EQ(headers, hints_headers);
// Second read should return the initial headers.
EXPECT_EQ(static_cast<int>(initial_headers_bytes),
handle_->ReadInitialHeaders(&headers, base::DoNothing()));
EXPECT_EQ(headers, headers_);
}
// Tests that Early Hints after the initial headers is treated as an error.
TEST_P(QuicChromiumClientStreamTest, EarlyHintsAfterInitialHeaders) {
InitializeHeaders();
ProcessHeadersFull(headers_);
// Early Hints after the initial headers are treated as trailers, and it
// should result in an error because trailers must not contain pseudo-headers
// like ":status".
EXPECT_CALL(
*static_cast<quic::test::MockQuicConnection*>(session_.connection()),
CloseConnection(
quic::QUIC_INVALID_HEADERS_STREAM_DATA, _,
quic::ConnectionCloseBehavior::SEND_CONNECTION_CLOSE_PACKET));
quiche::HttpHeaderBlock hints_headers;
hints_headers[":status"] = "103";
ProcessHeaders(hints_headers);
base::RunLoop().RunUntilIdle();
}
// Similar to the above test but don't read the initial headers.
TEST_P(QuicChromiumClientStreamTest, EarlyHintsAfterInitialHeadersWithoutRead) {
InitializeHeaders();
ProcessHeaders(headers_);
// Early Hints after the initial headers are treated as trailers, and it
// should result in an error because trailers must not contain pseudo-headers
// like ":status".
EXPECT_CALL(
*static_cast<quic::test::MockQuicConnection*>(session_.connection()),
CloseConnection(
quic::QUIC_INVALID_HEADERS_STREAM_DATA, _,
quic::ConnectionCloseBehavior::SEND_CONNECTION_CLOSE_PACKET));
quiche::HttpHeaderBlock hints_headers;
hints_headers[":status"] = "103";
ProcessHeaders(hints_headers);
base::RunLoop().RunUntilIdle();
}
// Regression test for https://crbug.com/1248970. Write an Early Hints headers,
// an initial response headers and trailers in succession without reading in
// the middle of writings.
TEST_P(QuicChromiumClientStreamTest, TrailersAfterEarlyHintsWithoutRead) {
// Process an Early Hints response headers on the stream.
quiche::HttpHeaderBlock hints_headers = CreateResponseHeaders("103");
quic::QuicHeaderList hints_header_list = ProcessHeaders(hints_headers);
// Process an initial response headers on the stream.
InitializeHeaders();
quic::QuicHeaderList header_list = ProcessHeaders(headers_);
// Process a trailer headers on the stream. This should not hit any DCHECK.
quiche::HttpHeaderBlock trailers;
trailers["bar"] = "foo";
quic::QuicHeaderList trailer_header_list = ProcessTrailers(trailers);
base::RunLoop().RunUntilIdle();
// Read the Early Hints response from the handle.
{
quiche::HttpHeaderBlock headers;
TestCompletionCallback callback;
EXPECT_EQ(static_cast<int>(hints_header_list.uncompressed_header_bytes()),
handle_->ReadInitialHeaders(&headers, callback.callback()));
EXPECT_EQ(headers, hints_headers);
}
// Read the initial headers from the handle.
{
quiche::HttpHeaderBlock headers;
TestCompletionCallback callback;
EXPECT_EQ(static_cast<int>(header_list.uncompressed_header_bytes()),
handle_->ReadInitialHeaders(&headers, callback.callback()));
EXPECT_EQ(headers, headers_);
}
// Read trailers from the handle.
{
quiche::HttpHeaderBlock headers;
TestCompletionCallback callback;
EXPECT_EQ(static_cast<int>(trailer_header_list.uncompressed_header_bytes()),
handle_->ReadTrailingHeaders(&headers, callback.callback()));
EXPECT_EQ(headers, trailers);
}
}
} // namespace
} // namespace net::test
|