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

Side by Side Diff: webkit/browser/fileapi/copy_or_move_file_validator_unittest.cc

Issue 18344013: fileapi: Rename FileSystemMountProvider to FileSystemBackend (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 "base/basictypes.h" 5 #include "base/basictypes.h"
6 #include "base/bind.h" 6 #include "base/bind.h"
7 #include "base/files/file_path.h" 7 #include "base/files/file_path.h"
8 #include "base/files/scoped_temp_dir.h" 8 #include "base/files/scoped_temp_dir.h"
9 #include "base/message_loop.h" 9 #include "base/message_loop.h"
10 #include "testing/gtest/include/gtest/gtest.h" 10 #include "testing/gtest/include/gtest/gtest.h"
11 #include "webkit/browser/fileapi/async_file_test_helper.h" 11 #include "webkit/browser/fileapi/async_file_test_helper.h"
12 #include "webkit/browser/fileapi/copy_or_move_file_validator.h" 12 #include "webkit/browser/fileapi/copy_or_move_file_validator.h"
13 #include "webkit/browser/fileapi/external_mount_points.h" 13 #include "webkit/browser/fileapi/external_mount_points.h"
14 #include "webkit/browser/fileapi/file_system_backend.h"
14 #include "webkit/browser/fileapi/file_system_context.h" 15 #include "webkit/browser/fileapi/file_system_context.h"
15 #include "webkit/browser/fileapi/file_system_mount_point_provider.h"
16 #include "webkit/browser/fileapi/file_system_url.h" 16 #include "webkit/browser/fileapi/file_system_url.h"
17 #include "webkit/browser/fileapi/isolated_context.h" 17 #include "webkit/browser/fileapi/isolated_context.h"
18 #include "webkit/browser/fileapi/mock_file_system_context.h" 18 #include "webkit/browser/fileapi/mock_file_system_context.h"
19 #include "webkit/browser/fileapi/test_mount_point_provider.h" 19 #include "webkit/browser/fileapi/test_mount_point_provider.h"
20 #include "webkit/browser/quota/mock_special_storage_policy.h" 20 #include "webkit/browser/quota/mock_special_storage_policy.h"
21 #include "webkit/common/fileapi/file_system_util.h" 21 #include "webkit/common/fileapi/file_system_util.h"
22 22
23 namespace fileapi { 23 namespace fileapi {
24 24
25 namespace { 25 namespace {
(...skipping 20 matching lines...) Expand all
46 base::MessageLoop::current()->RunUntilIdle(); 46 base::MessageLoop::current()->RunUntilIdle();
47 } 47 }
48 48
49 void SetUp() { 49 void SetUp() {
50 ASSERT_TRUE(base_.CreateUniqueTempDir()); 50 ASSERT_TRUE(base_.CreateUniqueTempDir());
51 base::FilePath base_dir = base_.path(); 51 base::FilePath base_dir = base_.path();
52 52
53 file_system_context_ = CreateFileSystemContextForTesting(NULL, base_dir); 53 file_system_context_ = CreateFileSystemContextForTesting(NULL, base_dir);
54 54
55 // Set up TestMountPointProvider to require CopyOrMoveFileValidator. 55 // Set up TestMountPointProvider to require CopyOrMoveFileValidator.
56 FileSystemMountPointProvider* test_mount_point_provider = 56 FileSystemBackend* test_mount_point_provider =
57 file_system_context_->GetMountPointProvider(kWithValidatorType); 57 file_system_context_->GetMountPointProvider(kWithValidatorType);
58 static_cast<TestMountPointProvider*>(test_mount_point_provider)-> 58 static_cast<TestMountPointProvider*>(test_mount_point_provider)->
59 set_require_copy_or_move_validator(true); 59 set_require_copy_or_move_validator(true);
60 60
61 // Sets up source. 61 // Sets up source.
62 FileSystemMountPointProvider* src_mount_point_provider = 62 FileSystemBackend* src_mount_point_provider =
63 file_system_context_->GetMountPointProvider(src_type_); 63 file_system_context_->GetMountPointProvider(src_type_);
64 src_mount_point_provider->OpenFileSystem( 64 src_mount_point_provider->OpenFileSystem(
65 origin_, src_type_, 65 origin_, src_type_,
66 OPEN_FILE_SYSTEM_CREATE_IF_NONEXISTENT, 66 OPEN_FILE_SYSTEM_CREATE_IF_NONEXISTENT,
67 base::Bind(&ExpectOk)); 67 base::Bind(&ExpectOk));
68 base::MessageLoop::current()->RunUntilIdle(); 68 base::MessageLoop::current()->RunUntilIdle();
69 ASSERT_EQ(base::PLATFORM_FILE_OK, CreateDirectory(SourceURL(""))); 69 ASSERT_EQ(base::PLATFORM_FILE_OK, CreateDirectory(SourceURL("")));
70 70
71 // Sets up dest. 71 // Sets up dest.
72 DCHECK_EQ(kWithValidatorType, dest_type_); 72 DCHECK_EQ(kWithValidatorType, dest_type_);
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 280
281 scoped_ptr<CopyOrMoveFileValidatorFactory> accept_factory( 281 scoped_ptr<CopyOrMoveFileValidatorFactory> accept_factory(
282 new TestCopyOrMoveFileValidatorFactory(true /*accept_all*/)); 282 new TestCopyOrMoveFileValidatorFactory(true /*accept_all*/));
283 helper.SetMediaCopyOrMoveFileValidatorFactory(accept_factory.Pass()); 283 helper.SetMediaCopyOrMoveFileValidatorFactory(accept_factory.Pass());
284 284
285 helper.CopyTest(base::PLATFORM_FILE_ERROR_SECURITY); 285 helper.CopyTest(base::PLATFORM_FILE_ERROR_SECURITY);
286 helper.MoveTest(base::PLATFORM_FILE_ERROR_SECURITY); 286 helper.MoveTest(base::PLATFORM_FILE_ERROR_SECURITY);
287 } 287 }
288 288
289 } // namespace fileapi 289 } // namespace fileapi
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698