blob: 2ac3289d4764f82c9a85f2c31ffcdf058619fcda [file] [log] [blame]
renjietangd21094b2019-06-14 09:39:11 -07001// Copyright 2019 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "net/third_party/quiche/src/quic/core/qpack/qpack_send_stream.h"
6
bnc3fc60df2019-07-17 11:55:10 -07007#include "net/third_party/quiche/src/quic/core/http/http_constants.h"
bnc8464f312019-06-21 11:43:07 -07008#include "net/third_party/quiche/src/quic/platform/api/quic_test.h"
renjietangbb2e22a2019-09-12 15:46:39 -07009#include "net/third_party/quiche/src/quic/test_tools/quic_config_peer.h"
fayang6a258412020-05-28 08:57:12 -070010#include "net/third_party/quiche/src/quic/test_tools/quic_connection_peer.h"
renjietangd21094b2019-06-14 09:39:11 -070011#include "net/third_party/quiche/src/quic/test_tools/quic_spdy_session_peer.h"
12#include "net/third_party/quiche/src/quic/test_tools/quic_test_utils.h"
QUICHE team11f55d42019-12-11 10:36:09 -080013#include "net/third_party/quiche/src/common/platform/api/quiche_str_cat.h"
14#include "net/third_party/quiche/src/common/platform/api/quiche_string_piece.h"
renjietangd21094b2019-06-14 09:39:11 -070015
16namespace quic {
17namespace test {
18
19namespace {
20using ::testing::_;
wub8eea9192020-08-13 12:05:40 -070021using ::testing::AnyNumber;
renjietangd21094b2019-06-14 09:39:11 -070022using ::testing::Invoke;
23using ::testing::StrictMock;
24
25struct TestParams {
26 TestParams(const ParsedQuicVersion& version, Perspective perspective)
27 : version(version), perspective(perspective) {
28 QUIC_LOG(INFO) << "TestParams: version: "
29 << ParsedQuicVersionToString(version)
30 << ", perspective: " << perspective;
31 }
32
33 TestParams(const TestParams& other)
34 : version(other.version), perspective(other.perspective) {}
35
36 ParsedQuicVersion version;
37 Perspective perspective;
38};
39
dschinazi88bd5b02019-10-10 00:52:20 -070040// Used by ::testing::PrintToStringParamName().
41std::string PrintToString(const TestParams& tp) {
QUICHE team11f55d42019-12-11 10:36:09 -080042 return quiche::QuicheStrCat(
dschinazi88bd5b02019-10-10 00:52:20 -070043 ParsedQuicVersionToString(tp.version), "_",
44 (tp.perspective == Perspective::IS_CLIENT ? "client" : "server"));
45}
46
renjietangd21094b2019-06-14 09:39:11 -070047std::vector<TestParams> GetTestParams() {
48 std::vector<TestParams> params;
49 ParsedQuicVersionVector all_supported_versions = AllSupportedVersions();
50 for (const auto& version : AllSupportedVersions()) {
renjietanga29a96a2019-10-10 12:47:50 -070051 if (!VersionUsesHttp3(version.transport_version)) {
renjietangd21094b2019-06-14 09:39:11 -070052 continue;
53 }
54 for (Perspective p : {Perspective::IS_SERVER, Perspective::IS_CLIENT}) {
55 params.emplace_back(version, p);
56 }
57 }
58 return params;
59}
60
61class QpackSendStreamTest : public QuicTestWithParam<TestParams> {
62 public:
63 QpackSendStreamTest()
64 : connection_(new StrictMock<MockQuicConnection>(
65 &helper_,
66 &alarm_factory_,
67 perspective(),
68 SupportedVersions(GetParam().version))),
69 session_(connection_) {
wub8eea9192020-08-13 12:05:40 -070070 EXPECT_CALL(session_, OnCongestionWindowChange(_)).Times(AnyNumber());
renjietangd21094b2019-06-14 09:39:11 -070071 session_.Initialize();
fayang6a258412020-05-28 08:57:12 -070072 if (connection_->version().SupportsAntiAmplificationLimit()) {
73 QuicConnectionPeer::SetAddressValidated(connection_);
74 }
renjietangbb2e22a2019-09-12 15:46:39 -070075 QuicConfigPeer::SetReceivedInitialSessionFlowControlWindow(
76 session_.config(), kMinimumFlowControlSendWindow);
dschinazi18cdf132019-10-09 16:08:18 -070077 QuicConfigPeer::SetReceivedInitialMaxStreamDataBytesUnidirectional(
78 session_.config(), kMinimumFlowControlSendWindow);
renjietange6d94672020-01-07 10:30:10 -080079 QuicConfigPeer::SetReceivedMaxUnidirectionalStreams(session_.config(), 3);
renjietangbb2e22a2019-09-12 15:46:39 -070080 session_.OnConfigNegotiated();
renjietang77dd8242019-08-09 13:00:42 -070081
renjietang578cf9f2019-08-23 11:57:52 -070082 qpack_send_stream_ =
83 QuicSpdySessionPeer::GetQpackDecoderSendStream(&session_);
renjietang77dd8242019-08-09 13:00:42 -070084
renjietang41a1b412020-02-27 15:05:14 -080085 ON_CALL(session_, WritevData(_, _, _, _, _, _))
renjietang7c239172020-02-21 13:50:39 -080086 .WillByDefault(Invoke(&session_, &MockQuicSpdySession::ConsumeData));
renjietangd21094b2019-06-14 09:39:11 -070087 }
88
89 Perspective perspective() const { return GetParam().perspective; }
90
91 MockQuicConnectionHelper helper_;
92 MockAlarmFactory alarm_factory_;
93 StrictMock<MockQuicConnection>* connection_;
94 StrictMock<MockQuicSpdySession> session_;
renjietang77dd8242019-08-09 13:00:42 -070095 QpackSendStream* qpack_send_stream_;
renjietangd21094b2019-06-14 09:39:11 -070096};
97
98INSTANTIATE_TEST_SUITE_P(Tests,
99 QpackSendStreamTest,
dschinazi88bd5b02019-10-10 00:52:20 -0700100 ::testing::ValuesIn(GetTestParams()),
101 ::testing::PrintToStringParamName());
renjietangd21094b2019-06-14 09:39:11 -0700102
103TEST_P(QpackSendStreamTest, WriteStreamTypeOnlyFirstTime) {
renjietangd21094b2019-06-14 09:39:11 -0700104 std::string data = "data";
renjietang41a1b412020-02-27 15:05:14 -0800105 EXPECT_CALL(session_, WritevData(_, 1, _, _, _, _));
106 EXPECT_CALL(session_, WritevData(_, data.length(), _, _, _, _));
QUICHE team11f55d42019-12-11 10:36:09 -0800107 qpack_send_stream_->WriteStreamData(quiche::QuicheStringPiece(data));
renjietangd21094b2019-06-14 09:39:11 -0700108
renjietang41a1b412020-02-27 15:05:14 -0800109 EXPECT_CALL(session_, WritevData(_, data.length(), _, _, _, _));
QUICHE team11f55d42019-12-11 10:36:09 -0800110 qpack_send_stream_->WriteStreamData(quiche::QuicheStringPiece(data));
renjietang41a1b412020-02-27 15:05:14 -0800111 EXPECT_CALL(session_, WritevData(_, _, _, _, _, _)).Times(0);
renjietangc8c02a52019-08-22 10:38:37 -0700112 qpack_send_stream_->MaybeSendStreamType();
renjietangd21094b2019-06-14 09:39:11 -0700113}
114
bnc09c1eda2020-03-13 04:52:38 -0700115TEST_P(QpackSendStreamTest, StopSendingQpackStream) {
116 EXPECT_CALL(*connection_,
117 CloseConnection(QUIC_HTTP_CLOSED_CRITICAL_STREAM, _, _));
118 qpack_send_stream_->OnStopSending(QUIC_STREAM_CANCELLED);
renjietangd21094b2019-06-14 09:39:11 -0700119}
120
121TEST_P(QpackSendStreamTest, ReceiveDataOnSendStream) {
122 QuicStreamFrame frame(qpack_send_stream_->id(), false, 0, "test");
123 EXPECT_CALL(
124 *connection_,
125 CloseConnection(QUIC_DATA_RECEIVED_ON_WRITE_UNIDIRECTIONAL_STREAM, _, _));
126 qpack_send_stream_->OnStreamFrame(frame);
127}
128
129} // namespace
130} // namespace test
131} // namespace quic