| OLD | NEW |
| 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_auth_handler.h" | 5 #include "net/http/http_auth_handler.h" |
| 6 | 6 |
| 7 #include "base/strings/string_util.h" | 7 #include "base/strings/string_util.h" |
| 8 #include "base/strings/utf_string_conversions.h" | 8 #include "base/strings/utf_string_conversions.h" |
| 9 #include "net/base/net_errors.h" | 9 #include "net/base/net_errors.h" |
| 10 #include "net/base/test_completion_callback.h" | 10 #include "net/base/test_completion_callback.h" |
| 11 #include "net/http/http_auth_challenge_tokenizer.h" | 11 #include "net/http/http_auth_challenge_tokenizer.h" |
| 12 #include "net/http/http_auth_handler_mock.h" | 12 #include "net/http/http_auth_handler_mock.h" |
| 13 #include "net/http/http_request_info.h" | 13 #include "net/http/http_request_info.h" |
| 14 #include "net/log/test_net_log.h" | 14 #include "net/log/test_net_log.h" |
| 15 #include "net/log/test_net_log_entry.h" | 15 #include "net/log/test_net_log_entry.h" |
| 16 #include "net/log/test_net_log_util.h" | 16 #include "net/log/test_net_log_util.h" |
| 17 #include "testing/gtest/include/gtest/gtest.h" | 17 #include "testing/gtest/include/gtest/gtest.h" |
| 18 #include "url/origin.h" |
| 18 | 19 |
| 19 namespace net { | 20 namespace net { |
| 20 | 21 |
| 21 TEST(HttpAuthHandlerTest, NetLog) { | 22 TEST(HttpAuthHandlerTest, NetLog) { |
| 22 GURL origin("http://www.example.com"); | 23 url::Origin origin("http://www.example.com"); |
| 23 std::string challenge = "Mock asdf"; | 24 std::string challenge = "Mock asdf"; |
| 24 AuthCredentials credentials(base::ASCIIToUTF16("user"), | 25 AuthCredentials credentials(base::ASCIIToUTF16("user"), |
| 25 base::ASCIIToUTF16("pass")); | 26 base::ASCIIToUTF16("pass")); |
| 26 std::string auth_token; | 27 std::string auth_token; |
| 27 HttpRequestInfo request; | 28 HttpRequestInfo request; |
| 28 | 29 |
| 29 for (int i = 0; i < 2; ++i) { | 30 for (int i = 0; i < 2; ++i) { |
| 30 bool async = (i == 0); | 31 bool async = (i == 0); |
| 31 for (int j = 0; j < 2; ++j) { | 32 for (int j = 0; j < 2; ++j) { |
| 32 int rv = (j == 0) ? OK : ERR_UNEXPECTED; | 33 int rv = (j == 0) ? OK : ERR_UNEXPECTED; |
| (...skipping 23 matching lines...) Expand all Loading... |
| 56 | 57 |
| 57 EXPECT_EQ(2u, entries.size()); | 58 EXPECT_EQ(2u, entries.size()); |
| 58 EXPECT_TRUE(LogContainsBeginEvent(entries, 0, event_type)); | 59 EXPECT_TRUE(LogContainsBeginEvent(entries, 0, event_type)); |
| 59 EXPECT_TRUE(LogContainsEndEvent(entries, 1, event_type)); | 60 EXPECT_TRUE(LogContainsEndEvent(entries, 1, event_type)); |
| 60 } | 61 } |
| 61 } | 62 } |
| 62 } | 63 } |
| 63 } | 64 } |
| 64 | 65 |
| 65 } // namespace net | 66 } // namespace net |
| OLD | NEW |