blob: 313339d9c9bb663d6242fc8322756a399eccb95d [file] [log] [blame]
// Copyright 2013 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 "chrome/browser/chromeos/drive/sync/entry_revert_performer.h"
#include "base/task_runner_util.h"
#include "chrome/browser/chromeos/drive/file_system/operation_test_base.h"
#include "chrome/browser/chromeos/drive/file_system_util.h"
#include "chrome/browser/chromeos/drive/resource_metadata.h"
#include "chrome/browser/drive/fake_drive_service.h"
#include "google_apis/drive/test_util.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace drive {
namespace internal {
class EntryRevertPerformerTest : public file_system::OperationTestBase {
protected:
virtual void SetUp() OVERRIDE {
OperationTestBase::SetUp();
performer_.reset(new EntryRevertPerformer(blocking_task_runner(),
observer(),
scheduler(),
metadata()));
}
scoped_ptr<EntryRevertPerformer> performer_;
};
TEST_F(EntryRevertPerformerTest, RevertEntry) {
base::FilePath path(
FILE_PATH_LITERAL("drive/root/Directory 1/SubDirectory File 1.txt"));
ResourceEntry src_entry;
EXPECT_EQ(FILE_ERROR_OK, GetLocalResourceEntry(path, &src_entry));
// Update local entry.
ResourceEntry updated_entry = src_entry;
updated_entry.set_title("Updated" + src_entry.title());
updated_entry.set_metadata_edit_state(ResourceEntry::DIRTY);
FileError error = FILE_ERROR_FAILED;
base::PostTaskAndReplyWithResult(
blocking_task_runner(),
FROM_HERE,
base::Bind(&ResourceMetadata::RefreshEntry,
base::Unretained(metadata()), updated_entry),
google_apis::test_util::CreateCopyResultCallback(&error));
test_util::RunBlockingPoolTask();
EXPECT_EQ(FILE_ERROR_OK, error);
// Revert local change.
error = FILE_ERROR_FAILED;
performer_->RevertEntry(
src_entry.local_id(),
google_apis::test_util::CreateCopyResultCallback(&error));
test_util::RunBlockingPoolTask();
EXPECT_EQ(FILE_ERROR_OK, error);
// Verify local change is reverted.
ResourceEntry result_entry;
EXPECT_EQ(FILE_ERROR_OK,
GetLocalResourceEntryById(src_entry.local_id(), &result_entry));
EXPECT_EQ(src_entry.title(), result_entry.title());
EXPECT_EQ(ResourceEntry::CLEAN, result_entry.metadata_edit_state());
EXPECT_EQ(1U, observer()->get_changed_paths().size());
EXPECT_TRUE(observer()->get_changed_paths().count(path.DirName()));
}
TEST_F(EntryRevertPerformerTest, RevertEntry_NotFoundOnServer) {
ResourceEntry my_drive;
EXPECT_EQ(FILE_ERROR_OK,
GetLocalResourceEntry(util::GetDriveMyDriveRootPath(), &my_drive));
// Add a new entry with a nonexistent resource ID.
ResourceEntry entry;
entry.set_title("New File.txt");
entry.set_resource_id("non-existent-resource-id");
entry.set_parent_local_id(my_drive.local_id());
FileError error = FILE_ERROR_FAILED;
std::string local_id;
base::PostTaskAndReplyWithResult(
blocking_task_runner(),
FROM_HERE,
base::Bind(&ResourceMetadata::AddEntry,
base::Unretained(metadata()), entry, &local_id),
google_apis::test_util::CreateCopyResultCallback(&error));
test_util::RunBlockingPoolTask();
EXPECT_EQ(FILE_ERROR_OK, error);
// Revert local change. The added entry should be removed.
error = FILE_ERROR_FAILED;
performer_->RevertEntry(
local_id,
google_apis::test_util::CreateCopyResultCallback(&error));
test_util::RunBlockingPoolTask();
EXPECT_EQ(FILE_ERROR_OK, error);
// Verify the entry was deleted locally.
EXPECT_EQ(FILE_ERROR_NOT_FOUND, GetLocalResourceEntryById(local_id, &entry));
EXPECT_EQ(1U, observer()->get_changed_paths().size());
EXPECT_TRUE(observer()->get_changed_paths().count(
util::GetDriveMyDriveRootPath()));
}
TEST_F(EntryRevertPerformerTest, RevertEntry_DeletedOnServer) {
base::FilePath path(
FILE_PATH_LITERAL("drive/root/Directory 1/SubDirectory File 1.txt"));
ResourceEntry entry;
EXPECT_EQ(FILE_ERROR_OK, GetLocalResourceEntry(path, &entry));
// Delete the entry on the server.
google_apis::GDataErrorCode gdata_error = google_apis::GDATA_OTHER_ERROR;
fake_service()->DeleteResource(
entry.resource_id(),
std::string(), // etag
google_apis::test_util::CreateCopyResultCallback(&gdata_error));
test_util::RunBlockingPoolTask();
EXPECT_EQ(google_apis::HTTP_SUCCESS, gdata_error);
// Revert local change. The entry should be removed.
FileError error = FILE_ERROR_FAILED;
performer_->RevertEntry(
entry.local_id(),
google_apis::test_util::CreateCopyResultCallback(&error));
test_util::RunBlockingPoolTask();
EXPECT_EQ(FILE_ERROR_OK, error);
// Verify the entry was deleted locally.
EXPECT_EQ(FILE_ERROR_NOT_FOUND,
GetLocalResourceEntryById(entry.local_id(), &entry));
EXPECT_EQ(1U, observer()->get_changed_paths().size());
EXPECT_TRUE(observer()->get_changed_paths().count(path.DirName()));
}
} // namespace internal
} // namespace drive