| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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/close_file.h" | 5 #include "chrome/browser/chromeos/file_system_provider/operations/close_file.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 18 matching lines...) Expand all Loading... |
| 29 const int kOpenRequestId = 3; | 29 const int kOpenRequestId = 3; |
| 30 | 30 |
| 31 } // namespace | 31 } // namespace |
| 32 | 32 |
| 33 class FileSystemProviderOperationsCloseFileTest : public testing::Test { | 33 class FileSystemProviderOperationsCloseFileTest : public testing::Test { |
| 34 protected: | 34 protected: |
| 35 FileSystemProviderOperationsCloseFileTest() {} | 35 FileSystemProviderOperationsCloseFileTest() {} |
| 36 virtual ~FileSystemProviderOperationsCloseFileTest() {} | 36 virtual ~FileSystemProviderOperationsCloseFileTest() {} |
| 37 | 37 |
| 38 virtual void SetUp() override { | 38 virtual void SetUp() override { |
| 39 file_system_info_ = | 39 file_system_info_ = ProvidedFileSystemInfo( |
| 40 ProvidedFileSystemInfo(kExtensionId, | 40 kExtensionId, |
| 41 kFileSystemId, | 41 MountOptions(kFileSystemId, "" /* display_name */), |
| 42 "" /* display_name */, | 42 base::FilePath()); |
| 43 false /* writable */, | |
| 44 false /* supports_notify_tag */, | |
| 45 base::FilePath() /* mount_path */); | |
| 46 } | 43 } |
| 47 | 44 |
| 48 ProvidedFileSystemInfo file_system_info_; | 45 ProvidedFileSystemInfo file_system_info_; |
| 49 }; | 46 }; |
| 50 | 47 |
| 51 TEST_F(FileSystemProviderOperationsCloseFileTest, Execute) { | 48 TEST_F(FileSystemProviderOperationsCloseFileTest, Execute) { |
| 52 using extensions::api::file_system_provider::CloseFileRequestedOptions; | 49 using extensions::api::file_system_provider::CloseFileRequestedOptions; |
| 53 | 50 |
| 54 util::LoggingDispatchEventImpl dispatcher(true /* dispatch_reply */); | 51 util::LoggingDispatchEventImpl dispatcher(true /* dispatch_reply */); |
| 55 util::StatusCallbackLog callback_log; | 52 util::StatusCallbackLog callback_log; |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 close_file.OnError(kRequestId, | 132 close_file.OnError(kRequestId, |
| 136 scoped_ptr<RequestValue>(new RequestValue()), | 133 scoped_ptr<RequestValue>(new RequestValue()), |
| 137 base::File::FILE_ERROR_TOO_MANY_OPENED); | 134 base::File::FILE_ERROR_TOO_MANY_OPENED); |
| 138 ASSERT_EQ(1u, callback_log.size()); | 135 ASSERT_EQ(1u, callback_log.size()); |
| 139 EXPECT_EQ(base::File::FILE_ERROR_TOO_MANY_OPENED, callback_log[0]); | 136 EXPECT_EQ(base::File::FILE_ERROR_TOO_MANY_OPENED, callback_log[0]); |
| 140 } | 137 } |
| 141 | 138 |
| 142 } // namespace operations | 139 } // namespace operations |
| 143 } // namespace file_system_provider | 140 } // namespace file_system_provider |
| 144 } // namespace chromeos | 141 } // namespace chromeos |
| OLD | NEW |