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/message_loop_proxy.h" | 9 #include "base/message_loop_proxy.h" |
9 #include "base/memory/scoped_callback_factory.h" | |
10 #include "base/memory/scoped_temp_dir.h" | |
11 #include "base/platform_file.h" | 10 #include "base/platform_file.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_types.h" | |
18 #include "webkit/fileapi/file_system_operation_context.h" | 17 #include "webkit/fileapi/file_system_operation_context.h" |
19 #include "webkit/fileapi/file_system_path_manager.h" | 18 #include "webkit/fileapi/file_system_path_manager.h" |
| 19 #include "webkit/fileapi/file_system_test_helper.h" |
| 20 #include "webkit/fileapi/file_system_types.h" |
20 #include "webkit/fileapi/local_file_system_file_util.h" | 21 #include "webkit/fileapi/local_file_system_file_util.h" |
21 #include "webkit/fileapi/quota_file_util.h" | 22 #include "webkit/fileapi/quota_file_util.h" |
22 #include "webkit/fileapi/file_system_test_helper.h" | |
23 #include "webkit/quota/quota_manager.h" | 23 #include "webkit/quota/quota_manager.h" |
24 | 24 |
25 namespace fileapi { | 25 namespace fileapi { |
26 | 26 |
27 // TODO(dmikurube): Cover all public methods in LocalFileSystemFileUtil. | 27 // TODO(dmikurube): Cover all public methods in LocalFileSystemFileUtil. |
28 class LocalFileSystemFileUtilTest : public testing::Test { | 28 class LocalFileSystemFileUtilTest : public testing::Test { |
29 public: | 29 public: |
30 LocalFileSystemFileUtilTest() | 30 LocalFileSystemFileUtilTest() |
31 : callback_factory_(ALLOW_THIS_IN_INITIALIZER_LIST(this)) { | 31 : callback_factory_(ALLOW_THIS_IN_INITIALIZER_LIST(this)) { |
32 } | 32 } |
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
266 ASSERT_EQ(base::PLATFORM_FILE_OK, | 266 ASSERT_EQ(base::PLATFORM_FILE_OK, |
267 FileUtil()->Move(context.get(), Path(from_dir), Path(to_dir))); | 267 FileUtil()->Move(context.get(), Path(from_dir), Path(to_dir))); |
268 | 268 |
269 EXPECT_FALSE(DirectoryExists(from_dir)); | 269 EXPECT_FALSE(DirectoryExists(from_dir)); |
270 EXPECT_TRUE(DirectoryExists(to_dir)); | 270 EXPECT_TRUE(DirectoryExists(to_dir)); |
271 EXPECT_TRUE(FileExists(to_file)); | 271 EXPECT_TRUE(FileExists(to_file)); |
272 EXPECT_EQ(1020, GetSize(to_file)); | 272 EXPECT_EQ(1020, GetSize(to_file)); |
273 } | 273 } |
274 | 274 |
275 } // namespace fileapi | 275 } // namespace fileapi |
OLD | NEW |