| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "net/quic/quic_spdy_stream.h" | 5 #include "net/quic/quic_spdy_stream.h" |
| 6 | 6 |
| 7 #include <memory> |
| 8 |
| 7 #include "base/strings/string_number_conversions.h" | 9 #include "base/strings/string_number_conversions.h" |
| 8 | |
| 9 #include "net/quic/quic_connection.h" | 10 #include "net/quic/quic_connection.h" |
| 10 #include "net/quic/quic_utils.h" | 11 #include "net/quic/quic_utils.h" |
| 11 #include "net/quic/quic_write_blocked_list.h" | 12 #include "net/quic/quic_write_blocked_list.h" |
| 12 #include "net/quic/spdy_utils.h" | 13 #include "net/quic/spdy_utils.h" |
| 13 #include "net/quic/test_tools/quic_flow_controller_peer.h" | 14 #include "net/quic/test_tools/quic_flow_controller_peer.h" |
| 14 #include "net/quic/test_tools/quic_session_peer.h" | 15 #include "net/quic/test_tools/quic_session_peer.h" |
| 15 #include "net/quic/test_tools/quic_test_utils.h" | 16 #include "net/quic/test_tools/quic_test_utils.h" |
| 16 #include "net/quic/test_tools/reliable_quic_stream_peer.h" | 17 #include "net/quic/test_tools/reliable_quic_stream_peer.h" |
| 17 #include "net/test/gtest_util.h" | 18 #include "net/test/gtest_util.h" |
| 18 #include "testing/gmock/include/gmock/gmock.h" | 19 #include "testing/gmock/include/gmock/gmock.h" |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 "Rgj3RWUoPumQVCxtSOBdX0GlJOEcDTNCzQIm9BSfetog_eP_TfYubKudt5eMsXmN6" | 91 "Rgj3RWUoPumQVCxtSOBdX0GlJOEcDTNCzQIm9BSfetog_eP_TfYubKudt5eMsXmN6" |
| 91 "QnyXHeGeK2UINUzJ-D30AFcpqYgH9_1BvYSpi7fc7_ydBU8TaD8ZRxvtnzXqj0RfG" | 92 "QnyXHeGeK2UINUzJ-D30AFcpqYgH9_1BvYSpi7fc7_ydBU8TaD8ZRxvtnzXqj0RfG" |
| 92 "tuHghmv3aD-uzSYJ75XDdzKdizZ86IG6Fbn1XFhYZM-fbHhm3mVEXnyRW4ZuNOLFk" | 93 "tuHghmv3aD-uzSYJ75XDdzKdizZ86IG6Fbn1XFhYZM-fbHhm3mVEXnyRW4ZuNOLFk" |
| 93 "Fas6LMcVC6Q8QLlHYbXBpdNFuGbuZGUnav5C-2I_-46lL0NGg3GewxGKGHvHEfoyn" | 94 "Fas6LMcVC6Q8QLlHYbXBpdNFuGbuZGUnav5C-2I_-46lL0NGg3GewxGKGHvHEfoyn" |
| 94 "EFFlEYHsBQ98rXImL8ySDycdLEFvBPdtctPmWCfTxwmoSMLHU2SCVDhbqMWU5b0yr" | 95 "EFFlEYHsBQ98rXImL8ySDycdLEFvBPdtctPmWCfTxwmoSMLHU2SCVDhbqMWU5b0yr" |
| 95 "JBCScs_ejbKaqBDoB7ZGxTvqlrB__2ZmnHHjCr8RgMRtKNtIeuZAo "; | 96 "JBCScs_ejbKaqBDoB7ZGxTvqlrB__2ZmnHHjCr8RgMRtKNtIeuZAo "; |
| 96 } | 97 } |
| 97 | 98 |
| 98 void Initialize(bool stream_should_process_data) { | 99 void Initialize(bool stream_should_process_data) { |
| 99 connection_ = new testing::StrictMock<MockConnection>( | 100 connection_ = new testing::StrictMock<MockConnection>( |
| 100 &helper_, Perspective::IS_SERVER, SupportedVersions(GetParam())); | 101 &helper_, &alarm_factory_, Perspective::IS_SERVER, |
| 102 SupportedVersions(GetParam())); |
| 101 session_.reset(new testing::StrictMock<MockQuicSpdySession>(connection_)); | 103 session_.reset(new testing::StrictMock<MockQuicSpdySession>(connection_)); |
| 102 stream_ = new TestStream(kClientDataStreamId1, session_.get(), | 104 stream_ = new TestStream(kClientDataStreamId1, session_.get(), |
| 103 stream_should_process_data); | 105 stream_should_process_data); |
| 104 session_->ActivateStream(stream_); | 106 session_->ActivateStream(stream_); |
| 105 stream2_ = new TestStream(kClientDataStreamId2, session_.get(), | 107 stream2_ = new TestStream(kClientDataStreamId2, session_.get(), |
| 106 stream_should_process_data); | 108 stream_should_process_data); |
| 107 session_->ActivateStream(stream2_); | 109 session_->ActivateStream(stream2_); |
| 108 } | 110 } |
| 109 | 111 |
| 110 protected: | 112 protected: |
| 111 MockConnectionHelper helper_; | 113 MockConnectionHelper helper_; |
| 114 MockAlarmFactory alarm_factory_; |
| 112 MockConnection* connection_; | 115 MockConnection* connection_; |
| 113 std::unique_ptr<MockQuicSpdySession> session_; | 116 std::unique_ptr<MockQuicSpdySession> session_; |
| 114 | 117 |
| 115 // Owned by the |session_|. | 118 // Owned by the |session_|. |
| 116 TestStream* stream_; | 119 TestStream* stream_; |
| 117 TestStream* stream2_; | 120 TestStream* stream2_; |
| 118 | 121 |
| 119 SpdyHeaderBlock headers_; | 122 SpdyHeaderBlock headers_; |
| 120 }; | 123 }; |
| 121 | 124 |
| (...skipping 866 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 988 | 991 |
| 989 // Writing Trailers should fail, as the FIN has already been sent. | 992 // Writing Trailers should fail, as the FIN has already been sent. |
| 990 // populated with the number of body bytes written. | 993 // populated with the number of body bytes written. |
| 991 EXPECT_DFATAL(stream_->WriteTrailers(SpdyHeaderBlock(), nullptr), | 994 EXPECT_DFATAL(stream_->WriteTrailers(SpdyHeaderBlock(), nullptr), |
| 992 "Trailers cannot be sent after a FIN"); | 995 "Trailers cannot be sent after a FIN"); |
| 993 } | 996 } |
| 994 | 997 |
| 995 } // namespace | 998 } // namespace |
| 996 } // namespace test | 999 } // namespace test |
| 997 } // namespace net | 1000 } // namespace net |
| OLD | NEW |