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

Unified Diff: trunk/src/chrome/browser/safe_browsing/path_sanitizer_unittest.cc

Issue 347123002: Revert 278655 "Include loaded modules in safe browsing client in..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 6 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 | « trunk/src/chrome/browser/safe_browsing/path_sanitizer.cc ('k') | trunk/src/chrome/chrome_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/chrome/browser/safe_browsing/path_sanitizer_unittest.cc
===================================================================
--- trunk/src/chrome/browser/safe_browsing/path_sanitizer_unittest.cc (revision 278720)
+++ trunk/src/chrome/browser/safe_browsing/path_sanitizer_unittest.cc (working copy)
@@ -1,59 +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 "chrome/browser/safe_browsing/path_sanitizer.h"
-
-#include <vector>
-
-#include "base/logging.h"
-#include "base/path_service.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-namespace {
-
-// Returns the root directory with a trailing separator. Works on all platforms.
-base::FilePath GetRootDirectory() {
- base::FilePath dir_temp;
- if (!PathService::Get(base::DIR_TEMP, &dir_temp))
- NOTREACHED();
-
- std::vector<base::FilePath::StringType> components;
- dir_temp.GetComponents(&components);
-
- return base::FilePath(components[0]).AsEndingWithSeparator();
-}
-
-} // namespace
-
-TEST(SafeBrowsingPathSanitizerTest, HomeDirectoryIsNotEmpty) {
- safe_browsing::PathSanitizer path_sanitizer;
-
- ASSERT_FALSE(path_sanitizer.GetHomeDirectory().empty());
-}
-
-TEST(SafeBrowsingPathSanitizerTest, DontStripHomeDirectoryTest) {
- // Test with path not in home directory.
- base::FilePath path =
- GetRootDirectory().Append(FILE_PATH_LITERAL("not_in_home_directory.ext"));
- base::FilePath path_expected = path;
-
- safe_browsing::PathSanitizer path_sanitizer;
- path_sanitizer.StripHomeDirectory(&path);
-
- ASSERT_EQ(path.value(), path_expected.value());
-}
-
-TEST(SafeBrowsingPathSanitizerTest, DoStripHomeDirectoryTest) {
- // Test with path in home directory.
- safe_browsing::PathSanitizer path_sanitizer;
-
- base::FilePath path = path_sanitizer.GetHomeDirectory().Append(
- FILE_PATH_LITERAL("in_home_directory.ext"));
- base::FilePath path_expected = base::FilePath(FILE_PATH_LITERAL("~")).Append(
- FILE_PATH_LITERAL("in_home_directory.ext"));
-
- path_sanitizer.StripHomeDirectory(&path);
-
- ASSERT_EQ(path.value(), path_expected.value());
-}
« no previous file with comments | « trunk/src/chrome/browser/safe_browsing/path_sanitizer.cc ('k') | trunk/src/chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698