OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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_server_stream.h" | 5 #include "net/tools/quic/quic_spdy_server_stream.h" |
6 | 6 |
7 #include "base/strings/string_number_conversions.h" | 7 #include "base/strings/string_number_conversions.h" |
8 #include "base/strings/string_piece.h" | 8 #include "base/strings/string_piece.h" |
9 #include "net/quic/quic_connection.h" | 9 #include "net/quic/quic_connection.h" |
10 #include "net/quic/quic_protocol.h" | 10 #include "net/quic/quic_protocol.h" |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 body_("hello world") { | 77 body_("hello world") { |
78 BalsaHeaders request_headers; | 78 BalsaHeaders request_headers; |
79 request_headers.SetRequestFirstlineFromStringPieces( | 79 request_headers.SetRequestFirstlineFromStringPieces( |
80 "POST", "https://www.google.com/", "HTTP/1.1"); | 80 "POST", "https://www.google.com/", "HTTP/1.1"); |
81 request_headers.ReplaceOrAppendHeader("content-length", "11"); | 81 request_headers.ReplaceOrAppendHeader("content-length", "11"); |
82 | 82 |
83 headers_string_ = SpdyUtils::SerializeRequestHeaders(request_headers); | 83 headers_string_ = SpdyUtils::SerializeRequestHeaders(request_headers); |
84 | 84 |
85 // New streams rely on having the peer's flow control receive window | 85 // New streams rely on having the peer's flow control receive window |
86 // negotiated in the config. | 86 // negotiated in the config. |
87 session_.config()->SetInitialFlowControlWindowToSend( | |
88 kInitialSessionFlowControlWindowForTest); | |
89 session_.config()->SetInitialStreamFlowControlWindowToSend( | 87 session_.config()->SetInitialStreamFlowControlWindowToSend( |
90 kInitialStreamFlowControlWindowForTest); | 88 kInitialStreamFlowControlWindowForTest); |
91 session_.config()->SetInitialSessionFlowControlWindowToSend( | 89 session_.config()->SetInitialSessionFlowControlWindowToSend( |
92 kInitialSessionFlowControlWindowForTest); | 90 kInitialSessionFlowControlWindowForTest); |
93 stream_.reset(new QuicSpdyServerStreamPeer(3, &session_)); | 91 stream_.reset(new QuicSpdyServerStreamPeer(3, &session_)); |
94 } | 92 } |
95 | 93 |
96 static void SetUpTestCase() { | 94 static void SetUpTestCase() { |
97 QuicInMemoryCachePeer::ResetForTests(); | 95 QuicInMemoryCachePeer::ResetForTests(); |
98 } | 96 } |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
264 StringPiece data(arr, arraysize(arr)); | 262 StringPiece data(arr, arraysize(arr)); |
265 QuicStreamFrame frame(stream_->id(), true, 0, MakeIOVector(data)); | 263 QuicStreamFrame frame(stream_->id(), true, 0, MakeIOVector(data)); |
266 // Verify that we don't crash when we get a invalid headers in stream frame. | 264 // Verify that we don't crash when we get a invalid headers in stream frame. |
267 stream_->OnStreamFrame(frame); | 265 stream_->OnStreamFrame(frame); |
268 } | 266 } |
269 | 267 |
270 } // namespace | 268 } // namespace |
271 } // namespace test | 269 } // namespace test |
272 } // namespace tools | 270 } // namespace tools |
273 } // namespace net | 271 } // namespace net |
OLD | NEW |