Index: chrome/browser/safe_browsing/path_sanitizer_unittest.cc |
diff --git a/chrome/browser/safe_browsing/path_sanitizer_unittest.cc b/chrome/browser/safe_browsing/path_sanitizer_unittest.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..09af5caedc37669d89eb78783ae752b4531cf333 |
--- /dev/null |
+++ b/chrome/browser/safe_browsing/path_sanitizer_unittest.cc |
@@ -0,0 +1,39 @@ |
+// 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 "testing/gtest/include/gtest/gtest.h" |
+ |
+TEST(SafeBrowsingPathSanitizerTest, HomeDirectoryIsNotEmpty) { |
+ safe_browsing::PathSanitizer path_sanitizer; |
+ |
+ ASSERT_FALSE(path_sanitizer.GetHomeDirectory().empty()); |
+} |
+ |
+TEST(SafeBrowsingPathSanitizerTest, DontStripHomeDirectoryTest) { |
+ // Test with path not in home directory |
+ safe_browsing::PathSanitizer path_sanitizer; |
+ |
+ base::FilePath path( |
+ FILE_PATH_LITERAL("C:\\path\\not\\in\\home\\directory\\test.dll")); |
+ |
+ path_sanitizer.StripHomeDirectory(&path); |
+ |
+ ASSERT_EQ(path.value(), |
+ FILE_PATH_LITERAL("C:\\path\\not\\in\\home\\directory\\test.dll")); |
+} |
+ |
+TEST(SafeBrowsingPathSanitizerTest, DoStripHomeDirectoryTest) { |
+ // Test with path in home directory |
+ safe_browsing::PathSanitizer path_sanitizer; |
+ |
+ base::FilePath path = path_sanitizer.GetHomeDirectory().Append( |
+ FILE_PATH_LITERAL("\\path\\in\\home\\directory\\test.dll")); |
mattm
2014/06/17 01:28:18
hm, why is the leading \ on the appended path ok?
pmonette_google.com
2014/06/17 17:48:22
Removed.
|
+ |
+ path_sanitizer.StripHomeDirectory(&path); |
+ |
+ ASSERT_EQ(path.value(), |
+ FILE_PATH_LITERAL("~\\path\\in\\home\\directory\\test.dll")); |
+} |