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

Unified Diff: base/file_util_unittest.cc

Issue 141273010: Make CopyDirectory() not copy the read only bit on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Revert change to CopyFileUnsafe Created 6 years, 10 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 | « base/file_util_posix.cc ('k') | base/file_util_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/file_util_unittest.cc
diff --git a/base/file_util_unittest.cc b/base/file_util_unittest.cc
index d3c246e42928675bcf08a9e0b242294ba58a30e6..49dd5ad3587761f1b64a5b51db063dcd2c8ab16d 100644
--- a/base/file_util_unittest.cc
+++ b/base/file_util_unittest.cc
@@ -1360,6 +1360,69 @@ TEST_F(FileUtilTest, CopyDirectoryWithTrailingSeparators) {
EXPECT_TRUE(PathExists(file_name_to));
}
+// Sets the source file to read-only.
+void SetReadOnly(const FilePath& path) {
+#if defined(OS_WIN)
+ // On Windows, it involves setting a bit.
+ DWORD attrs = GetFileAttributes(path.value().c_str());
+ ASSERT_NE(INVALID_FILE_ATTRIBUTES, attrs);
+ ASSERT_TRUE(SetFileAttributes(
+ path.value().c_str(), attrs | FILE_ATTRIBUTE_READONLY));
+ attrs = GetFileAttributes(path.value().c_str());
+ // Files in the temporary directory should not be indexed ever. If this
+ // assumption change, fix this unit test accordingly.
+ // FILE_ATTRIBUTE_NOT_CONTENT_INDEXED doesn't exist on XP.
+ DWORD expected = FILE_ATTRIBUTE_ARCHIVE | FILE_ATTRIBUTE_READONLY;
+ if (win::GetVersion() >= win::VERSION_VISTA)
+ expected |= FILE_ATTRIBUTE_NOT_CONTENT_INDEXED;
+ ASSERT_EQ(expected, attrs);
+#else
+ // On all other platforms, it involves removing the write bit.
+ EXPECT_TRUE(SetPosixFilePermissions(path, S_IRUSR));
+#endif
+}
+
+bool IsReadOnly(const FilePath& path) {
+#if defined(OS_WIN)
+ DWORD attrs = GetFileAttributes(path.value().c_str());
+ EXPECT_NE(INVALID_FILE_ATTRIBUTES, attrs);
+ return attrs & FILE_ATTRIBUTE_READONLY;
+#else
+ int mode = 0;
+ EXPECT_TRUE(GetPosixFilePermissions(path, &mode));
+ return !(mode & S_IWUSR);
+#endif
+}
+
+TEST_F(FileUtilTest, CopyDirectoryACL) {
+ // Create a directory.
+ FilePath src = temp_dir_.path().Append(FILE_PATH_LITERAL("src"));
+ CreateDirectory(src);
+ ASSERT_TRUE(PathExists(src));
+
+ // Create a file under the directory.
+ FilePath src_file = src.Append(FILE_PATH_LITERAL("src.txt"));
+ CreateTextFile(src_file, L"Gooooooooooooooooooooogle");
+ SetReadOnly(src_file);
+ ASSERT_TRUE(IsReadOnly(src_file));
+
+ // Copy the directory recursively.
+ FilePath dst = temp_dir_.path().Append(FILE_PATH_LITERAL("dst"));
+ FilePath dst_file = dst.Append(FILE_PATH_LITERAL("src.txt"));
+ EXPECT_TRUE(CopyDirectory(src, dst, true));
+
+#if defined(OS_WIN)
+ // While the source file had RO bit set, the copied file doesn't.
+ ASSERT_FALSE(IsReadOnly(dst_file));
+#elif defined(OS_MACOSX)
+ // On OSX, file mode is copied.
+ ASSERT_TRUE(IsReadOnly(dst_file));
+#else
+ // On other POSIX, file mode is not copied.
+ ASSERT_FALSE(IsReadOnly(dst_file));
+#endif
+}
+
TEST_F(FileUtilTest, CopyFile) {
// Create a directory
FilePath dir_name_from =
@@ -1398,7 +1461,6 @@ TEST_F(FileUtilTest, CopyFile) {
EXPECT_TRUE(PathExists(dest_file2));
}
-#if defined(OS_WIN) || defined(OS_POSIX)
TEST_F(FileUtilTest, CopyFileACL) {
// While FileUtilTest.CopyFile asserts the content is correctly copied over,
// this test case asserts the access control bits are meeting expectations in
@@ -1408,24 +1470,9 @@ TEST_F(FileUtilTest, CopyFileACL) {
CreateTextFile(src, file_contents);
// Set the source file to read-only.
-#if defined(OS_WIN)
- // On Windows, it involves setting a bit.
- DWORD attrs = GetFileAttributes(src.value().c_str());
- ASSERT_NE(INVALID_FILE_ATTRIBUTES, attrs);
- ASSERT_TRUE(SetFileAttributes(
- src.value().c_str(), attrs | FILE_ATTRIBUTE_READONLY));
- attrs = GetFileAttributes(src.value().c_str());
- // Files in the temporary directory should not be indexed ever. If this
- // assumption change, fix this unit test accordingly.
- // FILE_ATTRIBUTE_NOT_CONTENT_INDEXED doesn't exist on XP.
- DWORD expected = FILE_ATTRIBUTE_ARCHIVE | FILE_ATTRIBUTE_READONLY;
- if (win::GetVersion() >= win::VERSION_VISTA)
- expected |= FILE_ATTRIBUTE_NOT_CONTENT_INDEXED;
- ASSERT_EQ(expected, attrs);
-#else
- // On all other platforms, it involves removing the write bit.
- EXPECT_TRUE(SetPosixFilePermissions(src, 0400));
-#endif
+ ASSERT_FALSE(IsReadOnly(src));
+ SetReadOnly(src);
+ ASSERT_TRUE(IsReadOnly(src));
// Copy the file.
FilePath dst = temp_dir_.path().Append(FILE_PATH_LITERAL("dst.txt"));
@@ -1435,26 +1482,15 @@ TEST_F(FileUtilTest, CopyFileACL) {
#if defined(OS_WIN)
// While the source file had RO bit set, the copied file doesn't. Other file
// modes are copied.
- attrs = GetFileAttributes(src.value().c_str());
- ASSERT_EQ(expected, attrs);
- expected = FILE_ATTRIBUTE_ARCHIVE;
- if (win::GetVersion() >= win::VERSION_VISTA)
- expected |= FILE_ATTRIBUTE_NOT_CONTENT_INDEXED;
- attrs = GetFileAttributes(dst.value().c_str());
- ASSERT_EQ(expected, attrs);
+ ASSERT_FALSE(IsReadOnly(dst));
#elif defined(OS_MACOSX)
// On OSX, file mode is copied.
- int mode = 0;
- EXPECT_TRUE(GetPosixFilePermissions(dst, &mode));
- EXPECT_EQ(0400, mode & 0600);
+ ASSERT_TRUE(IsReadOnly(dst));
#else
// On other POSIX, file mode is not copied.
- int mode = 0;
- EXPECT_TRUE(GetPosixFilePermissions(dst, &mode));
- EXPECT_EQ(0600, mode & 0600);
+ ASSERT_FALSE(IsReadOnly(dst));
#endif
}
-#endif // defined(OS_WIN) || defined(OS_POSIX)
// file_util winds up using autoreleased objects on the Mac, so this needs
// to be a PlatformTest.
« no previous file with comments | « base/file_util_posix.cc ('k') | base/file_util_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698