| 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/unmount.h" | 5 #include "chrome/browser/chromeos/file_system_provider/operations/unmount.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 16 matching lines...) Expand all Loading... |
| 27 const int kRequestId = 2; | 27 const int kRequestId = 2; |
| 28 | 28 |
| 29 } // namespace | 29 } // namespace |
| 30 | 30 |
| 31 class FileSystemProviderOperationsUnmountTest : public testing::Test { | 31 class FileSystemProviderOperationsUnmountTest : public testing::Test { |
| 32 protected: | 32 protected: |
| 33 FileSystemProviderOperationsUnmountTest() {} | 33 FileSystemProviderOperationsUnmountTest() {} |
| 34 virtual ~FileSystemProviderOperationsUnmountTest() {} | 34 virtual ~FileSystemProviderOperationsUnmountTest() {} |
| 35 | 35 |
| 36 virtual void SetUp() override { | 36 virtual void SetUp() override { |
| 37 file_system_info_ = | 37 file_system_info_ = ProvidedFileSystemInfo( |
| 38 ProvidedFileSystemInfo(kExtensionId, | 38 kExtensionId, |
| 39 kFileSystemId, | 39 MountOptions(kFileSystemId, "" /* display_name */), |
| 40 "" /* display_name */, | 40 base::FilePath()); |
| 41 false /* writable */, | |
| 42 false /* supports_notify_tag */, | |
| 43 base::FilePath() /* mount_path */); | |
| 44 } | 41 } |
| 45 | 42 |
| 46 ProvidedFileSystemInfo file_system_info_; | 43 ProvidedFileSystemInfo file_system_info_; |
| 47 }; | 44 }; |
| 48 | 45 |
| 49 TEST_F(FileSystemProviderOperationsUnmountTest, Execute) { | 46 TEST_F(FileSystemProviderOperationsUnmountTest, Execute) { |
| 50 using extensions::api::file_system_provider::UnmountRequestedOptions; | 47 using extensions::api::file_system_provider::UnmountRequestedOptions; |
| 51 | 48 |
| 52 util::LoggingDispatchEventImpl dispatcher(true /* dispatch_reply */); | 49 util::LoggingDispatchEventImpl dispatcher(true /* dispatch_reply */); |
| 53 util::StatusCallbackLog callback_log; | 50 util::StatusCallbackLog callback_log; |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 scoped_ptr<RequestValue>(new RequestValue()), | 130 scoped_ptr<RequestValue>(new RequestValue()), |
| 134 base::File::FILE_ERROR_NOT_FOUND); | 131 base::File::FILE_ERROR_NOT_FOUND); |
| 135 ASSERT_EQ(1u, callback_log.size()); | 132 ASSERT_EQ(1u, callback_log.size()); |
| 136 base::File::Error event_result = callback_log[0]; | 133 base::File::Error event_result = callback_log[0]; |
| 137 EXPECT_EQ(base::File::FILE_ERROR_NOT_FOUND, event_result); | 134 EXPECT_EQ(base::File::FILE_ERROR_NOT_FOUND, event_result); |
| 138 } | 135 } |
| 139 | 136 |
| 140 } // namespace operations | 137 } // namespace operations |
| 141 } // namespace file_system_provider | 138 } // namespace file_system_provider |
| 142 } // namespace chromeos | 139 } // namespace chromeos |
| OLD | NEW |