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_METHOD1(OnCanCreateNewOutgoingStream, void(bool unidirectional)); |
renjietang | ff4b2b6 | 2020-02-12 16:52:32 -0800 | [diff] [blame] | 28 | MOCK_METHOD2(OnStreamIdManagerError, |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 29 | void(QuicErrorCode error_code, std::string error_details)); |
| 30 | MOCK_METHOD2(SendMaxStreams, |
| 31 | void(QuicStreamCount stream_count, bool unidirectional)); |
| 32 | MOCK_METHOD2(SendStreamsBlocked, |
| 33 | void(QuicStreamCount stream_count, bool unidirectional)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 34 | }; |
| 35 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 36 | struct TestParams { |
dschinazi | 38cc1ee | 2020-02-28 14:33:58 -0800 | [diff] [blame^] | 37 | TestParams(ParsedQuicVersion version, |
| 38 | Perspective perspective, |
| 39 | bool is_unidirectional) |
| 40 | : version(version), |
| 41 | perspective(perspective), |
| 42 | is_unidirectional(is_unidirectional) {} |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 43 | |
dschinazi | 38cc1ee | 2020-02-28 14:33:58 -0800 | [diff] [blame^] | 44 | ParsedQuicVersion version; |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 45 | Perspective perspective; |
| 46 | bool is_unidirectional; |
| 47 | }; |
| 48 | |
| 49 | // Used by ::testing::PrintToStringParamName(). |
| 50 | std::string PrintToString(const TestParams& p) { |
dmcardle | cf0bfcf | 2019-12-13 08:08:21 -0800 | [diff] [blame] | 51 | return quiche::QuicheStrCat( |
dschinazi | 38cc1ee | 2020-02-28 14:33:58 -0800 | [diff] [blame^] | 52 | ParsedQuicVersionToString(p.version), "_", |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 53 | (p.perspective == Perspective::IS_CLIENT ? "Client" : "Server"), |
| 54 | (p.is_unidirectional ? "Unidirectional" : "Bidirectional")); |
| 55 | } |
| 56 | |
| 57 | std::vector<TestParams> GetTestParams() { |
| 58 | std::vector<TestParams> params; |
dschinazi | 38cc1ee | 2020-02-28 14:33:58 -0800 | [diff] [blame^] | 59 | for (const ParsedQuicVersion& version : AllSupportedVersions()) { |
| 60 | if (!version.HasIetfQuicFrames()) { |
| 61 | continue; |
| 62 | } |
| 63 | for (Perspective perspective : |
| 64 | {Perspective::IS_CLIENT, Perspective::IS_SERVER}) { |
| 65 | for (bool is_unidirectional : {true, false}) { |
| 66 | params.push_back(TestParams(version, perspective, is_unidirectional)); |
| 67 | } |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 68 | } |
| 69 | } |
| 70 | return params; |
| 71 | } |
| 72 | |
| 73 | class QuicStreamIdManagerTest : public QuicTestWithParam<TestParams> { |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 74 | protected: |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 75 | QuicStreamIdManagerTest() |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 76 | : stream_id_manager_(&delegate_, |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 77 | IsUnidirectional(), |
| 78 | perspective(), |
| 79 | transport_version(), |
renjietang | 315428e | 2020-01-27 10:18:12 -0800 | [diff] [blame] | 80 | 0, |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 81 | kDefaultMaxStreamsPerConnection) { |
| 82 | DCHECK(VersionHasIetfQuicFrames(transport_version())); |
| 83 | } |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 84 | |
dschinazi | 38cc1ee | 2020-02-28 14:33:58 -0800 | [diff] [blame^] | 85 | QuicTransportVersion transport_version() const { |
| 86 | return GetParam().version.transport_version; |
| 87 | } |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 88 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 89 | // Returns the stream ID for the Nth incoming stream (created by the peer) |
| 90 | // of the corresponding directionality of this manager. |
| 91 | QuicStreamId GetNthIncomingStreamId(int n) { |
| 92 | return kV99StreamIdIncrement * n + |
| 93 | (IsUnidirectional() |
| 94 | ? QuicUtils::GetFirstUnidirectionalStreamId( |
| 95 | transport_version(), |
| 96 | QuicUtils::InvertPerspective(perspective())) |
| 97 | : QuicUtils::GetFirstBidirectionalStreamId( |
| 98 | transport_version(), |
| 99 | QuicUtils::InvertPerspective(perspective()))); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 100 | } |
| 101 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 102 | bool IsUnidirectional() { return GetParam().is_unidirectional; } |
| 103 | Perspective perspective() { return GetParam().perspective; } |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 104 | |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 105 | StrictMock<MockDelegate> delegate_; |
| 106 | QuicStreamIdManager stream_id_manager_; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 107 | }; |
| 108 | |
dschinazi | 142051a | 2019-09-18 18:17:29 -0700 | [diff] [blame] | 109 | INSTANTIATE_TEST_SUITE_P(Tests, |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 110 | QuicStreamIdManagerTest, |
| 111 | ::testing::ValuesIn(GetTestParams()), |
dschinazi | 142051a | 2019-09-18 18:17:29 -0700 | [diff] [blame] | 112 | ::testing::PrintToStringParamName()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 113 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 114 | TEST_P(QuicStreamIdManagerTest, Initialization) { |
renjietang | 315428e | 2020-01-27 10:18:12 -0800 | [diff] [blame] | 115 | EXPECT_EQ(0u, stream_id_manager_.outgoing_max_streams()); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 116 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 117 | EXPECT_EQ(kDefaultMaxStreamsPerConnection, |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 118 | stream_id_manager_.incoming_actual_max_streams()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 119 | EXPECT_EQ(kDefaultMaxStreamsPerConnection, |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 120 | stream_id_manager_.incoming_advertised_max_streams()); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 121 | EXPECT_EQ(kDefaultMaxStreamsPerConnection, |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 122 | stream_id_manager_.incoming_initial_max_open_streams()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 123 | |
| 124 | // The window for advertising updates to the MAX STREAM ID is half the number |
| 125 | // of streams allowed. |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 126 | EXPECT_EQ(kDefaultMaxStreamsPerConnection / 2, |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 127 | stream_id_manager_.max_streams_window()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 128 | } |
| 129 | |
| 130 | // This test checks that the stream advertisement window is set to 1 |
| 131 | // 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] | 132 | TEST_P(QuicStreamIdManagerTest, CheckMaxStreamsWindowForSingleStream) { |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 133 | stream_id_manager_.SetMaxOpenIncomingStreams(1); |
| 134 | EXPECT_EQ(1u, stream_id_manager_.incoming_initial_max_open_streams()); |
| 135 | EXPECT_EQ(1u, stream_id_manager_.incoming_actual_max_streams()); |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 136 | EXPECT_EQ(1u, stream_id_manager_.max_streams_window()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 137 | } |
| 138 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 139 | TEST_P(QuicStreamIdManagerTest, CheckMaxStreamsBadValuesOverMaxFailsOutgoing) { |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 140 | QuicStreamCount implementation_max = |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 141 | QuicUtils::GetMaxStreamCount(IsUnidirectional(), perspective()); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 142 | // Ensure that the limit is less than the implementation maximum. |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 143 | EXPECT_LT(stream_id_manager_.outgoing_max_streams(), implementation_max); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 144 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 145 | EXPECT_CALL(delegate_, OnCanCreateNewOutgoingStream(IsUnidirectional())); |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 146 | stream_id_manager_.SetMaxOpenOutgoingStreams(implementation_max + 1); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 147 | // Should be pegged at the max. |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 148 | EXPECT_EQ(implementation_max, stream_id_manager_.outgoing_max_streams()); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 149 | } |
| 150 | |
| 151 | // Now do the same for the incoming streams |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 152 | TEST_P(QuicStreamIdManagerTest, CheckMaxStreamsBadValuesIncoming) { |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 153 | QuicStreamCount implementation_max = |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 154 | QuicUtils::GetMaxStreamCount(IsUnidirectional(), perspective()); |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 155 | stream_id_manager_.SetMaxOpenIncomingStreams(implementation_max - 1u); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 156 | EXPECT_EQ(implementation_max - 1u, |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 157 | stream_id_manager_.incoming_initial_max_open_streams()); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 158 | EXPECT_EQ(implementation_max - 1u, |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 159 | stream_id_manager_.incoming_actual_max_streams()); |
fkastenholz | d035fc3 | 2019-04-23 12:24:02 -0700 | [diff] [blame] | 160 | EXPECT_EQ((implementation_max - 1u) / 2u, |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 161 | stream_id_manager_.max_streams_window()); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 162 | |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 163 | stream_id_manager_.SetMaxOpenIncomingStreams(implementation_max); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 164 | EXPECT_EQ(implementation_max, |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 165 | stream_id_manager_.incoming_initial_max_open_streams()); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 166 | EXPECT_EQ(implementation_max, |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 167 | stream_id_manager_.incoming_actual_max_streams()); |
| 168 | EXPECT_EQ(implementation_max / 2, stream_id_manager_.max_streams_window()); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 169 | |
| 170 | // Reset to 1 so that we can detect the change. |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 171 | stream_id_manager_.SetMaxOpenIncomingStreams(1u); |
| 172 | EXPECT_EQ(1u, stream_id_manager_.incoming_initial_max_open_streams()); |
| 173 | EXPECT_EQ(1u, stream_id_manager_.incoming_actual_max_streams()); |
| 174 | EXPECT_EQ(1u, stream_id_manager_.max_streams_window()); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 175 | // Now try to exceed the max, without wrapping. |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 176 | stream_id_manager_.SetMaxOpenIncomingStreams(implementation_max + 1); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 177 | EXPECT_EQ(implementation_max, |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 178 | stream_id_manager_.incoming_initial_max_open_streams()); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 179 | EXPECT_EQ(implementation_max, |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 180 | stream_id_manager_.incoming_actual_max_streams()); |
| 181 | EXPECT_EQ(implementation_max / 2u, stream_id_manager_.max_streams_window()); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 182 | } |
| 183 | |
| 184 | // Check the case of the stream count in a STREAMS_BLOCKED frame is less than |
| 185 | // the count most recently advertised in a MAX_STREAMS frame. This should cause |
| 186 | // a MAX_STREAMS frame with the most recently advertised count to be sent. |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 187 | TEST_P(QuicStreamIdManagerTest, ProcessStreamsBlockedOk) { |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 188 | // Set the config negotiated so that the MAX_STREAMS is transmitted. |
| 189 | stream_id_manager_.OnConfigNegotiated(); |
| 190 | |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 191 | QuicStreamCount stream_count = |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 192 | stream_id_manager_.incoming_initial_max_open_streams(); |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 193 | QuicStreamsBlockedFrame frame(0, stream_count - 1, IsUnidirectional()); |
| 194 | EXPECT_CALL(delegate_, SendMaxStreams(stream_count, IsUnidirectional())); |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 195 | stream_id_manager_.OnStreamsBlockedFrame(frame); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 196 | } |
| 197 | |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 198 | // Check the case of the stream count in a STREAMS_BLOCKED frame is equal to the |
| 199 | // count most recently advertised in a MAX_STREAMS frame. No MAX_STREAMS |
| 200 | // should be generated. |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 201 | TEST_P(QuicStreamIdManagerTest, ProcessStreamsBlockedNoOp) { |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 202 | QuicStreamCount stream_count = |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 203 | stream_id_manager_.incoming_initial_max_open_streams(); |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 204 | QuicStreamsBlockedFrame frame(0, stream_count, IsUnidirectional()); |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 205 | EXPECT_CALL(delegate_, SendMaxStreams(_, _)).Times(0); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 206 | } |
| 207 | |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 208 | // Check the case of the stream count in a STREAMS_BLOCKED frame is greater than |
| 209 | // the count most recently advertised in a MAX_STREAMS frame. Expect a |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 210 | // connection close with an error. |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 211 | TEST_P(QuicStreamIdManagerTest, ProcessStreamsBlockedTooBig) { |
renjietang | ff4b2b6 | 2020-02-12 16:52:32 -0800 | [diff] [blame] | 212 | EXPECT_CALL(delegate_, OnStreamIdManagerError(QUIC_STREAMS_BLOCKED_ERROR, _)); |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 213 | EXPECT_CALL(delegate_, SendMaxStreams(_, _)).Times(0); |
| 214 | EXPECT_CALL(delegate_, SendStreamsBlocked(_, _)).Times(0); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 215 | QuicStreamCount stream_count = |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 216 | stream_id_manager_.incoming_initial_max_open_streams() + 1; |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 217 | QuicStreamsBlockedFrame frame(0, stream_count, IsUnidirectional()); |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 218 | stream_id_manager_.OnStreamsBlockedFrame(frame); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 219 | } |
| 220 | |
| 221 | // Same basic tests as above, but calls |
| 222 | // QuicStreamIdManager::MaybeIncreaseLargestPeerStreamId directly, avoiding the |
| 223 | // call chain. The intent is that if there is a problem, the following tests |
| 224 | // will point to either the stream ID manager or the call chain. They also |
| 225 | // provide specific, small scale, tests of a public QuicStreamIdManager method. |
| 226 | // First test make sure that streams with ids below the limit are accepted. |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 227 | TEST_P(QuicStreamIdManagerTest, IsIncomingStreamIdValidBelowLimit) { |
| 228 | QuicStreamId stream_id = GetNthIncomingStreamId( |
| 229 | stream_id_manager_.incoming_actual_max_streams() - 2); |
renjietang | ff4b2b6 | 2020-02-12 16:52:32 -0800 | [diff] [blame] | 230 | EXPECT_CALL(delegate_, OnStreamIdManagerError(_, _)).Times(0); |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 231 | EXPECT_TRUE(stream_id_manager_.MaybeIncreaseLargestPeerStreamId(stream_id)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 232 | } |
| 233 | |
| 234 | // Accept a stream with an ID that equals the limit. |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 235 | TEST_P(QuicStreamIdManagerTest, IsIncomingStreamIdValidAtLimit) { |
| 236 | QuicStreamId stream_id = GetNthIncomingStreamId( |
| 237 | stream_id_manager_.incoming_actual_max_streams() - 1); |
renjietang | ff4b2b6 | 2020-02-12 16:52:32 -0800 | [diff] [blame] | 238 | EXPECT_CALL(delegate_, OnStreamIdManagerError(_, _)).Times(0); |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 239 | EXPECT_TRUE(stream_id_manager_.MaybeIncreaseLargestPeerStreamId(stream_id)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 240 | } |
| 241 | |
| 242 | // Close the connection if the id exceeds the limit. |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 243 | TEST_P(QuicStreamIdManagerTest, IsIncomingStreamIdInValidAboveLimit) { |
| 244 | QuicStreamId stream_id = |
| 245 | GetNthIncomingStreamId(stream_id_manager_.incoming_actual_max_streams()); |
dmcardle | cf0bfcf | 2019-12-13 08:08:21 -0800 | [diff] [blame] | 246 | std::string error_details = quiche::QuicheStrCat( |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 247 | "Stream id ", stream_id, " would exceed stream count limit 100"); |
renjietang | ff4b2b6 | 2020-02-12 16:52:32 -0800 | [diff] [blame] | 248 | EXPECT_CALL(delegate_, |
| 249 | OnStreamIdManagerError(QUIC_INVALID_STREAM_ID, error_details)); |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 250 | EXPECT_FALSE(stream_id_manager_.MaybeIncreaseLargestPeerStreamId(stream_id)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 251 | } |
| 252 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 253 | TEST_P(QuicStreamIdManagerTest, OnMaxStreamsFrame) { |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 254 | QuicMaxStreamsFrame frame; |
renjietang | 315428e | 2020-01-27 10:18:12 -0800 | [diff] [blame] | 255 | frame.stream_count = 10; |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 256 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 257 | frame.unidirectional = IsUnidirectional(); |
| 258 | EXPECT_CALL(delegate_, OnCanCreateNewOutgoingStream(IsUnidirectional())); |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 259 | EXPECT_TRUE(stream_id_manager_.OnMaxStreamsFrame(frame)); |
renjietang | 315428e | 2020-01-27 10:18:12 -0800 | [diff] [blame] | 260 | EXPECT_EQ(10u, stream_id_manager_.outgoing_max_streams()); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 261 | |
| 262 | QuicStreamCount save_outgoing_max_streams = |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 263 | stream_id_manager_.outgoing_max_streams(); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 264 | // Now that there has been one MAX STREAMS frame, we should not |
| 265 | // accept a MAX_STREAMS that reduces the limit... |
renjietang | 315428e | 2020-01-27 10:18:12 -0800 | [diff] [blame] | 266 | frame.stream_count = 8; |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 267 | frame.unidirectional = IsUnidirectional(); |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 268 | EXPECT_TRUE(stream_id_manager_.OnMaxStreamsFrame(frame)); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 269 | // should not change from previous setting. |
| 270 | EXPECT_EQ(save_outgoing_max_streams, |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 271 | stream_id_manager_.outgoing_max_streams()); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 272 | |
| 273 | // A stream count greater than the current limit should increase the limit. |
renjietang | 315428e | 2020-01-27 10:18:12 -0800 | [diff] [blame] | 274 | frame.stream_count = 12; |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 275 | EXPECT_CALL(delegate_, OnCanCreateNewOutgoingStream(IsUnidirectional())); |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 276 | EXPECT_TRUE(stream_id_manager_.OnMaxStreamsFrame(frame)); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 277 | |
renjietang | 315428e | 2020-01-27 10:18:12 -0800 | [diff] [blame] | 278 | EXPECT_EQ(12u, stream_id_manager_.outgoing_max_streams()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 279 | } |
| 280 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 281 | TEST_P(QuicStreamIdManagerTest, OnStreamsBlockedFrame) { |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 282 | // Get the current maximum allowed incoming stream count. |
| 283 | QuicStreamCount advertised_stream_count = |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 284 | stream_id_manager_.incoming_advertised_max_streams(); |
| 285 | |
| 286 | // Set the config negotiated to allow frame transmission. |
| 287 | stream_id_manager_.OnConfigNegotiated(); |
fkastenholz | 56055be | 2019-09-17 11:17:37 -0700 | [diff] [blame] | 288 | |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 289 | QuicStreamsBlockedFrame frame; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 290 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 291 | frame.unidirectional = IsUnidirectional(); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 292 | |
| 293 | // 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] | 294 | // 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] | 295 | frame.stream_count = advertised_stream_count; |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 296 | EXPECT_CALL(delegate_, SendStreamsBlocked(_, _)).Times(0); |
| 297 | EXPECT_TRUE(stream_id_manager_.OnStreamsBlockedFrame(frame)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 298 | |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 299 | // 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] | 300 | // than what we've advertised, the connection should get closed. |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 301 | frame.stream_count = advertised_stream_count + 1; |
renjietang | ff4b2b6 | 2020-02-12 16:52:32 -0800 | [diff] [blame] | 302 | EXPECT_CALL(delegate_, OnStreamIdManagerError(QUIC_STREAMS_BLOCKED_ERROR, _)); |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 303 | EXPECT_FALSE(stream_id_manager_.OnStreamsBlockedFrame(frame)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 304 | |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 305 | // If the peer is saying it's blocked on a count that is less than |
| 306 | // our actual count, we send a MAX_STREAMS frame and update |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 307 | // the advertised value. |
| 308 | // 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] | 309 | // STREAMS frame to send a larger ID. |
| 310 | QuicStreamCount actual_stream_count = |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 311 | stream_id_manager_.incoming_actual_max_streams(); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 312 | |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 313 | // Closing a stream will result in the ability to initiate one more |
| 314 | // stream |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 315 | stream_id_manager_.OnStreamClosed( |
| 316 | QuicStreamIdManagerPeer::GetFirstIncomingStreamId(&stream_id_manager_)); |
fkastenholz | d035fc3 | 2019-04-23 12:24:02 -0700 | [diff] [blame] | 317 | EXPECT_EQ(actual_stream_count + 1u, |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 318 | stream_id_manager_.incoming_actual_max_streams()); |
| 319 | EXPECT_EQ(stream_id_manager_.incoming_actual_max_streams(), |
| 320 | stream_id_manager_.incoming_advertised_max_streams() + 1u); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 321 | |
| 322 | // Now simulate receiving a STREAMS_BLOCKED frame... |
| 323 | // Changing the actual maximum, above, forces a MAX_STREAMS frame to be |
| 324 | // sent, so the logic for that (SendMaxStreamsFrame(), etc) is tested. |
| 325 | |
| 326 | // The STREAMS_BLOCKED frame contains the previous advertised count, |
| 327 | // not the one that the peer would have received as a result of the |
| 328 | // MAX_STREAMS sent earler. |
| 329 | frame.stream_count = advertised_stream_count; |
| 330 | |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 331 | EXPECT_CALL(delegate_, |
| 332 | SendMaxStreams(stream_id_manager_.incoming_actual_max_streams(), |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 333 | IsUnidirectional())); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 334 | |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 335 | EXPECT_TRUE(stream_id_manager_.OnStreamsBlockedFrame(frame)); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 336 | // Check that the saved frame is correct. |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 337 | EXPECT_EQ(stream_id_manager_.incoming_actual_max_streams(), |
| 338 | stream_id_manager_.incoming_advertised_max_streams()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 339 | } |
| 340 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 341 | TEST_P(QuicStreamIdManagerTest, GetNextOutgoingStream) { |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 342 | // Number of streams we can open and the first one we should get when |
| 343 | // opening... |
renjietang | 7fc869e | 2019-08-14 11:02:42 -0700 | [diff] [blame] | 344 | size_t number_of_streams = kDefaultMaxStreamsPerConnection; |
fkastenholz | 56055be | 2019-09-17 11:17:37 -0700 | [diff] [blame] | 345 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 346 | EXPECT_CALL(delegate_, OnCanCreateNewOutgoingStream(IsUnidirectional())); |
renjietang | 315428e | 2020-01-27 10:18:12 -0800 | [diff] [blame] | 347 | stream_id_manager_.SetMaxOpenOutgoingStreams(kDefaultMaxStreamsPerConnection); |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 348 | |
| 349 | stream_id_manager_.OnConfigNegotiated(); |
fkastenholz | 56055be | 2019-09-17 11:17:37 -0700 | [diff] [blame] | 350 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 351 | QuicStreamId stream_id = |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 352 | IsUnidirectional() |
| 353 | ? QuicUtils::GetFirstUnidirectionalStreamId( |
| 354 | transport_version(), stream_id_manager_.perspective()) |
| 355 | : QuicUtils::GetFirstBidirectionalStreamId( |
| 356 | transport_version(), stream_id_manager_.perspective()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 357 | |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 358 | EXPECT_EQ(number_of_streams, stream_id_manager_.outgoing_max_streams()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 359 | while (number_of_streams) { |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 360 | EXPECT_TRUE(stream_id_manager_.CanOpenNextOutgoingStream()); |
| 361 | EXPECT_EQ(stream_id, stream_id_manager_.GetNextOutgoingStreamId()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 362 | stream_id += kV99StreamIdIncrement; |
| 363 | number_of_streams--; |
| 364 | } |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 365 | |
| 366 | // If we try to check that the next outgoing stream id is available it should |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 367 | // A) fail and B) generate a STREAMS_BLOCKED frame. |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 368 | EXPECT_CALL(delegate_, SendStreamsBlocked(kDefaultMaxStreamsPerConnection, |
| 369 | IsUnidirectional())); |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 370 | EXPECT_FALSE(stream_id_manager_.CanOpenNextOutgoingStream()); |
| 371 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 372 | // If we try to get the next id (above the limit), it should cause a quic-bug. |
| 373 | EXPECT_QUIC_BUG( |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 374 | stream_id_manager_.GetNextOutgoingStreamId(), |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 375 | "Attempt to allocate a new outgoing stream that would exceed the limit"); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 376 | } |
| 377 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 378 | TEST_P(QuicStreamIdManagerTest, MaybeIncreaseLargestPeerStreamId) { |
| 379 | QuicStreamId max_stream_id = GetNthIncomingStreamId( |
| 380 | stream_id_manager_.incoming_actual_max_streams() - 1); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 381 | EXPECT_TRUE( |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 382 | stream_id_manager_.MaybeIncreaseLargestPeerStreamId(max_stream_id)); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 383 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 384 | QuicStreamId first_stream_id = GetNthIncomingStreamId(0); |
| 385 | EXPECT_TRUE( |
| 386 | stream_id_manager_.MaybeIncreaseLargestPeerStreamId(first_stream_id)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 387 | // A bad stream ID results in a closed connection. |
renjietang | ff4b2b6 | 2020-02-12 16:52:32 -0800 | [diff] [blame] | 388 | EXPECT_CALL(delegate_, OnStreamIdManagerError(QUIC_INVALID_STREAM_ID, _)); |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 389 | EXPECT_FALSE(stream_id_manager_.MaybeIncreaseLargestPeerStreamId( |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 390 | max_stream_id + kV99StreamIdIncrement)); |
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, MaxStreamsWindow) { |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 394 | // Set the config negotiated to allow frame transmission. |
| 395 | stream_id_manager_.OnConfigNegotiated(); |
fkastenholz | 56055be | 2019-09-17 11:17:37 -0700 | [diff] [blame] | 396 | |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 397 | // Test that a MAX_STREAMS frame is generated when the peer has less than |
| 398 | // |max_streams_window_| streams left that it can initiate. |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 399 | |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 400 | // First, open, and then close, max_streams_window_ streams. This will |
| 401 | // max_streams_window_ streams available for the peer -- no MAX_STREAMS |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 402 | // should be sent. The -1 is because the check in |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 403 | // QuicStreamIdManager::MaybeSendMaxStreamsFrame sends a MAX_STREAMS if the |
| 404 | // number of available streams at the peer is <= |max_streams_window_| |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 405 | int stream_count = stream_id_manager_.max_streams_window() - 1; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 406 | |
| 407 | // Should not get a control-frame transmission since the peer should have |
| 408 | // "plenty" of stream IDs to use. |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 409 | EXPECT_CALL(delegate_, SendStreamsBlocked(_, _)).Times(0); |
| 410 | EXPECT_CALL(delegate_, SendMaxStreams(_, _)).Times(0); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 411 | |
| 412 | // Get the first incoming stream ID to try and allocate. |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 413 | QuicStreamId stream_id = GetNthIncomingStreamId(0); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 414 | size_t old_available_incoming_streams = |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 415 | stream_id_manager_.available_incoming_streams(); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 416 | while (stream_count) { |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 417 | EXPECT_TRUE(stream_id_manager_.MaybeIncreaseLargestPeerStreamId(stream_id)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 418 | |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 419 | // This node should think that the peer believes it has one fewer |
| 420 | // stream it can create. |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 421 | old_available_incoming_streams--; |
| 422 | EXPECT_EQ(old_available_incoming_streams, |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 423 | stream_id_manager_.available_incoming_streams()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 424 | |
| 425 | stream_count--; |
| 426 | stream_id += kV99StreamIdIncrement; |
| 427 | } |
| 428 | |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 429 | // Now close them, still should get no MAX_STREAMS |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 430 | stream_count = stream_id_manager_.max_streams_window(); |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 431 | stream_id = GetNthIncomingStreamId(0); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 432 | QuicStreamCount expected_actual_max = |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 433 | stream_id_manager_.incoming_actual_max_streams(); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 434 | QuicStreamCount expected_advertised_max_streams = |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 435 | stream_id_manager_.incoming_advertised_max_streams(); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 436 | while (stream_count) { |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 437 | stream_id_manager_.OnStreamClosed(stream_id); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 438 | stream_count--; |
| 439 | stream_id += kV99StreamIdIncrement; |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 440 | expected_actual_max++; |
| 441 | EXPECT_EQ(expected_actual_max, |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 442 | stream_id_manager_.incoming_actual_max_streams()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 443 | // Advertised maximum should remain the same. |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 444 | EXPECT_EQ(expected_advertised_max_streams, |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 445 | stream_id_manager_.incoming_advertised_max_streams()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 446 | } |
| 447 | |
| 448 | // This should not change. |
| 449 | EXPECT_EQ(old_available_incoming_streams, |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 450 | stream_id_manager_.available_incoming_streams()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 451 | |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 452 | // 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] | 453 | // Above code closed all the open streams, so we have to open/close |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 454 | // EXPECT_CALL(delegate_, |
| 455 | // SendMaxStreams(stream_id_manager_.incoming_actual_max_streams(), |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 456 | // IsUnidirectional())); |
| 457 | EXPECT_CALL(delegate_, SendMaxStreams(_, IsUnidirectional())); |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 458 | EXPECT_TRUE(stream_id_manager_.MaybeIncreaseLargestPeerStreamId(stream_id)); |
| 459 | stream_id_manager_.OnStreamClosed(stream_id); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 460 | } |
| 461 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 462 | TEST_P(QuicStreamIdManagerTest, StreamsBlockedEdgeConditions) { |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 463 | // Set the config negotiated to allow frame transmission. |
| 464 | stream_id_manager_.OnConfigNegotiated(); |
fkastenholz | 56055be | 2019-09-17 11:17:37 -0700 | [diff] [blame] | 465 | |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 466 | QuicStreamsBlockedFrame frame; |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 467 | frame.unidirectional = IsUnidirectional(); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 468 | |
| 469 | // Check that receipt of a STREAMS BLOCKED with stream-count = 0 does nothing |
| 470 | // when max_allowed_incoming_streams is 0. |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 471 | EXPECT_CALL(delegate_, SendMaxStreams(_, _)).Times(0); |
| 472 | EXPECT_CALL(delegate_, SendStreamsBlocked(_, _)).Times(0); |
| 473 | stream_id_manager_.SetMaxOpenIncomingStreams(0); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 474 | frame.stream_count = 0; |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 475 | stream_id_manager_.OnStreamsBlockedFrame(frame); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 476 | |
| 477 | // Check that receipt of a STREAMS BLOCKED with stream-count = 0 invokes a |
| 478 | // MAX STREAMS, count = 123, when the MaxOpen... is set to 123. |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 479 | EXPECT_CALL(delegate_, SendMaxStreams(123u, IsUnidirectional())); |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 480 | EXPECT_CALL(delegate_, SendStreamsBlocked(_, _)).Times(0); |
| 481 | stream_id_manager_.SetMaxOpenIncomingStreams(123); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 482 | frame.stream_count = 0; |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 483 | stream_id_manager_.OnStreamsBlockedFrame(frame); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 484 | } |
| 485 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 486 | TEST_P(QuicStreamIdManagerTest, HoldMaxStreamsFrame) { |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 487 | // The config has not been negotiated so the MAX_STREAMS frame will not be |
| 488 | // sent. |
| 489 | EXPECT_CALL(delegate_, SendMaxStreams(_, _)).Times(0); |
fkastenholz | 56055be | 2019-09-17 11:17:37 -0700 | [diff] [blame] | 490 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 491 | QuicStreamsBlockedFrame frame(1u, 0u, IsUnidirectional()); |
fkastenholz | 56055be | 2019-09-17 11:17:37 -0700 | [diff] [blame] | 492 | // Should cause change in pending_max_streams. |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 493 | stream_id_manager_.OnStreamsBlockedFrame(frame); |
fkastenholz | 56055be | 2019-09-17 11:17:37 -0700 | [diff] [blame] | 494 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 495 | EXPECT_CALL(delegate_, SendMaxStreams(_, IsUnidirectional())); |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 496 | |
| 497 | // MAX_STREAMS will be sent now that the config has been negotiated. |
| 498 | stream_id_manager_.OnConfigNegotiated(); |
fkastenholz | 56055be | 2019-09-17 11:17:37 -0700 | [diff] [blame] | 499 | } |
| 500 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 501 | TEST_P(QuicStreamIdManagerTest, HoldStreamsBlockedFrameXmit) { |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 502 | // We should not see a STREAMS_BLOCKED frame because we're not configured.. |
| 503 | EXPECT_CALL(delegate_, SendStreamsBlocked(_, _)).Times(0); |
fkastenholz | 56055be | 2019-09-17 11:17:37 -0700 | [diff] [blame] | 504 | |
| 505 | // Since the stream limit is 0 and no sreams can be created this should return |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 506 | // false and have forced a STREAMS_BLOCKED to be queued up, with the |
fkastenholz | 56055be | 2019-09-17 11:17:37 -0700 | [diff] [blame] | 507 | // blocked stream id == 0. |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 508 | EXPECT_FALSE(stream_id_manager_.CanOpenNextOutgoingStream()); |
fkastenholz | 56055be | 2019-09-17 11:17:37 -0700 | [diff] [blame] | 509 | |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 510 | // Since the steam limit has not been increased when the config was negotiated |
| 511 | // a STREAMS_BLOCKED frame should be sent. |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 512 | EXPECT_CALL(delegate_, SendStreamsBlocked(_, IsUnidirectional())); |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 513 | stream_id_manager_.OnConfigNegotiated(); |
fkastenholz | 56055be | 2019-09-17 11:17:37 -0700 | [diff] [blame] | 514 | } |
| 515 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 516 | TEST_P(QuicStreamIdManagerTest, HoldStreamsBlockedFrameNoXmit) { |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 517 | // We should not see a STREAMS_BLOCKED frame because we're not configured.. |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 518 | EXPECT_CALL(delegate_, SendStreamsBlocked(_, IsUnidirectional())).Times(0); |
fkastenholz | 56055be | 2019-09-17 11:17:37 -0700 | [diff] [blame] | 519 | |
| 520 | // Since the stream limit is 0 and no sreams can be created this should return |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 521 | // false and have forced a STREAMS_BLOCKED to be queued up, with the |
fkastenholz | 56055be | 2019-09-17 11:17:37 -0700 | [diff] [blame] | 522 | // blocked stream id == 0. |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 523 | EXPECT_FALSE(stream_id_manager_.CanOpenNextOutgoingStream()); |
fkastenholz | 56055be | 2019-09-17 11:17:37 -0700 | [diff] [blame] | 524 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 525 | EXPECT_CALL(delegate_, OnCanCreateNewOutgoingStream(IsUnidirectional())); |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 526 | stream_id_manager_.SetMaxOpenOutgoingStreams(10); |
| 527 | // Since the stream limit has been increase which allows streams to be created |
| 528 | // no STREAMS_BLOCKED should be send. |
| 529 | stream_id_manager_.OnConfigNegotiated(); |
fkastenholz | 56055be | 2019-09-17 11:17:37 -0700 | [diff] [blame] | 530 | } |
| 531 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 532 | TEST_P(QuicStreamIdManagerTest, CheckMaxAllowedOutgoingInitialization) { |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 533 | const size_t kIncomingStreamCount = 123; |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 534 | EXPECT_CALL(delegate_, OnCanCreateNewOutgoingStream(IsUnidirectional())); |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 535 | stream_id_manager_.SetMaxOpenOutgoingStreams(kIncomingStreamCount); |
| 536 | EXPECT_EQ(kIncomingStreamCount, stream_id_manager_.outgoing_max_streams()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 537 | } |
| 538 | |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 539 | // 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] | 540 | // available. This has a useful side effect of testing that when streams are |
| 541 | // closed, the number of available stream ids increases. |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 542 | TEST_P(QuicStreamIdManagerTest, MaxStreamsSlidingWindow) { |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 543 | // Simulate config being negotiated, causing the limits all to be initialized. |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 544 | stream_id_manager_.OnConfigNegotiated(); |
| 545 | |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 546 | QuicStreamCount first_advert = |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 547 | stream_id_manager_.incoming_advertised_max_streams(); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 548 | |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 549 | // Open/close enough streams to shrink the window without causing a MAX |
| 550 | // STREAMS to be generated. The window will open (and a MAX STREAMS generated) |
| 551 | // when max_streams_window() stream IDs have been made available. The loop |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 552 | // will make that many stream IDs available, so the last CloseStream should |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 553 | |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 554 | // cause a MAX STREAMS frame to be generated. |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 555 | int i = static_cast<int>(stream_id_manager_.max_streams_window()); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 556 | QuicStreamId id = |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 557 | QuicStreamIdManagerPeer::GetFirstIncomingStreamId(&stream_id_manager_); |
| 558 | EXPECT_CALL( |
| 559 | delegate_, |
| 560 | SendMaxStreams(first_advert + stream_id_manager_.max_streams_window(), |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 561 | IsUnidirectional())); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 562 | while (i) { |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 563 | EXPECT_TRUE(stream_id_manager_.MaybeIncreaseLargestPeerStreamId(id)); |
| 564 | stream_id_manager_.OnStreamClosed(id); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 565 | i--; |
| 566 | id += kV99StreamIdIncrement; |
| 567 | } |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 568 | } |
| 569 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 570 | TEST_P(QuicStreamIdManagerTest, NewStreamDoesNotExceedLimit) { |
| 571 | EXPECT_CALL(delegate_, OnCanCreateNewOutgoingStream(IsUnidirectional())); |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 572 | stream_id_manager_.SetMaxOpenOutgoingStreams(100); |
| 573 | stream_id_manager_.OnConfigNegotiated(); |
fkastenholz | 56055be | 2019-09-17 11:17:37 -0700 | [diff] [blame] | 574 | |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 575 | size_t stream_count = stream_id_manager_.outgoing_max_streams(); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 576 | EXPECT_NE(0u, stream_count); |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 577 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 578 | while (stream_count) { |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 579 | EXPECT_TRUE(stream_id_manager_.CanOpenNextOutgoingStream()); |
| 580 | stream_id_manager_.GetNextOutgoingStreamId(); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 581 | stream_count--; |
| 582 | } |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 583 | |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 584 | EXPECT_EQ(stream_id_manager_.outgoing_stream_count(), |
| 585 | stream_id_manager_.outgoing_max_streams()); |
fkastenholz | 3c4eabf | 2019-04-22 07:49:59 -0700 | [diff] [blame] | 586 | // Create another, it should fail. Should also send a STREAMS_BLOCKED |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 587 | // control frame. |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 588 | EXPECT_CALL(delegate_, SendStreamsBlocked(_, IsUnidirectional())); |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 589 | EXPECT_FALSE(stream_id_manager_.CanOpenNextOutgoingStream()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 590 | } |
| 591 | |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 592 | TEST_P(QuicStreamIdManagerTest, AvailableStreams) { |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 593 | stream_id_manager_.MaybeIncreaseLargestPeerStreamId( |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 594 | GetNthIncomingStreamId(3)); |
| 595 | |
| 596 | EXPECT_TRUE(stream_id_manager_.IsAvailableStream(GetNthIncomingStreamId(1))); |
| 597 | EXPECT_TRUE(stream_id_manager_.IsAvailableStream(GetNthIncomingStreamId(2))); |
| 598 | EXPECT_FALSE(stream_id_manager_.IsAvailableStream(GetNthIncomingStreamId(3))); |
| 599 | EXPECT_TRUE(stream_id_manager_.IsAvailableStream(GetNthIncomingStreamId(4))); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 600 | } |
| 601 | |
| 602 | // Tests that if MaybeIncreaseLargestPeerStreamId is given an extremely |
| 603 | // large stream ID (larger than the limit) it is rejected. |
| 604 | // This is a regression for Chromium bugs 909987 and 910040 |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 605 | TEST_P(QuicStreamIdManagerTest, ExtremeMaybeIncreaseLargestPeerStreamId) { |
| 606 | QuicStreamId too_big_stream_id = GetNthIncomingStreamId( |
| 607 | stream_id_manager_.incoming_actual_max_streams() + 20); |
dmcardle | cf0bfcf | 2019-12-13 08:08:21 -0800 | [diff] [blame] | 608 | std::string error_details = quiche::QuicheStrCat( |
rch | 9301d3c | 2019-09-20 14:30:48 -0700 | [diff] [blame] | 609 | "Stream id ", too_big_stream_id, " would exceed stream count limit 100"); |
nharper | 46833c3 | 2019-05-15 21:33:05 -0700 | [diff] [blame] | 610 | |
renjietang | ff4b2b6 | 2020-02-12 16:52:32 -0800 | [diff] [blame] | 611 | EXPECT_CALL(delegate_, |
| 612 | OnStreamIdManagerError(QUIC_INVALID_STREAM_ID, error_details)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 613 | EXPECT_FALSE( |
rch | a8b56e4 | 2019-09-20 10:41:48 -0700 | [diff] [blame] | 614 | stream_id_manager_.MaybeIncreaseLargestPeerStreamId(too_big_stream_id)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 615 | } |
| 616 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 617 | } // namespace |
| 618 | } // namespace test |
| 619 | } // namespace quic |