| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "content/browser/loader/async_resource_handler.h" | 5 #include "content/browser/loader/async_resource_handler.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 }; | 136 }; |
| 137 | 137 |
| 138 class AsyncResourceHandlerTest : public ::testing::Test, | 138 class AsyncResourceHandlerTest : public ::testing::Test, |
| 139 public ResourceLoaderDelegate { | 139 public ResourceLoaderDelegate { |
| 140 protected: | 140 protected: |
| 141 AsyncResourceHandlerTest() | 141 AsyncResourceHandlerTest() |
| 142 : thread_bundle_(TestBrowserThreadBundle::IO_MAINLOOP), context_(true) {} | 142 : thread_bundle_(TestBrowserThreadBundle::IO_MAINLOOP), context_(true) {} |
| 143 | 143 |
| 144 void TearDown() override { | 144 void TearDown() override { |
| 145 // Prevent memory leaks. | 145 // Prevent memory leaks. |
| 146 filter_ = nullptr; |
| 146 rdh_.Shutdown(); | 147 rdh_.Shutdown(); |
| 147 base::RunLoop().RunUntilIdle(); | 148 base::RunLoop().RunUntilIdle(); |
| 148 } | 149 } |
| 149 | 150 |
| 150 void CreateRequestWithResponseDataSize(size_t response_data_size) { | 151 void CreateRequestWithResponseDataSize(size_t response_data_size) { |
| 151 test_job_factory_.SetProtocolHandler( | 152 test_job_factory_.SetProtocolHandler( |
| 152 "test", base::MakeUnique<TestProtocolHandler>(response_data_size)); | 153 "test", base::MakeUnique<TestProtocolHandler>(response_data_size)); |
| 153 context_.set_job_factory(&test_job_factory_); | 154 context_.set_job_factory(&test_job_factory_); |
| 154 context_.Init(); | 155 context_.Init(); |
| 155 std::unique_ptr<net::URLRequest> request = context_.CreateRequest( | 156 std::unique_ptr<net::URLRequest> request = context_.CreateRequest( |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 | 300 |
| 300 encoded_data_length = std::get<3>(params); | 301 encoded_data_length = std::get<3>(params); |
| 301 EXPECT_EQ(32768, encoded_data_length); | 302 EXPECT_EQ(32768, encoded_data_length); |
| 302 encoded_body_length = std::get<4>(params); | 303 encoded_body_length = std::get<4>(params); |
| 303 EXPECT_EQ(32768, encoded_body_length); | 304 EXPECT_EQ(32768, encoded_body_length); |
| 304 } | 305 } |
| 305 | 306 |
| 306 } // namespace | 307 } // namespace |
| 307 | 308 |
| 308 } // namespace content | 309 } // namespace content |
| OLD | NEW |