Revert of Add button to add new FSP services to Files app. (patchset #8 id:140001...
[chromium-blink-merge.git] / chrome / browser / chromeos / file_system_provider / operations / delete_entry_unittest.cc
blobfaaae1f994aa25ef069f8108395ed9a91703e552
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/browser/chromeos/file_system_provider/operations/delete_entry.h"
7 #include <string>
8 #include <vector>
10 #include "base/files/file.h"
11 #include "base/files/file_path.h"
12 #include "base/memory/scoped_ptr.h"
13 #include "base/memory/scoped_vector.h"
14 #include "chrome/browser/chromeos/file_system_provider/operations/test_util.h"
15 #include "chrome/browser/chromeos/file_system_provider/provided_file_system_interface.h"
16 #include "chrome/common/extensions/api/file_system_provider.h"
17 #include "chrome/common/extensions/api/file_system_provider_internal.h"
18 #include "extensions/browser/event_router.h"
19 #include "storage/browser/fileapi/async_file_util.h"
20 #include "testing/gtest/include/gtest/gtest.h"
22 namespace chromeos {
23 namespace file_system_provider {
24 namespace operations {
25 namespace {
27 const char kExtensionId[] = "mbflcebpggnecokmikipoihdbecnjfoj";
28 const char kFileSystemId[] = "testing-file-system";
29 const int kRequestId = 2;
30 const base::FilePath::CharType kEntryPath[] =
31 FILE_PATH_LITERAL("/kitty/and/puppy/happy");
33 } // namespace
35 class FileSystemProviderOperationsDeleteEntryTest : public testing::Test {
36 protected:
37 FileSystemProviderOperationsDeleteEntryTest() {}
38 ~FileSystemProviderOperationsDeleteEntryTest() override {}
40 void SetUp() override {
41 MountOptions mount_options(kFileSystemId, "" /* display_name */);
42 mount_options.writable = true;
43 file_system_info_ =
44 ProvidedFileSystemInfo(kExtensionId, mount_options, base::FilePath());
47 ProvidedFileSystemInfo file_system_info_;
50 TEST_F(FileSystemProviderOperationsDeleteEntryTest, Execute) {
51 using extensions::api::file_system_provider::DeleteEntryRequestedOptions;
53 util::LoggingDispatchEventImpl dispatcher(true /* dispatch_reply */);
54 util::StatusCallbackLog callback_log;
56 DeleteEntry delete_entry(NULL, file_system_info_, base::FilePath(kEntryPath),
57 true /* recursive */,
58 base::Bind(&util::LogStatusCallback, &callback_log));
59 delete_entry.SetDispatchEventImplForTesting(
60 base::Bind(&util::LoggingDispatchEventImpl::OnDispatchEventImpl,
61 base::Unretained(&dispatcher)));
63 EXPECT_TRUE(delete_entry.Execute(kRequestId));
65 ASSERT_EQ(1u, dispatcher.events().size());
66 extensions::Event* event = dispatcher.events()[0];
67 EXPECT_EQ(
68 extensions::api::file_system_provider::OnDeleteEntryRequested::kEventName,
69 event->event_name);
70 base::ListValue* event_args = event->event_args.get();
71 ASSERT_EQ(1u, event_args->GetSize());
73 const base::DictionaryValue* options_as_value = NULL;
74 ASSERT_TRUE(event_args->GetDictionary(0, &options_as_value));
76 DeleteEntryRequestedOptions options;
77 ASSERT_TRUE(
78 DeleteEntryRequestedOptions::Populate(*options_as_value, &options));
79 EXPECT_EQ(kFileSystemId, options.file_system_id);
80 EXPECT_EQ(kRequestId, options.request_id);
81 EXPECT_EQ(kEntryPath, options.entry_path);
82 EXPECT_TRUE(options.recursive);
85 TEST_F(FileSystemProviderOperationsDeleteEntryTest, Execute_NoListener) {
86 util::LoggingDispatchEventImpl dispatcher(false /* dispatch_reply */);
87 util::StatusCallbackLog callback_log;
89 DeleteEntry delete_entry(NULL, file_system_info_, base::FilePath(kEntryPath),
90 true /* recursive */,
91 base::Bind(&util::LogStatusCallback, &callback_log));
92 delete_entry.SetDispatchEventImplForTesting(
93 base::Bind(&util::LoggingDispatchEventImpl::OnDispatchEventImpl,
94 base::Unretained(&dispatcher)));
96 EXPECT_FALSE(delete_entry.Execute(kRequestId));
99 TEST_F(FileSystemProviderOperationsDeleteEntryTest, Execute_ReadOnly) {
100 util::LoggingDispatchEventImpl dispatcher(true /* dispatch_reply */);
101 util::StatusCallbackLog callback_log;
103 const ProvidedFileSystemInfo read_only_file_system_info(
104 kExtensionId,
105 MountOptions(kFileSystemId, "" /* display_name */),
106 base::FilePath() /* mount_path */);
108 DeleteEntry delete_entry(NULL, read_only_file_system_info,
109 base::FilePath(kEntryPath), true /* recursive */,
110 base::Bind(&util::LogStatusCallback, &callback_log));
111 delete_entry.SetDispatchEventImplForTesting(
112 base::Bind(&util::LoggingDispatchEventImpl::OnDispatchEventImpl,
113 base::Unretained(&dispatcher)));
115 EXPECT_FALSE(delete_entry.Execute(kRequestId));
118 TEST_F(FileSystemProviderOperationsDeleteEntryTest, OnSuccess) {
119 util::LoggingDispatchEventImpl dispatcher(true /* dispatch_reply */);
120 util::StatusCallbackLog callback_log;
122 DeleteEntry delete_entry(NULL, file_system_info_, base::FilePath(kEntryPath),
123 true /* recursive */,
124 base::Bind(&util::LogStatusCallback, &callback_log));
125 delete_entry.SetDispatchEventImplForTesting(
126 base::Bind(&util::LoggingDispatchEventImpl::OnDispatchEventImpl,
127 base::Unretained(&dispatcher)));
129 EXPECT_TRUE(delete_entry.Execute(kRequestId));
131 delete_entry.OnSuccess(kRequestId,
132 scoped_ptr<RequestValue>(new RequestValue()),
133 false /* has_more */);
134 ASSERT_EQ(1u, callback_log.size());
135 EXPECT_EQ(base::File::FILE_OK, callback_log[0]);
138 TEST_F(FileSystemProviderOperationsDeleteEntryTest, OnError) {
139 util::LoggingDispatchEventImpl dispatcher(true /* dispatch_reply */);
140 util::StatusCallbackLog callback_log;
142 DeleteEntry delete_entry(NULL, file_system_info_, base::FilePath(kEntryPath),
143 true /* recursive */,
144 base::Bind(&util::LogStatusCallback, &callback_log));
145 delete_entry.SetDispatchEventImplForTesting(
146 base::Bind(&util::LoggingDispatchEventImpl::OnDispatchEventImpl,
147 base::Unretained(&dispatcher)));
149 EXPECT_TRUE(delete_entry.Execute(kRequestId));
151 delete_entry.OnError(kRequestId,
152 scoped_ptr<RequestValue>(new RequestValue()),
153 base::File::FILE_ERROR_TOO_MANY_OPENED);
154 ASSERT_EQ(1u, callback_log.size());
155 EXPECT_EQ(base::File::FILE_ERROR_TOO_MANY_OPENED, callback_log[0]);
158 } // namespace operations
159 } // namespace file_system_provider
160 } // namespace chromeos