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

Unified Diff: net/http/http_auth_handler_unittest.cc

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/http/http_auth_handler_ntlm_win.cc ('k') | net/http/http_auth_sspi_win.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_auth_handler_unittest.cc
diff --git a/net/http/http_auth_handler_unittest.cc b/net/http/http_auth_handler_unittest.cc
deleted file mode 100644
index a53573d6b4704453b07de3543a34e8de8ddde369..0000000000000000000000000000000000000000
--- a/net/http/http_auth_handler_unittest.cc
+++ /dev/null
@@ -1,64 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "net/http/http_auth_handler.h"
-
-#include "base/strings/string_util.h"
-#include "base/strings/utf_string_conversions.h"
-#include "net/base/capturing_net_log.h"
-#include "net/base/net_errors.h"
-#include "net/base/net_log_unittest.h"
-#include "net/base/test_completion_callback.h"
-#include "net/http/http_auth_challenge_tokenizer.h"
-#include "net/http/http_auth_handler_mock.h"
-#include "net/http/http_request_info.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-namespace net {
-
-TEST(HttpAuthHandlerTest, NetLog) {
- GURL origin("http://www.example.com");
- std::string challenge = "Mock asdf";
- AuthCredentials credentials(base::ASCIIToUTF16("user"),
- base::ASCIIToUTF16("pass"));
- std::string auth_token;
- HttpRequestInfo request;
-
- for (int i = 0; i < 2; ++i) {
- bool async = (i == 0);
- for (int j = 0; j < 2; ++j) {
- int rv = (j == 0) ? OK : ERR_UNEXPECTED;
- for (int k = 0; k < 2; ++k) {
- TestCompletionCallback test_callback;
- HttpAuth::Target target =
- (k == 0) ? HttpAuth::AUTH_PROXY : HttpAuth::AUTH_SERVER;
- NetLog::EventType event_type =
- (k == 0) ? NetLog::TYPE_AUTH_PROXY : NetLog::TYPE_AUTH_SERVER;
- HttpAuthChallengeTokenizer tokenizer(
- challenge.begin(), challenge.end());
- HttpAuthHandlerMock mock_handler;
- CapturingNetLog capturing_net_log;
- BoundNetLog bound_net_log(BoundNetLog::Make(&capturing_net_log,
- net::NetLog::SOURCE_NONE));
-
- mock_handler.InitFromChallenge(&tokenizer, target,
- origin, bound_net_log);
- mock_handler.SetGenerateExpectation(async, rv);
- mock_handler.GenerateAuthToken(&credentials, &request,
- test_callback.callback(), &auth_token);
- if (async)
- test_callback.WaitForResult();
-
- CapturingNetLog::CapturedEntryList entries;
- capturing_net_log.GetEntries(&entries);
-
- EXPECT_EQ(2u, entries.size());
- EXPECT_TRUE(LogContainsBeginEvent(entries, 0, event_type));
- EXPECT_TRUE(LogContainsEndEvent(entries, 1, event_type));
- }
- }
- }
-}
-
-} // namespace net
« no previous file with comments | « net/http/http_auth_handler_ntlm_win.cc ('k') | net/http/http_auth_sspi_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698