| 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 21 matching lines...) Expand all Loading... |
| 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_ = |
| 40 ProvidedFileSystemInfo(kExtensionId, | 40 ProvidedFileSystemInfo(kExtensionId, |
| 41 kFileSystemId, | 41 kFileSystemId, |
| 42 "" /* file_system_name */, | 42 "" /* display_name */, |
| 43 base::FilePath() /* mount_path */); | 43 base::FilePath() /* mount_path */); |
| 44 } | 44 } |
| 45 | 45 |
| 46 ProvidedFileSystemInfo file_system_info_; | 46 ProvidedFileSystemInfo file_system_info_; |
| 47 }; | 47 }; |
| 48 | 48 |
| 49 TEST_F(FileSystemProviderOperationsCloseFileTest, Execute) { | 49 TEST_F(FileSystemProviderOperationsCloseFileTest, Execute) { |
| 50 util::LoggingDispatchEventImpl dispatcher(true /* dispatch_reply */); | 50 util::LoggingDispatchEventImpl dispatcher(true /* dispatch_reply */); |
| 51 util::StatusCallbackLog callback_log; | 51 util::StatusCallbackLog callback_log; |
| 52 | 52 |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 close_file.OnError(kRequestId, | 137 close_file.OnError(kRequestId, |
| 138 scoped_ptr<RequestValue>(new RequestValue()), | 138 scoped_ptr<RequestValue>(new RequestValue()), |
| 139 base::File::FILE_ERROR_TOO_MANY_OPENED); | 139 base::File::FILE_ERROR_TOO_MANY_OPENED); |
| 140 ASSERT_EQ(1u, callback_log.size()); | 140 ASSERT_EQ(1u, callback_log.size()); |
| 141 EXPECT_EQ(base::File::FILE_ERROR_TOO_MANY_OPENED, callback_log[0]); | 141 EXPECT_EQ(base::File::FILE_ERROR_TOO_MANY_OPENED, callback_log[0]); |
| 142 } | 142 } |
| 143 | 143 |
| 144 } // namespace operations | 144 } // namespace operations |
| 145 } // namespace file_system_provider | 145 } // namespace file_system_provider |
| 146 } // namespace chromeos | 146 } // namespace chromeos |
| OLD | NEW |