| 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/tools/quic/quic_spdy_client_stream.h" | 5 #include "net/tools/quic/quic_spdy_client_stream.h" |
| 6 | 6 |
| 7 #include "base/macros.h" | 7 #include "base/macros.h" |
| 8 #include "base/strings/string_number_conversions.h" | 8 #include "base/strings/string_number_conversions.h" |
| 9 #include "net/quic/quic_utils.h" | 9 #include "net/quic/quic_utils.h" |
| 10 #include "net/quic/spdy_utils.h" | 10 #include "net/quic/spdy_utils.h" |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 void OnClose(QuicSpdyStream* stream) override { | 81 void OnClose(QuicSpdyStream* stream) override { |
| 82 DVLOG(1) << "stream " << stream->id(); | 82 DVLOG(1) << "stream " << stream->id(); |
| 83 } | 83 } |
| 84 }; | 84 }; |
| 85 | 85 |
| 86 MockConnectionHelper helper_; | 86 MockConnectionHelper helper_; |
| 87 StrictMock<MockConnection>* connection_; | 87 StrictMock<MockConnection>* connection_; |
| 88 QuicClientPushPromiseIndex push_promise_index_; | 88 QuicClientPushPromiseIndex push_promise_index_; |
| 89 | 89 |
| 90 MockQuicClientSession session_; | 90 MockQuicClientSession session_; |
| 91 scoped_ptr<QuicSpdyClientStream> stream_; | 91 std::unique_ptr<QuicSpdyClientStream> stream_; |
| 92 scoped_ptr<StreamVisitor> stream_visitor_; | 92 std::unique_ptr<StreamVisitor> stream_visitor_; |
| 93 BalsaHeaders headers_; | 93 BalsaHeaders headers_; |
| 94 string headers_string_; | 94 string headers_string_; |
| 95 string body_; | 95 string body_; |
| 96 }; | 96 }; |
| 97 | 97 |
| 98 TEST_F(QuicSpdyClientStreamTest, TestReceivingIllegalResponseStatusCode) { | 98 TEST_F(QuicSpdyClientStreamTest, TestReceivingIllegalResponseStatusCode) { |
| 99 headers_.ReplaceOrAppendHeader(":status", "200 ok"); | 99 headers_.ReplaceOrAppendHeader(":status", "200 ok"); |
| 100 headers_string_ = SpdyBalsaUtils::SerializeResponseHeaders(headers_); | 100 headers_string_ = SpdyBalsaUtils::SerializeResponseHeaders(headers_); |
| 101 | 101 |
| 102 stream_->OnStreamHeaders(headers_string_); | 102 stream_->OnStreamHeaders(headers_string_); |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 // Now send the body, which should close the stream as the FIN has been | 172 // Now send the body, which should close the stream as the FIN has been |
| 173 // received, as well as all data. | 173 // received, as well as all data. |
| 174 EXPECT_CALL(session_, CloseStream(stream_->id())); | 174 EXPECT_CALL(session_, CloseStream(stream_->id())); |
| 175 stream_->OnStreamFrame( | 175 stream_->OnStreamFrame( |
| 176 QuicStreamFrame(stream_->id(), /*fin=*/false, /*offset=*/0, body_)); | 176 QuicStreamFrame(stream_->id(), /*fin=*/false, /*offset=*/0, body_)); |
| 177 } | 177 } |
| 178 | 178 |
| 179 } // namespace | 179 } // namespace |
| 180 } // namespace test | 180 } // namespace test |
| 181 } // namespace net | 181 } // namespace net |
| OLD | NEW |