| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "chrome/browser/chromeos/file_system_provider/operations/configure.h" | 5 #include "chrome/browser/chromeos/file_system_provider/operations/configure.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/files/file.h" | 10 #include "base/files/file.h" |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 } // namespace | 30 } // namespace |
| 31 | 31 |
| 32 class FileSystemProviderOperationsConfigureTest : public testing::Test { | 32 class FileSystemProviderOperationsConfigureTest : public testing::Test { |
| 33 protected: | 33 protected: |
| 34 FileSystemProviderOperationsConfigureTest() {} | 34 FileSystemProviderOperationsConfigureTest() {} |
| 35 ~FileSystemProviderOperationsConfigureTest() override {} | 35 ~FileSystemProviderOperationsConfigureTest() override {} |
| 36 | 36 |
| 37 void SetUp() override { | 37 void SetUp() override { |
| 38 file_system_info_ = ProvidedFileSystemInfo( | 38 file_system_info_ = ProvidedFileSystemInfo( |
| 39 kExtensionId, MountOptions(kFileSystemId, "" /* display_name */), | 39 kExtensionId, MountOptions(kFileSystemId, "" /* display_name */), |
| 40 base::FilePath(), false /* configurable */, extensions::SOURCE_FILE); | 40 base::FilePath(), false /* configurable */, true /* watchable */, |
| 41 extensions::SOURCE_FILE); |
| 41 } | 42 } |
| 42 | 43 |
| 43 ProvidedFileSystemInfo file_system_info_; | 44 ProvidedFileSystemInfo file_system_info_; |
| 44 }; | 45 }; |
| 45 | 46 |
| 46 TEST_F(FileSystemProviderOperationsConfigureTest, Execute) { | 47 TEST_F(FileSystemProviderOperationsConfigureTest, Execute) { |
| 47 using extensions::api::file_system_provider::ConfigureRequestedOptions; | 48 using extensions::api::file_system_provider::ConfigureRequestedOptions; |
| 48 | 49 |
| 49 util::LoggingDispatchEventImpl dispatcher(true /* dispatch_reply */); | 50 util::LoggingDispatchEventImpl dispatcher(true /* dispatch_reply */); |
| 50 util::StatusCallbackLog callback_log; | 51 util::StatusCallbackLog callback_log; |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 configure.OnError(kRequestId, scoped_ptr<RequestValue>(new RequestValue()), | 122 configure.OnError(kRequestId, scoped_ptr<RequestValue>(new RequestValue()), |
| 122 base::File::FILE_ERROR_NOT_FOUND); | 123 base::File::FILE_ERROR_NOT_FOUND); |
| 123 ASSERT_EQ(1u, callback_log.size()); | 124 ASSERT_EQ(1u, callback_log.size()); |
| 124 base::File::Error event_result = callback_log[0]; | 125 base::File::Error event_result = callback_log[0]; |
| 125 EXPECT_EQ(base::File::FILE_ERROR_NOT_FOUND, event_result); | 126 EXPECT_EQ(base::File::FILE_ERROR_NOT_FOUND, event_result); |
| 126 } | 127 } |
| 127 | 128 |
| 128 } // namespace operations | 129 } // namespace operations |
| 129 } // namespace file_system_provider | 130 } // namespace file_system_provider |
| 130 } // namespace chromeos | 131 } // namespace chromeos |
| OLD | NEW |