| 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/truncate.h" | 5 #include "chrome/browser/chromeos/file_system_provider/operations/truncate.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 26 matching lines...) Expand all Loading... |
| 37 class FileSystemProviderOperationsTruncateTest : public testing::Test { | 37 class FileSystemProviderOperationsTruncateTest : public testing::Test { |
| 38 protected: | 38 protected: |
| 39 FileSystemProviderOperationsTruncateTest() {} | 39 FileSystemProviderOperationsTruncateTest() {} |
| 40 ~FileSystemProviderOperationsTruncateTest() override {} | 40 ~FileSystemProviderOperationsTruncateTest() override {} |
| 41 | 41 |
| 42 void SetUp() override { | 42 void SetUp() override { |
| 43 MountOptions mount_options(kFileSystemId, "" /* display_name */); | 43 MountOptions mount_options(kFileSystemId, "" /* display_name */); |
| 44 mount_options.writable = true; | 44 mount_options.writable = true; |
| 45 file_system_info_ = ProvidedFileSystemInfo( | 45 file_system_info_ = ProvidedFileSystemInfo( |
| 46 kExtensionId, mount_options, base::FilePath(), false /* configurable */, | 46 kExtensionId, mount_options, base::FilePath(), false /* configurable */, |
| 47 extensions::SOURCE_FILE); | 47 true /* watchable */, extensions::SOURCE_FILE); |
| 48 } | 48 } |
| 49 | 49 |
| 50 ProvidedFileSystemInfo file_system_info_; | 50 ProvidedFileSystemInfo file_system_info_; |
| 51 }; | 51 }; |
| 52 | 52 |
| 53 TEST_F(FileSystemProviderOperationsTruncateTest, Execute) { | 53 TEST_F(FileSystemProviderOperationsTruncateTest, Execute) { |
| 54 using extensions::api::file_system_provider::TruncateRequestedOptions; | 54 using extensions::api::file_system_provider::TruncateRequestedOptions; |
| 55 | 55 |
| 56 util::LoggingDispatchEventImpl dispatcher(true /* dispatch_reply */); | 56 util::LoggingDispatchEventImpl dispatcher(true /* dispatch_reply */); |
| 57 util::StatusCallbackLog callback_log; | 57 util::StatusCallbackLog callback_log; |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 EXPECT_FALSE(truncate.Execute(kRequestId)); | 98 EXPECT_FALSE(truncate.Execute(kRequestId)); |
| 99 } | 99 } |
| 100 | 100 |
| 101 TEST_F(FileSystemProviderOperationsTruncateTest, Execute_ReadOnly) { | 101 TEST_F(FileSystemProviderOperationsTruncateTest, Execute_ReadOnly) { |
| 102 util::LoggingDispatchEventImpl dispatcher(false /* dispatch_reply */); | 102 util::LoggingDispatchEventImpl dispatcher(false /* dispatch_reply */); |
| 103 util::StatusCallbackLog callback_log; | 103 util::StatusCallbackLog callback_log; |
| 104 | 104 |
| 105 const ProvidedFileSystemInfo read_only_file_system_info( | 105 const ProvidedFileSystemInfo read_only_file_system_info( |
| 106 kExtensionId, MountOptions(kFileSystemId, "" /* display_name */), | 106 kExtensionId, MountOptions(kFileSystemId, "" /* display_name */), |
| 107 base::FilePath() /* mount_path */, false /* configurable */, | 107 base::FilePath() /* mount_path */, false /* configurable */, |
| 108 extensions::SOURCE_FILE); | 108 true /* watchable */, extensions::SOURCE_FILE); |
| 109 | 109 |
| 110 Truncate truncate(NULL, file_system_info_, base::FilePath(kFilePath), | 110 Truncate truncate(NULL, file_system_info_, base::FilePath(kFilePath), |
| 111 kTruncateLength, | 111 kTruncateLength, |
| 112 base::Bind(&util::LogStatusCallback, &callback_log)); | 112 base::Bind(&util::LogStatusCallback, &callback_log)); |
| 113 truncate.SetDispatchEventImplForTesting( | 113 truncate.SetDispatchEventImplForTesting( |
| 114 base::Bind(&util::LoggingDispatchEventImpl::OnDispatchEventImpl, | 114 base::Bind(&util::LoggingDispatchEventImpl::OnDispatchEventImpl, |
| 115 base::Unretained(&dispatcher))); | 115 base::Unretained(&dispatcher))); |
| 116 | 116 |
| 117 EXPECT_FALSE(truncate.Execute(kRequestId)); | 117 EXPECT_FALSE(truncate.Execute(kRequestId)); |
| 118 } | 118 } |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 truncate.OnError(kRequestId, | 153 truncate.OnError(kRequestId, |
| 154 scoped_ptr<RequestValue>(new RequestValue()), | 154 scoped_ptr<RequestValue>(new RequestValue()), |
| 155 base::File::FILE_ERROR_TOO_MANY_OPENED); | 155 base::File::FILE_ERROR_TOO_MANY_OPENED); |
| 156 ASSERT_EQ(1u, callback_log.size()); | 156 ASSERT_EQ(1u, callback_log.size()); |
| 157 EXPECT_EQ(base::File::FILE_ERROR_TOO_MANY_OPENED, callback_log[0]); | 157 EXPECT_EQ(base::File::FILE_ERROR_TOO_MANY_OPENED, callback_log[0]); |
| 158 } | 158 } |
| 159 | 159 |
| 160 } // namespace operations | 160 } // namespace operations |
| 161 } // namespace file_system_provider | 161 } // namespace file_system_provider |
| 162 } // namespace chromeos | 162 } // namespace chromeos |
| OLD | NEW |