| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "chrome/browser/chromeos/drive/file_system/move_operation.h" | 5 #include "chrome/browser/chromeos/drive/file_system/move_operation.h" |
| 6 | 6 |
| 7 #include "chrome/browser/chromeos/drive/file_change.h" | 7 #include "chrome/browser/chromeos/drive/file_change.h" |
| 8 #include "chrome/browser/chromeos/drive/file_system/operation_test_base.h" | 8 #include "chrome/browser/chromeos/drive/file_system/operation_test_base.h" |
| 9 #include "content/public/test/test_utils.h" | 9 #include "content/public/test/test_utils.h" |
| 10 #include "google_apis/drive/test_util.h" | 10 #include "google_apis/drive/test_util.h" |
| 11 #include "testing/gtest/include/gtest/gtest.h" | 11 #include "testing/gtest/include/gtest/gtest.h" |
| 12 | 12 |
| 13 namespace drive { | 13 namespace drive { |
| 14 namespace file_system { | 14 namespace file_system { |
| 15 | 15 |
| 16 class MoveOperationTest : public OperationTestBase { | 16 class MoveOperationTest : public OperationTestBase { |
| 17 protected: | 17 protected: |
| 18 virtual void SetUp() OVERRIDE { | 18 virtual void SetUp() override { |
| 19 OperationTestBase::SetUp(); | 19 OperationTestBase::SetUp(); |
| 20 operation_.reset(new MoveOperation(blocking_task_runner(), | 20 operation_.reset(new MoveOperation(blocking_task_runner(), |
| 21 delegate(), | 21 delegate(), |
| 22 metadata())); | 22 metadata())); |
| 23 } | 23 } |
| 24 | 24 |
| 25 scoped_ptr<MoveOperation> operation_; | 25 scoped_ptr<MoveOperation> operation_; |
| 26 }; | 26 }; |
| 27 | 27 |
| 28 TEST_F(MoveOperationTest, MoveFileInSameDirectory) { | 28 TEST_F(MoveOperationTest, MoveFileInSameDirectory) { |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 content::RunAllBlockingPoolTasksUntilIdle(); | 132 content::RunAllBlockingPoolTasksUntilIdle(); |
| 133 EXPECT_EQ(FILE_ERROR_NOT_A_DIRECTORY, error); | 133 EXPECT_EQ(FILE_ERROR_NOT_A_DIRECTORY, error); |
| 134 | 134 |
| 135 ResourceEntry entry; | 135 ResourceEntry entry; |
| 136 EXPECT_EQ(FILE_ERROR_OK, GetLocalResourceEntry(src_path, &entry)); | 136 EXPECT_EQ(FILE_ERROR_OK, GetLocalResourceEntry(src_path, &entry)); |
| 137 EXPECT_EQ(FILE_ERROR_NOT_FOUND, GetLocalResourceEntry(dest_path, &entry)); | 137 EXPECT_EQ(FILE_ERROR_NOT_FOUND, GetLocalResourceEntry(dest_path, &entry)); |
| 138 } | 138 } |
| 139 | 139 |
| 140 } // namespace file_system | 140 } // namespace file_system |
| 141 } // namespace drive | 141 } // namespace drive |
| OLD | NEW |