| 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 "base/file_util.h" | 5 #include "base/file_util.h" |
| 6 #include "base/files/scoped_temp_dir.h" | 6 #include "base/files/scoped_temp_dir.h" |
| 7 #include "base/platform_file.h" | 7 #include "base/platform_file.h" |
| 8 #include "base/time/time.h" | 8 #include "base/time/time.h" |
| 9 #include "testing/gtest/include/gtest/gtest.h" | 9 #include "testing/gtest/include/gtest/gtest.h" |
| 10 | 10 |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 file_path, | 96 file_path, |
| 97 base::PLATFORM_FILE_OPEN_ALWAYS | base::PLATFORM_FILE_DELETE_ON_CLOSE | | 97 base::PLATFORM_FILE_OPEN_ALWAYS | base::PLATFORM_FILE_DELETE_ON_CLOSE | |
| 98 base::PLATFORM_FILE_READ, | 98 base::PLATFORM_FILE_READ, |
| 99 &created, | 99 &created, |
| 100 &error_code); | 100 &error_code); |
| 101 EXPECT_NE(base::kInvalidPlatformFileValue, file); | 101 EXPECT_NE(base::kInvalidPlatformFileValue, file); |
| 102 EXPECT_TRUE(created); | 102 EXPECT_TRUE(created); |
| 103 EXPECT_EQ(base::PLATFORM_FILE_OK, error_code); | 103 EXPECT_EQ(base::PLATFORM_FILE_OK, error_code); |
| 104 | 104 |
| 105 EXPECT_TRUE(base::ClosePlatformFile(file)); | 105 EXPECT_TRUE(base::ClosePlatformFile(file)); |
| 106 EXPECT_FALSE(file_util::PathExists(file_path)); | 106 EXPECT_FALSE(base::PathExists(file_path)); |
| 107 } | 107 } |
| 108 | 108 |
| 109 TEST(PlatformFile, DeleteOpenFile) { | 109 TEST(PlatformFile, DeleteOpenFile) { |
| 110 base::ScopedTempDir temp_dir; | 110 base::ScopedTempDir temp_dir; |
| 111 ASSERT_TRUE(temp_dir.CreateUniqueTempDir()); | 111 ASSERT_TRUE(temp_dir.CreateUniqueTempDir()); |
| 112 FilePath file_path = temp_dir.path().AppendASCII("create_file_1"); | 112 FilePath file_path = temp_dir.path().AppendASCII("create_file_1"); |
| 113 | 113 |
| 114 // Create a file. | 114 // Create a file. |
| 115 bool created = false; | 115 bool created = false; |
| 116 base::PlatformFileError error_code = base::PLATFORM_FILE_OK; | 116 base::PlatformFileError error_code = base::PLATFORM_FILE_OK; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 132 base::PLATFORM_FILE_READ, | 132 base::PLATFORM_FILE_READ, |
| 133 &created, | 133 &created, |
| 134 &error_code); | 134 &error_code); |
| 135 EXPECT_NE(base::kInvalidPlatformFileValue, file); | 135 EXPECT_NE(base::kInvalidPlatformFileValue, file); |
| 136 EXPECT_FALSE(created); | 136 EXPECT_FALSE(created); |
| 137 EXPECT_EQ(base::PLATFORM_FILE_OK, error_code); | 137 EXPECT_EQ(base::PLATFORM_FILE_OK, error_code); |
| 138 | 138 |
| 139 // Close both handles and check that the file is gone. | 139 // Close both handles and check that the file is gone. |
| 140 base::ClosePlatformFile(file); | 140 base::ClosePlatformFile(file); |
| 141 base::ClosePlatformFile(same_file); | 141 base::ClosePlatformFile(same_file); |
| 142 EXPECT_FALSE(file_util::PathExists(file_path)); | 142 EXPECT_FALSE(base::PathExists(file_path)); |
| 143 } | 143 } |
| 144 | 144 |
| 145 TEST(PlatformFile, ReadWritePlatformFile) { | 145 TEST(PlatformFile, ReadWritePlatformFile) { |
| 146 base::ScopedTempDir temp_dir; | 146 base::ScopedTempDir temp_dir; |
| 147 ASSERT_TRUE(temp_dir.CreateUniqueTempDir()); | 147 ASSERT_TRUE(temp_dir.CreateUniqueTempDir()); |
| 148 FilePath file_path = temp_dir.path().AppendASCII("read_write_file"); | 148 FilePath file_path = temp_dir.path().AppendASCII("read_write_file"); |
| 149 base::PlatformFile file = base::CreatePlatformFile( | 149 base::PlatformFile file = base::CreatePlatformFile( |
| 150 file_path, | 150 file_path, |
| 151 base::PLATFORM_FILE_CREATE | base::PLATFORM_FILE_READ | | 151 base::PLATFORM_FILE_CREATE | base::PLATFORM_FILE_READ | |
| 152 base::PLATFORM_FILE_WRITE, | 152 base::PLATFORM_FILE_WRITE, |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 EXPECT_EQ(info.last_modified.ToInternalValue(), | 391 EXPECT_EQ(info.last_modified.ToInternalValue(), |
| 392 new_last_modified.ToInternalValue()); | 392 new_last_modified.ToInternalValue()); |
| 393 #endif | 393 #endif |
| 394 | 394 |
| 395 EXPECT_EQ(info.creation_time.ToInternalValue(), | 395 EXPECT_EQ(info.creation_time.ToInternalValue(), |
| 396 creation_time.ToInternalValue()); | 396 creation_time.ToInternalValue()); |
| 397 | 397 |
| 398 // Close the file handle to allow the temp directory to be deleted. | 398 // Close the file handle to allow the temp directory to be deleted. |
| 399 base::ClosePlatformFile(file); | 399 base::ClosePlatformFile(file); |
| 400 } | 400 } |
| OLD | NEW |