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

Unified Diff: base/scoped_temp_dir_unittest.cc

Issue 11359217: Move scoped_temp_dir from base to base/files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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/scoped_temp_dir.cc ('k') | base/test/scoped_path_override.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/scoped_temp_dir_unittest.cc
diff --git a/base/scoped_temp_dir_unittest.cc b/base/scoped_temp_dir_unittest.cc
deleted file mode 100644
index eddea833e533ef3eef3c32489e43f60cbe801c73..0000000000000000000000000000000000000000
--- a/base/scoped_temp_dir_unittest.cc
+++ /dev/null
@@ -1,113 +0,0 @@
-// Copyright (c) 2011 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 <string>
-
-#include "base/file_util.h"
-#include "base/platform_file.h"
-#include "base/scoped_temp_dir.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-TEST(ScopedTempDir, FullPath) {
- FilePath test_path;
- file_util::CreateNewTempDirectory(FILE_PATH_LITERAL("scoped_temp_dir"),
- &test_path);
-
- // Against an existing dir, it should get destroyed when leaving scope.
- EXPECT_TRUE(file_util::DirectoryExists(test_path));
- {
- ScopedTempDir dir;
- EXPECT_TRUE(dir.Set(test_path));
- EXPECT_TRUE(dir.IsValid());
- }
- EXPECT_FALSE(file_util::DirectoryExists(test_path));
-
- {
- ScopedTempDir dir;
- EXPECT_TRUE(dir.Set(test_path));
- // Now the dir doesn't exist, so ensure that it gets created.
- EXPECT_TRUE(file_util::DirectoryExists(test_path));
- // When we call Release(), it shouldn't get destroyed when leaving scope.
- FilePath path = dir.Take();
- EXPECT_EQ(path.value(), test_path.value());
- EXPECT_FALSE(dir.IsValid());
- }
- EXPECT_TRUE(file_util::DirectoryExists(test_path));
-
- // Clean up.
- {
- ScopedTempDir dir;
- EXPECT_TRUE(dir.Set(test_path));
- }
- EXPECT_FALSE(file_util::DirectoryExists(test_path));
-}
-
-TEST(ScopedTempDir, TempDir) {
- // In this case, just verify that a directory was created and that it's a
- // child of TempDir.
- FilePath test_path;
- {
- ScopedTempDir dir;
- EXPECT_TRUE(dir.CreateUniqueTempDir());
- test_path = dir.path();
- EXPECT_TRUE(file_util::DirectoryExists(test_path));
- FilePath tmp_dir;
- EXPECT_TRUE(file_util::GetTempDir(&tmp_dir));
- EXPECT_TRUE(test_path.value().find(tmp_dir.value()) != std::string::npos);
- }
- EXPECT_FALSE(file_util::DirectoryExists(test_path));
-}
-
-TEST(ScopedTempDir, UniqueTempDirUnderPath) {
- // Create a path which will contain a unique temp path.
- FilePath base_path;
- ASSERT_TRUE(file_util::CreateNewTempDirectory(FILE_PATH_LITERAL("base_dir"),
- &base_path));
-
- FilePath test_path;
- {
- ScopedTempDir dir;
- EXPECT_TRUE(dir.CreateUniqueTempDirUnderPath(base_path));
- test_path = dir.path();
- EXPECT_TRUE(file_util::DirectoryExists(test_path));
- EXPECT_TRUE(base_path.IsParent(test_path));
- EXPECT_TRUE(test_path.value().find(base_path.value()) != std::string::npos);
- }
- EXPECT_FALSE(file_util::DirectoryExists(test_path));
- file_util::Delete(base_path, true);
-}
-
-TEST(ScopedTempDir, MultipleInvocations) {
- ScopedTempDir dir;
- EXPECT_TRUE(dir.CreateUniqueTempDir());
- EXPECT_FALSE(dir.CreateUniqueTempDir());
- EXPECT_TRUE(dir.Delete());
- EXPECT_TRUE(dir.CreateUniqueTempDir());
- EXPECT_FALSE(dir.CreateUniqueTempDir());
- ScopedTempDir other_dir;
- EXPECT_TRUE(other_dir.Set(dir.Take()));
- EXPECT_TRUE(dir.CreateUniqueTempDir());
- EXPECT_FALSE(dir.CreateUniqueTempDir());
- EXPECT_FALSE(other_dir.CreateUniqueTempDir());
-}
-
-#if defined(OS_WIN)
-TEST(ScopedTempDir, LockedTempDir) {
- ScopedTempDir dir;
- EXPECT_TRUE(dir.CreateUniqueTempDir());
- int file_flags = base::PLATFORM_FILE_CREATE_ALWAYS |
- base::PLATFORM_FILE_WRITE;
- base::PlatformFileError error_code = base::PLATFORM_FILE_OK;
- FilePath file_path(dir.path().Append(FILE_PATH_LITERAL("temp")));
- base::PlatformFile file = base::CreatePlatformFile(file_path, file_flags,
- NULL, &error_code);
- EXPECT_NE(base::kInvalidPlatformFileValue, file);
- EXPECT_EQ(base::PLATFORM_FILE_OK, error_code);
- EXPECT_FALSE(dir.Delete()); // We should not be able to delete.
- EXPECT_FALSE(dir.path().empty()); // We should still have a valid path.
- EXPECT_TRUE(base::ClosePlatformFile(file));
- // Now, we should be able to delete.
- EXPECT_TRUE(dir.Delete());
-}
-#endif // defined(OS_WIN)
« no previous file with comments | « base/scoped_temp_dir.cc ('k') | base/test/scoped_path_override.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698