diff options
author | wtc@chromium.org <wtc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-14 01:45:08 +0000 |
---|---|---|
committer | wtc@chromium.org <wtc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-14 01:45:08 +0000 |
commit | dc65178303132de4a628669e1626344ebd33c127 (patch) | |
tree | 5c63bc2c2e2c1f030809c257e6c4412a8e4fc35b /net/url_request | |
parent | c8d01b9df4bd67ef0e42f93b750dac46a8d30f39 (diff) | |
download | chromium_src-dc65178303132de4a628669e1626344ebd33c127.zip chromium_src-dc65178303132de4a628669e1626344ebd33c127.tar.gz chromium_src-dc65178303132de4a628669e1626344ebd33c127.tar.bz2 |
Add a unit test for ERR_UNEXPECTED_SERVER_AUTH.
Remove the obsolete change to
URLRequestHttpJob::IsRedirectResponse, which was
accidentally checked in.
R=eroman
BUG=7338
Review URL: http://codereview.chromium.org/20279
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9816 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/url_request')
-rw-r--r-- | net/url_request/url_request_http_job.cc | 6 | ||||
-rw-r--r-- | net/url_request/url_request_unittest.cc | 31 |
2 files changed, 28 insertions, 9 deletions
diff --git a/net/url_request/url_request_http_job.cc b/net/url_request/url_request_http_job.cc index c7fc435..c4d0563 100644 --- a/net/url_request/url_request_http_job.cc +++ b/net/url_request/url_request_http_job.cc @@ -212,12 +212,6 @@ bool URLRequestHttpJob::IsRedirectResponse(GURL* location, if (!response_info_->headers->IsRedirect(&value)) return false; - // For HTTPS, if we didn't receive a server certificate, the response was - // from the proxy server (a response to the CONNECT request) rather than - // the server. - if (request_->url().SchemeIsSecure() && !response_info_->ssl_info.cert) - return false; - *location = request_->url().Resolve(value); *http_status_code = response_info_->headers->response_code(); return true; diff --git a/net/url_request/url_request_unittest.cc b/net/url_request/url_request_unittest.cc index 0cadd0e..21d1c72 100644 --- a/net/url_request/url_request_unittest.cc +++ b/net/url_request/url_request_unittest.cc @@ -84,8 +84,8 @@ class URLRequestTest : public PlatformTest { TEST_F(URLRequestTest, ProxyTunnelRedirectTest) { // In this unit test, we're using the HTTPTestServer as a proxy server and - // issue a CONNECT request with the magic host name "www.redirect.com" to - // it. The HTTPTestServer will return a 302 response, which we should not + // issuing a CONNECT request with the magic host name "www.redirect.com". + // The HTTPTestServer will return a 302 response, which we should not // follow. scoped_refptr<HTTPTestServer> server = HTTPTestServer::CreateServer(L"", NULL); @@ -102,14 +102,39 @@ TEST_F(URLRequestTest, ProxyTunnelRedirectTest) { MessageLoop::current()->Run(); - EXPECT_EQ(1, d.response_started_count()); + EXPECT_EQ(URLRequestStatus::SUCCESS, r.status().status()); // We should have rewritten the 302 response code as 500. EXPECT_EQ(500, r.GetResponseCode()); + EXPECT_EQ(1, d.response_started_count()); // We should not have followed the redirect. EXPECT_EQ(0, d.received_redirect_count()); } } +TEST_F(URLRequestTest, UnexpectedServerAuthTest) { + // In this unit test, we're using the HTTPTestServer as a proxy server and + // issuing a CONNECT request with the magic host name "www.server-auth.com". + // The HTTPTestServer will return a 401 response, which we should balk at. + scoped_refptr<HTTPTestServer> server = + HTTPTestServer::CreateServer(L"", NULL); + ASSERT_TRUE(NULL != server.get()); + TestDelegate d; + { + URLRequest r(GURL("https://www.server-auth.com/"), &d); + std::string proxy("localhost:"); + proxy.append(IntToString(kHTTPDefaultPort)); + r.set_context(new TestURLRequestContext(proxy)); + + r.Start(); + EXPECT_TRUE(r.is_pending()); + + MessageLoop::current()->Run(); + + EXPECT_EQ(URLRequestStatus::FAILED, r.status().status()); + EXPECT_EQ(net::ERR_UNEXPECTED_SERVER_AUTH, r.status().os_error()); + } +} + TEST_F(URLRequestTest, GetTest_NoCache) { scoped_refptr<HTTPTestServer> server = HTTPTestServer::CreateServer(L"", NULL); |