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/remove_watcher.h"
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"
23 namespace file_system_provider
{
24 namespace operations
{
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");
35 class FileSystemProviderOperationsRemoveWatcherTest
: public testing::Test
{
37 FileSystemProviderOperationsRemoveWatcherTest() {}
38 ~FileSystemProviderOperationsRemoveWatcherTest() override
{}
40 void SetUp() override
{
41 file_system_info_
= ProvidedFileSystemInfo(
43 MountOptions(kFileSystemId
, "" /* display_name */),
47 ProvidedFileSystemInfo file_system_info_
;
50 TEST_F(FileSystemProviderOperationsRemoveWatcherTest
, Execute
) {
51 using extensions::api::file_system_provider::RemoveWatcherRequestedOptions
;
53 util::LoggingDispatchEventImpl
dispatcher(true /* dispatch_reply */);
54 util::StatusCallbackLog callback_log
;
56 RemoveWatcher
remove_watcher(
57 NULL
, file_system_info_
, base::FilePath(kEntryPath
), true /* recursive */,
58 base::Bind(&util::LogStatusCallback
, &callback_log
));
59 remove_watcher
.SetDispatchEventImplForTesting(
60 base::Bind(&util::LoggingDispatchEventImpl::OnDispatchEventImpl
,
61 base::Unretained(&dispatcher
)));
63 EXPECT_TRUE(remove_watcher
.Execute(kRequestId
));
65 ASSERT_EQ(1u, dispatcher
.events().size());
66 extensions::Event
* event
= dispatcher
.events()[0];
67 EXPECT_EQ(extensions::api::file_system_provider::OnRemoveWatcherRequested::
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 RemoveWatcherRequestedOptions options
;
78 RemoveWatcherRequestedOptions::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(FileSystemProviderOperationsRemoveWatcherTest
, Execute_NoListener
) {
86 util::LoggingDispatchEventImpl
dispatcher(false /* dispatch_reply */);
87 util::StatusCallbackLog callback_log
;
89 RemoveWatcher
remove_watcher(
90 NULL
, file_system_info_
, base::FilePath(kEntryPath
), true /* recursive */,
91 base::Bind(&util::LogStatusCallback
, &callback_log
));
92 remove_watcher
.SetDispatchEventImplForTesting(
93 base::Bind(&util::LoggingDispatchEventImpl::OnDispatchEventImpl
,
94 base::Unretained(&dispatcher
)));
96 EXPECT_FALSE(remove_watcher
.Execute(kRequestId
));
99 TEST_F(FileSystemProviderOperationsRemoveWatcherTest
, OnSuccess
) {
100 util::LoggingDispatchEventImpl
dispatcher(true /* dispatch_reply */);
101 util::StatusCallbackLog callback_log
;
103 RemoveWatcher
remove_watcher(
104 NULL
, file_system_info_
, base::FilePath(kEntryPath
), true /* recursive */,
105 base::Bind(&util::LogStatusCallback
, &callback_log
));
106 remove_watcher
.SetDispatchEventImplForTesting(
107 base::Bind(&util::LoggingDispatchEventImpl::OnDispatchEventImpl
,
108 base::Unretained(&dispatcher
)));
110 EXPECT_TRUE(remove_watcher
.Execute(kRequestId
));
112 remove_watcher
.OnSuccess(kRequestId
,
113 scoped_ptr
<RequestValue
>(new RequestValue()),
114 false /* has_more */);
115 ASSERT_EQ(1u, callback_log
.size());
116 EXPECT_EQ(base::File::FILE_OK
, callback_log
[0]);
119 TEST_F(FileSystemProviderOperationsRemoveWatcherTest
, OnError
) {
120 util::LoggingDispatchEventImpl
dispatcher(true /* dispatch_reply */);
121 util::StatusCallbackLog callback_log
;
123 RemoveWatcher
remove_watcher(
124 NULL
, file_system_info_
, base::FilePath(kEntryPath
), true /* recursive */,
125 base::Bind(&util::LogStatusCallback
, &callback_log
));
126 remove_watcher
.SetDispatchEventImplForTesting(
127 base::Bind(&util::LoggingDispatchEventImpl::OnDispatchEventImpl
,
128 base::Unretained(&dispatcher
)));
130 EXPECT_TRUE(remove_watcher
.Execute(kRequestId
));
132 remove_watcher
.OnError(kRequestId
,
133 scoped_ptr
<RequestValue
>(new RequestValue()),
134 base::File::FILE_ERROR_TOO_MANY_OPENED
);
135 ASSERT_EQ(1u, callback_log
.size());
136 EXPECT_EQ(base::File::FILE_ERROR_TOO_MANY_OPENED
, callback_log
[0]);
139 } // namespace operations
140 } // namespace file_system_provider
141 } // namespace chromeos