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

Unified Diff: chrome/browser/profiles/profile_manager_unittest.cc

Issue 6793008: Replacing base::DIR_TEMP with ScopedTempDir when appropriate. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: About a third of the way done. Created 9 years, 8 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
Index: chrome/browser/profiles/profile_manager_unittest.cc
diff --git a/chrome/browser/profiles/profile_manager_unittest.cc b/chrome/browser/profiles/profile_manager_unittest.cc
index 1ae59f3d9806e120f19f23f96504a0e0e26b189c..651e505a4bc9f349d6ca4e3e21a8f0d6c5510c43 100644
--- a/chrome/browser/profiles/profile_manager_unittest.cc
+++ b/chrome/browser/profiles/profile_manager_unittest.cc
@@ -5,7 +5,7 @@
#include <string>
#include "base/command_line.h"
-#include "base/file_util.h"
+#include "base/memory/scoped_temp_dir.h"
#include "base/message_loop.h"
#include "base/path_service.h"
#include "chrome/browser/prefs/browser_prefs.h"
@@ -29,13 +29,8 @@ class ProfileManagerTest : public testing::Test {
}
virtual void SetUp() {
- // Name a subdirectory of the temp directory.
- ASSERT_TRUE(PathService::Get(base::DIR_TEMP, &test_dir_));
- test_dir_ = test_dir_.Append(FILE_PATH_LITERAL("ProfileManagerTest"));
-
- // Create a fresh, empty copy of this directory.
- file_util::Delete(test_dir_, true);
- file_util::CreateDirectory(test_dir_);
+ // Create a new temporary directory, and store the path
+ ASSERT_TRUE(temp_dir_.CreateUniqueTempDir());
// Create a local_state PrefService.
browser::RegisterLocalState(&test_local_state_);
@@ -46,21 +41,20 @@ class ProfileManagerTest : public testing::Test {
virtual void TearDown() {
// Clean up test directory
- ASSERT_TRUE(file_util::Delete(test_dir_, true));
- ASSERT_FALSE(file_util::PathExists(test_dir_));
+ ASSERT_TRUE(temp_dir_.Delete());
Paweł Hajdan Jr. 2011/04/08 15:58:17 Shouldn't be needed.
Mike West 2011/04/11 14:47:04 Done.
TestingBrowserProcess* testing_browser_process =
static_cast<TestingBrowserProcess*>(g_browser_process);
testing_browser_process->SetPrefService(NULL);
}
+ // the path to temporary directory used to contain the test operations
Paweł Hajdan Jr. 2011/04/08 15:58:17 nit: Start with a capital letter, end with a dot.
Mike West 2011/04/11 14:47:04 Done.
+ ScopedTempDir temp_dir_;
+
MessageLoopForUI message_loop_;
BrowserThread ui_thread_;
BrowserThread file_thread_;
- // the path to temporary directory used to contain the test operations
- FilePath test_dir_;
-
TestingPrefService test_local_state_;
};
@@ -70,7 +64,7 @@ TEST_F(ProfileManagerTest, CreateProfile) {
source_path = source_path.Append(FILE_PATH_LITERAL("profiles"));
source_path = source_path.Append(FILE_PATH_LITERAL("sample"));
- FilePath dest_path = test_dir_;
+ FilePath dest_path = temp_dir_.path();
dest_path = dest_path.Append(FILE_PATH_LITERAL("New Profile"));
scoped_ptr<Profile> profile;
@@ -127,7 +121,8 @@ TEST_F(ProfileManagerTest, LoggedInProfileDir) {
FilePath expected_logged_in(profile_dir);
EXPECT_EQ(expected_logged_in.value(),
profile_manager.GetCurrentProfileDir().value());
- VLOG(1) << test_dir_.Append(profile_manager.GetCurrentProfileDir()).value();
+ VLOG(1) << temp_dir_.path().Append(
+ profile_manager.GetCurrentProfileDir()).value();
}
#endif
@@ -138,10 +133,10 @@ TEST_F(ProfileManagerTest, CreateAndUseTwoProfiles) {
source_path = source_path.Append(FILE_PATH_LITERAL("profiles"));
source_path = source_path.Append(FILE_PATH_LITERAL("sample"));
- FilePath dest_path1 = test_dir_;
+ FilePath dest_path1 = temp_dir_.path();
dest_path1 = dest_path1.Append(FILE_PATH_LITERAL("New Profile 1"));
- FilePath dest_path2 = test_dir_;
+ FilePath dest_path2 = temp_dir_.path();
dest_path2 = dest_path2.Append(FILE_PATH_LITERAL("New Profile 2"));
scoped_ptr<Profile> profile1;

Powered by Google App Engine
This is Rietveld 408576698