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

Unified Diff: net/http/http_log_util_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_log_util.cc ('k') | net/http/http_network_layer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_log_util_unittest.cc
diff --git a/net/http/http_log_util_unittest.cc b/net/http/http_log_util_unittest.cc
deleted file mode 100644
index dd6af698787c9b1d77728c7d29b26eb37f6c94b9..0000000000000000000000000000000000000000
--- a/net/http/http_log_util_unittest.cc
+++ /dev/null
@@ -1,58 +0,0 @@
-// Copyright 2014 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_log_util.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-namespace net {
-
-TEST(HttpLogUtilTest, ElideHeaderValueForNetLog) {
- // Only elide for appropriate log level.
- EXPECT_EQ("[10 bytes were stripped]", ElideHeaderValueForNetLog(
- NetLog::LOG_STRIP_PRIVATE_DATA, "Cookie", "name=value"));
- EXPECT_EQ("name=value", ElideHeaderValueForNetLog(
- NetLog::LOG_ALL_BUT_BYTES, "Cookie", "name=value"));
-
- // Headers are compared case insensitively.
- EXPECT_EQ("[10 bytes were stripped]", ElideHeaderValueForNetLog(
- NetLog::LOG_STRIP_PRIVATE_DATA, "cOoKiE", "name=value"));
-
- // These headers should be completely elided.
- EXPECT_EQ("[10 bytes were stripped]", ElideHeaderValueForNetLog(
- NetLog::LOG_STRIP_PRIVATE_DATA, "Set-Cookie", "name=value"));
- EXPECT_EQ("[10 bytes were stripped]", ElideHeaderValueForNetLog(
- NetLog::LOG_STRIP_PRIVATE_DATA, "Set-Cookie2", "name=value"));
- EXPECT_EQ("[10 bytes were stripped]", ElideHeaderValueForNetLog(
- NetLog::LOG_STRIP_PRIVATE_DATA, "Authorization", "Basic 1234"));
- EXPECT_EQ("[10 bytes were stripped]", ElideHeaderValueForNetLog(
- NetLog::LOG_STRIP_PRIVATE_DATA, "Proxy-Authorization", "Basic 1234"));
-
- // Unknown headers should pass through.
- EXPECT_EQ("value", ElideHeaderValueForNetLog(
- NetLog::LOG_STRIP_PRIVATE_DATA, "Boring", "value"));
-
- // Basic and Digest auth challenges are public.
- EXPECT_EQ("Basic realm=test", ElideHeaderValueForNetLog(
- NetLog::LOG_STRIP_PRIVATE_DATA, "WWW-Authenticate", "Basic realm=test"));
- EXPECT_EQ("Digest realm=test", ElideHeaderValueForNetLog(
- NetLog::LOG_STRIP_PRIVATE_DATA, "WWW-Authenticate", "Digest realm=test"));
- EXPECT_EQ("Basic realm=test", ElideHeaderValueForNetLog(
- NetLog::LOG_STRIP_PRIVATE_DATA,
- "Proxy-Authenticate", "Basic realm=test"));
- EXPECT_EQ("Digest realm=test", ElideHeaderValueForNetLog(
- NetLog::LOG_STRIP_PRIVATE_DATA,
- "Proxy-Authenticate", "Digest realm=test"));
-
- // Multi-round mechanisms partially elided.
- EXPECT_EQ("NTLM [4 bytes were stripped]", ElideHeaderValueForNetLog(
- NetLog::LOG_STRIP_PRIVATE_DATA, "WWW-Authenticate", "NTLM 1234"));
- EXPECT_EQ("NTLM [4 bytes were stripped]", ElideHeaderValueForNetLog(
- NetLog::LOG_STRIP_PRIVATE_DATA, "Proxy-Authenticate", "NTLM 1234"));
-
- // Leave whitespace intact.
- EXPECT_EQ("NTLM [4 bytes were stripped] ", ElideHeaderValueForNetLog(
- NetLog::LOG_STRIP_PRIVATE_DATA, "WWW-Authenticate", "NTLM 1234 "));
-}
-
-} // namspace net
« no previous file with comments | « net/http/http_log_util.cc ('k') | net/http/http_network_layer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698