OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 <math.h> // ceil | 5 #include <math.h> // ceil |
6 #include <vector> | 6 #include <vector> |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/file_path.h" | 9 #include "base/file_path.h" |
10 #include "base/file_util.h" | 10 #include "base/file_util.h" |
| 11 #include "base/scoped_ptr.h" |
11 #include "net/base/completion_callback.h" | 12 #include "net/base/completion_callback.h" |
12 #include "net/base/mock_host_resolver.h" | 13 #include "net/base/mock_host_resolver.h" |
13 #include "net/base/request_priority.h" | 14 #include "net/base/request_priority.h" |
14 #include "net/base/ssl_config_service_defaults.h" | 15 #include "net/base/ssl_config_service_defaults.h" |
15 #include "net/base/ssl_info.h" | 16 #include "net/base/ssl_info.h" |
16 #include "net/base/test_completion_callback.h" | 17 #include "net/base/test_completion_callback.h" |
17 #include "net/base/upload_data.h" | 18 #include "net/base/upload_data.h" |
18 #include "net/spdy/spdy_session_pool.h" | 19 #include "net/spdy/spdy_session_pool.h" |
19 #include "net/http/http_auth_handler_ntlm.h" | 20 #include "net/http/http_auth_handler_ntlm.h" |
20 #include "net/http/http_basic_stream.h" | 21 #include "net/http/http_basic_stream.h" |
(...skipping 4100 matching lines...) Loading... |
4121 EXPECT_EQ("HTTP/1.0 200 OK", response->headers->GetStatusLine()); | 4122 EXPECT_EQ("HTTP/1.0 200 OK", response->headers->GetStatusLine()); |
4122 | 4123 |
4123 std::string response_data; | 4124 std::string response_data; |
4124 rv = ReadTransaction(trans.get(), &response_data); | 4125 rv = ReadTransaction(trans.get(), &response_data); |
4125 EXPECT_EQ(OK, rv); | 4126 EXPECT_EQ(OK, rv); |
4126 EXPECT_EQ("hello world", response_data); | 4127 EXPECT_EQ("hello world", response_data); |
4127 | 4128 |
4128 file_util::Delete(temp_file_path, false); | 4129 file_util::Delete(temp_file_path, false); |
4129 } | 4130 } |
4130 | 4131 |
| 4132 TEST_F(HttpNetworkTransactionTest, UploadUnreadableFile) { |
| 4133 // If we try to upload an unreadable file, the network stack should report |
| 4134 // the file size as zero and upload zero bytes for that file. |
| 4135 SessionDependencies session_deps; |
| 4136 scoped_ptr<HttpTransaction> trans( |
| 4137 new HttpNetworkTransaction(CreateSession(&session_deps))); |
| 4138 |
| 4139 FilePath temp_file; |
| 4140 ASSERT_TRUE(file_util::CreateTemporaryFile(&temp_file)); |
| 4141 std::string temp_file_content("Unreadable file."); |
| 4142 ASSERT_TRUE(file_util::WriteFile(temp_file, temp_file_content.c_str(), |
| 4143 temp_file_content.length())); |
| 4144 ASSERT_TRUE(file_util::MakeFileUnreadable(temp_file)); |
| 4145 |
| 4146 HttpRequestInfo request; |
| 4147 request.method = "POST"; |
| 4148 request.url = GURL("http://www.google.com/upload"); |
| 4149 request.upload_data = new UploadData; |
| 4150 request.load_flags = 0; |
| 4151 |
| 4152 std::vector<UploadData::Element> elements; |
| 4153 UploadData::Element element; |
| 4154 element.SetToFilePath(temp_file); |
| 4155 elements.push_back(element); |
| 4156 request.upload_data->set_elements(elements); |
| 4157 |
| 4158 MockRead data_reads[] = { |
| 4159 MockRead("HTTP/1.0 200 OK\r\n\r\n"), |
| 4160 MockRead(false, OK), |
| 4161 }; |
| 4162 MockWrite data_writes[] = { |
| 4163 MockWrite("POST /upload HTTP/1.1\r\n" |
| 4164 "Host: www.google.com\r\n" |
| 4165 "Connection: keep-alive\r\n" |
| 4166 "Content-Length: 0\r\n\r\n"), |
| 4167 MockWrite(false, OK), |
| 4168 }; |
| 4169 StaticSocketDataProvider data(data_reads, arraysize(data_reads), data_writes, |
| 4170 arraysize(data_writes)); |
| 4171 session_deps.socket_factory.AddSocketDataProvider(&data); |
| 4172 |
| 4173 TestCompletionCallback callback; |
| 4174 |
| 4175 int rv = trans->Start(&request, &callback, NULL); |
| 4176 EXPECT_EQ(ERR_IO_PENDING, rv); |
| 4177 |
| 4178 rv = callback.WaitForResult(); |
| 4179 EXPECT_EQ(OK, rv); |
| 4180 |
| 4181 const HttpResponseInfo* response = trans->GetResponseInfo(); |
| 4182 EXPECT_TRUE(response != NULL); |
| 4183 EXPECT_TRUE(response->headers != NULL); |
| 4184 EXPECT_EQ("HTTP/1.0 200 OK", response->headers->GetStatusLine()); |
| 4185 |
| 4186 file_util::Delete(temp_file, false); |
| 4187 } |
| 4188 |
| 4189 TEST_F(HttpNetworkTransactionTest, UnreadableUploadFileAfterAuthRestart) { |
| 4190 SessionDependencies session_deps; |
| 4191 scoped_ptr<HttpTransaction> trans( |
| 4192 new HttpNetworkTransaction(CreateSession(&session_deps))); |
| 4193 |
| 4194 FilePath temp_file; |
| 4195 ASSERT_TRUE(file_util::CreateTemporaryFile(&temp_file)); |
| 4196 std::string temp_file_contents("Unreadable file."); |
| 4197 std::string unreadable_contents(temp_file_contents.length(), '\0'); |
| 4198 ASSERT_TRUE(file_util::WriteFile(temp_file, temp_file_contents.c_str(), |
| 4199 temp_file_contents.length())); |
| 4200 |
| 4201 HttpRequestInfo request; |
| 4202 request.method = "POST"; |
| 4203 request.url = GURL("http://www.google.com/upload"); |
| 4204 request.upload_data = new UploadData; |
| 4205 request.load_flags = 0; |
| 4206 |
| 4207 std::vector<UploadData::Element> elements; |
| 4208 UploadData::Element element; |
| 4209 element.SetToFilePath(temp_file); |
| 4210 elements.push_back(element); |
| 4211 request.upload_data->set_elements(elements); |
| 4212 |
| 4213 MockRead data_reads[] = { |
| 4214 MockRead("HTTP/1.1 401 Unauthorized\r\n"), |
| 4215 MockRead("WWW-Authenticate: Basic realm=\"MyRealm1\"\r\n"), |
| 4216 MockRead("Content-Length: 0\r\n\r\n"), // No response body. |
| 4217 |
| 4218 MockRead("HTTP/1.1 200 OK\r\n"), |
| 4219 MockRead("Content-Length: 0\r\n\r\n"), |
| 4220 MockRead(false, OK), |
| 4221 }; |
| 4222 MockWrite data_writes[] = { |
| 4223 MockWrite("POST /upload HTTP/1.1\r\n" |
| 4224 "Host: www.google.com\r\n" |
| 4225 "Connection: keep-alive\r\n" |
| 4226 "Content-Length: 16\r\n\r\n"), |
| 4227 MockWrite(false, temp_file_contents.c_str()), |
| 4228 |
| 4229 MockWrite("POST /upload HTTP/1.1\r\n" |
| 4230 "Host: www.google.com\r\n" |
| 4231 "Connection: keep-alive\r\n" |
| 4232 "Content-Length: 16\r\n" |
| 4233 "Authorization: Basic Zm9vOmJhcg==\r\n\r\n"), |
| 4234 MockWrite(false, unreadable_contents.c_str(), temp_file_contents.length()), |
| 4235 MockWrite(false, OK), |
| 4236 }; |
| 4237 StaticSocketDataProvider data(data_reads, arraysize(data_reads), data_writes, |
| 4238 arraysize(data_writes)); |
| 4239 session_deps.socket_factory.AddSocketDataProvider(&data); |
| 4240 |
| 4241 TestCompletionCallback callback1; |
| 4242 |
| 4243 int rv = trans->Start(&request, &callback1, NULL); |
| 4244 EXPECT_EQ(ERR_IO_PENDING, rv); |
| 4245 |
| 4246 rv = callback1.WaitForResult(); |
| 4247 EXPECT_EQ(OK, rv); |
| 4248 |
| 4249 const HttpResponseInfo* response = trans->GetResponseInfo(); |
| 4250 EXPECT_TRUE(response != NULL); |
| 4251 EXPECT_TRUE(response->headers != NULL); |
| 4252 EXPECT_EQ("HTTP/1.1 401 Unauthorized", response->headers->GetStatusLine()); |
| 4253 |
| 4254 // The password prompt info should have been set in response->auth_challenge. |
| 4255 EXPECT_TRUE(response->auth_challenge.get() != NULL); |
| 4256 EXPECT_EQ(L"www.google.com:80", response->auth_challenge->host_and_port); |
| 4257 EXPECT_EQ(L"MyRealm1", response->auth_challenge->realm); |
| 4258 EXPECT_EQ(L"basic", response->auth_challenge->scheme); |
| 4259 |
| 4260 // Now make the file unreadable and try again. |
| 4261 ASSERT_TRUE(file_util::MakeFileUnreadable(temp_file)); |
| 4262 |
| 4263 TestCompletionCallback callback2; |
| 4264 |
| 4265 rv = trans->RestartWithAuth(L"foo", L"bar", &callback2); |
| 4266 EXPECT_EQ(ERR_IO_PENDING, rv); |
| 4267 |
| 4268 rv = callback2.WaitForResult(); |
| 4269 EXPECT_EQ(OK, rv); |
| 4270 |
| 4271 response = trans->GetResponseInfo(); |
| 4272 EXPECT_TRUE(response != NULL); |
| 4273 EXPECT_TRUE(response->headers != NULL); |
| 4274 EXPECT_TRUE(response->auth_challenge.get() == NULL); |
| 4275 EXPECT_EQ("HTTP/1.1 200 OK", response->headers->GetStatusLine()); |
| 4276 |
| 4277 file_util::Delete(temp_file, false); |
| 4278 } |
| 4279 |
4131 // Tests that changes to Auth realms are treated like auth rejections. | 4280 // Tests that changes to Auth realms are treated like auth rejections. |
4132 TEST_F(HttpNetworkTransactionTest, ChangeAuthRealms) { | 4281 TEST_F(HttpNetworkTransactionTest, ChangeAuthRealms) { |
4133 SessionDependencies session_deps; | 4282 SessionDependencies session_deps; |
4134 scoped_ptr<HttpTransaction> trans( | 4283 scoped_ptr<HttpTransaction> trans( |
4135 new HttpNetworkTransaction(CreateSession(&session_deps))); | 4284 new HttpNetworkTransaction(CreateSession(&session_deps))); |
4136 | 4285 |
4137 HttpRequestInfo request; | 4286 HttpRequestInfo request; |
4138 request.method = "GET"; | 4287 request.method = "GET"; |
4139 request.url = GURL("http://www.google.com/"); | 4288 request.url = GURL("http://www.google.com/"); |
4140 request.load_flags = 0; | 4289 request.load_flags = 0; |
(...skipping 349 matching lines...) Loading... |
4490 ASSERT_TRUE(response != NULL); | 4639 ASSERT_TRUE(response != NULL); |
4491 ASSERT_TRUE(response->headers != NULL); | 4640 ASSERT_TRUE(response->headers != NULL); |
4492 EXPECT_EQ("HTTP/1.1 200 OK", response->headers->GetStatusLine()); | 4641 EXPECT_EQ("HTTP/1.1 200 OK", response->headers->GetStatusLine()); |
4493 | 4642 |
4494 std::string response_data; | 4643 std::string response_data; |
4495 ASSERT_EQ(OK, ReadTransaction(trans.get(), &response_data)); | 4644 ASSERT_EQ(OK, ReadTransaction(trans.get(), &response_data)); |
4496 EXPECT_EQ("hello world", response_data); | 4645 EXPECT_EQ("hello world", response_data); |
4497 } | 4646 } |
4498 | 4647 |
4499 } // namespace net | 4648 } // namespace net |
OLD | NEW |