| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 <string> | 5 #include <string> |
| 6 | 6 |
| 7 #include "base/file_util.h" | 7 #include "base/file_util.h" |
| 8 #include "base/files/scoped_temp_dir.h" | 8 #include "base/files/scoped_temp_dir.h" |
| 9 #include "base/platform_file.h" | 9 #include "base/platform_file.h" |
| 10 #include "testing/gtest/include/gtest/gtest.h" | 10 #include "testing/gtest/include/gtest/gtest.h" |
| 11 | 11 |
| 12 namespace base { | 12 namespace base { |
| 13 | 13 |
| 14 TEST(ScopedTempDir, FullPath) { | 14 TEST(ScopedTempDir, FullPath) { |
| 15 FilePath test_path; | 15 FilePath test_path; |
| 16 file_util::CreateNewTempDirectory(FILE_PATH_LITERAL("scoped_temp_dir"), | 16 base::CreateNewTempDirectory(FILE_PATH_LITERAL("scoped_temp_dir"), |
| 17 &test_path); | 17 &test_path); |
| 18 | 18 |
| 19 // Against an existing dir, it should get destroyed when leaving scope. | 19 // Against an existing dir, it should get destroyed when leaving scope. |
| 20 EXPECT_TRUE(DirectoryExists(test_path)); | 20 EXPECT_TRUE(DirectoryExists(test_path)); |
| 21 { | 21 { |
| 22 ScopedTempDir dir; | 22 ScopedTempDir dir; |
| 23 EXPECT_TRUE(dir.Set(test_path)); | 23 EXPECT_TRUE(dir.Set(test_path)); |
| 24 EXPECT_TRUE(dir.IsValid()); | 24 EXPECT_TRUE(dir.IsValid()); |
| 25 } | 25 } |
| 26 EXPECT_FALSE(DirectoryExists(test_path)); | 26 EXPECT_FALSE(DirectoryExists(test_path)); |
| 27 | 27 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 57 FilePath tmp_dir; | 57 FilePath tmp_dir; |
| 58 EXPECT_TRUE(base::GetTempDir(&tmp_dir)); | 58 EXPECT_TRUE(base::GetTempDir(&tmp_dir)); |
| 59 EXPECT_TRUE(test_path.value().find(tmp_dir.value()) != std::string::npos); | 59 EXPECT_TRUE(test_path.value().find(tmp_dir.value()) != std::string::npos); |
| 60 } | 60 } |
| 61 EXPECT_FALSE(DirectoryExists(test_path)); | 61 EXPECT_FALSE(DirectoryExists(test_path)); |
| 62 } | 62 } |
| 63 | 63 |
| 64 TEST(ScopedTempDir, UniqueTempDirUnderPath) { | 64 TEST(ScopedTempDir, UniqueTempDirUnderPath) { |
| 65 // Create a path which will contain a unique temp path. | 65 // Create a path which will contain a unique temp path. |
| 66 FilePath base_path; | 66 FilePath base_path; |
| 67 ASSERT_TRUE(file_util::CreateNewTempDirectory(FILE_PATH_LITERAL("base_dir"), | 67 ASSERT_TRUE(base::CreateNewTempDirectory(FILE_PATH_LITERAL("base_dir"), |
| 68 &base_path)); | 68 &base_path)); |
| 69 | 69 |
| 70 FilePath test_path; | 70 FilePath test_path; |
| 71 { | 71 { |
| 72 ScopedTempDir dir; | 72 ScopedTempDir dir; |
| 73 EXPECT_TRUE(dir.CreateUniqueTempDirUnderPath(base_path)); | 73 EXPECT_TRUE(dir.CreateUniqueTempDirUnderPath(base_path)); |
| 74 test_path = dir.path(); | 74 test_path = dir.path(); |
| 75 EXPECT_TRUE(DirectoryExists(test_path)); | 75 EXPECT_TRUE(DirectoryExists(test_path)); |
| 76 EXPECT_TRUE(base_path.IsParent(test_path)); | 76 EXPECT_TRUE(base_path.IsParent(test_path)); |
| 77 EXPECT_TRUE(test_path.value().find(base_path.value()) != std::string::npos); | 77 EXPECT_TRUE(test_path.value().find(base_path.value()) != std::string::npos); |
| 78 } | 78 } |
| (...skipping 29 matching lines...) Expand all Loading... |
| 108 EXPECT_EQ(base::PLATFORM_FILE_OK, error_code); | 108 EXPECT_EQ(base::PLATFORM_FILE_OK, error_code); |
| 109 EXPECT_FALSE(dir.Delete()); // We should not be able to delete. | 109 EXPECT_FALSE(dir.Delete()); // We should not be able to delete. |
| 110 EXPECT_FALSE(dir.path().empty()); // We should still have a valid path. | 110 EXPECT_FALSE(dir.path().empty()); // We should still have a valid path. |
| 111 EXPECT_TRUE(base::ClosePlatformFile(file)); | 111 EXPECT_TRUE(base::ClosePlatformFile(file)); |
| 112 // Now, we should be able to delete. | 112 // Now, we should be able to delete. |
| 113 EXPECT_TRUE(dir.Delete()); | 113 EXPECT_TRUE(dir.Delete()); |
| 114 } | 114 } |
| 115 #endif // defined(OS_WIN) | 115 #endif // defined(OS_WIN) |
| 116 | 116 |
| 117 } // namespace base | 117 } // namespace base |
| OLD | NEW |