| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 <string> | 5 #include <string> |
| 6 | 6 |
| 7 #include "base/file_path.h" | 7 #include "base/file_path.h" |
| 8 #include "base/memory/scoped_callback_factory.h" | 8 #include "base/memory/scoped_callback_factory.h" |
| 9 #include "base/message_loop_proxy.h" | 9 #include "base/message_loop_proxy.h" |
| 10 #include "base/platform_file.h" | 10 #include "base/platform_file.h" |
| 11 #include "base/scoped_temp_dir.h" | 11 #include "base/scoped_temp_dir.h" |
| 12 #include "base/sys_string_conversions.h" | 12 #include "base/sys_string_conversions.h" |
| 13 #include "base/utf_string_conversions.h" | 13 #include "base/utf_string_conversions.h" |
| 14 #include "testing/gtest/include/gtest/gtest.h" | 14 #include "testing/gtest/include/gtest/gtest.h" |
| 15 #include "webkit/fileapi/file_system_context.h" | 15 #include "webkit/fileapi/file_system_context.h" |
| 16 #include "webkit/fileapi/file_system_file_util.h" | 16 #include "webkit/fileapi/file_system_file_util.h" |
| 17 #include "webkit/fileapi/file_system_operation_context.h" | 17 #include "webkit/fileapi/file_system_operation_context.h" |
| 18 #include "webkit/fileapi/file_system_path_manager.h" | |
| 19 #include "webkit/fileapi/file_system_test_helper.h" | 18 #include "webkit/fileapi/file_system_test_helper.h" |
| 20 #include "webkit/fileapi/file_system_types.h" | 19 #include "webkit/fileapi/file_system_types.h" |
| 21 #include "webkit/fileapi/local_file_util.h" | 20 #include "webkit/fileapi/local_file_util.h" |
| 22 #include "webkit/fileapi/native_file_util.h" | 21 #include "webkit/fileapi/native_file_util.h" |
| 23 | 22 |
| 24 namespace fileapi { | 23 namespace fileapi { |
| 25 | 24 |
| 26 // TODO(dmikurube): Cover all public methods in LocalFileUtil. | 25 // TODO(dmikurube): Cover all public methods in LocalFileUtil. |
| 27 class LocalFileUtilTest : public testing::Test { | 26 class LocalFileUtilTest : public testing::Test { |
| 28 public: | 27 public: |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 ASSERT_EQ(base::PLATFORM_FILE_OK, | 265 ASSERT_EQ(base::PLATFORM_FILE_OK, |
| 267 FileUtil()->Move(context.get(), Path(from_dir), Path(to_dir))); | 266 FileUtil()->Move(context.get(), Path(from_dir), Path(to_dir))); |
| 268 | 267 |
| 269 EXPECT_FALSE(DirectoryExists(from_dir)); | 268 EXPECT_FALSE(DirectoryExists(from_dir)); |
| 270 EXPECT_TRUE(DirectoryExists(to_dir)); | 269 EXPECT_TRUE(DirectoryExists(to_dir)); |
| 271 EXPECT_TRUE(FileExists(to_file)); | 270 EXPECT_TRUE(FileExists(to_file)); |
| 272 EXPECT_EQ(1020, GetSize(to_file)); | 271 EXPECT_EQ(1020, GetSize(to_file)); |
| 273 } | 272 } |
| 274 | 273 |
| 275 } // namespace fileapi | 274 } // namespace fileapi |
| OLD | NEW |