QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #include "net/third_party/quiche/src/quic/core/quic_stream.h" |
| 6 | |
| 7 | #include <memory> |
vasilvv | 872e7a3 | 2019-03-12 16:42:44 -0700 | [diff] [blame] | 8 | #include <string> |
bnc | 463f235 | 2019-10-10 04:49:34 -0700 | [diff] [blame] | 9 | #include <utility> |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 10 | |
renjietang | 15afba3 | 2019-10-23 14:32:35 -0700 | [diff] [blame] | 11 | #include "net/third_party/quiche/src/quic/core/frames/quic_rst_stream_frame.h" |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 12 | #include "net/third_party/quiche/src/quic/core/quic_connection.h" |
renjietang | 39979d3 | 2019-09-13 10:02:13 -0700 | [diff] [blame] | 13 | #include "net/third_party/quiche/src/quic/core/quic_constants.h" |
renjietang | 15afba3 | 2019-10-23 14:32:35 -0700 | [diff] [blame] | 14 | #include "net/third_party/quiche/src/quic/core/quic_error_codes.h" |
renjietang | 39979d3 | 2019-09-13 10:02:13 -0700 | [diff] [blame] | 15 | #include "net/third_party/quiche/src/quic/core/quic_types.h" |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 16 | #include "net/third_party/quiche/src/quic/core/quic_utils.h" |
| 17 | #include "net/third_party/quiche/src/quic/core/quic_versions.h" |
| 18 | #include "net/third_party/quiche/src/quic/core/quic_write_blocked_list.h" |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 19 | #include "net/third_party/quiche/src/quic/platform/api/quic_expect_bug.h" |
| 20 | #include "net/third_party/quiche/src/quic/platform/api/quic_flags.h" |
| 21 | #include "net/third_party/quiche/src/quic/platform/api/quic_logging.h" |
| 22 | #include "net/third_party/quiche/src/quic/platform/api/quic_mem_slice_storage.h" |
| 23 | #include "net/third_party/quiche/src/quic/platform/api/quic_ptr_util.h" |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 24 | #include "net/third_party/quiche/src/quic/platform/api/quic_test.h" |
| 25 | #include "net/third_party/quiche/src/quic/platform/api/quic_test_mem_slice_vector.h" |
| 26 | #include "net/third_party/quiche/src/quic/test_tools/quic_config_peer.h" |
| 27 | #include "net/third_party/quiche/src/quic/test_tools/quic_connection_peer.h" |
| 28 | #include "net/third_party/quiche/src/quic/test_tools/quic_flow_controller_peer.h" |
| 29 | #include "net/third_party/quiche/src/quic/test_tools/quic_session_peer.h" |
| 30 | #include "net/third_party/quiche/src/quic/test_tools/quic_stream_peer.h" |
| 31 | #include "net/third_party/quiche/src/quic/test_tools/quic_stream_sequencer_peer.h" |
| 32 | #include "net/third_party/quiche/src/quic/test_tools/quic_test_utils.h" |
bnc | 4e9283d | 2019-12-17 07:08:57 -0800 | [diff] [blame] | 33 | #include "net/third_party/quiche/src/common/platform/api/quiche_arraysize.h" |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 34 | #include "net/third_party/quiche/src/common/platform/api/quiche_optional.h" |
dmcardle | cf0bfcf | 2019-12-13 08:08:21 -0800 | [diff] [blame] | 35 | #include "net/third_party/quiche/src/common/platform/api/quiche_string_piece.h" |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 36 | |
| 37 | using testing::_; |
| 38 | using testing::AnyNumber; |
| 39 | using testing::AtLeast; |
| 40 | using testing::InSequence; |
| 41 | using testing::Invoke; |
| 42 | using testing::InvokeWithoutArgs; |
| 43 | using testing::Return; |
| 44 | using testing::StrictMock; |
| 45 | |
| 46 | namespace quic { |
| 47 | namespace test { |
| 48 | namespace { |
| 49 | |
| 50 | const char kData1[] = "FooAndBar"; |
| 51 | const char kData2[] = "EepAndBaz"; |
dschinazi | f1e7b42 | 2020-04-30 12:21:28 -0700 | [diff] [blame^] | 52 | const QuicByteCount kDataLen = 9; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 53 | |
| 54 | class TestStream : public QuicStream { |
| 55 | public: |
| 56 | TestStream(QuicStreamId id, QuicSession* session, StreamType type) |
renjietang | b38e635 | 2019-10-24 09:38:20 -0700 | [diff] [blame] | 57 | : QuicStream(id, session, /*is_static=*/false, type) { |
| 58 | sequencer()->set_level_triggered(true); |
| 59 | } |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 60 | |
renjietang | baea59c | 2019-05-29 15:08:14 -0700 | [diff] [blame] | 61 | TestStream(PendingStream* pending, StreamType type, bool is_static) |
| 62 | : QuicStream(pending, type, is_static) {} |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 63 | |
wub | 713afae | 2020-04-27 07:48:31 -0700 | [diff] [blame] | 64 | MOCK_METHOD(void, OnDataAvailable, (), (override)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 65 | |
wub | 713afae | 2020-04-27 07:48:31 -0700 | [diff] [blame] | 66 | MOCK_METHOD(void, OnCanWriteNewData, (), (override)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 67 | |
| 68 | using QuicStream::CanWriteNewData; |
| 69 | using QuicStream::CanWriteNewDataAfterData; |
| 70 | using QuicStream::CloseWriteSide; |
| 71 | using QuicStream::fin_buffered; |
| 72 | using QuicStream::OnClose; |
| 73 | using QuicStream::WriteMemSlices; |
| 74 | using QuicStream::WriteOrBufferData; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 75 | |
| 76 | private: |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 77 | std::string data_; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 78 | }; |
| 79 | |
renjietang | 9bf2564 | 2019-10-10 10:21:15 -0700 | [diff] [blame] | 80 | class QuicStreamTest : public QuicTestWithParam<ParsedQuicVersion> { |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 81 | public: |
renjietang | 9bf2564 | 2019-10-10 10:21:15 -0700 | [diff] [blame] | 82 | QuicStreamTest() |
renjietang | 39979d3 | 2019-09-13 10:02:13 -0700 | [diff] [blame] | 83 | : zero_(QuicTime::Delta::Zero()), |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 84 | supported_versions_(AllSupportedVersions()) {} |
| 85 | |
| 86 | void Initialize() { |
| 87 | ParsedQuicVersionVector version_vector; |
| 88 | version_vector.push_back(GetParam()); |
| 89 | connection_ = new StrictMock<MockQuicConnection>( |
| 90 | &helper_, &alarm_factory_, Perspective::IS_SERVER, version_vector); |
| 91 | connection_->AdvanceTime(QuicTime::Delta::FromSeconds(1)); |
vasilvv | 0fc587f | 2019-09-06 13:33:08 -0700 | [diff] [blame] | 92 | session_ = std::make_unique<StrictMock<MockQuicSession>>(connection_); |
renjietang | 39979d3 | 2019-09-13 10:02:13 -0700 | [diff] [blame] | 93 | session_->Initialize(); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 94 | |
renjietang | 39979d3 | 2019-09-13 10:02:13 -0700 | [diff] [blame] | 95 | QuicConfigPeer::SetReceivedInitialSessionFlowControlWindow( |
| 96 | session_->config(), kMinimumFlowControlSendWindow); |
dschinazi | 18cdf13 | 2019-10-09 16:08:18 -0700 | [diff] [blame] | 97 | QuicConfigPeer::SetReceivedInitialMaxStreamDataBytesUnidirectional( |
| 98 | session_->config(), kMinimumFlowControlSendWindow); |
| 99 | QuicConfigPeer::SetReceivedInitialMaxStreamDataBytesIncomingBidirectional( |
| 100 | session_->config(), kMinimumFlowControlSendWindow); |
| 101 | QuicConfigPeer::SetReceivedInitialMaxStreamDataBytesOutgoingBidirectional( |
| 102 | session_->config(), kMinimumFlowControlSendWindow); |
renjietang | e6d9467 | 2020-01-07 10:30:10 -0800 | [diff] [blame] | 103 | QuicConfigPeer::SetReceivedMaxUnidirectionalStreams(session_->config(), 10); |
renjietang | 39979d3 | 2019-09-13 10:02:13 -0700 | [diff] [blame] | 104 | session_->OnConfigNegotiated(); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 105 | |
renjietang | b38e635 | 2019-10-24 09:38:20 -0700 | [diff] [blame] | 106 | stream_ = new StrictMock<TestStream>(kTestStreamId, session_.get(), |
| 107 | BIDIRECTIONAL); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 108 | EXPECT_NE(nullptr, stream_); |
| 109 | // session_ now owns stream_. |
| 110 | session_->ActivateStream(QuicWrapUnique(stream_)); |
| 111 | // Ignore resetting when session_ is terminated. |
| 112 | EXPECT_CALL(*session_, SendRstStream(kTestStreamId, _, _)) |
| 113 | .Times(AnyNumber()); |
| 114 | write_blocked_list_ = |
| 115 | QuicSessionPeer::GetWriteBlockedStreams(session_.get()); |
| 116 | } |
| 117 | |
bnc | c7d9e0c | 2019-04-16 10:22:15 -0700 | [diff] [blame] | 118 | bool fin_sent() { return stream_->fin_sent(); } |
| 119 | bool rst_sent() { return stream_->rst_sent(); } |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 120 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 121 | bool HasWriteBlockedStreams() { |
| 122 | return write_blocked_list_->HasWriteBlockedSpecialStream() || |
| 123 | write_blocked_list_->HasWriteBlockedDataStreams(); |
| 124 | } |
| 125 | |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 126 | QuicConsumedData CloseStreamOnWriteError( |
| 127 | QuicStreamId id, |
dschinazi | f1e7b42 | 2020-04-30 12:21:28 -0700 | [diff] [blame^] | 128 | QuicByteCount /*write_length*/, |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 129 | QuicStreamOffset /*offset*/, |
| 130 | StreamSendingState /*state*/, |
renjietang | 4d992bf | 2020-03-03 13:01:55 -0800 | [diff] [blame] | 131 | TransmissionType /*type*/, |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 132 | quiche::QuicheOptional<EncryptionLevel> /*level*/) { |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 133 | session_->CloseStream(id); |
| 134 | return QuicConsumedData(1, false); |
| 135 | } |
| 136 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 137 | bool ClearResetStreamFrame(const QuicFrame& frame) { |
| 138 | EXPECT_EQ(RST_STREAM_FRAME, frame.type); |
| 139 | DeleteFrame(&const_cast<QuicFrame&>(frame)); |
| 140 | return true; |
| 141 | } |
| 142 | |
| 143 | bool ClearStopSendingFrame(const QuicFrame& frame) { |
| 144 | EXPECT_EQ(STOP_SENDING_FRAME, frame.type); |
| 145 | DeleteFrame(&const_cast<QuicFrame&>(frame)); |
| 146 | return true; |
| 147 | } |
| 148 | |
| 149 | protected: |
| 150 | MockQuicConnectionHelper helper_; |
| 151 | MockAlarmFactory alarm_factory_; |
| 152 | MockQuicConnection* connection_; |
| 153 | std::unique_ptr<MockQuicSession> session_; |
renjietang | b38e635 | 2019-10-24 09:38:20 -0700 | [diff] [blame] | 154 | StrictMock<TestStream>* stream_; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 155 | QuicWriteBlockedList* write_blocked_list_; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 156 | QuicTime::Delta zero_; |
| 157 | ParsedQuicVersionVector supported_versions_; |
renjietang | 940a532 | 2019-08-02 16:17:51 -0700 | [diff] [blame] | 158 | QuicStreamId kTestStreamId = |
| 159 | GetNthClientInitiatedBidirectionalStreamId(GetParam().transport_version, |
| 160 | 1); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 161 | }; |
| 162 | |
renjietang | 9bf2564 | 2019-10-10 10:21:15 -0700 | [diff] [blame] | 163 | INSTANTIATE_TEST_SUITE_P(QuicStreamTests, |
| 164 | QuicStreamTest, |
dschinazi | 142051a | 2019-09-18 18:17:29 -0700 | [diff] [blame] | 165 | ::testing::ValuesIn(AllSupportedVersions()), |
| 166 | ::testing::PrintToStringParamName()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 167 | |
renjietang | 3544899 | 2019-05-08 17:08:57 -0700 | [diff] [blame] | 168 | TEST_P(QuicStreamTest, PendingStreamStaticness) { |
| 169 | Initialize(); |
| 170 | |
| 171 | PendingStream pending(kTestStreamId + 2, session_.get()); |
renjietang | baea59c | 2019-05-29 15:08:14 -0700 | [diff] [blame] | 172 | TestStream stream(&pending, StreamType::BIDIRECTIONAL, false); |
renjietang | 3544899 | 2019-05-08 17:08:57 -0700 | [diff] [blame] | 173 | EXPECT_FALSE(stream.is_static()); |
| 174 | |
| 175 | PendingStream pending2(kTestStreamId + 3, session_.get()); |
renjietang | baea59c | 2019-05-29 15:08:14 -0700 | [diff] [blame] | 176 | TestStream stream2(&pending2, StreamType::BIDIRECTIONAL, true); |
renjietang | 3544899 | 2019-05-08 17:08:57 -0700 | [diff] [blame] | 177 | EXPECT_TRUE(stream2.is_static()); |
| 178 | } |
| 179 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 180 | TEST_P(QuicStreamTest, PendingStreamTooMuchData) { |
| 181 | Initialize(); |
| 182 | |
| 183 | PendingStream pending(kTestStreamId + 2, session_.get()); |
| 184 | // Receive a stream frame that violates flow control: the byte offset is |
| 185 | // higher than the receive window offset. |
| 186 | QuicStreamFrame frame(kTestStreamId + 2, false, |
renjietang | b38e635 | 2019-10-24 09:38:20 -0700 | [diff] [blame] | 187 | kInitialSessionFlowControlWindowForTest + 1, "."); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 188 | |
| 189 | // Stream should not accept the frame, and the connection should be closed. |
| 190 | EXPECT_CALL(*connection_, |
| 191 | CloseConnection(QUIC_FLOW_CONTROL_RECEIVED_TOO_MUCH_DATA, _, _)); |
| 192 | pending.OnStreamFrame(frame); |
| 193 | } |
| 194 | |
| 195 | TEST_P(QuicStreamTest, PendingStreamTooMuchDataInRstStream) { |
| 196 | Initialize(); |
| 197 | |
| 198 | PendingStream pending(kTestStreamId + 2, session_.get()); |
| 199 | // Receive a rst stream frame that violates flow control: the byte offset is |
| 200 | // higher than the receive window offset. |
| 201 | QuicRstStreamFrame frame(kInvalidControlFrameId, kTestStreamId + 2, |
| 202 | QUIC_STREAM_CANCELLED, |
| 203 | kInitialSessionFlowControlWindowForTest + 1); |
| 204 | |
| 205 | // Pending stream should not accept the frame, and the connection should be |
| 206 | // closed. |
| 207 | EXPECT_CALL(*connection_, |
| 208 | CloseConnection(QUIC_FLOW_CONTROL_RECEIVED_TOO_MUCH_DATA, _, _)); |
| 209 | pending.OnRstStreamFrame(frame); |
| 210 | } |
| 211 | |
| 212 | TEST_P(QuicStreamTest, PendingStreamRstStream) { |
| 213 | Initialize(); |
| 214 | |
| 215 | PendingStream pending(kTestStreamId + 2, session_.get()); |
| 216 | QuicStreamOffset final_byte_offset = 7; |
| 217 | QuicRstStreamFrame frame(kInvalidControlFrameId, kTestStreamId + 2, |
| 218 | QUIC_STREAM_CANCELLED, final_byte_offset); |
| 219 | |
| 220 | // Pending stream should accept the frame and not close the connection. |
| 221 | EXPECT_CALL(*connection_, CloseConnection(_, _, _)).Times(0); |
| 222 | pending.OnRstStreamFrame(frame); |
| 223 | } |
| 224 | |
| 225 | TEST_P(QuicStreamTest, FromPendingStream) { |
| 226 | Initialize(); |
| 227 | |
| 228 | PendingStream pending(kTestStreamId + 2, session_.get()); |
| 229 | |
renjietang | b38e635 | 2019-10-24 09:38:20 -0700 | [diff] [blame] | 230 | QuicStreamFrame frame(kTestStreamId + 2, false, 2, "."); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 231 | pending.OnStreamFrame(frame); |
| 232 | pending.OnStreamFrame(frame); |
renjietang | b38e635 | 2019-10-24 09:38:20 -0700 | [diff] [blame] | 233 | QuicStreamFrame frame2(kTestStreamId + 2, true, 3, "."); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 234 | pending.OnStreamFrame(frame2); |
| 235 | |
renjietang | baea59c | 2019-05-29 15:08:14 -0700 | [diff] [blame] | 236 | TestStream stream(&pending, StreamType::READ_UNIDIRECTIONAL, false); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 237 | EXPECT_EQ(3, stream.num_frames_received()); |
| 238 | EXPECT_EQ(3u, stream.stream_bytes_read()); |
| 239 | EXPECT_EQ(1, stream.num_duplicate_frames_received()); |
| 240 | EXPECT_EQ(true, stream.fin_received()); |
| 241 | EXPECT_EQ(frame2.offset + 1, |
| 242 | stream.flow_controller()->highest_received_byte_offset()); |
| 243 | EXPECT_EQ(frame2.offset + 1, |
| 244 | session_->flow_controller()->highest_received_byte_offset()); |
| 245 | } |
| 246 | |
| 247 | TEST_P(QuicStreamTest, FromPendingStreamThenData) { |
| 248 | Initialize(); |
| 249 | |
| 250 | PendingStream pending(kTestStreamId + 2, session_.get()); |
| 251 | |
renjietang | b38e635 | 2019-10-24 09:38:20 -0700 | [diff] [blame] | 252 | QuicStreamFrame frame(kTestStreamId + 2, false, 2, "."); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 253 | pending.OnStreamFrame(frame); |
| 254 | |
renjietang | baea59c | 2019-05-29 15:08:14 -0700 | [diff] [blame] | 255 | auto stream = |
| 256 | new TestStream(&pending, StreamType::READ_UNIDIRECTIONAL, false); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 257 | session_->ActivateStream(QuicWrapUnique(stream)); |
| 258 | |
renjietang | b38e635 | 2019-10-24 09:38:20 -0700 | [diff] [blame] | 259 | QuicStreamFrame frame2(kTestStreamId + 2, true, 3, "."); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 260 | stream->OnStreamFrame(frame2); |
| 261 | |
| 262 | EXPECT_EQ(2, stream->num_frames_received()); |
| 263 | EXPECT_EQ(2u, stream->stream_bytes_read()); |
| 264 | EXPECT_EQ(true, stream->fin_received()); |
| 265 | EXPECT_EQ(frame2.offset + 1, |
| 266 | stream->flow_controller()->highest_received_byte_offset()); |
| 267 | EXPECT_EQ(frame2.offset + 1, |
| 268 | session_->flow_controller()->highest_received_byte_offset()); |
| 269 | } |
| 270 | |
| 271 | TEST_P(QuicStreamTest, WriteAllData) { |
| 272 | Initialize(); |
| 273 | |
dschinazi | f1e7b42 | 2020-04-30 12:21:28 -0700 | [diff] [blame^] | 274 | QuicByteCount length = |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 275 | 1 + QuicPacketCreator::StreamFramePacketOverhead( |
| 276 | connection_->transport_version(), PACKET_8BYTE_CONNECTION_ID, |
| 277 | PACKET_0BYTE_CONNECTION_ID, !kIncludeVersion, |
| 278 | !kIncludeDiversificationNonce, PACKET_4BYTE_PACKET_NUMBER, |
| 279 | VARIABLE_LENGTH_INTEGER_LENGTH_0, |
| 280 | VARIABLE_LENGTH_INTEGER_LENGTH_0, 0u); |
| 281 | connection_->SetMaxPacketLength(length); |
| 282 | |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 283 | EXPECT_CALL(*session_, WritevData(kTestStreamId, _, _, _, _, _)) |
renjietang | 7c23917 | 2020-02-21 13:50:39 -0800 | [diff] [blame] | 284 | .WillOnce(Invoke(session_.get(), &MockQuicSession::ConsumeData)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 285 | stream_->WriteOrBufferData(kData1, false, nullptr); |
| 286 | EXPECT_FALSE(HasWriteBlockedStreams()); |
| 287 | } |
| 288 | |
| 289 | TEST_P(QuicStreamTest, NoBlockingIfNoDataOrFin) { |
| 290 | Initialize(); |
| 291 | |
| 292 | // Write no data and no fin. If we consume nothing we should not be write |
| 293 | // blocked. |
dmcardle | cf0bfcf | 2019-12-13 08:08:21 -0800 | [diff] [blame] | 294 | EXPECT_QUIC_BUG( |
| 295 | stream_->WriteOrBufferData(quiche::QuicheStringPiece(), false, nullptr), |
| 296 | ""); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 297 | EXPECT_FALSE(HasWriteBlockedStreams()); |
| 298 | } |
| 299 | |
| 300 | TEST_P(QuicStreamTest, BlockIfOnlySomeDataConsumed) { |
| 301 | Initialize(); |
| 302 | |
| 303 | // Write some data and no fin. If we consume some but not all of the data, |
| 304 | // we should be write blocked a not all the data was consumed. |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 305 | EXPECT_CALL(*session_, WritevData(kTestStreamId, _, _, _, _, _)) |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 306 | .WillOnce(InvokeWithoutArgs([this]() { |
renjietang | 4d992bf | 2020-03-03 13:01:55 -0800 | [diff] [blame] | 307 | return session_->ConsumeData(stream_->id(), 1u, 0u, NO_FIN, |
| 308 | NOT_RETRANSMISSION, QuicheNullOpt); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 309 | })); |
dmcardle | cf0bfcf | 2019-12-13 08:08:21 -0800 | [diff] [blame] | 310 | stream_->WriteOrBufferData(quiche::QuicheStringPiece(kData1, 2), false, |
| 311 | nullptr); |
fayang | 8265a2a | 2019-10-16 11:23:51 -0700 | [diff] [blame] | 312 | EXPECT_TRUE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 313 | ASSERT_EQ(1u, write_blocked_list_->NumBlockedStreams()); |
| 314 | EXPECT_EQ(1u, stream_->BufferedDataBytes()); |
| 315 | } |
| 316 | |
| 317 | TEST_P(QuicStreamTest, BlockIfFinNotConsumedWithData) { |
| 318 | Initialize(); |
| 319 | |
| 320 | // Write some data and no fin. If we consume all the data but not the fin, |
| 321 | // we should be write blocked because the fin was not consumed. |
| 322 | // (This should never actually happen as the fin should be sent out with the |
| 323 | // last data) |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 324 | EXPECT_CALL(*session_, WritevData(kTestStreamId, _, _, _, _, _)) |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 325 | .WillOnce(InvokeWithoutArgs([this]() { |
renjietang | 4d992bf | 2020-03-03 13:01:55 -0800 | [diff] [blame] | 326 | return session_->ConsumeData(stream_->id(), 2u, 0u, NO_FIN, |
| 327 | NOT_RETRANSMISSION, QuicheNullOpt); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 328 | })); |
dmcardle | cf0bfcf | 2019-12-13 08:08:21 -0800 | [diff] [blame] | 329 | stream_->WriteOrBufferData(quiche::QuicheStringPiece(kData1, 2), true, |
| 330 | nullptr); |
fayang | 8265a2a | 2019-10-16 11:23:51 -0700 | [diff] [blame] | 331 | EXPECT_TRUE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 332 | ASSERT_EQ(1u, write_blocked_list_->NumBlockedStreams()); |
| 333 | } |
| 334 | |
| 335 | TEST_P(QuicStreamTest, BlockIfSoloFinNotConsumed) { |
| 336 | Initialize(); |
| 337 | |
| 338 | // Write no data and a fin. If we consume nothing we should be write blocked, |
| 339 | // as the fin was not consumed. |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 340 | EXPECT_CALL(*session_, WritevData(kTestStreamId, _, _, _, _, _)) |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 341 | .WillOnce(Return(QuicConsumedData(0, false))); |
dmcardle | cf0bfcf | 2019-12-13 08:08:21 -0800 | [diff] [blame] | 342 | stream_->WriteOrBufferData(quiche::QuicheStringPiece(), true, nullptr); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 343 | ASSERT_EQ(1u, write_blocked_list_->NumBlockedStreams()); |
| 344 | } |
| 345 | |
| 346 | TEST_P(QuicStreamTest, CloseOnPartialWrite) { |
| 347 | Initialize(); |
| 348 | |
| 349 | // Write some data and no fin. However, while writing the data |
| 350 | // close the stream and verify that MarkConnectionLevelWriteBlocked does not |
| 351 | // crash with an unknown stream. |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 352 | EXPECT_CALL(*session_, WritevData(kTestStreamId, _, _, _, _, _)) |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 353 | .WillOnce(Invoke(this, &QuicStreamTest::CloseStreamOnWriteError)); |
dmcardle | cf0bfcf | 2019-12-13 08:08:21 -0800 | [diff] [blame] | 354 | stream_->WriteOrBufferData(quiche::QuicheStringPiece(kData1, 2), false, |
| 355 | nullptr); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 356 | ASSERT_EQ(0u, write_blocked_list_->NumBlockedStreams()); |
| 357 | } |
| 358 | |
| 359 | TEST_P(QuicStreamTest, WriteOrBufferData) { |
| 360 | Initialize(); |
| 361 | |
| 362 | EXPECT_FALSE(HasWriteBlockedStreams()); |
dschinazi | f1e7b42 | 2020-04-30 12:21:28 -0700 | [diff] [blame^] | 363 | QuicByteCount length = |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 364 | 1 + QuicPacketCreator::StreamFramePacketOverhead( |
| 365 | connection_->transport_version(), PACKET_8BYTE_CONNECTION_ID, |
| 366 | PACKET_0BYTE_CONNECTION_ID, !kIncludeVersion, |
| 367 | !kIncludeDiversificationNonce, PACKET_4BYTE_PACKET_NUMBER, |
| 368 | VARIABLE_LENGTH_INTEGER_LENGTH_0, |
| 369 | VARIABLE_LENGTH_INTEGER_LENGTH_0, 0u); |
| 370 | connection_->SetMaxPacketLength(length); |
| 371 | |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 372 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)) |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 373 | .WillOnce(InvokeWithoutArgs([this]() { |
renjietang | 7c23917 | 2020-02-21 13:50:39 -0800 | [diff] [blame] | 374 | return session_->ConsumeData(stream_->id(), kDataLen - 1, 0u, NO_FIN, |
renjietang | 4d992bf | 2020-03-03 13:01:55 -0800 | [diff] [blame] | 375 | NOT_RETRANSMISSION, QuicheNullOpt); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 376 | })); |
| 377 | stream_->WriteOrBufferData(kData1, false, nullptr); |
zhongyi | 1b2f783 | 2019-06-14 13:31:34 -0700 | [diff] [blame] | 378 | |
fayang | 8265a2a | 2019-10-16 11:23:51 -0700 | [diff] [blame] | 379 | EXPECT_TRUE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 380 | EXPECT_EQ(1u, stream_->BufferedDataBytes()); |
| 381 | EXPECT_TRUE(HasWriteBlockedStreams()); |
| 382 | |
| 383 | // Queue a bytes_consumed write. |
| 384 | stream_->WriteOrBufferData(kData2, false, nullptr); |
| 385 | EXPECT_EQ(10u, stream_->BufferedDataBytes()); |
| 386 | // Make sure we get the tail of the first write followed by the bytes_consumed |
| 387 | InSequence s; |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 388 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)) |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 389 | .WillOnce(InvokeWithoutArgs([this]() { |
renjietang | 7c23917 | 2020-02-21 13:50:39 -0800 | [diff] [blame] | 390 | return session_->ConsumeData(stream_->id(), kDataLen - 1, kDataLen - 1, |
renjietang | 4d992bf | 2020-03-03 13:01:55 -0800 | [diff] [blame] | 391 | NO_FIN, NOT_RETRANSMISSION, QuicheNullOpt); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 392 | })); |
renjietang | b38e635 | 2019-10-24 09:38:20 -0700 | [diff] [blame] | 393 | EXPECT_CALL(*stream_, OnCanWriteNewData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 394 | stream_->OnCanWrite(); |
fayang | 8265a2a | 2019-10-16 11:23:51 -0700 | [diff] [blame] | 395 | EXPECT_TRUE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 396 | |
| 397 | // And finally the end of the bytes_consumed. |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 398 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)) |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 399 | .WillOnce(InvokeWithoutArgs([this]() { |
renjietang | 7c23917 | 2020-02-21 13:50:39 -0800 | [diff] [blame] | 400 | return session_->ConsumeData(stream_->id(), 2u, 2 * kDataLen - 2, |
renjietang | 4d992bf | 2020-03-03 13:01:55 -0800 | [diff] [blame] | 401 | NO_FIN, NOT_RETRANSMISSION, QuicheNullOpt); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 402 | })); |
renjietang | b38e635 | 2019-10-24 09:38:20 -0700 | [diff] [blame] | 403 | EXPECT_CALL(*stream_, OnCanWriteNewData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 404 | stream_->OnCanWrite(); |
fayang | 8265a2a | 2019-10-16 11:23:51 -0700 | [diff] [blame] | 405 | EXPECT_TRUE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 406 | } |
| 407 | |
| 408 | TEST_P(QuicStreamTest, WriteOrBufferDataReachStreamLimit) { |
| 409 | Initialize(); |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 410 | std::string data("aaaaa"); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 411 | QuicStreamPeer::SetStreamBytesWritten(kMaxStreamLength - data.length(), |
| 412 | stream_); |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 413 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)) |
renjietang | 7c23917 | 2020-02-21 13:50:39 -0800 | [diff] [blame] | 414 | .WillOnce(Invoke(session_.get(), &MockQuicSession::ConsumeData)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 415 | stream_->WriteOrBufferData(data, false, nullptr); |
fayang | 8265a2a | 2019-10-16 11:23:51 -0700 | [diff] [blame] | 416 | EXPECT_TRUE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 417 | EXPECT_CALL(*connection_, CloseConnection(QUIC_STREAM_LENGTH_OVERFLOW, _, _)); |
| 418 | EXPECT_QUIC_BUG(stream_->WriteOrBufferData("a", false, nullptr), |
| 419 | "Write too many data via stream"); |
| 420 | } |
| 421 | |
| 422 | TEST_P(QuicStreamTest, ConnectionCloseAfterStreamClose) { |
| 423 | Initialize(); |
| 424 | |
| 425 | QuicStreamPeer::CloseReadSide(stream_); |
| 426 | stream_->CloseWriteSide(); |
bnc | f6f82b1 | 2019-10-30 07:01:01 -0700 | [diff] [blame] | 427 | EXPECT_THAT(stream_->stream_error(), IsQuicStreamNoError()); |
| 428 | EXPECT_THAT(stream_->connection_error(), IsQuicNoError()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 429 | stream_->OnConnectionClosed(QUIC_INTERNAL_ERROR, |
| 430 | ConnectionCloseSource::FROM_SELF); |
bnc | f6f82b1 | 2019-10-30 07:01:01 -0700 | [diff] [blame] | 431 | EXPECT_THAT(stream_->stream_error(), IsQuicStreamNoError()); |
| 432 | EXPECT_THAT(stream_->connection_error(), IsQuicNoError()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 433 | } |
| 434 | |
| 435 | TEST_P(QuicStreamTest, RstAlwaysSentIfNoFinSent) { |
| 436 | // For flow control accounting, a stream must send either a FIN or a RST frame |
| 437 | // before termination. |
| 438 | // Test that if no FIN has been sent, we send a RST. |
| 439 | |
| 440 | Initialize(); |
| 441 | EXPECT_FALSE(fin_sent()); |
| 442 | EXPECT_FALSE(rst_sent()); |
| 443 | |
| 444 | // Write some data, with no FIN. |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 445 | EXPECT_CALL(*session_, WritevData(kTestStreamId, _, _, _, _, _)) |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 446 | .WillOnce(InvokeWithoutArgs([this]() { |
renjietang | 4d992bf | 2020-03-03 13:01:55 -0800 | [diff] [blame] | 447 | return session_->ConsumeData(stream_->id(), 1u, 0u, NO_FIN, |
| 448 | NOT_RETRANSMISSION, QuicheNullOpt); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 449 | })); |
dmcardle | cf0bfcf | 2019-12-13 08:08:21 -0800 | [diff] [blame] | 450 | stream_->WriteOrBufferData(quiche::QuicheStringPiece(kData1, 1), false, |
| 451 | nullptr); |
fayang | 8265a2a | 2019-10-16 11:23:51 -0700 | [diff] [blame] | 452 | EXPECT_TRUE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 453 | EXPECT_FALSE(fin_sent()); |
| 454 | EXPECT_FALSE(rst_sent()); |
| 455 | |
| 456 | // Now close the stream, and expect that we send a RST. |
| 457 | EXPECT_CALL(*session_, SendRstStream(_, _, _)); |
fayang | d62ea77 | 2020-04-17 06:32:16 -0700 | [diff] [blame] | 458 | if (session_->break_close_loop()) { |
| 459 | stream_->CloseReadSide(); |
| 460 | stream_->CloseWriteSide(); |
| 461 | } else { |
| 462 | stream_->OnClose(); |
| 463 | } |
zhongyi | 9fa2be3 | 2019-09-10 12:39:01 -0700 | [diff] [blame] | 464 | EXPECT_FALSE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 465 | EXPECT_FALSE(fin_sent()); |
| 466 | EXPECT_TRUE(rst_sent()); |
| 467 | } |
| 468 | |
| 469 | TEST_P(QuicStreamTest, RstNotSentIfFinSent) { |
| 470 | // For flow control accounting, a stream must send either a FIN or a RST frame |
| 471 | // before termination. |
| 472 | // Test that if a FIN has been sent, we don't also send a RST. |
| 473 | |
| 474 | Initialize(); |
| 475 | EXPECT_FALSE(fin_sent()); |
| 476 | EXPECT_FALSE(rst_sent()); |
| 477 | |
| 478 | // Write some data, with FIN. |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 479 | EXPECT_CALL(*session_, WritevData(kTestStreamId, _, _, _, _, _)) |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 480 | .WillOnce(InvokeWithoutArgs([this]() { |
renjietang | 4d992bf | 2020-03-03 13:01:55 -0800 | [diff] [blame] | 481 | return session_->ConsumeData(stream_->id(), 1u, 0u, FIN, |
| 482 | NOT_RETRANSMISSION, QuicheNullOpt); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 483 | })); |
dmcardle | cf0bfcf | 2019-12-13 08:08:21 -0800 | [diff] [blame] | 484 | stream_->WriteOrBufferData(quiche::QuicheStringPiece(kData1, 1), true, |
| 485 | nullptr); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 486 | EXPECT_TRUE(fin_sent()); |
| 487 | EXPECT_FALSE(rst_sent()); |
| 488 | |
| 489 | // Now close the stream, and expect that we do not send a RST. |
fayang | d62ea77 | 2020-04-17 06:32:16 -0700 | [diff] [blame] | 490 | if (session_->break_close_loop()) { |
| 491 | stream_->CloseReadSide(); |
| 492 | stream_->CloseWriteSide(); |
| 493 | } else { |
| 494 | stream_->OnClose(); |
| 495 | } |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 496 | EXPECT_TRUE(fin_sent()); |
| 497 | EXPECT_FALSE(rst_sent()); |
| 498 | } |
| 499 | |
| 500 | TEST_P(QuicStreamTest, OnlySendOneRst) { |
| 501 | // For flow control accounting, a stream must send either a FIN or a RST frame |
| 502 | // before termination. |
| 503 | // Test that if a stream sends a RST, it doesn't send an additional RST during |
| 504 | // OnClose() (this shouldn't be harmful, but we shouldn't do it anyway...) |
| 505 | |
| 506 | Initialize(); |
| 507 | EXPECT_FALSE(fin_sent()); |
| 508 | EXPECT_FALSE(rst_sent()); |
| 509 | |
| 510 | // Reset the stream. |
| 511 | const int expected_resets = 1; |
| 512 | EXPECT_CALL(*session_, SendRstStream(_, _, _)).Times(expected_resets); |
| 513 | stream_->Reset(QUIC_STREAM_CANCELLED); |
| 514 | EXPECT_FALSE(fin_sent()); |
| 515 | EXPECT_TRUE(rst_sent()); |
| 516 | |
| 517 | // Now close the stream (any further resets being sent would break the |
| 518 | // expectation above). |
fayang | d62ea77 | 2020-04-17 06:32:16 -0700 | [diff] [blame] | 519 | if (session_->break_close_loop()) { |
| 520 | stream_->CloseReadSide(); |
| 521 | stream_->CloseWriteSide(); |
| 522 | } else { |
| 523 | stream_->OnClose(); |
| 524 | } |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 525 | EXPECT_FALSE(fin_sent()); |
| 526 | EXPECT_TRUE(rst_sent()); |
| 527 | } |
| 528 | |
| 529 | TEST_P(QuicStreamTest, StreamFlowControlMultipleWindowUpdates) { |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 530 | Initialize(); |
| 531 | |
| 532 | // If we receive multiple WINDOW_UPDATES (potentially out of order), then we |
| 533 | // want to make sure we latch the largest offset we see. |
| 534 | |
| 535 | // Initially should be default. |
| 536 | EXPECT_EQ( |
renjietang | 39979d3 | 2019-09-13 10:02:13 -0700 | [diff] [blame] | 537 | kMinimumFlowControlSendWindow, |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 538 | QuicFlowControllerPeer::SendWindowOffset(stream_->flow_controller())); |
| 539 | |
| 540 | // Check a single WINDOW_UPDATE results in correct offset. |
| 541 | QuicWindowUpdateFrame window_update_1(kInvalidControlFrameId, stream_->id(), |
renjietang | 39979d3 | 2019-09-13 10:02:13 -0700 | [diff] [blame] | 542 | kMinimumFlowControlSendWindow + 5); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 543 | stream_->OnWindowUpdateFrame(window_update_1); |
renjietang | d088eab | 2019-11-21 14:54:41 -0800 | [diff] [blame] | 544 | EXPECT_EQ(window_update_1.max_data, QuicFlowControllerPeer::SendWindowOffset( |
| 545 | stream_->flow_controller())); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 546 | |
| 547 | // Now send a few more WINDOW_UPDATES and make sure that only the largest is |
| 548 | // remembered. |
| 549 | QuicWindowUpdateFrame window_update_2(kInvalidControlFrameId, stream_->id(), |
| 550 | 1); |
| 551 | QuicWindowUpdateFrame window_update_3(kInvalidControlFrameId, stream_->id(), |
renjietang | 39979d3 | 2019-09-13 10:02:13 -0700 | [diff] [blame] | 552 | kMinimumFlowControlSendWindow + 10); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 553 | QuicWindowUpdateFrame window_update_4(kInvalidControlFrameId, stream_->id(), |
| 554 | 5678); |
| 555 | stream_->OnWindowUpdateFrame(window_update_2); |
| 556 | stream_->OnWindowUpdateFrame(window_update_3); |
| 557 | stream_->OnWindowUpdateFrame(window_update_4); |
renjietang | d088eab | 2019-11-21 14:54:41 -0800 | [diff] [blame] | 558 | EXPECT_EQ(window_update_3.max_data, QuicFlowControllerPeer::SendWindowOffset( |
| 559 | stream_->flow_controller())); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 560 | } |
| 561 | |
| 562 | TEST_P(QuicStreamTest, FrameStats) { |
| 563 | Initialize(); |
| 564 | |
| 565 | EXPECT_EQ(0, stream_->num_frames_received()); |
| 566 | EXPECT_EQ(0, stream_->num_duplicate_frames_received()); |
renjietang | b38e635 | 2019-10-24 09:38:20 -0700 | [diff] [blame] | 567 | QuicStreamFrame frame(stream_->id(), false, 0, "."); |
| 568 | EXPECT_CALL(*stream_, OnDataAvailable()).Times(2); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 569 | stream_->OnStreamFrame(frame); |
| 570 | EXPECT_EQ(1, stream_->num_frames_received()); |
| 571 | EXPECT_EQ(0, stream_->num_duplicate_frames_received()); |
| 572 | stream_->OnStreamFrame(frame); |
| 573 | EXPECT_EQ(2, stream_->num_frames_received()); |
| 574 | EXPECT_EQ(1, stream_->num_duplicate_frames_received()); |
renjietang | b38e635 | 2019-10-24 09:38:20 -0700 | [diff] [blame] | 575 | QuicStreamFrame frame2(stream_->id(), false, 1, "abc"); |
| 576 | stream_->OnStreamFrame(frame2); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 577 | } |
| 578 | |
| 579 | // Verify that when we receive a packet which violates flow control (i.e. sends |
| 580 | // too much data on the stream) that the stream sequencer never sees this frame, |
| 581 | // as we check for violation and close the connection early. |
| 582 | TEST_P(QuicStreamTest, StreamSequencerNeverSeesPacketsViolatingFlowControl) { |
| 583 | Initialize(); |
| 584 | |
| 585 | // Receive a stream frame that violates flow control: the byte offset is |
| 586 | // higher than the receive window offset. |
| 587 | QuicStreamFrame frame(stream_->id(), false, |
renjietang | b38e635 | 2019-10-24 09:38:20 -0700 | [diff] [blame] | 588 | kInitialSessionFlowControlWindowForTest + 1, "."); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 589 | EXPECT_GT(frame.offset, QuicFlowControllerPeer::ReceiveWindowOffset( |
| 590 | stream_->flow_controller())); |
| 591 | |
| 592 | // Stream should not accept the frame, and the connection should be closed. |
| 593 | EXPECT_CALL(*connection_, |
| 594 | CloseConnection(QUIC_FLOW_CONTROL_RECEIVED_TOO_MUCH_DATA, _, _)); |
| 595 | stream_->OnStreamFrame(frame); |
| 596 | } |
| 597 | |
| 598 | // Verify that after the consumer calls StopReading(), the stream still sends |
| 599 | // flow control updates. |
| 600 | TEST_P(QuicStreamTest, StopReadingSendsFlowControl) { |
| 601 | Initialize(); |
| 602 | |
| 603 | stream_->StopReading(); |
| 604 | |
| 605 | // Connection should not get terminated due to flow control errors. |
| 606 | EXPECT_CALL(*connection_, |
| 607 | CloseConnection(QUIC_FLOW_CONTROL_RECEIVED_TOO_MUCH_DATA, _, _)) |
| 608 | .Times(0); |
| 609 | EXPECT_CALL(*connection_, SendControlFrame(_)) |
| 610 | .Times(AtLeast(1)) |
bnc | 5b3c3be | 2019-06-25 10:37:09 -0700 | [diff] [blame] | 611 | .WillRepeatedly(Invoke(&ClearControlFrame)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 612 | |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 613 | std::string data(1000, 'x'); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 614 | for (QuicStreamOffset offset = 0; |
| 615 | offset < 2 * kInitialStreamFlowControlWindowForTest; |
| 616 | offset += data.length()) { |
| 617 | QuicStreamFrame frame(stream_->id(), false, offset, data); |
| 618 | stream_->OnStreamFrame(frame); |
| 619 | } |
| 620 | EXPECT_LT( |
| 621 | kInitialStreamFlowControlWindowForTest, |
| 622 | QuicFlowControllerPeer::ReceiveWindowOffset(stream_->flow_controller())); |
| 623 | } |
| 624 | |
| 625 | TEST_P(QuicStreamTest, FinalByteOffsetFromFin) { |
| 626 | Initialize(); |
| 627 | |
renjietang | 6c06656 | 2019-11-04 17:05:59 -0800 | [diff] [blame] | 628 | EXPECT_FALSE(stream_->HasReceivedFinalOffset()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 629 | |
renjietang | b38e635 | 2019-10-24 09:38:20 -0700 | [diff] [blame] | 630 | QuicStreamFrame stream_frame_no_fin(stream_->id(), false, 1234, "."); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 631 | stream_->OnStreamFrame(stream_frame_no_fin); |
renjietang | 6c06656 | 2019-11-04 17:05:59 -0800 | [diff] [blame] | 632 | EXPECT_FALSE(stream_->HasReceivedFinalOffset()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 633 | |
renjietang | b38e635 | 2019-10-24 09:38:20 -0700 | [diff] [blame] | 634 | QuicStreamFrame stream_frame_with_fin(stream_->id(), true, 1234, "."); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 635 | stream_->OnStreamFrame(stream_frame_with_fin); |
renjietang | 6c06656 | 2019-11-04 17:05:59 -0800 | [diff] [blame] | 636 | EXPECT_TRUE(stream_->HasReceivedFinalOffset()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 637 | } |
| 638 | |
| 639 | TEST_P(QuicStreamTest, FinalByteOffsetFromRst) { |
| 640 | Initialize(); |
| 641 | |
renjietang | 6c06656 | 2019-11-04 17:05:59 -0800 | [diff] [blame] | 642 | EXPECT_FALSE(stream_->HasReceivedFinalOffset()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 643 | QuicRstStreamFrame rst_frame(kInvalidControlFrameId, stream_->id(), |
| 644 | QUIC_STREAM_CANCELLED, 1234); |
| 645 | stream_->OnStreamReset(rst_frame); |
renjietang | 6c06656 | 2019-11-04 17:05:59 -0800 | [diff] [blame] | 646 | EXPECT_TRUE(stream_->HasReceivedFinalOffset()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 647 | } |
| 648 | |
| 649 | TEST_P(QuicStreamTest, InvalidFinalByteOffsetFromRst) { |
| 650 | Initialize(); |
| 651 | |
renjietang | 6c06656 | 2019-11-04 17:05:59 -0800 | [diff] [blame] | 652 | EXPECT_FALSE(stream_->HasReceivedFinalOffset()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 653 | QuicRstStreamFrame rst_frame(kInvalidControlFrameId, stream_->id(), |
| 654 | QUIC_STREAM_CANCELLED, 0xFFFFFFFFFFFF); |
| 655 | // Stream should not accept the frame, and the connection should be closed. |
| 656 | EXPECT_CALL(*connection_, |
| 657 | CloseConnection(QUIC_FLOW_CONTROL_RECEIVED_TOO_MUCH_DATA, _, _)); |
| 658 | stream_->OnStreamReset(rst_frame); |
renjietang | 6c06656 | 2019-11-04 17:05:59 -0800 | [diff] [blame] | 659 | EXPECT_TRUE(stream_->HasReceivedFinalOffset()); |
fayang | d62ea77 | 2020-04-17 06:32:16 -0700 | [diff] [blame] | 660 | if (session_->break_close_loop()) { |
| 661 | stream_->CloseReadSide(); |
| 662 | stream_->CloseWriteSide(); |
| 663 | } else { |
| 664 | stream_->OnClose(); |
| 665 | } |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 666 | } |
| 667 | |
| 668 | TEST_P(QuicStreamTest, FinalByteOffsetFromZeroLengthStreamFrame) { |
| 669 | // When receiving Trailers, an empty stream frame is created with the FIN set, |
| 670 | // and is passed to OnStreamFrame. The Trailers may be sent in advance of |
| 671 | // queued body bytes being sent, and thus the final byte offset may exceed |
| 672 | // current flow control limits. Flow control should only be concerned with |
| 673 | // data that has actually been sent/received, so verify that flow control |
| 674 | // ignores such a stream frame. |
| 675 | Initialize(); |
| 676 | |
renjietang | 6c06656 | 2019-11-04 17:05:59 -0800 | [diff] [blame] | 677 | EXPECT_FALSE(stream_->HasReceivedFinalOffset()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 678 | const QuicStreamOffset kByteOffsetExceedingFlowControlWindow = |
| 679 | kInitialSessionFlowControlWindowForTest + 1; |
| 680 | const QuicStreamOffset current_stream_flow_control_offset = |
| 681 | QuicFlowControllerPeer::ReceiveWindowOffset(stream_->flow_controller()); |
| 682 | const QuicStreamOffset current_connection_flow_control_offset = |
| 683 | QuicFlowControllerPeer::ReceiveWindowOffset(session_->flow_controller()); |
| 684 | ASSERT_GT(kByteOffsetExceedingFlowControlWindow, |
| 685 | current_stream_flow_control_offset); |
| 686 | ASSERT_GT(kByteOffsetExceedingFlowControlWindow, |
| 687 | current_connection_flow_control_offset); |
| 688 | QuicStreamFrame zero_length_stream_frame_with_fin( |
| 689 | stream_->id(), /*fin=*/true, kByteOffsetExceedingFlowControlWindow, |
dmcardle | cf0bfcf | 2019-12-13 08:08:21 -0800 | [diff] [blame] | 690 | quiche::QuicheStringPiece()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 691 | EXPECT_EQ(0, zero_length_stream_frame_with_fin.data_length); |
| 692 | |
| 693 | EXPECT_CALL(*connection_, CloseConnection(_, _, _)).Times(0); |
| 694 | stream_->OnStreamFrame(zero_length_stream_frame_with_fin); |
renjietang | 6c06656 | 2019-11-04 17:05:59 -0800 | [diff] [blame] | 695 | EXPECT_TRUE(stream_->HasReceivedFinalOffset()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 696 | |
| 697 | // The flow control receive offset values should not have changed. |
| 698 | EXPECT_EQ( |
| 699 | current_stream_flow_control_offset, |
| 700 | QuicFlowControllerPeer::ReceiveWindowOffset(stream_->flow_controller())); |
| 701 | EXPECT_EQ( |
| 702 | current_connection_flow_control_offset, |
| 703 | QuicFlowControllerPeer::ReceiveWindowOffset(session_->flow_controller())); |
| 704 | } |
| 705 | |
| 706 | TEST_P(QuicStreamTest, OnStreamResetOffsetOverflow) { |
| 707 | Initialize(); |
| 708 | QuicRstStreamFrame rst_frame(kInvalidControlFrameId, stream_->id(), |
| 709 | QUIC_STREAM_CANCELLED, kMaxStreamLength + 1); |
| 710 | EXPECT_CALL(*connection_, CloseConnection(QUIC_STREAM_LENGTH_OVERFLOW, _, _)); |
| 711 | stream_->OnStreamReset(rst_frame); |
| 712 | } |
| 713 | |
| 714 | TEST_P(QuicStreamTest, OnStreamFrameUpperLimit) { |
| 715 | Initialize(); |
| 716 | |
| 717 | // Modify receive window offset and sequencer buffer total_bytes_read_ to |
| 718 | // avoid flow control violation. |
| 719 | QuicFlowControllerPeer::SetReceiveWindowOffset(stream_->flow_controller(), |
| 720 | kMaxStreamLength + 5u); |
| 721 | QuicFlowControllerPeer::SetReceiveWindowOffset(session_->flow_controller(), |
| 722 | kMaxStreamLength + 5u); |
| 723 | QuicStreamSequencerPeer::SetFrameBufferTotalBytesRead( |
| 724 | QuicStreamPeer::sequencer(stream_), kMaxStreamLength - 10u); |
| 725 | |
| 726 | EXPECT_CALL(*connection_, CloseConnection(QUIC_STREAM_LENGTH_OVERFLOW, _, _)) |
| 727 | .Times(0); |
renjietang | b38e635 | 2019-10-24 09:38:20 -0700 | [diff] [blame] | 728 | QuicStreamFrame stream_frame(stream_->id(), false, kMaxStreamLength - 1, "."); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 729 | stream_->OnStreamFrame(stream_frame); |
renjietang | b38e635 | 2019-10-24 09:38:20 -0700 | [diff] [blame] | 730 | QuicStreamFrame stream_frame2(stream_->id(), true, kMaxStreamLength, ""); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 731 | stream_->OnStreamFrame(stream_frame2); |
| 732 | } |
| 733 | |
| 734 | TEST_P(QuicStreamTest, StreamTooLong) { |
| 735 | Initialize(); |
| 736 | EXPECT_CALL(*connection_, CloseConnection(QUIC_STREAM_LENGTH_OVERFLOW, _, _)) |
| 737 | .Times(1); |
renjietang | b38e635 | 2019-10-24 09:38:20 -0700 | [diff] [blame] | 738 | QuicStreamFrame stream_frame(stream_->id(), false, kMaxStreamLength, "."); |
dmcardle | cf0bfcf | 2019-12-13 08:08:21 -0800 | [diff] [blame] | 739 | EXPECT_QUIC_PEER_BUG( |
| 740 | stream_->OnStreamFrame(stream_frame), |
| 741 | quiche::QuicheStrCat("Receive stream frame on stream ", stream_->id(), |
| 742 | " reaches max stream length")); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 743 | } |
| 744 | |
renjietang | 9bf2564 | 2019-10-10 10:21:15 -0700 | [diff] [blame] | 745 | TEST_P(QuicStreamTest, SetDrainingIncomingOutgoing) { |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 746 | // Don't have incoming data consumed. |
| 747 | Initialize(); |
| 748 | |
| 749 | // Incoming data with FIN. |
renjietang | b38e635 | 2019-10-24 09:38:20 -0700 | [diff] [blame] | 750 | QuicStreamFrame stream_frame_with_fin(stream_->id(), true, 1234, "."); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 751 | stream_->OnStreamFrame(stream_frame_with_fin); |
| 752 | // The FIN has been received but not consumed. |
renjietang | 6c06656 | 2019-11-04 17:05:59 -0800 | [diff] [blame] | 753 | EXPECT_TRUE(stream_->HasReceivedFinalOffset()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 754 | EXPECT_FALSE(QuicStreamPeer::read_side_closed(stream_)); |
| 755 | EXPECT_FALSE(stream_->reading_stopped()); |
| 756 | |
fayang | 01591ae | 2020-04-23 14:14:56 -0700 | [diff] [blame] | 757 | EXPECT_EQ(1u, QuicSessionPeer::GetNumOpenDynamicStreams(session_.get())); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 758 | |
| 759 | // Outgoing data with FIN. |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 760 | EXPECT_CALL(*session_, WritevData(kTestStreamId, _, _, _, _, _)) |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 761 | .WillOnce(InvokeWithoutArgs([this]() { |
renjietang | 4d992bf | 2020-03-03 13:01:55 -0800 | [diff] [blame] | 762 | return session_->ConsumeData(stream_->id(), 2u, 0u, FIN, |
| 763 | NOT_RETRANSMISSION, QuicheNullOpt); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 764 | })); |
dmcardle | cf0bfcf | 2019-12-13 08:08:21 -0800 | [diff] [blame] | 765 | stream_->WriteOrBufferData(quiche::QuicheStringPiece(kData1, 2), true, |
| 766 | nullptr); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 767 | EXPECT_TRUE(stream_->write_side_closed()); |
| 768 | |
fayang | be6d664 | 2020-04-16 14:15:34 -0700 | [diff] [blame] | 769 | EXPECT_EQ(1u, session_->GetNumDrainingStreams()); |
fayang | 01591ae | 2020-04-23 14:14:56 -0700 | [diff] [blame] | 770 | EXPECT_EQ(0u, QuicSessionPeer::GetNumOpenDynamicStreams(session_.get())); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 771 | } |
| 772 | |
renjietang | 9bf2564 | 2019-10-10 10:21:15 -0700 | [diff] [blame] | 773 | TEST_P(QuicStreamTest, SetDrainingOutgoingIncoming) { |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 774 | // Don't have incoming data consumed. |
| 775 | Initialize(); |
| 776 | |
| 777 | // Outgoing data with FIN. |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 778 | EXPECT_CALL(*session_, WritevData(kTestStreamId, _, _, _, _, _)) |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 779 | .WillOnce(InvokeWithoutArgs([this]() { |
renjietang | 4d992bf | 2020-03-03 13:01:55 -0800 | [diff] [blame] | 780 | return session_->ConsumeData(stream_->id(), 2u, 0u, FIN, |
| 781 | NOT_RETRANSMISSION, QuicheNullOpt); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 782 | })); |
dmcardle | cf0bfcf | 2019-12-13 08:08:21 -0800 | [diff] [blame] | 783 | stream_->WriteOrBufferData(quiche::QuicheStringPiece(kData1, 2), true, |
| 784 | nullptr); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 785 | EXPECT_TRUE(stream_->write_side_closed()); |
| 786 | |
fayang | 01591ae | 2020-04-23 14:14:56 -0700 | [diff] [blame] | 787 | EXPECT_EQ(1u, QuicSessionPeer::GetNumOpenDynamicStreams(session_.get())); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 788 | |
| 789 | // Incoming data with FIN. |
renjietang | b38e635 | 2019-10-24 09:38:20 -0700 | [diff] [blame] | 790 | QuicStreamFrame stream_frame_with_fin(stream_->id(), true, 1234, "."); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 791 | stream_->OnStreamFrame(stream_frame_with_fin); |
| 792 | // The FIN has been received but not consumed. |
renjietang | 6c06656 | 2019-11-04 17:05:59 -0800 | [diff] [blame] | 793 | EXPECT_TRUE(stream_->HasReceivedFinalOffset()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 794 | EXPECT_FALSE(QuicStreamPeer::read_side_closed(stream_)); |
| 795 | EXPECT_FALSE(stream_->reading_stopped()); |
| 796 | |
fayang | be6d664 | 2020-04-16 14:15:34 -0700 | [diff] [blame] | 797 | EXPECT_EQ(1u, session_->GetNumDrainingStreams()); |
fayang | 01591ae | 2020-04-23 14:14:56 -0700 | [diff] [blame] | 798 | EXPECT_EQ(0u, QuicSessionPeer::GetNumOpenDynamicStreams(session_.get())); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 799 | } |
| 800 | |
| 801 | TEST_P(QuicStreamTest, EarlyResponseFinHandling) { |
| 802 | // Verify that if the server completes the response before reading the end of |
| 803 | // the request, the received FIN is recorded. |
| 804 | |
| 805 | Initialize(); |
| 806 | EXPECT_CALL(*connection_, CloseConnection(_, _, _)).Times(0); |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 807 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)) |
renjietang | 7c23917 | 2020-02-21 13:50:39 -0800 | [diff] [blame] | 808 | .WillRepeatedly(Invoke(session_.get(), &MockQuicSession::ConsumeData)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 809 | |
| 810 | // Receive data for the request. |
renjietang | b38e635 | 2019-10-24 09:38:20 -0700 | [diff] [blame] | 811 | EXPECT_CALL(*stream_, OnDataAvailable()).Times(1); |
| 812 | QuicStreamFrame frame1(stream_->id(), false, 0, "Start"); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 813 | stream_->OnStreamFrame(frame1); |
| 814 | // When QuicSimpleServerStream sends the response, it calls |
| 815 | // QuicStream::CloseReadSide() first. |
| 816 | QuicStreamPeer::CloseReadSide(stream_); |
| 817 | // Send data and FIN for the response. |
| 818 | stream_->WriteOrBufferData(kData1, false, nullptr); |
| 819 | EXPECT_TRUE(QuicStreamPeer::read_side_closed(stream_)); |
| 820 | // Receive remaining data and FIN for the request. |
renjietang | b38e635 | 2019-10-24 09:38:20 -0700 | [diff] [blame] | 821 | QuicStreamFrame frame2(stream_->id(), true, 0, "End"); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 822 | stream_->OnStreamFrame(frame2); |
| 823 | EXPECT_TRUE(stream_->fin_received()); |
renjietang | 6c06656 | 2019-11-04 17:05:59 -0800 | [diff] [blame] | 824 | EXPECT_TRUE(stream_->HasReceivedFinalOffset()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 825 | } |
| 826 | |
| 827 | TEST_P(QuicStreamTest, StreamWaitsForAcks) { |
| 828 | Initialize(); |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 829 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)) |
renjietang | 7c23917 | 2020-02-21 13:50:39 -0800 | [diff] [blame] | 830 | .WillRepeatedly(Invoke(session_.get(), &MockQuicSession::ConsumeData)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 831 | // Stream is not waiting for acks initially. |
| 832 | EXPECT_FALSE(stream_->IsWaitingForAcks()); |
| 833 | EXPECT_EQ(0u, QuicStreamPeer::SendBuffer(stream_).size()); |
zhongyi | 9fa2be3 | 2019-09-10 12:39:01 -0700 | [diff] [blame] | 834 | EXPECT_FALSE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 835 | |
| 836 | // Send kData1. |
| 837 | stream_->WriteOrBufferData(kData1, false, nullptr); |
fayang | 8265a2a | 2019-10-16 11:23:51 -0700 | [diff] [blame] | 838 | EXPECT_TRUE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 839 | EXPECT_EQ(1u, QuicStreamPeer::SendBuffer(stream_).size()); |
| 840 | EXPECT_TRUE(stream_->IsWaitingForAcks()); |
| 841 | QuicByteCount newly_acked_length = 0; |
| 842 | EXPECT_TRUE(stream_->OnStreamFrameAcked(0, 9, false, QuicTime::Delta::Zero(), |
QUICHE team | 2f5f30b | 2020-02-18 08:52:28 -0800 | [diff] [blame] | 843 | QuicTime::Zero(), |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 844 | &newly_acked_length)); |
| 845 | EXPECT_EQ(9u, newly_acked_length); |
| 846 | // Stream is not waiting for acks as all sent data is acked. |
| 847 | EXPECT_FALSE(stream_->IsWaitingForAcks()); |
zhongyi | 9fa2be3 | 2019-09-10 12:39:01 -0700 | [diff] [blame] | 848 | EXPECT_FALSE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 849 | EXPECT_EQ(0u, QuicStreamPeer::SendBuffer(stream_).size()); |
| 850 | |
| 851 | // Send kData2. |
| 852 | stream_->WriteOrBufferData(kData2, false, nullptr); |
| 853 | EXPECT_TRUE(stream_->IsWaitingForAcks()); |
fayang | 8265a2a | 2019-10-16 11:23:51 -0700 | [diff] [blame] | 854 | EXPECT_TRUE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 855 | EXPECT_EQ(1u, QuicStreamPeer::SendBuffer(stream_).size()); |
| 856 | // Send FIN. |
| 857 | stream_->WriteOrBufferData("", true, nullptr); |
| 858 | // Fin only frame is not stored in send buffer. |
| 859 | EXPECT_EQ(1u, QuicStreamPeer::SendBuffer(stream_).size()); |
| 860 | |
| 861 | // kData2 is retransmitted. |
| 862 | stream_->OnStreamFrameRetransmitted(9, 9, false); |
| 863 | |
| 864 | // kData2 is acked. |
| 865 | EXPECT_TRUE(stream_->OnStreamFrameAcked(9, 9, false, QuicTime::Delta::Zero(), |
QUICHE team | 2f5f30b | 2020-02-18 08:52:28 -0800 | [diff] [blame] | 866 | QuicTime::Zero(), |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 867 | &newly_acked_length)); |
| 868 | EXPECT_EQ(9u, newly_acked_length); |
| 869 | // Stream is waiting for acks as FIN is not acked. |
| 870 | EXPECT_TRUE(stream_->IsWaitingForAcks()); |
fayang | 8265a2a | 2019-10-16 11:23:51 -0700 | [diff] [blame] | 871 | EXPECT_TRUE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 872 | EXPECT_EQ(0u, QuicStreamPeer::SendBuffer(stream_).size()); |
| 873 | |
| 874 | // FIN is acked. |
| 875 | EXPECT_TRUE(stream_->OnStreamFrameAcked(18, 0, true, QuicTime::Delta::Zero(), |
QUICHE team | 2f5f30b | 2020-02-18 08:52:28 -0800 | [diff] [blame] | 876 | QuicTime::Zero(), |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 877 | &newly_acked_length)); |
| 878 | EXPECT_EQ(0u, newly_acked_length); |
| 879 | EXPECT_FALSE(stream_->IsWaitingForAcks()); |
zhongyi | 9fa2be3 | 2019-09-10 12:39:01 -0700 | [diff] [blame] | 880 | EXPECT_FALSE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 881 | EXPECT_EQ(0u, QuicStreamPeer::SendBuffer(stream_).size()); |
| 882 | } |
| 883 | |
| 884 | TEST_P(QuicStreamTest, StreamDataGetAckedOutOfOrder) { |
| 885 | Initialize(); |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 886 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)) |
renjietang | 7c23917 | 2020-02-21 13:50:39 -0800 | [diff] [blame] | 887 | .WillRepeatedly(Invoke(session_.get(), &MockQuicSession::ConsumeData)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 888 | // Send data. |
| 889 | stream_->WriteOrBufferData(kData1, false, nullptr); |
| 890 | stream_->WriteOrBufferData(kData1, false, nullptr); |
| 891 | stream_->WriteOrBufferData(kData1, false, nullptr); |
| 892 | stream_->WriteOrBufferData("", true, nullptr); |
| 893 | EXPECT_EQ(3u, QuicStreamPeer::SendBuffer(stream_).size()); |
| 894 | EXPECT_TRUE(stream_->IsWaitingForAcks()); |
fayang | 8265a2a | 2019-10-16 11:23:51 -0700 | [diff] [blame] | 895 | EXPECT_TRUE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 896 | QuicByteCount newly_acked_length = 0; |
| 897 | EXPECT_TRUE(stream_->OnStreamFrameAcked(9, 9, false, QuicTime::Delta::Zero(), |
QUICHE team | 2f5f30b | 2020-02-18 08:52:28 -0800 | [diff] [blame] | 898 | QuicTime::Zero(), |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 899 | &newly_acked_length)); |
fayang | 8265a2a | 2019-10-16 11:23:51 -0700 | [diff] [blame] | 900 | EXPECT_TRUE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 901 | EXPECT_EQ(9u, newly_acked_length); |
| 902 | EXPECT_EQ(3u, QuicStreamPeer::SendBuffer(stream_).size()); |
| 903 | EXPECT_TRUE(stream_->OnStreamFrameAcked(18, 9, false, QuicTime::Delta::Zero(), |
QUICHE team | 2f5f30b | 2020-02-18 08:52:28 -0800 | [diff] [blame] | 904 | QuicTime::Zero(), |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 905 | &newly_acked_length)); |
fayang | 8265a2a | 2019-10-16 11:23:51 -0700 | [diff] [blame] | 906 | EXPECT_TRUE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 907 | EXPECT_EQ(9u, newly_acked_length); |
| 908 | EXPECT_EQ(3u, QuicStreamPeer::SendBuffer(stream_).size()); |
| 909 | EXPECT_TRUE(stream_->OnStreamFrameAcked(0, 9, false, QuicTime::Delta::Zero(), |
QUICHE team | 2f5f30b | 2020-02-18 08:52:28 -0800 | [diff] [blame] | 910 | QuicTime::Zero(), |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 911 | &newly_acked_length)); |
fayang | 8265a2a | 2019-10-16 11:23:51 -0700 | [diff] [blame] | 912 | EXPECT_TRUE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 913 | EXPECT_EQ(9u, newly_acked_length); |
| 914 | EXPECT_EQ(0u, QuicStreamPeer::SendBuffer(stream_).size()); |
| 915 | // FIN is not acked yet. |
| 916 | EXPECT_TRUE(stream_->IsWaitingForAcks()); |
fayang | 8265a2a | 2019-10-16 11:23:51 -0700 | [diff] [blame] | 917 | EXPECT_TRUE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 918 | EXPECT_TRUE(stream_->OnStreamFrameAcked(27, 0, true, QuicTime::Delta::Zero(), |
QUICHE team | 2f5f30b | 2020-02-18 08:52:28 -0800 | [diff] [blame] | 919 | QuicTime::Zero(), |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 920 | &newly_acked_length)); |
| 921 | EXPECT_EQ(0u, newly_acked_length); |
| 922 | EXPECT_FALSE(stream_->IsWaitingForAcks()); |
zhongyi | 9fa2be3 | 2019-09-10 12:39:01 -0700 | [diff] [blame] | 923 | EXPECT_FALSE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 924 | } |
| 925 | |
| 926 | TEST_P(QuicStreamTest, CancelStream) { |
| 927 | Initialize(); |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 928 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)) |
renjietang | 7c23917 | 2020-02-21 13:50:39 -0800 | [diff] [blame] | 929 | .WillRepeatedly(Invoke(session_.get(), &MockQuicSession::ConsumeData)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 930 | EXPECT_FALSE(stream_->IsWaitingForAcks()); |
zhongyi | 9fa2be3 | 2019-09-10 12:39:01 -0700 | [diff] [blame] | 931 | EXPECT_FALSE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 932 | EXPECT_EQ(0u, QuicStreamPeer::SendBuffer(stream_).size()); |
| 933 | |
| 934 | stream_->WriteOrBufferData(kData1, false, nullptr); |
| 935 | EXPECT_TRUE(stream_->IsWaitingForAcks()); |
fayang | 8265a2a | 2019-10-16 11:23:51 -0700 | [diff] [blame] | 936 | EXPECT_TRUE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 937 | EXPECT_EQ(1u, QuicStreamPeer::SendBuffer(stream_).size()); |
| 938 | // Cancel stream. |
| 939 | stream_->Reset(QUIC_STREAM_NO_ERROR); |
| 940 | // stream still waits for acks as the error code is QUIC_STREAM_NO_ERROR, and |
| 941 | // data is going to be retransmitted. |
| 942 | EXPECT_TRUE(stream_->IsWaitingForAcks()); |
fayang | 8265a2a | 2019-10-16 11:23:51 -0700 | [diff] [blame] | 943 | EXPECT_TRUE(session_->HasUnackedStreamData()); |
zhongyi | 1b2f783 | 2019-06-14 13:31:34 -0700 | [diff] [blame] | 944 | EXPECT_CALL(*connection_, |
| 945 | OnStreamReset(stream_->id(), QUIC_STREAM_CANCELLED)); |
renjietang | eab9285 | 2019-10-25 12:16:14 -0700 | [diff] [blame] | 946 | EXPECT_CALL(*connection_, SendControlFrame(_)) |
| 947 | .Times(AtLeast(1)) |
| 948 | .WillRepeatedly(Invoke(&ClearControlFrame)); |
zhongyi | 1b2f783 | 2019-06-14 13:31:34 -0700 | [diff] [blame] | 949 | EXPECT_CALL(*session_, SendRstStream(stream_->id(), QUIC_STREAM_CANCELLED, 9)) |
| 950 | .WillOnce(InvokeWithoutArgs([this]() { |
renjietang | 61cc245 | 2019-11-26 10:57:10 -0800 | [diff] [blame] | 951 | session_->ReallySendRstStream(stream_->id(), QUIC_STREAM_CANCELLED, |
| 952 | stream_->stream_bytes_written()); |
zhongyi | 1b2f783 | 2019-06-14 13:31:34 -0700 | [diff] [blame] | 953 | })); |
| 954 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 955 | stream_->Reset(QUIC_STREAM_CANCELLED); |
| 956 | EXPECT_EQ(1u, QuicStreamPeer::SendBuffer(stream_).size()); |
| 957 | // Stream stops waiting for acks as data is not going to be retransmitted. |
| 958 | EXPECT_FALSE(stream_->IsWaitingForAcks()); |
zhongyi | 9fa2be3 | 2019-09-10 12:39:01 -0700 | [diff] [blame] | 959 | EXPECT_FALSE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 960 | } |
| 961 | |
| 962 | TEST_P(QuicStreamTest, RstFrameReceivedStreamNotFinishSending) { |
renjietang | 9bf2564 | 2019-10-10 10:21:15 -0700 | [diff] [blame] | 963 | if (VersionHasIetfQuicFrames(GetParam().transport_version)) { |
| 964 | // In IETF QUIC, receiving a RESET_STREAM will only close the read side. The |
| 965 | // stream itself is not closed and will not send reset. |
| 966 | return; |
| 967 | } |
| 968 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 969 | Initialize(); |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 970 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)) |
renjietang | 7c23917 | 2020-02-21 13:50:39 -0800 | [diff] [blame] | 971 | .WillRepeatedly(Invoke(session_.get(), &MockQuicSession::ConsumeData)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 972 | EXPECT_FALSE(stream_->IsWaitingForAcks()); |
zhongyi | 9fa2be3 | 2019-09-10 12:39:01 -0700 | [diff] [blame] | 973 | EXPECT_FALSE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 974 | EXPECT_EQ(0u, QuicStreamPeer::SendBuffer(stream_).size()); |
| 975 | |
| 976 | stream_->WriteOrBufferData(kData1, false, nullptr); |
| 977 | EXPECT_TRUE(stream_->IsWaitingForAcks()); |
fayang | 8265a2a | 2019-10-16 11:23:51 -0700 | [diff] [blame] | 978 | EXPECT_TRUE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 979 | EXPECT_EQ(1u, QuicStreamPeer::SendBuffer(stream_).size()); |
| 980 | |
| 981 | // RST_STREAM received. |
| 982 | QuicRstStreamFrame rst_frame(kInvalidControlFrameId, stream_->id(), |
| 983 | QUIC_STREAM_CANCELLED, 9); |
| 984 | EXPECT_CALL(*session_, |
| 985 | SendRstStream(stream_->id(), QUIC_RST_ACKNOWLEDGEMENT, 9)); |
| 986 | stream_->OnStreamReset(rst_frame); |
| 987 | EXPECT_EQ(1u, QuicStreamPeer::SendBuffer(stream_).size()); |
| 988 | // Stream stops waiting for acks as it does not finish sending and rst is |
| 989 | // sent. |
| 990 | EXPECT_FALSE(stream_->IsWaitingForAcks()); |
zhongyi | 9fa2be3 | 2019-09-10 12:39:01 -0700 | [diff] [blame] | 991 | EXPECT_FALSE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 992 | } |
| 993 | |
| 994 | TEST_P(QuicStreamTest, RstFrameReceivedStreamFinishSending) { |
| 995 | Initialize(); |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 996 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)) |
renjietang | 7c23917 | 2020-02-21 13:50:39 -0800 | [diff] [blame] | 997 | .WillRepeatedly(Invoke(session_.get(), &MockQuicSession::ConsumeData)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 998 | EXPECT_FALSE(stream_->IsWaitingForAcks()); |
zhongyi | 9fa2be3 | 2019-09-10 12:39:01 -0700 | [diff] [blame] | 999 | EXPECT_FALSE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1000 | EXPECT_EQ(0u, QuicStreamPeer::SendBuffer(stream_).size()); |
| 1001 | |
| 1002 | stream_->WriteOrBufferData(kData1, true, nullptr); |
| 1003 | EXPECT_TRUE(stream_->IsWaitingForAcks()); |
fayang | 8265a2a | 2019-10-16 11:23:51 -0700 | [diff] [blame] | 1004 | EXPECT_TRUE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1005 | |
| 1006 | // RST_STREAM received. |
| 1007 | EXPECT_CALL(*session_, SendRstStream(_, _, _)).Times(0); |
| 1008 | QuicRstStreamFrame rst_frame(kInvalidControlFrameId, stream_->id(), |
| 1009 | QUIC_STREAM_CANCELLED, 1234); |
| 1010 | stream_->OnStreamReset(rst_frame); |
| 1011 | // Stream still waits for acks as it finishes sending and has unacked data. |
| 1012 | EXPECT_TRUE(stream_->IsWaitingForAcks()); |
fayang | 8265a2a | 2019-10-16 11:23:51 -0700 | [diff] [blame] | 1013 | EXPECT_TRUE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1014 | EXPECT_EQ(1u, QuicStreamPeer::SendBuffer(stream_).size()); |
| 1015 | } |
| 1016 | |
| 1017 | TEST_P(QuicStreamTest, ConnectionClosed) { |
| 1018 | Initialize(); |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1019 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)) |
renjietang | 7c23917 | 2020-02-21 13:50:39 -0800 | [diff] [blame] | 1020 | .WillRepeatedly(Invoke(session_.get(), &MockQuicSession::ConsumeData)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1021 | EXPECT_FALSE(stream_->IsWaitingForAcks()); |
zhongyi | 9fa2be3 | 2019-09-10 12:39:01 -0700 | [diff] [blame] | 1022 | EXPECT_FALSE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1023 | EXPECT_EQ(0u, QuicStreamPeer::SendBuffer(stream_).size()); |
| 1024 | |
| 1025 | stream_->WriteOrBufferData(kData1, false, nullptr); |
| 1026 | EXPECT_TRUE(stream_->IsWaitingForAcks()); |
fayang | 8265a2a | 2019-10-16 11:23:51 -0700 | [diff] [blame] | 1027 | EXPECT_TRUE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1028 | EXPECT_CALL(*session_, |
| 1029 | SendRstStream(stream_->id(), QUIC_RST_ACKNOWLEDGEMENT, 9)); |
| 1030 | stream_->OnConnectionClosed(QUIC_INTERNAL_ERROR, |
| 1031 | ConnectionCloseSource::FROM_SELF); |
| 1032 | EXPECT_EQ(1u, QuicStreamPeer::SendBuffer(stream_).size()); |
| 1033 | // Stream stops waiting for acks as connection is going to close. |
| 1034 | EXPECT_FALSE(stream_->IsWaitingForAcks()); |
zhongyi | 9fa2be3 | 2019-09-10 12:39:01 -0700 | [diff] [blame] | 1035 | EXPECT_FALSE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1036 | } |
| 1037 | |
| 1038 | TEST_P(QuicStreamTest, CanWriteNewDataAfterData) { |
wub | 4985598 | 2019-05-01 14:16:26 -0700 | [diff] [blame] | 1039 | SetQuicFlag(FLAGS_quic_buffered_data_threshold, 100); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1040 | Initialize(); |
| 1041 | EXPECT_TRUE(stream_->CanWriteNewDataAfterData(99)); |
| 1042 | EXPECT_FALSE(stream_->CanWriteNewDataAfterData(100)); |
| 1043 | } |
| 1044 | |
| 1045 | TEST_P(QuicStreamTest, WriteBufferedData) { |
| 1046 | // Set buffered data low water mark to be 100. |
wub | 4985598 | 2019-05-01 14:16:26 -0700 | [diff] [blame] | 1047 | SetQuicFlag(FLAGS_quic_buffered_data_threshold, 100); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1048 | |
| 1049 | Initialize(); |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 1050 | std::string data(1024, 'a'); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1051 | EXPECT_TRUE(stream_->CanWriteNewData()); |
| 1052 | |
| 1053 | // Testing WriteOrBufferData. |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1054 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)) |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1055 | .WillOnce(InvokeWithoutArgs([this]() { |
renjietang | 4d992bf | 2020-03-03 13:01:55 -0800 | [diff] [blame] | 1056 | return session_->ConsumeData(stream_->id(), 100u, 0u, NO_FIN, |
| 1057 | NOT_RETRANSMISSION, QuicheNullOpt); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1058 | })); |
| 1059 | stream_->WriteOrBufferData(data, false, nullptr); |
| 1060 | stream_->WriteOrBufferData(data, false, nullptr); |
| 1061 | stream_->WriteOrBufferData(data, false, nullptr); |
zhongyi | 1b2f783 | 2019-06-14 13:31:34 -0700 | [diff] [blame] | 1062 | EXPECT_TRUE(stream_->IsWaitingForAcks()); |
| 1063 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1064 | // Verify all data is saved. |
| 1065 | EXPECT_EQ(3 * data.length() - 100, stream_->BufferedDataBytes()); |
| 1066 | |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1067 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)) |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1068 | .WillOnce(InvokeWithoutArgs([this]() { |
renjietang | 4d992bf | 2020-03-03 13:01:55 -0800 | [diff] [blame] | 1069 | return session_->ConsumeData(stream_->id(), 100, 100u, NO_FIN, |
| 1070 | NOT_RETRANSMISSION, QuicheNullOpt); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1071 | })); |
| 1072 | // Buffered data size > threshold, do not ask upper layer for more data. |
| 1073 | EXPECT_CALL(*stream_, OnCanWriteNewData()).Times(0); |
| 1074 | stream_->OnCanWrite(); |
| 1075 | EXPECT_EQ(3 * data.length() - 200, stream_->BufferedDataBytes()); |
| 1076 | EXPECT_FALSE(stream_->CanWriteNewData()); |
| 1077 | |
| 1078 | // Send buffered data to make buffered data size < threshold. |
dschinazi | f1e7b42 | 2020-04-30 12:21:28 -0700 | [diff] [blame^] | 1079 | QuicByteCount data_to_write = |
| 1080 | 3 * data.length() - 200 - |
| 1081 | GetQuicFlag(FLAGS_quic_buffered_data_threshold) + 1; |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1082 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)) |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1083 | .WillOnce(InvokeWithoutArgs([this, data_to_write]() { |
renjietang | 7c23917 | 2020-02-21 13:50:39 -0800 | [diff] [blame] | 1084 | return session_->ConsumeData(stream_->id(), data_to_write, 200u, NO_FIN, |
renjietang | 4d992bf | 2020-03-03 13:01:55 -0800 | [diff] [blame] | 1085 | NOT_RETRANSMISSION, QuicheNullOpt); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1086 | })); |
| 1087 | // Buffered data size < threshold, ask upper layer for more data. |
| 1088 | EXPECT_CALL(*stream_, OnCanWriteNewData()).Times(1); |
| 1089 | stream_->OnCanWrite(); |
dschinazi | 696ee60 | 2019-04-25 16:05:35 -0700 | [diff] [blame] | 1090 | EXPECT_EQ(static_cast<uint64_t>( |
| 1091 | GetQuicFlag(FLAGS_quic_buffered_data_threshold) - 1), |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1092 | stream_->BufferedDataBytes()); |
| 1093 | EXPECT_TRUE(stream_->CanWriteNewData()); |
| 1094 | |
| 1095 | // Flush all buffered data. |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1096 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)) |
renjietang | 7c23917 | 2020-02-21 13:50:39 -0800 | [diff] [blame] | 1097 | .WillOnce(Invoke(session_.get(), &MockQuicSession::ConsumeData)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1098 | EXPECT_CALL(*stream_, OnCanWriteNewData()).Times(1); |
| 1099 | stream_->OnCanWrite(); |
| 1100 | EXPECT_EQ(0u, stream_->BufferedDataBytes()); |
| 1101 | EXPECT_FALSE(stream_->HasBufferedData()); |
| 1102 | EXPECT_TRUE(stream_->CanWriteNewData()); |
| 1103 | |
| 1104 | // Testing Writev. |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1105 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)) |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1106 | .WillOnce(Return(QuicConsumedData(0, false))); |
| 1107 | struct iovec iov = {const_cast<char*>(data.data()), data.length()}; |
| 1108 | QuicMemSliceStorage storage( |
| 1109 | &iov, 1, session_->connection()->helper()->GetStreamSendBufferAllocator(), |
| 1110 | 1024); |
| 1111 | QuicConsumedData consumed = stream_->WriteMemSlices(storage.ToSpan(), false); |
| 1112 | |
| 1113 | // There is no buffered data before, all data should be consumed without |
| 1114 | // respecting buffered data upper limit. |
| 1115 | EXPECT_EQ(data.length(), consumed.bytes_consumed); |
| 1116 | EXPECT_FALSE(consumed.fin_consumed); |
| 1117 | EXPECT_EQ(data.length(), stream_->BufferedDataBytes()); |
| 1118 | EXPECT_FALSE(stream_->CanWriteNewData()); |
| 1119 | |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1120 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)).Times(0); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1121 | QuicMemSliceStorage storage2( |
| 1122 | &iov, 1, session_->connection()->helper()->GetStreamSendBufferAllocator(), |
| 1123 | 1024); |
| 1124 | consumed = stream_->WriteMemSlices(storage2.ToSpan(), false); |
| 1125 | // No Data can be consumed as buffered data is beyond upper limit. |
| 1126 | EXPECT_EQ(0u, consumed.bytes_consumed); |
| 1127 | EXPECT_FALSE(consumed.fin_consumed); |
| 1128 | EXPECT_EQ(data.length(), stream_->BufferedDataBytes()); |
| 1129 | |
| 1130 | data_to_write = |
| 1131 | data.length() - GetQuicFlag(FLAGS_quic_buffered_data_threshold) + 1; |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1132 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)) |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1133 | .WillOnce(InvokeWithoutArgs([this, data_to_write]() { |
renjietang | 7c23917 | 2020-02-21 13:50:39 -0800 | [diff] [blame] | 1134 | return session_->ConsumeData(stream_->id(), data_to_write, 0u, NO_FIN, |
renjietang | 4d992bf | 2020-03-03 13:01:55 -0800 | [diff] [blame] | 1135 | NOT_RETRANSMISSION, QuicheNullOpt); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1136 | })); |
| 1137 | |
| 1138 | EXPECT_CALL(*stream_, OnCanWriteNewData()).Times(1); |
| 1139 | stream_->OnCanWrite(); |
dschinazi | 696ee60 | 2019-04-25 16:05:35 -0700 | [diff] [blame] | 1140 | EXPECT_EQ(static_cast<uint64_t>( |
| 1141 | GetQuicFlag(FLAGS_quic_buffered_data_threshold) - 1), |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1142 | stream_->BufferedDataBytes()); |
| 1143 | EXPECT_TRUE(stream_->CanWriteNewData()); |
| 1144 | |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1145 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)).Times(0); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1146 | // All data can be consumed as buffered data is below upper limit. |
| 1147 | QuicMemSliceStorage storage3( |
| 1148 | &iov, 1, session_->connection()->helper()->GetStreamSendBufferAllocator(), |
| 1149 | 1024); |
| 1150 | consumed = stream_->WriteMemSlices(storage3.ToSpan(), false); |
| 1151 | EXPECT_EQ(data.length(), consumed.bytes_consumed); |
| 1152 | EXPECT_FALSE(consumed.fin_consumed); |
| 1153 | EXPECT_EQ(data.length() + GetQuicFlag(FLAGS_quic_buffered_data_threshold) - 1, |
| 1154 | stream_->BufferedDataBytes()); |
| 1155 | EXPECT_FALSE(stream_->CanWriteNewData()); |
| 1156 | } |
| 1157 | |
| 1158 | TEST_P(QuicStreamTest, WritevDataReachStreamLimit) { |
| 1159 | Initialize(); |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 1160 | std::string data("aaaaa"); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1161 | QuicStreamPeer::SetStreamBytesWritten(kMaxStreamLength - data.length(), |
| 1162 | stream_); |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1163 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)) |
renjietang | 7c23917 | 2020-02-21 13:50:39 -0800 | [diff] [blame] | 1164 | .WillOnce(Invoke(session_.get(), &MockQuicSession::ConsumeData)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1165 | struct iovec iov = {const_cast<char*>(data.data()), 5u}; |
| 1166 | QuicMemSliceStorage storage( |
| 1167 | &iov, 1, session_->connection()->helper()->GetStreamSendBufferAllocator(), |
| 1168 | 1024); |
| 1169 | QuicConsumedData consumed = stream_->WriteMemSlices(storage.ToSpan(), false); |
| 1170 | EXPECT_EQ(data.length(), consumed.bytes_consumed); |
| 1171 | struct iovec iov2 = {const_cast<char*>(data.data()), 1u}; |
| 1172 | QuicMemSliceStorage storage2( |
| 1173 | &iov2, 1, |
| 1174 | session_->connection()->helper()->GetStreamSendBufferAllocator(), 1024); |
| 1175 | EXPECT_CALL(*connection_, CloseConnection(QUIC_STREAM_LENGTH_OVERFLOW, _, _)); |
| 1176 | EXPECT_QUIC_BUG(stream_->WriteMemSlices(storage2.ToSpan(), false), |
| 1177 | "Write too many data via stream"); |
| 1178 | } |
| 1179 | |
| 1180 | TEST_P(QuicStreamTest, WriteMemSlices) { |
| 1181 | // Set buffered data low water mark to be 100. |
wub | 4985598 | 2019-05-01 14:16:26 -0700 | [diff] [blame] | 1182 | SetQuicFlag(FLAGS_quic_buffered_data_threshold, 100); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1183 | |
| 1184 | Initialize(); |
| 1185 | char data[1024]; |
dschinazi | f1e7b42 | 2020-04-30 12:21:28 -0700 | [diff] [blame^] | 1186 | std::vector<std::pair<char*, QuicByteCount>> buffers; |
bnc | 4e9283d | 2019-12-17 07:08:57 -0800 | [diff] [blame] | 1187 | buffers.push_back(std::make_pair(data, QUICHE_ARRAYSIZE(data))); |
| 1188 | buffers.push_back(std::make_pair(data, QUICHE_ARRAYSIZE(data))); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1189 | QuicTestMemSliceVector vector1(buffers); |
| 1190 | QuicTestMemSliceVector vector2(buffers); |
| 1191 | QuicMemSliceSpan span1 = vector1.span(); |
| 1192 | QuicMemSliceSpan span2 = vector2.span(); |
| 1193 | |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1194 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)) |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1195 | .WillOnce(InvokeWithoutArgs([this]() { |
renjietang | 4d992bf | 2020-03-03 13:01:55 -0800 | [diff] [blame] | 1196 | return session_->ConsumeData(stream_->id(), 100u, 0u, NO_FIN, |
| 1197 | NOT_RETRANSMISSION, QuicheNullOpt); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1198 | })); |
| 1199 | // There is no buffered data before, all data should be consumed. |
| 1200 | QuicConsumedData consumed = stream_->WriteMemSlices(span1, false); |
| 1201 | EXPECT_EQ(2048u, consumed.bytes_consumed); |
| 1202 | EXPECT_FALSE(consumed.fin_consumed); |
bnc | 4e9283d | 2019-12-17 07:08:57 -0800 | [diff] [blame] | 1203 | EXPECT_EQ(2 * QUICHE_ARRAYSIZE(data) - 100, stream_->BufferedDataBytes()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1204 | EXPECT_FALSE(stream_->fin_buffered()); |
| 1205 | |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1206 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)).Times(0); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1207 | // No Data can be consumed as buffered data is beyond upper limit. |
| 1208 | consumed = stream_->WriteMemSlices(span2, true); |
| 1209 | EXPECT_EQ(0u, consumed.bytes_consumed); |
| 1210 | EXPECT_FALSE(consumed.fin_consumed); |
bnc | 4e9283d | 2019-12-17 07:08:57 -0800 | [diff] [blame] | 1211 | EXPECT_EQ(2 * QUICHE_ARRAYSIZE(data) - 100, stream_->BufferedDataBytes()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1212 | EXPECT_FALSE(stream_->fin_buffered()); |
| 1213 | |
dschinazi | f1e7b42 | 2020-04-30 12:21:28 -0700 | [diff] [blame^] | 1214 | QuicByteCount data_to_write = |
| 1215 | 2 * QUICHE_ARRAYSIZE(data) - 100 - |
| 1216 | GetQuicFlag(FLAGS_quic_buffered_data_threshold) + 1; |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1217 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)) |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1218 | .WillOnce(InvokeWithoutArgs([this, data_to_write]() { |
renjietang | 7c23917 | 2020-02-21 13:50:39 -0800 | [diff] [blame] | 1219 | return session_->ConsumeData(stream_->id(), data_to_write, 100u, NO_FIN, |
renjietang | 4d992bf | 2020-03-03 13:01:55 -0800 | [diff] [blame] | 1220 | NOT_RETRANSMISSION, QuicheNullOpt); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1221 | })); |
| 1222 | EXPECT_CALL(*stream_, OnCanWriteNewData()).Times(1); |
| 1223 | stream_->OnCanWrite(); |
dschinazi | 696ee60 | 2019-04-25 16:05:35 -0700 | [diff] [blame] | 1224 | EXPECT_EQ(static_cast<uint64_t>( |
| 1225 | GetQuicFlag(FLAGS_quic_buffered_data_threshold) - 1), |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1226 | stream_->BufferedDataBytes()); |
| 1227 | // Try to write slices2 again. |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1228 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)).Times(0); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1229 | consumed = stream_->WriteMemSlices(span2, true); |
| 1230 | EXPECT_EQ(2048u, consumed.bytes_consumed); |
| 1231 | EXPECT_TRUE(consumed.fin_consumed); |
bnc | 4e9283d | 2019-12-17 07:08:57 -0800 | [diff] [blame] | 1232 | EXPECT_EQ(2 * QUICHE_ARRAYSIZE(data) + |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1233 | GetQuicFlag(FLAGS_quic_buffered_data_threshold) - 1, |
| 1234 | stream_->BufferedDataBytes()); |
| 1235 | EXPECT_TRUE(stream_->fin_buffered()); |
| 1236 | |
| 1237 | // Flush all buffered data. |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1238 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)) |
renjietang | 7c23917 | 2020-02-21 13:50:39 -0800 | [diff] [blame] | 1239 | .WillOnce(Invoke(session_.get(), &MockQuicSession::ConsumeData)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1240 | stream_->OnCanWrite(); |
| 1241 | EXPECT_CALL(*stream_, OnCanWriteNewData()).Times(0); |
| 1242 | EXPECT_FALSE(stream_->HasBufferedData()); |
| 1243 | EXPECT_TRUE(stream_->write_side_closed()); |
| 1244 | } |
| 1245 | |
| 1246 | TEST_P(QuicStreamTest, WriteMemSlicesReachStreamLimit) { |
| 1247 | Initialize(); |
| 1248 | QuicStreamPeer::SetStreamBytesWritten(kMaxStreamLength - 5u, stream_); |
| 1249 | char data[5]; |
dschinazi | f1e7b42 | 2020-04-30 12:21:28 -0700 | [diff] [blame^] | 1250 | std::vector<std::pair<char*, QuicByteCount>> buffers; |
bnc | 4e9283d | 2019-12-17 07:08:57 -0800 | [diff] [blame] | 1251 | buffers.push_back(std::make_pair(data, QUICHE_ARRAYSIZE(data))); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1252 | QuicTestMemSliceVector vector1(buffers); |
| 1253 | QuicMemSliceSpan span1 = vector1.span(); |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1254 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)) |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1255 | .WillOnce(InvokeWithoutArgs([this]() { |
renjietang | 4d992bf | 2020-03-03 13:01:55 -0800 | [diff] [blame] | 1256 | return session_->ConsumeData(stream_->id(), 5u, 0u, NO_FIN, |
| 1257 | NOT_RETRANSMISSION, QuicheNullOpt); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1258 | })); |
| 1259 | // There is no buffered data before, all data should be consumed. |
| 1260 | QuicConsumedData consumed = stream_->WriteMemSlices(span1, false); |
| 1261 | EXPECT_EQ(5u, consumed.bytes_consumed); |
| 1262 | |
dschinazi | f1e7b42 | 2020-04-30 12:21:28 -0700 | [diff] [blame^] | 1263 | std::vector<std::pair<char*, QuicByteCount>> buffers2; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1264 | buffers2.push_back(std::make_pair(data, 1u)); |
| 1265 | QuicTestMemSliceVector vector2(buffers); |
| 1266 | QuicMemSliceSpan span2 = vector2.span(); |
| 1267 | EXPECT_CALL(*connection_, CloseConnection(QUIC_STREAM_LENGTH_OVERFLOW, _, _)); |
| 1268 | EXPECT_QUIC_BUG(stream_->WriteMemSlices(span2, false), |
| 1269 | "Write too many data via stream"); |
| 1270 | } |
| 1271 | |
| 1272 | TEST_P(QuicStreamTest, StreamDataGetAckedMultipleTimes) { |
| 1273 | Initialize(); |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1274 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)) |
renjietang | 7c23917 | 2020-02-21 13:50:39 -0800 | [diff] [blame] | 1275 | .WillRepeatedly(Invoke(session_.get(), &MockQuicSession::ConsumeData)); |
zhongyi | 1b2f783 | 2019-06-14 13:31:34 -0700 | [diff] [blame] | 1276 | EXPECT_FALSE(stream_->IsWaitingForAcks()); |
zhongyi | 9fa2be3 | 2019-09-10 12:39:01 -0700 | [diff] [blame] | 1277 | EXPECT_FALSE(session_->HasUnackedStreamData()); |
zhongyi | 1b2f783 | 2019-06-14 13:31:34 -0700 | [diff] [blame] | 1278 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1279 | // Send [0, 27) and fin. |
| 1280 | stream_->WriteOrBufferData(kData1, false, nullptr); |
| 1281 | stream_->WriteOrBufferData(kData1, false, nullptr); |
| 1282 | stream_->WriteOrBufferData(kData1, true, nullptr); |
| 1283 | EXPECT_EQ(3u, QuicStreamPeer::SendBuffer(stream_).size()); |
| 1284 | EXPECT_TRUE(stream_->IsWaitingForAcks()); |
fayang | 8265a2a | 2019-10-16 11:23:51 -0700 | [diff] [blame] | 1285 | EXPECT_TRUE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1286 | // Ack [0, 9), [5, 22) and [18, 26) |
| 1287 | // Verify [0, 9) 9 bytes are acked. |
| 1288 | QuicByteCount newly_acked_length = 0; |
| 1289 | EXPECT_TRUE(stream_->OnStreamFrameAcked(0, 9, false, QuicTime::Delta::Zero(), |
QUICHE team | 2f5f30b | 2020-02-18 08:52:28 -0800 | [diff] [blame] | 1290 | QuicTime::Zero(), |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1291 | &newly_acked_length)); |
| 1292 | EXPECT_EQ(9u, newly_acked_length); |
| 1293 | EXPECT_EQ(2u, QuicStreamPeer::SendBuffer(stream_).size()); |
| 1294 | // Verify [9, 22) 13 bytes are acked. |
| 1295 | EXPECT_TRUE(stream_->OnStreamFrameAcked(5, 17, false, QuicTime::Delta::Zero(), |
QUICHE team | 2f5f30b | 2020-02-18 08:52:28 -0800 | [diff] [blame] | 1296 | QuicTime::Zero(), |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1297 | &newly_acked_length)); |
| 1298 | EXPECT_EQ(13u, newly_acked_length); |
| 1299 | EXPECT_EQ(1u, QuicStreamPeer::SendBuffer(stream_).size()); |
| 1300 | // Verify [22, 26) 4 bytes are acked. |
| 1301 | EXPECT_TRUE(stream_->OnStreamFrameAcked(18, 8, false, QuicTime::Delta::Zero(), |
QUICHE team | 2f5f30b | 2020-02-18 08:52:28 -0800 | [diff] [blame] | 1302 | QuicTime::Zero(), |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1303 | &newly_acked_length)); |
| 1304 | EXPECT_EQ(4u, newly_acked_length); |
| 1305 | EXPECT_EQ(1u, QuicStreamPeer::SendBuffer(stream_).size()); |
| 1306 | EXPECT_TRUE(stream_->IsWaitingForAcks()); |
fayang | 8265a2a | 2019-10-16 11:23:51 -0700 | [diff] [blame] | 1307 | EXPECT_TRUE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1308 | |
| 1309 | // Ack [0, 27). Verify [26, 27) 1 byte is acked. |
| 1310 | EXPECT_TRUE(stream_->OnStreamFrameAcked(26, 1, false, QuicTime::Delta::Zero(), |
QUICHE team | 2f5f30b | 2020-02-18 08:52:28 -0800 | [diff] [blame] | 1311 | QuicTime::Zero(), |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1312 | &newly_acked_length)); |
| 1313 | EXPECT_EQ(1u, newly_acked_length); |
| 1314 | EXPECT_EQ(0u, QuicStreamPeer::SendBuffer(stream_).size()); |
| 1315 | EXPECT_TRUE(stream_->IsWaitingForAcks()); |
fayang | 8265a2a | 2019-10-16 11:23:51 -0700 | [diff] [blame] | 1316 | EXPECT_TRUE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1317 | |
| 1318 | // Ack Fin. |
| 1319 | EXPECT_TRUE(stream_->OnStreamFrameAcked(27, 0, true, QuicTime::Delta::Zero(), |
QUICHE team | 2f5f30b | 2020-02-18 08:52:28 -0800 | [diff] [blame] | 1320 | QuicTime::Zero(), |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1321 | &newly_acked_length)); |
| 1322 | EXPECT_EQ(0u, newly_acked_length); |
| 1323 | EXPECT_EQ(0u, QuicStreamPeer::SendBuffer(stream_).size()); |
| 1324 | EXPECT_FALSE(stream_->IsWaitingForAcks()); |
zhongyi | 9fa2be3 | 2019-09-10 12:39:01 -0700 | [diff] [blame] | 1325 | EXPECT_FALSE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1326 | |
| 1327 | // Ack [10, 27) and fin. No new data is acked. |
QUICHE team | 2f5f30b | 2020-02-18 08:52:28 -0800 | [diff] [blame] | 1328 | EXPECT_FALSE( |
| 1329 | stream_->OnStreamFrameAcked(10, 17, true, QuicTime::Delta::Zero(), |
| 1330 | QuicTime::Zero(), &newly_acked_length)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1331 | EXPECT_EQ(0u, newly_acked_length); |
| 1332 | EXPECT_EQ(0u, QuicStreamPeer::SendBuffer(stream_).size()); |
| 1333 | EXPECT_FALSE(stream_->IsWaitingForAcks()); |
zhongyi | 9fa2be3 | 2019-09-10 12:39:01 -0700 | [diff] [blame] | 1334 | EXPECT_FALSE(session_->HasUnackedStreamData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1335 | } |
| 1336 | |
| 1337 | TEST_P(QuicStreamTest, OnStreamFrameLost) { |
| 1338 | Initialize(); |
| 1339 | |
| 1340 | // Send [0, 9). |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1341 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)) |
renjietang | 7c23917 | 2020-02-21 13:50:39 -0800 | [diff] [blame] | 1342 | .WillOnce(Invoke(session_.get(), &MockQuicSession::ConsumeData)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1343 | stream_->WriteOrBufferData(kData1, false, nullptr); |
| 1344 | EXPECT_FALSE(stream_->HasBufferedData()); |
| 1345 | EXPECT_TRUE(stream_->IsStreamFrameOutstanding(0, 9, false)); |
| 1346 | |
| 1347 | // Try to send [9, 27), but connection is blocked. |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1348 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)) |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1349 | .WillOnce(Return(QuicConsumedData(0, false))); |
| 1350 | stream_->WriteOrBufferData(kData2, false, nullptr); |
| 1351 | stream_->WriteOrBufferData(kData2, false, nullptr); |
| 1352 | EXPECT_TRUE(stream_->HasBufferedData()); |
| 1353 | EXPECT_FALSE(stream_->HasPendingRetransmission()); |
| 1354 | |
| 1355 | // Lost [0, 9). When stream gets a chance to write, only lost data is |
| 1356 | // transmitted. |
| 1357 | stream_->OnStreamFrameLost(0, 9, false); |
| 1358 | EXPECT_TRUE(stream_->HasPendingRetransmission()); |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1359 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)) |
renjietang | 7c23917 | 2020-02-21 13:50:39 -0800 | [diff] [blame] | 1360 | .WillOnce(Invoke(session_.get(), &MockQuicSession::ConsumeData)); |
renjietang | b38e635 | 2019-10-24 09:38:20 -0700 | [diff] [blame] | 1361 | EXPECT_CALL(*stream_, OnCanWriteNewData()).Times(1); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1362 | stream_->OnCanWrite(); |
| 1363 | EXPECT_FALSE(stream_->HasPendingRetransmission()); |
| 1364 | EXPECT_TRUE(stream_->HasBufferedData()); |
| 1365 | |
| 1366 | // This OnCanWrite causes [9, 27) to be sent. |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1367 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)) |
renjietang | 7c23917 | 2020-02-21 13:50:39 -0800 | [diff] [blame] | 1368 | .WillOnce(Invoke(session_.get(), &MockQuicSession::ConsumeData)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1369 | stream_->OnCanWrite(); |
| 1370 | EXPECT_FALSE(stream_->HasBufferedData()); |
| 1371 | |
| 1372 | // Send a fin only frame. |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1373 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)) |
renjietang | 7c23917 | 2020-02-21 13:50:39 -0800 | [diff] [blame] | 1374 | .WillOnce(Invoke(session_.get(), &MockQuicSession::ConsumeData)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1375 | stream_->WriteOrBufferData("", true, nullptr); |
| 1376 | |
| 1377 | // Lost [9, 27) and fin. |
| 1378 | stream_->OnStreamFrameLost(9, 18, false); |
| 1379 | stream_->OnStreamFrameLost(27, 0, true); |
| 1380 | EXPECT_TRUE(stream_->HasPendingRetransmission()); |
| 1381 | |
| 1382 | // Ack [9, 18). |
| 1383 | QuicByteCount newly_acked_length = 0; |
| 1384 | EXPECT_TRUE(stream_->OnStreamFrameAcked(9, 9, false, QuicTime::Delta::Zero(), |
QUICHE team | 2f5f30b | 2020-02-18 08:52:28 -0800 | [diff] [blame] | 1385 | QuicTime::Zero(), |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1386 | &newly_acked_length)); |
| 1387 | EXPECT_EQ(9u, newly_acked_length); |
| 1388 | EXPECT_FALSE(stream_->IsStreamFrameOutstanding(9, 3, false)); |
| 1389 | EXPECT_TRUE(stream_->HasPendingRetransmission()); |
| 1390 | // This OnCanWrite causes [18, 27) and fin to be retransmitted. Verify fin can |
| 1391 | // be bundled with data. |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1392 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)) |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1393 | .WillOnce(InvokeWithoutArgs([this]() { |
renjietang | 4d992bf | 2020-03-03 13:01:55 -0800 | [diff] [blame] | 1394 | return session_->ConsumeData(stream_->id(), 9u, 18u, FIN, |
| 1395 | NOT_RETRANSMISSION, QuicheNullOpt); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1396 | })); |
| 1397 | stream_->OnCanWrite(); |
| 1398 | EXPECT_FALSE(stream_->HasPendingRetransmission()); |
| 1399 | // Lost [9, 18) again, but it is not considered as lost because kData2 |
| 1400 | // has been acked. |
| 1401 | stream_->OnStreamFrameLost(9, 9, false); |
| 1402 | EXPECT_FALSE(stream_->HasPendingRetransmission()); |
| 1403 | EXPECT_TRUE(stream_->IsStreamFrameOutstanding(27, 0, true)); |
| 1404 | } |
| 1405 | |
| 1406 | TEST_P(QuicStreamTest, CannotBundleLostFin) { |
| 1407 | Initialize(); |
| 1408 | |
| 1409 | // Send [0, 18) and fin. |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1410 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)) |
renjietang | 7c23917 | 2020-02-21 13:50:39 -0800 | [diff] [blame] | 1411 | .WillRepeatedly(Invoke(session_.get(), &MockQuicSession::ConsumeData)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1412 | stream_->WriteOrBufferData(kData1, false, nullptr); |
| 1413 | stream_->WriteOrBufferData(kData2, true, nullptr); |
| 1414 | |
| 1415 | // Lost [0, 9) and fin. |
| 1416 | stream_->OnStreamFrameLost(0, 9, false); |
| 1417 | stream_->OnStreamFrameLost(18, 0, true); |
| 1418 | |
| 1419 | // Retransmit lost data. Verify [0, 9) and fin are retransmitted in two |
| 1420 | // frames. |
| 1421 | InSequence s; |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1422 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)) |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1423 | .WillOnce(InvokeWithoutArgs([this]() { |
renjietang | 4d992bf | 2020-03-03 13:01:55 -0800 | [diff] [blame] | 1424 | return session_->ConsumeData(stream_->id(), 9u, 0u, NO_FIN, |
| 1425 | NOT_RETRANSMISSION, QuicheNullOpt); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1426 | })); |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1427 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)) |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1428 | .WillOnce(Return(QuicConsumedData(0, true))); |
| 1429 | stream_->OnCanWrite(); |
| 1430 | } |
| 1431 | |
| 1432 | TEST_P(QuicStreamTest, MarkConnectionLevelWriteBlockedOnWindowUpdateFrame) { |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1433 | Initialize(); |
| 1434 | |
renjietang | 39979d3 | 2019-09-13 10:02:13 -0700 | [diff] [blame] | 1435 | // Set the config to a small value so that a newly created stream has small |
| 1436 | // send flow control window. |
| 1437 | QuicConfigPeer::SetReceivedInitialStreamFlowControlWindow(session_->config(), |
| 1438 | 100); |
renjietang | 9bf2564 | 2019-10-10 10:21:15 -0700 | [diff] [blame] | 1439 | QuicConfigPeer::SetReceivedInitialMaxStreamDataBytesIncomingBidirectional( |
| 1440 | session_->config(), 100); |
renjietang | 39979d3 | 2019-09-13 10:02:13 -0700 | [diff] [blame] | 1441 | auto stream = new TestStream(GetNthClientInitiatedBidirectionalStreamId( |
| 1442 | GetParam().transport_version, 2), |
| 1443 | session_.get(), BIDIRECTIONAL); |
| 1444 | session_->ActivateStream(QuicWrapUnique(stream)); |
| 1445 | |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1446 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)) |
renjietang | 7c23917 | 2020-02-21 13:50:39 -0800 | [diff] [blame] | 1447 | .WillRepeatedly(Invoke(session_.get(), &MockQuicSession::ConsumeData)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1448 | EXPECT_CALL(*connection_, SendControlFrame(_)) |
bnc | 5b3c3be | 2019-06-25 10:37:09 -0700 | [diff] [blame] | 1449 | .WillOnce(Invoke(&ClearControlFrame)); |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 1450 | std::string data(1024, '.'); |
renjietang | 39979d3 | 2019-09-13 10:02:13 -0700 | [diff] [blame] | 1451 | stream->WriteOrBufferData(data, false, nullptr); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1452 | EXPECT_FALSE(HasWriteBlockedStreams()); |
| 1453 | |
| 1454 | QuicWindowUpdateFrame window_update(kInvalidControlFrameId, stream_->id(), |
| 1455 | 1234); |
| 1456 | |
renjietang | 39979d3 | 2019-09-13 10:02:13 -0700 | [diff] [blame] | 1457 | stream->OnWindowUpdateFrame(window_update); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1458 | // Verify stream is marked connection level write blocked. |
| 1459 | EXPECT_TRUE(HasWriteBlockedStreams()); |
renjietang | 39979d3 | 2019-09-13 10:02:13 -0700 | [diff] [blame] | 1460 | EXPECT_TRUE(stream->HasBufferedData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1461 | } |
| 1462 | |
| 1463 | // Regression test for b/73282665. |
| 1464 | TEST_P(QuicStreamTest, |
| 1465 | MarkConnectionLevelWriteBlockedOnWindowUpdateFrameWithNoBufferedData) { |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1466 | Initialize(); |
| 1467 | |
renjietang | 39979d3 | 2019-09-13 10:02:13 -0700 | [diff] [blame] | 1468 | // Set the config to a small value so that a newly created stream has small |
| 1469 | // send flow control window. |
| 1470 | QuicConfigPeer::SetReceivedInitialStreamFlowControlWindow(session_->config(), |
| 1471 | 100); |
renjietang | 9bf2564 | 2019-10-10 10:21:15 -0700 | [diff] [blame] | 1472 | QuicConfigPeer::SetReceivedInitialMaxStreamDataBytesIncomingBidirectional( |
| 1473 | session_->config(), 100); |
renjietang | 39979d3 | 2019-09-13 10:02:13 -0700 | [diff] [blame] | 1474 | auto stream = new TestStream(GetNthClientInitiatedBidirectionalStreamId( |
| 1475 | GetParam().transport_version, 2), |
| 1476 | session_.get(), BIDIRECTIONAL); |
| 1477 | session_->ActivateStream(QuicWrapUnique(stream)); |
| 1478 | |
| 1479 | std::string data(100, '.'); |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1480 | EXPECT_CALL(*session_, WritevData(_, _, _, _, _, _)) |
renjietang | 7c23917 | 2020-02-21 13:50:39 -0800 | [diff] [blame] | 1481 | .WillRepeatedly(Invoke(session_.get(), &MockQuicSession::ConsumeData)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1482 | EXPECT_CALL(*connection_, SendControlFrame(_)) |
bnc | 5b3c3be | 2019-06-25 10:37:09 -0700 | [diff] [blame] | 1483 | .WillOnce(Invoke(&ClearControlFrame)); |
renjietang | 39979d3 | 2019-09-13 10:02:13 -0700 | [diff] [blame] | 1484 | stream->WriteOrBufferData(data, false, nullptr); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1485 | EXPECT_FALSE(HasWriteBlockedStreams()); |
| 1486 | |
| 1487 | QuicWindowUpdateFrame window_update(kInvalidControlFrameId, stream_->id(), |
| 1488 | 120); |
renjietang | 39979d3 | 2019-09-13 10:02:13 -0700 | [diff] [blame] | 1489 | stream->OnWindowUpdateFrame(window_update); |
| 1490 | EXPECT_FALSE(stream->HasBufferedData()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1491 | // Verify stream is marked as blocked although there is no buffered data. |
| 1492 | EXPECT_TRUE(HasWriteBlockedStreams()); |
| 1493 | } |
| 1494 | |
| 1495 | TEST_P(QuicStreamTest, RetransmitStreamData) { |
| 1496 | Initialize(); |
| 1497 | InSequence s; |
| 1498 | |
| 1499 | // Send [0, 18) with fin. |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1500 | EXPECT_CALL(*session_, WritevData(stream_->id(), _, _, _, _, _)) |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1501 | .Times(2) |
renjietang | 7c23917 | 2020-02-21 13:50:39 -0800 | [diff] [blame] | 1502 | .WillRepeatedly(Invoke(session_.get(), &MockQuicSession::ConsumeData)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1503 | stream_->WriteOrBufferData(kData1, false, nullptr); |
| 1504 | stream_->WriteOrBufferData(kData1, true, nullptr); |
| 1505 | // Ack [10, 13). |
| 1506 | QuicByteCount newly_acked_length = 0; |
| 1507 | stream_->OnStreamFrameAcked(10, 3, false, QuicTime::Delta::Zero(), |
QUICHE team | 2f5f30b | 2020-02-18 08:52:28 -0800 | [diff] [blame] | 1508 | QuicTime::Zero(), &newly_acked_length); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1509 | EXPECT_EQ(3u, newly_acked_length); |
| 1510 | // Retransmit [0, 18) with fin, and only [0, 8) is consumed. |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1511 | EXPECT_CALL(*session_, WritevData(stream_->id(), 10, 0, NO_FIN, _, _)) |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1512 | .WillOnce(InvokeWithoutArgs([this]() { |
renjietang | 4d992bf | 2020-03-03 13:01:55 -0800 | [diff] [blame] | 1513 | return session_->ConsumeData(stream_->id(), 8, 0u, NO_FIN, |
| 1514 | NOT_RETRANSMISSION, QuicheNullOpt); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1515 | })); |
renjietang | 4d992bf | 2020-03-03 13:01:55 -0800 | [diff] [blame] | 1516 | EXPECT_FALSE(stream_->RetransmitStreamData(0, 18, true, PTO_RETRANSMISSION)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1517 | |
| 1518 | // Retransmit [0, 18) with fin, and all is consumed. |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1519 | EXPECT_CALL(*session_, WritevData(stream_->id(), 10, 0, NO_FIN, _, _)) |
renjietang | 7c23917 | 2020-02-21 13:50:39 -0800 | [diff] [blame] | 1520 | .WillOnce(Invoke(session_.get(), &MockQuicSession::ConsumeData)); |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1521 | EXPECT_CALL(*session_, WritevData(stream_->id(), 5, 13, FIN, _, _)) |
renjietang | 7c23917 | 2020-02-21 13:50:39 -0800 | [diff] [blame] | 1522 | .WillOnce(Invoke(session_.get(), &MockQuicSession::ConsumeData)); |
renjietang | 4d992bf | 2020-03-03 13:01:55 -0800 | [diff] [blame] | 1523 | EXPECT_TRUE(stream_->RetransmitStreamData(0, 18, true, PTO_RETRANSMISSION)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1524 | |
| 1525 | // Retransmit [0, 8) with fin, and all is consumed. |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1526 | EXPECT_CALL(*session_, WritevData(stream_->id(), 8, 0, NO_FIN, _, _)) |
renjietang | 7c23917 | 2020-02-21 13:50:39 -0800 | [diff] [blame] | 1527 | .WillOnce(Invoke(session_.get(), &MockQuicSession::ConsumeData)); |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1528 | EXPECT_CALL(*session_, WritevData(stream_->id(), 0, 18, FIN, _, _)) |
renjietang | 7c23917 | 2020-02-21 13:50:39 -0800 | [diff] [blame] | 1529 | .WillOnce(Invoke(session_.get(), &MockQuicSession::ConsumeData)); |
renjietang | 4d992bf | 2020-03-03 13:01:55 -0800 | [diff] [blame] | 1530 | EXPECT_TRUE(stream_->RetransmitStreamData(0, 8, true, PTO_RETRANSMISSION)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1531 | } |
| 1532 | |
| 1533 | TEST_P(QuicStreamTest, ResetStreamOnTtlExpiresRetransmitLostData) { |
| 1534 | Initialize(); |
| 1535 | |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1536 | EXPECT_CALL(*session_, WritevData(stream_->id(), 200, 0, FIN, _, _)) |
renjietang | 7c23917 | 2020-02-21 13:50:39 -0800 | [diff] [blame] | 1537 | .WillOnce(Invoke(session_.get(), &MockQuicSession::ConsumeData)); |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 1538 | std::string body(200, 'a'); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1539 | stream_->WriteOrBufferData(body, true, nullptr); |
| 1540 | |
| 1541 | // Set TTL to be 1 s. |
| 1542 | QuicTime::Delta ttl = QuicTime::Delta::FromSeconds(1); |
| 1543 | ASSERT_TRUE(stream_->MaybeSetTtl(ttl)); |
| 1544 | // Verify data gets retransmitted because TTL does not expire. |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1545 | EXPECT_CALL(*session_, WritevData(stream_->id(), 100, 0, NO_FIN, _, _)) |
renjietang | 7c23917 | 2020-02-21 13:50:39 -0800 | [diff] [blame] | 1546 | .WillOnce(Invoke(session_.get(), &MockQuicSession::ConsumeData)); |
renjietang | 4d992bf | 2020-03-03 13:01:55 -0800 | [diff] [blame] | 1547 | EXPECT_TRUE(stream_->RetransmitStreamData(0, 100, false, PTO_RETRANSMISSION)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1548 | stream_->OnStreamFrameLost(100, 100, true); |
| 1549 | EXPECT_TRUE(stream_->HasPendingRetransmission()); |
| 1550 | |
| 1551 | connection_->AdvanceTime(QuicTime::Delta::FromSeconds(1)); |
| 1552 | // Verify stream gets reset because TTL expires. |
| 1553 | EXPECT_CALL(*session_, SendRstStream(_, QUIC_STREAM_TTL_EXPIRED, _)).Times(1); |
| 1554 | stream_->OnCanWrite(); |
| 1555 | } |
| 1556 | |
| 1557 | TEST_P(QuicStreamTest, ResetStreamOnTtlExpiresEarlyRetransmitData) { |
| 1558 | Initialize(); |
| 1559 | |
renjietang | 41a1b41 | 2020-02-27 15:05:14 -0800 | [diff] [blame] | 1560 | EXPECT_CALL(*session_, WritevData(stream_->id(), 200, 0, FIN, _, _)) |
renjietang | 7c23917 | 2020-02-21 13:50:39 -0800 | [diff] [blame] | 1561 | .WillOnce(Invoke(session_.get(), &MockQuicSession::ConsumeData)); |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 1562 | std::string body(200, 'a'); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1563 | stream_->WriteOrBufferData(body, true, nullptr); |
| 1564 | |
| 1565 | // Set TTL to be 1 s. |
| 1566 | QuicTime::Delta ttl = QuicTime::Delta::FromSeconds(1); |
| 1567 | ASSERT_TRUE(stream_->MaybeSetTtl(ttl)); |
| 1568 | |
| 1569 | connection_->AdvanceTime(QuicTime::Delta::FromSeconds(1)); |
| 1570 | // Verify stream gets reset because TTL expires. |
| 1571 | EXPECT_CALL(*session_, SendRstStream(_, QUIC_STREAM_TTL_EXPIRED, _)).Times(1); |
renjietang | 4d992bf | 2020-03-03 13:01:55 -0800 | [diff] [blame] | 1572 | stream_->RetransmitStreamData(0, 100, false, PTO_RETRANSMISSION); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1573 | } |
| 1574 | |
| 1575 | // Test that QuicStream::StopSending A) is a no-op if the connection is not in |
| 1576 | // version 99, B) that it properly invokes QuicSession::StopSending, and C) that |
| 1577 | // the correct data is passed along, including getting the stream ID. |
renjietang | 9bf2564 | 2019-10-10 10:21:15 -0700 | [diff] [blame] | 1578 | TEST_P(QuicStreamTest, CheckStopSending) { |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1579 | Initialize(); |
| 1580 | const int kStopSendingCode = 123; |
| 1581 | // These must start as false. |
bnc | c7d9e0c | 2019-04-16 10:22:15 -0700 | [diff] [blame] | 1582 | EXPECT_FALSE(stream_->write_side_closed()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1583 | EXPECT_FALSE(QuicStreamPeer::read_side_closed(stream_)); |
| 1584 | // Expect to actually see a stop sending if and only if we are in version 99. |
fkastenholz | 305e173 | 2019-06-18 05:01:22 -0700 | [diff] [blame] | 1585 | if (VersionHasIetfQuicFrames(connection_->transport_version())) { |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1586 | EXPECT_CALL(*session_, SendStopSending(kStopSendingCode, stream_->id())) |
| 1587 | .Times(1); |
| 1588 | } else { |
| 1589 | EXPECT_CALL(*session_, SendStopSending(_, _)).Times(0); |
| 1590 | } |
| 1591 | stream_->SendStopSending(kStopSendingCode); |
| 1592 | // Sending a STOP_SENDING does not actually close the local stream. |
| 1593 | // Our implementation waits for the responding RESET_STREAM to effect the |
| 1594 | // closes. Therefore, read- and write-side closes should both be false. |
bnc | c7d9e0c | 2019-04-16 10:22:15 -0700 | [diff] [blame] | 1595 | EXPECT_FALSE(stream_->write_side_closed()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1596 | EXPECT_FALSE(QuicStreamPeer::read_side_closed(stream_)); |
| 1597 | } |
| 1598 | |
| 1599 | // Test that OnStreamReset does one-way (read) closes if version 99, two way |
| 1600 | // (read and write) if not version 99. |
| 1601 | TEST_P(QuicStreamTest, OnStreamResetReadOrReadWrite) { |
| 1602 | Initialize(); |
bnc | c7d9e0c | 2019-04-16 10:22:15 -0700 | [diff] [blame] | 1603 | EXPECT_FALSE(stream_->write_side_closed()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1604 | EXPECT_FALSE(QuicStreamPeer::read_side_closed(stream_)); |
| 1605 | |
| 1606 | QuicRstStreamFrame rst_frame(kInvalidControlFrameId, stream_->id(), |
| 1607 | QUIC_STREAM_CANCELLED, 1234); |
| 1608 | stream_->OnStreamReset(rst_frame); |
fkastenholz | 305e173 | 2019-06-18 05:01:22 -0700 | [diff] [blame] | 1609 | if (VersionHasIetfQuicFrames(connection_->transport_version())) { |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1610 | // Version 99/IETF QUIC should close just the read side. |
| 1611 | EXPECT_TRUE(QuicStreamPeer::read_side_closed(stream_)); |
bnc | c7d9e0c | 2019-04-16 10:22:15 -0700 | [diff] [blame] | 1612 | EXPECT_FALSE(stream_->write_side_closed()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1613 | } else { |
| 1614 | // Google QUIC should close both sides of the stream. |
bnc | c7d9e0c | 2019-04-16 10:22:15 -0700 | [diff] [blame] | 1615 | EXPECT_TRUE(stream_->write_side_closed()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1616 | EXPECT_TRUE(QuicStreamPeer::read_side_closed(stream_)); |
| 1617 | } |
| 1618 | } |
| 1619 | |
renjietang | 28c04b7 | 2019-07-01 15:08:09 -0700 | [diff] [blame] | 1620 | TEST_P(QuicStreamTest, WindowUpdateForReadOnlyStream) { |
renjietang | 28c04b7 | 2019-07-01 15:08:09 -0700 | [diff] [blame] | 1621 | Initialize(); |
| 1622 | |
| 1623 | QuicStreamId stream_id = QuicUtils::GetFirstUnidirectionalStreamId( |
| 1624 | connection_->transport_version(), Perspective::IS_CLIENT); |
| 1625 | TestStream stream(stream_id, session_.get(), READ_UNIDIRECTIONAL); |
| 1626 | QuicWindowUpdateFrame window_update_frame(kInvalidControlFrameId, stream_id, |
| 1627 | 0); |
| 1628 | EXPECT_CALL( |
| 1629 | *connection_, |
| 1630 | CloseConnection( |
| 1631 | QUIC_WINDOW_UPDATE_RECEIVED_ON_READ_UNIDIRECTIONAL_STREAM, |
| 1632 | "WindowUpdateFrame received on READ_UNIDIRECTIONAL stream.", _)); |
| 1633 | stream.OnWindowUpdateFrame(window_update_frame); |
| 1634 | } |
| 1635 | |
renjietang | 15afba3 | 2019-10-23 14:32:35 -0700 | [diff] [blame] | 1636 | TEST_P(QuicStreamTest, RstStreamFrameChangesCloseOffset) { |
renjietang | 15afba3 | 2019-10-23 14:32:35 -0700 | [diff] [blame] | 1637 | Initialize(); |
| 1638 | |
| 1639 | QuicStreamFrame stream_frame(stream_->id(), true, 0, "abc"); |
renjietang | b38e635 | 2019-10-24 09:38:20 -0700 | [diff] [blame] | 1640 | EXPECT_CALL(*stream_, OnDataAvailable()); |
renjietang | 15afba3 | 2019-10-23 14:32:35 -0700 | [diff] [blame] | 1641 | stream_->OnStreamFrame(stream_frame); |
| 1642 | QuicRstStreamFrame rst(kInvalidControlFrameId, stream_->id(), |
| 1643 | QUIC_STREAM_CANCELLED, 0u); |
| 1644 | |
| 1645 | EXPECT_CALL(*connection_, CloseConnection(QUIC_STREAM_MULTIPLE_OFFSET, _, _)); |
| 1646 | stream_->OnStreamReset(rst); |
| 1647 | } |
| 1648 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1649 | } // namespace |
| 1650 | } // namespace test |
| 1651 | } // namespace quic |