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

Unified Diff: chrome/browser/chromeos/gdata/gdata_file_system_unittest.cc

Issue 10826006: gdata: File info of dirty files should be get from the cached file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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/chromeos/gdata/gdata_file_system_unittest.cc
diff --git a/chrome/browser/chromeos/gdata/gdata_file_system_unittest.cc b/chrome/browser/chromeos/gdata/gdata_file_system_unittest.cc
index 2250e53c283b91e8539d9e1440897697e4c28a74..ee80caad9164383e07549269c842e5e347003096 100644
--- a/chrome/browser/chromeos/gdata/gdata_file_system_unittest.cc
+++ b/chrome/browser/chromeos/gdata/gdata_file_system_unittest.cc
@@ -355,7 +355,7 @@ class GDataFileSystemTest : public testing::Test {
file_path,
base::Bind(&CallbackHelper::GetEntryInfoCallback,
callback_helper_.get()));
- message_loop_.RunAllPending();
+ test_util::RunBlockingPoolTask();
return callback_helper_->entry_proto_.Pass();
}
@@ -367,7 +367,7 @@ class GDataFileSystemTest : public testing::Test {
file_path,
base::Bind(&CallbackHelper::ReadDirectoryCallback,
callback_helper_.get()));
- message_loop_.RunAllPending();
+ test_util::RunBlockingPoolTask();
return callback_helper_->directory_entries_.Pass();
}
@@ -1388,7 +1388,7 @@ TEST_F(GDataFileSystemTest, CopyNotExistingFile) {
callback_helper_.get());
file_system_->Copy(src_file_path, dest_file_path, callback);
- message_loop_.RunAllPending(); // Wait to get our result
+ test_util::RunBlockingPoolTask();
EXPECT_EQ(GDATA_FILE_ERROR_NOT_FOUND, callback_helper_->last_error_);
EXPECT_FALSE(EntryExists(src_file_path));
@@ -1417,7 +1417,7 @@ TEST_F(GDataFileSystemTest, CopyFileToNonExistingDirectory) {
callback_helper_.get());
file_system_->Move(src_file_path, dest_file_path, callback);
- message_loop_.RunAllPending();
+ test_util::RunBlockingPoolTask();
EXPECT_EQ(GDATA_FILE_ERROR_NOT_FOUND, callback_helper_->last_error_);
EXPECT_TRUE(EntryExists(src_file_path));
@@ -1453,7 +1453,7 @@ TEST_F(GDataFileSystemTest, CopyFileToInvalidPath) {
callback_helper_.get());
file_system_->Copy(src_file_path, dest_file_path, callback);
- message_loop_.RunAllPending();
+ test_util::RunBlockingPoolTask();
EXPECT_EQ(GDATA_FILE_ERROR_NOT_A_DIRECTORY,
callback_helper_->last_error_);
@@ -1492,7 +1492,7 @@ TEST_F(GDataFileSystemTest, RenameFile) {
Eq(FilePath(FILE_PATH_LITERAL("drive/Directory 1"))))).Times(1);
file_system_->Move(src_file_path, dest_file_path, callback);
- message_loop_.RunAllPending();
+ test_util::RunBlockingPoolTask();
EXPECT_EQ(GDATA_FILE_OK, callback_helper_->last_error_);
EXPECT_FALSE(EntryExists(src_file_path));
@@ -1541,7 +1541,7 @@ TEST_F(GDataFileSystemTest, MoveFileFromRootToSubDirectory) {
Eq(FilePath(FILE_PATH_LITERAL("drive/Directory 1"))))).Times(1);
file_system_->Move(src_file_path, dest_file_path, callback);
- message_loop_.RunAllPending();
+ test_util::RunBlockingPoolTask();
EXPECT_EQ(GDATA_FILE_OK, callback_helper_->last_error_);
EXPECT_FALSE(EntryExists(src_file_path));
@@ -1592,7 +1592,7 @@ TEST_F(GDataFileSystemTest, MoveFileFromSubDirectoryToRoot) {
Eq(FilePath(FILE_PATH_LITERAL("drive/Directory 1"))))).Times(1);
file_system_->Move(src_file_path, dest_file_path, callback);
- message_loop_.RunAllPending();
+ test_util::RunBlockingPoolTask();
EXPECT_EQ(GDATA_FILE_OK, callback_helper_->last_error_);
EXPECT_FALSE(EntryExists(src_file_path));
@@ -1667,7 +1667,7 @@ TEST_F(GDataFileSystemTest, MoveFileBetweenSubDirectories) {
Eq(FilePath(FILE_PATH_LITERAL("drive/New Folder 1"))))).Times(1);
file_system_->Move(src_file_path, dest_file_path, callback);
- message_loop_.RunAllPending();
+ test_util::RunBlockingPoolTask();
EXPECT_EQ(GDATA_FILE_OK, callback_helper_->last_error_);
EXPECT_FALSE(EntryExists(src_file_path));
@@ -1691,7 +1691,7 @@ TEST_F(GDataFileSystemTest, MoveNotExistingFile) {
callback_helper_.get());
file_system_->Move(src_file_path, dest_file_path, callback);
- message_loop_.RunAllPending(); // Wait to get our result
+ test_util::RunBlockingPoolTask();
EXPECT_EQ(GDATA_FILE_ERROR_NOT_FOUND, callback_helper_->last_error_);
EXPECT_FALSE(EntryExists(src_file_path));
@@ -1720,7 +1720,7 @@ TEST_F(GDataFileSystemTest, MoveFileToNonExistingDirectory) {
callback_helper_.get());
file_system_->Move(src_file_path, dest_file_path, callback);
- message_loop_.RunAllPending();
+ test_util::RunBlockingPoolTask();
EXPECT_EQ(GDATA_FILE_ERROR_NOT_FOUND, callback_helper_->last_error_);
@@ -1756,7 +1756,7 @@ TEST_F(GDataFileSystemTest, MoveFileToInvalidPath) {
callback_helper_.get());
file_system_->Move(src_file_path, dest_file_path, callback);
- message_loop_.RunAllPending();
+ test_util::RunBlockingPoolTask();
EXPECT_EQ(GDATA_FILE_ERROR_NOT_A_DIRECTORY,
callback_helper_->last_error_);
@@ -1915,7 +1915,7 @@ TEST_F(GDataFileSystemTest, CreateDirectoryWithService) {
true, // is_recursive
base::Bind(&CallbackHelper::FileOperationCallback,
callback_helper_.get()));
- message_loop_.RunAllPending();
+ test_util::RunBlockingPoolTask();
// TODO(gspencer): Uncomment this when we get a blob that
// works that can be returned from the mock.
// EXPECT_EQ(GDATA_FILE_OK, callback_helper_->last_error_);
@@ -2446,7 +2446,7 @@ TEST_F(GDataFileSystemTest, GetAvailableSpace) {
EXPECT_CALL(*mock_doc_service_, GetAccountMetadata(_));
file_system_->GetAvailableSpace(callback);
- message_loop_.RunAllPending();
+ test_util::RunBlockingPoolTask();
EXPECT_EQ(GG_LONGLONG(6789012345), callback_helper_->quota_bytes_used_);
EXPECT_EQ(GG_LONGLONG(9876543210), callback_helper_->quota_bytes_total_);
}
@@ -2463,7 +2463,7 @@ TEST_F(GDataFileSystemTest, RequestDirectoryRefresh) {
OnDirectoryChanged(Eq(FilePath(kGDataRootDirectory)))).Times(1);
file_system_->RequestDirectoryRefresh(FilePath(kGDataRootDirectory));
- message_loop_.RunAllPending();
+ test_util::RunBlockingPoolTask();
}
TEST_F(GDataFileSystemTest, OpenAndCloseFile) {

Powered by Google App Engine
This is Rietveld 408576698