Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(906)

Side by Side Diff: net/http/http_response_body_drainer_unittest.cc

Issue 275953002: Remove HTTP pipelining support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix line endings Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/http/http_response_body_drainer.cc ('k') | net/http/http_server_properties.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/http/http_response_body_drainer.h" 5 #include "net/http/http_response_body_drainer.h"
6 6
7 #include <cstring> 7 #include <cstring>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after
298 TEST_F(HttpResponseBodyDrainerTest, DrainBodyTooLarge) { 298 TEST_F(HttpResponseBodyDrainerTest, DrainBodyTooLarge) {
299 int too_many_chunks = 299 int too_many_chunks =
300 HttpResponseBodyDrainer::kDrainBodyBufferSize / kMagicChunkSize; 300 HttpResponseBodyDrainer::kDrainBodyBufferSize / kMagicChunkSize;
301 too_many_chunks += 1; // Now it's too large. 301 too_many_chunks += 1; // Now it's too large.
302 302
303 mock_stream_->set_num_chunks(too_many_chunks); 303 mock_stream_->set_num_chunks(too_many_chunks);
304 drainer_->Start(session_.get()); 304 drainer_->Start(session_.get());
305 EXPECT_TRUE(result_waiter_.WaitForResult()); 305 EXPECT_TRUE(result_waiter_.WaitForResult());
306 } 306 }
307 307
308 TEST_F(HttpResponseBodyDrainerTest, StartBodyTooLarge) {
309 int too_many_chunks =
310 HttpResponseBodyDrainer::kDrainBodyBufferSize / kMagicChunkSize;
311 too_many_chunks += 1; // Now it's too large.
312
313 mock_stream_->set_num_chunks(0);
314 drainer_->StartWithSize(session_.get(), too_many_chunks * kMagicChunkSize);
315 EXPECT_TRUE(result_waiter_.WaitForResult());
316 }
317
318 TEST_F(HttpResponseBodyDrainerTest, StartWithNothingToDo) {
319 mock_stream_->set_num_chunks(0);
320 drainer_->StartWithSize(session_.get(), 0);
321 EXPECT_FALSE(result_waiter_.WaitForResult());
322 }
323
324 } // namespace 308 } // namespace
325 309
326 } // namespace net 310 } // namespace net
OLDNEW
« no previous file with comments | « net/http/http_response_body_drainer.cc ('k') | net/http/http_server_properties.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698