QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1 | // Copyright (c) 2018 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 | #include "net/third_party/quiche/src/quic/core/quic_stream_id_manager.h" |
| 5 | |
| 6 | #include <cstdint> |
vasilvv | 872e7a3 | 2019-03-12 16:42:44 -0700 | [diff] [blame] | 7 | #include <string> |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 8 | #include <utility> |
| 9 | |
renjietang | 315428e | 2020-01-27 10:18:12 -0800 | [diff] [blame] | 10 | #include "net/third_party/quiche/src/quic/core/quic_constants.h" |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 11 | #include "net/third_party/quiche/src/quic/core/quic_utils.h" |
dschinazi | 38cc1ee | 2020-02-28 14:33:58 -0800 | [diff] [blame] | 12 | #include "net/third_party/quiche/src/quic/core/quic_versions.h" |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 13 | #include "net/third_party/quiche/src/quic/platform/api/quic_expect_bug.h" |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 14 | #include "net/third_party/quiche/src/quic/platform/api/quic_test.h" |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 15 | #include "net/third_party/quiche/src/quic/test_tools/quic_stream_id_manager_peer.h" |
dmcardle | cf0bfcf | 2019-12-13 08:08:21 -0800 | [diff] [blame] | 16 | #include "net/third_party/quiche/src/common/platform/api/quiche_str_cat.h" |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 17 | |
| 18 | using testing::_; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 19 | using testing::StrictMock; |
| 20 | |
| 21 | namespace quic { |
| 22 | namespace test { |
| 23 | namespace { |
| 24 | |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 25 | class MockDelegate : public QuicStreamIdManager::DelegateInterface { |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 26 | public: |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 27 | MOCK_METHOD2(SendMaxStreams, |
| 28 | void(QuicStreamCount stream_count, bool unidirectional)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 29 | }; |
| 30 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 31 | struct TestParams { |
dschinazi | 38cc1ee | 2020-02-28 14:33:58 -0800 | [diff] [blame] | 32 | TestParams(ParsedQuicVersion version, |
| 33 | Perspective perspective, |
| 34 | bool is_unidirectional) |
| 35 | : version(version), |
| 36 | perspective(perspective), |
| 37 | is_unidirectional(is_unidirectional) {} |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 38 | |
dschinazi | 38cc1ee | 2020-02-28 14:33:58 -0800 | [diff] [blame] | 39 | ParsedQuicVersion version; |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 40 | Perspective perspective; |
| 41 | bool is_unidirectional; |
| 42 | }; |
| 43 | |
| 44 | // Used by ::testing::PrintToStringParamName(). |
| 45 | std::string PrintToString(const TestParams& p) { |
dmcardle | cf0bfcf | 2019-12-13 08:08:21 -0800 | [diff] [blame] | 46 | return quiche::QuicheStrCat( |
dschinazi | 38cc1ee | 2020-02-28 14:33:58 -0800 | [diff] [blame] | 47 | ParsedQuicVersionToString(p.version), "_", |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 48 | (p.perspective == Perspective::IS_CLIENT ? "Client" : "Server"), |
| 49 | (p.is_unidirectional ? "Unidirectional" : "Bidirectional")); |
| 50 | } |
| 51 | |
| 52 | std::vector<TestParams> GetTestParams() { |
| 53 | std::vector<TestParams> params; |
dschinazi | 38cc1ee | 2020-02-28 14:33:58 -0800 | [diff] [blame] | 54 | for (const ParsedQuicVersion& version : AllSupportedVersions()) { |
| 55 | if (!version.HasIetfQuicFrames()) { |
| 56 | continue; |
| 57 | } |
| 58 | for (Perspective perspective : |
| 59 | {Perspective::IS_CLIENT, Perspective::IS_SERVER}) { |
| 60 | for (bool is_unidirectional : {true, false}) { |
| 61 | params.push_back(TestParams(version, perspective, is_unidirectional)); |
| 62 | } |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 63 | } |
| 64 | } |
| 65 | return params; |
| 66 | } |
| 67 | |
| 68 | class QuicStreamIdManagerTest : public QuicTestWithParam<TestParams> { |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 69 | protected: |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 70 | QuicStreamIdManagerTest() |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 71 | : stream_id_manager_(&delegate_, |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 72 | IsUnidirectional(), |
| 73 | perspective(), |
| 74 | transport_version(), |
renjietang | 315428e | 2020-01-27 10:18:12 -0800 | [diff] [blame] | 75 | 0, |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 76 | kDefaultMaxStreamsPerConnection) { |
| 77 | DCHECK(VersionHasIetfQuicFrames(transport_version())); |
| 78 | } |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 79 | |
dschinazi | 38cc1ee | 2020-02-28 14:33:58 -0800 | [diff] [blame] | 80 | QuicTransportVersion transport_version() const { |
| 81 | return GetParam().version.transport_version; |
| 82 | } |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 83 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 84 | // Returns the stream ID for the Nth incoming stream (created by the peer) |
| 85 | // of the corresponding directionality of this manager. |
| 86 | QuicStreamId GetNthIncomingStreamId(int n) { |
| 87 | return kV99StreamIdIncrement * n + |
| 88 | (IsUnidirectional() |
| 89 | ? QuicUtils::GetFirstUnidirectionalStreamId( |
| 90 | transport_version(), |
| 91 | QuicUtils::InvertPerspective(perspective())) |
| 92 | : QuicUtils::GetFirstBidirectionalStreamId( |
| 93 | transport_version(), |
| 94 | QuicUtils::InvertPerspective(perspective()))); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 95 | } |
| 96 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 97 | bool IsUnidirectional() { return GetParam().is_unidirectional; } |
| 98 | Perspective perspective() { return GetParam().perspective; } |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 99 | |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 100 | StrictMock<MockDelegate> delegate_; |
| 101 | QuicStreamIdManager stream_id_manager_; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 102 | }; |
| 103 | |
dschinazi | 142051a | 2019-09-18 18:17:29 -0700 | [diff] [blame] | 104 | INSTANTIATE_TEST_SUITE_P(Tests, |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 105 | QuicStreamIdManagerTest, |
| 106 | ::testing::ValuesIn(GetTestParams()), |
dschinazi | 142051a | 2019-09-18 18:17:29 -0700 | [diff] [blame] | 107 | ::testing::PrintToStringParamName()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 108 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 109 | TEST_P(QuicStreamIdManagerTest, Initialization) { |
renjietang | 315428e | 2020-01-27 10:18:12 -0800 | [diff] [blame] | 110 | EXPECT_EQ(0u, stream_id_manager_.outgoing_max_streams()); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 111 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 112 | EXPECT_EQ(kDefaultMaxStreamsPerConnection, |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 113 | stream_id_manager_.incoming_actual_max_streams()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 114 | EXPECT_EQ(kDefaultMaxStreamsPerConnection, |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 115 | stream_id_manager_.incoming_advertised_max_streams()); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 116 | EXPECT_EQ(kDefaultMaxStreamsPerConnection, |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 117 | stream_id_manager_.incoming_initial_max_open_streams()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 118 | |
| 119 | // The window for advertising updates to the MAX STREAM ID is half the number |
| 120 | // of streams allowed. |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 121 | EXPECT_EQ(kDefaultMaxStreamsPerConnection / 2, |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 122 | stream_id_manager_.max_streams_window()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 123 | } |
| 124 | |
| 125 | // This test checks that the stream advertisement window is set to 1 |
| 126 | // if the number of stream ids is 1. This is a special case in the code. |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 127 | TEST_P(QuicStreamIdManagerTest, CheckMaxStreamsWindowForSingleStream) { |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 128 | stream_id_manager_.SetMaxOpenIncomingStreams(1); |
| 129 | EXPECT_EQ(1u, stream_id_manager_.incoming_initial_max_open_streams()); |
| 130 | EXPECT_EQ(1u, stream_id_manager_.incoming_actual_max_streams()); |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 131 | EXPECT_EQ(1u, stream_id_manager_.max_streams_window()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 132 | } |
| 133 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 134 | TEST_P(QuicStreamIdManagerTest, CheckMaxStreamsBadValuesOverMaxFailsOutgoing) { |
renjietang | b885a12 | 2020-03-20 08:24:16 -0700 | [diff] [blame] | 135 | QuicStreamCount implementation_max = QuicUtils::GetMaxStreamCount(); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 136 | // Ensure that the limit is less than the implementation maximum. |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 137 | EXPECT_LT(stream_id_manager_.outgoing_max_streams(), implementation_max); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 138 | |
renjietang | ab9039a | 2020-03-30 14:53:19 -0700 | [diff] [blame] | 139 | EXPECT_TRUE( |
| 140 | stream_id_manager_.MaybeAllowNewOutgoingStreams(implementation_max + 1)); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 141 | // Should be pegged at the max. |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 142 | EXPECT_EQ(implementation_max, stream_id_manager_.outgoing_max_streams()); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 143 | } |
| 144 | |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 145 | // Check the case of the stream count in a STREAMS_BLOCKED frame is less than |
| 146 | // the count most recently advertised in a MAX_STREAMS frame. This should cause |
| 147 | // a MAX_STREAMS frame with the most recently advertised count to be sent. |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 148 | TEST_P(QuicStreamIdManagerTest, ProcessStreamsBlockedOk) { |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 149 | QuicStreamCount stream_count = |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 150 | stream_id_manager_.incoming_initial_max_open_streams(); |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 151 | QuicStreamsBlockedFrame frame(0, stream_count - 1, IsUnidirectional()); |
| 152 | EXPECT_CALL(delegate_, SendMaxStreams(stream_count, IsUnidirectional())); |
renjietang | 7133ea9 | 2020-04-01 12:49:36 -0700 | [diff] [blame^] | 153 | std::string error_details; |
| 154 | EXPECT_TRUE(stream_id_manager_.OnStreamsBlockedFrame(frame, &error_details)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 155 | } |
| 156 | |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 157 | // Check the case of the stream count in a STREAMS_BLOCKED frame is equal to the |
| 158 | // count most recently advertised in a MAX_STREAMS frame. No MAX_STREAMS |
| 159 | // should be generated. |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 160 | TEST_P(QuicStreamIdManagerTest, ProcessStreamsBlockedNoOp) { |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 161 | QuicStreamCount stream_count = |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 162 | stream_id_manager_.incoming_initial_max_open_streams(); |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 163 | QuicStreamsBlockedFrame frame(0, stream_count, IsUnidirectional()); |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 164 | EXPECT_CALL(delegate_, SendMaxStreams(_, _)).Times(0); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 165 | } |
| 166 | |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 167 | // Check the case of the stream count in a STREAMS_BLOCKED frame is greater than |
| 168 | // the count most recently advertised in a MAX_STREAMS frame. Expect a |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 169 | // connection close with an error. |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 170 | TEST_P(QuicStreamIdManagerTest, ProcessStreamsBlockedTooBig) { |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 171 | EXPECT_CALL(delegate_, SendMaxStreams(_, _)).Times(0); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 172 | QuicStreamCount stream_count = |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 173 | stream_id_manager_.incoming_initial_max_open_streams() + 1; |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 174 | QuicStreamsBlockedFrame frame(0, stream_count, IsUnidirectional()); |
renjietang | 7133ea9 | 2020-04-01 12:49:36 -0700 | [diff] [blame^] | 175 | std::string error_details; |
| 176 | EXPECT_FALSE(stream_id_manager_.OnStreamsBlockedFrame(frame, &error_details)); |
| 177 | EXPECT_EQ( |
| 178 | error_details, |
| 179 | "StreamsBlockedFrame's stream count 101 exceeds incoming max stream 100"); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 180 | } |
| 181 | |
| 182 | // Same basic tests as above, but calls |
| 183 | // QuicStreamIdManager::MaybeIncreaseLargestPeerStreamId directly, avoiding the |
| 184 | // call chain. The intent is that if there is a problem, the following tests |
| 185 | // will point to either the stream ID manager or the call chain. They also |
| 186 | // provide specific, small scale, tests of a public QuicStreamIdManager method. |
| 187 | // First test make sure that streams with ids below the limit are accepted. |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 188 | TEST_P(QuicStreamIdManagerTest, IsIncomingStreamIdValidBelowLimit) { |
| 189 | QuicStreamId stream_id = GetNthIncomingStreamId( |
| 190 | stream_id_manager_.incoming_actual_max_streams() - 2); |
renjietang | 7133ea9 | 2020-04-01 12:49:36 -0700 | [diff] [blame^] | 191 | EXPECT_TRUE( |
| 192 | stream_id_manager_.MaybeIncreaseLargestPeerStreamId(stream_id, nullptr)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 193 | } |
| 194 | |
| 195 | // Accept a stream with an ID that equals the limit. |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 196 | TEST_P(QuicStreamIdManagerTest, IsIncomingStreamIdValidAtLimit) { |
| 197 | QuicStreamId stream_id = GetNthIncomingStreamId( |
| 198 | stream_id_manager_.incoming_actual_max_streams() - 1); |
renjietang | 7133ea9 | 2020-04-01 12:49:36 -0700 | [diff] [blame^] | 199 | EXPECT_TRUE( |
| 200 | stream_id_manager_.MaybeIncreaseLargestPeerStreamId(stream_id, nullptr)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 201 | } |
| 202 | |
| 203 | // Close the connection if the id exceeds the limit. |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 204 | TEST_P(QuicStreamIdManagerTest, IsIncomingStreamIdInValidAboveLimit) { |
| 205 | QuicStreamId stream_id = |
| 206 | GetNthIncomingStreamId(stream_id_manager_.incoming_actual_max_streams()); |
renjietang | 7133ea9 | 2020-04-01 12:49:36 -0700 | [diff] [blame^] | 207 | std::string error_details; |
| 208 | EXPECT_FALSE(stream_id_manager_.MaybeIncreaseLargestPeerStreamId( |
| 209 | stream_id, &error_details)); |
| 210 | EXPECT_EQ(error_details, |
| 211 | quiche::QuicheStrCat("Stream id ", stream_id, |
| 212 | " would exceed stream count limit 100")); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 213 | } |
| 214 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 215 | TEST_P(QuicStreamIdManagerTest, OnStreamsBlockedFrame) { |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 216 | // Get the current maximum allowed incoming stream count. |
| 217 | QuicStreamCount advertised_stream_count = |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 218 | stream_id_manager_.incoming_advertised_max_streams(); |
| 219 | |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 220 | QuicStreamsBlockedFrame frame; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 221 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 222 | frame.unidirectional = IsUnidirectional(); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 223 | |
| 224 | // If the peer is saying it's blocked on the stream count that |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 225 | // we've advertised, it's a noop since the peer has the correct information. |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 226 | frame.stream_count = advertised_stream_count; |
renjietang | 7133ea9 | 2020-04-01 12:49:36 -0700 | [diff] [blame^] | 227 | std::string error_details; |
| 228 | EXPECT_TRUE(stream_id_manager_.OnStreamsBlockedFrame(frame, &error_details)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 229 | |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 230 | // If the peer is saying it's blocked on a stream count that is larger |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 231 | // than what we've advertised, the connection should get closed. |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 232 | frame.stream_count = advertised_stream_count + 1; |
renjietang | 7133ea9 | 2020-04-01 12:49:36 -0700 | [diff] [blame^] | 233 | EXPECT_FALSE(stream_id_manager_.OnStreamsBlockedFrame(frame, &error_details)); |
| 234 | EXPECT_EQ( |
| 235 | error_details, |
| 236 | "StreamsBlockedFrame's stream count 101 exceeds incoming max stream 100"); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 237 | |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 238 | // If the peer is saying it's blocked on a count that is less than |
| 239 | // our actual count, we send a MAX_STREAMS frame and update |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 240 | // the advertised value. |
| 241 | // First, need to bump up the actual max so there is room for the MAX |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 242 | // STREAMS frame to send a larger ID. |
| 243 | QuicStreamCount actual_stream_count = |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 244 | stream_id_manager_.incoming_actual_max_streams(); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 245 | |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 246 | // Closing a stream will result in the ability to initiate one more |
| 247 | // stream |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 248 | stream_id_manager_.OnStreamClosed( |
| 249 | QuicStreamIdManagerPeer::GetFirstIncomingStreamId(&stream_id_manager_)); |
fkastenholz | d035fc3 | 2019-04-23 12:24:02 -0700 | [diff] [blame] | 250 | EXPECT_EQ(actual_stream_count + 1u, |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 251 | stream_id_manager_.incoming_actual_max_streams()); |
| 252 | EXPECT_EQ(stream_id_manager_.incoming_actual_max_streams(), |
| 253 | stream_id_manager_.incoming_advertised_max_streams() + 1u); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 254 | |
| 255 | // Now simulate receiving a STREAMS_BLOCKED frame... |
| 256 | // Changing the actual maximum, above, forces a MAX_STREAMS frame to be |
| 257 | // sent, so the logic for that (SendMaxStreamsFrame(), etc) is tested. |
| 258 | |
| 259 | // The STREAMS_BLOCKED frame contains the previous advertised count, |
| 260 | // not the one that the peer would have received as a result of the |
| 261 | // MAX_STREAMS sent earler. |
| 262 | frame.stream_count = advertised_stream_count; |
| 263 | |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 264 | EXPECT_CALL(delegate_, |
| 265 | SendMaxStreams(stream_id_manager_.incoming_actual_max_streams(), |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 266 | IsUnidirectional())); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 267 | |
renjietang | 7133ea9 | 2020-04-01 12:49:36 -0700 | [diff] [blame^] | 268 | EXPECT_TRUE(stream_id_manager_.OnStreamsBlockedFrame(frame, &error_details)); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 269 | // Check that the saved frame is correct. |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 270 | EXPECT_EQ(stream_id_manager_.incoming_actual_max_streams(), |
| 271 | stream_id_manager_.incoming_advertised_max_streams()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 272 | } |
| 273 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 274 | TEST_P(QuicStreamIdManagerTest, GetNextOutgoingStream) { |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 275 | // Number of streams we can open and the first one we should get when |
| 276 | // opening... |
renjietang | 7fc869e | 2019-08-14 11:02:42 -0700 | [diff] [blame] | 277 | size_t number_of_streams = kDefaultMaxStreamsPerConnection; |
fkastenholz | 56055be | 2019-09-17 11:17:37 -0700 | [diff] [blame] | 278 | |
renjietang | ab9039a | 2020-03-30 14:53:19 -0700 | [diff] [blame] | 279 | EXPECT_TRUE( |
| 280 | stream_id_manager_.MaybeAllowNewOutgoingStreams(number_of_streams)); |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 281 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 282 | QuicStreamId stream_id = |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 283 | IsUnidirectional() |
| 284 | ? QuicUtils::GetFirstUnidirectionalStreamId( |
| 285 | transport_version(), stream_id_manager_.perspective()) |
| 286 | : QuicUtils::GetFirstBidirectionalStreamId( |
| 287 | transport_version(), stream_id_manager_.perspective()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 288 | |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 289 | EXPECT_EQ(number_of_streams, stream_id_manager_.outgoing_max_streams()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 290 | while (number_of_streams) { |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 291 | EXPECT_TRUE(stream_id_manager_.CanOpenNextOutgoingStream()); |
| 292 | EXPECT_EQ(stream_id, stream_id_manager_.GetNextOutgoingStreamId()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 293 | stream_id += kV99StreamIdIncrement; |
| 294 | number_of_streams--; |
| 295 | } |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 296 | |
| 297 | // If we try to check that the next outgoing stream id is available it should |
fayang | 769172b | 2020-03-19 14:27:39 -0700 | [diff] [blame] | 298 | // fail. |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 299 | EXPECT_FALSE(stream_id_manager_.CanOpenNextOutgoingStream()); |
| 300 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 301 | // If we try to get the next id (above the limit), it should cause a quic-bug. |
| 302 | EXPECT_QUIC_BUG( |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 303 | stream_id_manager_.GetNextOutgoingStreamId(), |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 304 | "Attempt to allocate a new outgoing stream that would exceed the limit"); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 305 | } |
| 306 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 307 | TEST_P(QuicStreamIdManagerTest, MaybeIncreaseLargestPeerStreamId) { |
| 308 | QuicStreamId max_stream_id = GetNthIncomingStreamId( |
| 309 | stream_id_manager_.incoming_actual_max_streams() - 1); |
renjietang | 7133ea9 | 2020-04-01 12:49:36 -0700 | [diff] [blame^] | 310 | EXPECT_TRUE(stream_id_manager_.MaybeIncreaseLargestPeerStreamId(max_stream_id, |
| 311 | nullptr)); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 312 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 313 | QuicStreamId first_stream_id = GetNthIncomingStreamId(0); |
renjietang | 7133ea9 | 2020-04-01 12:49:36 -0700 | [diff] [blame^] | 314 | EXPECT_TRUE(stream_id_manager_.MaybeIncreaseLargestPeerStreamId( |
| 315 | first_stream_id, nullptr)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 316 | // A bad stream ID results in a closed connection. |
renjietang | 7133ea9 | 2020-04-01 12:49:36 -0700 | [diff] [blame^] | 317 | std::string error_details; |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 318 | EXPECT_FALSE(stream_id_manager_.MaybeIncreaseLargestPeerStreamId( |
renjietang | 7133ea9 | 2020-04-01 12:49:36 -0700 | [diff] [blame^] | 319 | max_stream_id + kV99StreamIdIncrement, &error_details)); |
| 320 | EXPECT_EQ( |
| 321 | error_details, |
| 322 | quiche::QuicheStrCat("Stream id ", max_stream_id + kV99StreamIdIncrement, |
| 323 | " would exceed stream count limit 100")); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 324 | } |
| 325 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 326 | TEST_P(QuicStreamIdManagerTest, MaxStreamsWindow) { |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 327 | // Test that a MAX_STREAMS frame is generated when the peer has less than |
| 328 | // |max_streams_window_| streams left that it can initiate. |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 329 | |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 330 | // First, open, and then close, max_streams_window_ streams. This will |
| 331 | // max_streams_window_ streams available for the peer -- no MAX_STREAMS |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 332 | // should be sent. The -1 is because the check in |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 333 | // QuicStreamIdManager::MaybeSendMaxStreamsFrame sends a MAX_STREAMS if the |
| 334 | // number of available streams at the peer is <= |max_streams_window_| |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 335 | int stream_count = stream_id_manager_.max_streams_window() - 1; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 336 | |
| 337 | // Should not get a control-frame transmission since the peer should have |
| 338 | // "plenty" of stream IDs to use. |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 339 | EXPECT_CALL(delegate_, SendMaxStreams(_, _)).Times(0); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 340 | |
| 341 | // Get the first incoming stream ID to try and allocate. |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 342 | QuicStreamId stream_id = GetNthIncomingStreamId(0); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 343 | size_t old_available_incoming_streams = |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 344 | stream_id_manager_.available_incoming_streams(); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 345 | while (stream_count) { |
renjietang | 7133ea9 | 2020-04-01 12:49:36 -0700 | [diff] [blame^] | 346 | EXPECT_TRUE(stream_id_manager_.MaybeIncreaseLargestPeerStreamId(stream_id, |
| 347 | nullptr)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 348 | |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 349 | // This node should think that the peer believes it has one fewer |
| 350 | // stream it can create. |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 351 | old_available_incoming_streams--; |
| 352 | EXPECT_EQ(old_available_incoming_streams, |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 353 | stream_id_manager_.available_incoming_streams()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 354 | |
| 355 | stream_count--; |
| 356 | stream_id += kV99StreamIdIncrement; |
| 357 | } |
| 358 | |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 359 | // Now close them, still should get no MAX_STREAMS |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 360 | stream_count = stream_id_manager_.max_streams_window(); |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 361 | stream_id = GetNthIncomingStreamId(0); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 362 | QuicStreamCount expected_actual_max = |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 363 | stream_id_manager_.incoming_actual_max_streams(); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 364 | QuicStreamCount expected_advertised_max_streams = |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 365 | stream_id_manager_.incoming_advertised_max_streams(); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 366 | while (stream_count) { |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 367 | stream_id_manager_.OnStreamClosed(stream_id); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 368 | stream_count--; |
| 369 | stream_id += kV99StreamIdIncrement; |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 370 | expected_actual_max++; |
| 371 | EXPECT_EQ(expected_actual_max, |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 372 | stream_id_manager_.incoming_actual_max_streams()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 373 | // Advertised maximum should remain the same. |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 374 | EXPECT_EQ(expected_advertised_max_streams, |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 375 | stream_id_manager_.incoming_advertised_max_streams()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 376 | } |
| 377 | |
| 378 | // This should not change. |
| 379 | EXPECT_EQ(old_available_incoming_streams, |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 380 | stream_id_manager_.available_incoming_streams()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 381 | |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 382 | // Now whenever we close a stream we should get a MAX_STREAMS frame. |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 383 | // Above code closed all the open streams, so we have to open/close |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 384 | // EXPECT_CALL(delegate_, |
| 385 | // SendMaxStreams(stream_id_manager_.incoming_actual_max_streams(), |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 386 | // IsUnidirectional())); |
| 387 | EXPECT_CALL(delegate_, SendMaxStreams(_, IsUnidirectional())); |
renjietang | 7133ea9 | 2020-04-01 12:49:36 -0700 | [diff] [blame^] | 388 | EXPECT_TRUE( |
| 389 | stream_id_manager_.MaybeIncreaseLargestPeerStreamId(stream_id, nullptr)); |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 390 | stream_id_manager_.OnStreamClosed(stream_id); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 391 | } |
| 392 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 393 | TEST_P(QuicStreamIdManagerTest, StreamsBlockedEdgeConditions) { |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 394 | QuicStreamsBlockedFrame frame; |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 395 | frame.unidirectional = IsUnidirectional(); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 396 | |
| 397 | // Check that receipt of a STREAMS BLOCKED with stream-count = 0 does nothing |
| 398 | // when max_allowed_incoming_streams is 0. |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 399 | EXPECT_CALL(delegate_, SendMaxStreams(_, _)).Times(0); |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 400 | stream_id_manager_.SetMaxOpenIncomingStreams(0); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 401 | frame.stream_count = 0; |
renjietang | 7133ea9 | 2020-04-01 12:49:36 -0700 | [diff] [blame^] | 402 | std::string error_details; |
| 403 | EXPECT_TRUE(stream_id_manager_.OnStreamsBlockedFrame(frame, &error_details)); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 404 | |
| 405 | // Check that receipt of a STREAMS BLOCKED with stream-count = 0 invokes a |
| 406 | // MAX STREAMS, count = 123, when the MaxOpen... is set to 123. |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 407 | EXPECT_CALL(delegate_, SendMaxStreams(123u, IsUnidirectional())); |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 408 | stream_id_manager_.SetMaxOpenIncomingStreams(123); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 409 | frame.stream_count = 0; |
renjietang | 7133ea9 | 2020-04-01 12:49:36 -0700 | [diff] [blame^] | 410 | EXPECT_TRUE(stream_id_manager_.OnStreamsBlockedFrame(frame, &error_details)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 411 | } |
| 412 | |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 413 | // Test that a MAX_STREAMS frame is generated when half the stream ids become |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 414 | // available. This has a useful side effect of testing that when streams are |
| 415 | // closed, the number of available stream ids increases. |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 416 | TEST_P(QuicStreamIdManagerTest, MaxStreamsSlidingWindow) { |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 417 | QuicStreamCount first_advert = |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 418 | stream_id_manager_.incoming_advertised_max_streams(); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 419 | |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 420 | // Open/close enough streams to shrink the window without causing a MAX |
| 421 | // STREAMS to be generated. The window will open (and a MAX STREAMS generated) |
| 422 | // when max_streams_window() stream IDs have been made available. The loop |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 423 | // will make that many stream IDs available, so the last CloseStream should |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 424 | |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 425 | // cause a MAX STREAMS frame to be generated. |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 426 | int i = static_cast<int>(stream_id_manager_.max_streams_window()); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 427 | QuicStreamId id = |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 428 | QuicStreamIdManagerPeer::GetFirstIncomingStreamId(&stream_id_manager_); |
| 429 | EXPECT_CALL( |
| 430 | delegate_, |
| 431 | SendMaxStreams(first_advert + stream_id_manager_.max_streams_window(), |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 432 | IsUnidirectional())); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 433 | while (i) { |
renjietang | 7133ea9 | 2020-04-01 12:49:36 -0700 | [diff] [blame^] | 434 | EXPECT_TRUE( |
| 435 | stream_id_manager_.MaybeIncreaseLargestPeerStreamId(id, nullptr)); |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 436 | stream_id_manager_.OnStreamClosed(id); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 437 | i--; |
| 438 | id += kV99StreamIdIncrement; |
| 439 | } |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 440 | } |
| 441 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 442 | TEST_P(QuicStreamIdManagerTest, NewStreamDoesNotExceedLimit) { |
renjietang | ab9039a | 2020-03-30 14:53:19 -0700 | [diff] [blame] | 443 | EXPECT_TRUE(stream_id_manager_.MaybeAllowNewOutgoingStreams(100)); |
fkastenholz | 56055be | 2019-09-17 11:17:37 -0700 | [diff] [blame] | 444 | |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 445 | size_t stream_count = stream_id_manager_.outgoing_max_streams(); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 446 | EXPECT_NE(0u, stream_count); |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 447 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 448 | while (stream_count) { |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 449 | EXPECT_TRUE(stream_id_manager_.CanOpenNextOutgoingStream()); |
| 450 | stream_id_manager_.GetNextOutgoingStreamId(); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 451 | stream_count--; |
| 452 | } |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 453 | |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 454 | EXPECT_EQ(stream_id_manager_.outgoing_stream_count(), |
| 455 | stream_id_manager_.outgoing_max_streams()); |
fayang | 769172b | 2020-03-19 14:27:39 -0700 | [diff] [blame] | 456 | // Create another, it should fail. |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 457 | EXPECT_FALSE(stream_id_manager_.CanOpenNextOutgoingStream()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 458 | } |
| 459 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 460 | TEST_P(QuicStreamIdManagerTest, AvailableStreams) { |
renjietang | 7133ea9 | 2020-04-01 12:49:36 -0700 | [diff] [blame^] | 461 | stream_id_manager_.MaybeIncreaseLargestPeerStreamId(GetNthIncomingStreamId(3), |
| 462 | nullptr); |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 463 | |
| 464 | EXPECT_TRUE(stream_id_manager_.IsAvailableStream(GetNthIncomingStreamId(1))); |
| 465 | EXPECT_TRUE(stream_id_manager_.IsAvailableStream(GetNthIncomingStreamId(2))); |
| 466 | EXPECT_FALSE(stream_id_manager_.IsAvailableStream(GetNthIncomingStreamId(3))); |
| 467 | EXPECT_TRUE(stream_id_manager_.IsAvailableStream(GetNthIncomingStreamId(4))); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 468 | } |
| 469 | |
| 470 | // Tests that if MaybeIncreaseLargestPeerStreamId is given an extremely |
| 471 | // large stream ID (larger than the limit) it is rejected. |
| 472 | // This is a regression for Chromium bugs 909987 and 910040 |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 473 | TEST_P(QuicStreamIdManagerTest, ExtremeMaybeIncreaseLargestPeerStreamId) { |
| 474 | QuicStreamId too_big_stream_id = GetNthIncomingStreamId( |
| 475 | stream_id_manager_.incoming_actual_max_streams() + 20); |
nharper | 46833c3 | 2019-05-15 21:33:05 -0700 | [diff] [blame] | 476 | |
renjietang | 7133ea9 | 2020-04-01 12:49:36 -0700 | [diff] [blame^] | 477 | std::string error_details; |
| 478 | EXPECT_FALSE(stream_id_manager_.MaybeIncreaseLargestPeerStreamId( |
| 479 | too_big_stream_id, &error_details)); |
| 480 | EXPECT_EQ(error_details, |
| 481 | quiche::QuicheStrCat("Stream id ", too_big_stream_id, |
| 482 | " would exceed stream count limit 100")); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 483 | } |
| 484 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 485 | } // namespace |
| 486 | } // namespace test |
| 487 | } // namespace quic |