Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: base/files/file_proxy_unittest.cc

Issue 180243015: Base: Introduce a new version of FileUtilProxy that works with File. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add some times to GetInfo test Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « base/files/file_proxy.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "base/files/file_util_proxy.h" 5 #include "base/files/file_proxy.h"
6 6
7 #include <map> 7 #include <map>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/file_util.h" 10 #include "base/file_util.h"
11 #include "base/files/file.h"
11 #include "base/files/scoped_temp_dir.h" 12 #include "base/files/scoped_temp_dir.h"
12 #include "base/logging.h" 13 #include "base/logging.h"
13 #include "base/memory/weak_ptr.h" 14 #include "base/memory/weak_ptr.h"
14 #include "base/message_loop/message_loop.h" 15 #include "base/message_loop/message_loop.h"
15 #include "base/platform_file.h"
16 #include "base/threading/thread.h" 16 #include "base/threading/thread.h"
17 #include "testing/gtest/include/gtest/gtest.h" 17 #include "testing/gtest/include/gtest/gtest.h"
18 18
19 namespace base { 19 namespace base {
20 20
21 class FileUtilProxyTest : public testing::Test { 21 class FileProxyTest : public testing::Test {
22 public: 22 public:
23 FileUtilProxyTest() 23 FileProxyTest()
24 : file_thread_("FileUtilProxyTestFileThread"), 24 : file_thread_("FileProxyTestFileThread"),
25 error_(File::FILE_OK), 25 error_(File::FILE_OK),
26 created_(false),
27 file_(kInvalidPlatformFileValue),
28 bytes_written_(-1), 26 bytes_written_(-1),
29 weak_factory_(this) {} 27 weak_factory_(this) {}
30 28
31 virtual void SetUp() OVERRIDE { 29 virtual void SetUp() OVERRIDE {
32 ASSERT_TRUE(dir_.CreateUniqueTempDir()); 30 ASSERT_TRUE(dir_.CreateUniqueTempDir());
33 ASSERT_TRUE(file_thread_.Start()); 31 ASSERT_TRUE(file_thread_.Start());
34 } 32 }
35 33
36 virtual void TearDown() OVERRIDE {
37 if (file_ != kInvalidPlatformFileValue)
38 ClosePlatformFile(file_);
39 }
40
41 void DidFinish(File::Error error) { 34 void DidFinish(File::Error error) {
42 error_ = error; 35 error_ = error;
43 MessageLoop::current()->QuitWhenIdle(); 36 MessageLoop::current()->QuitWhenIdle();
44 } 37 }
45 38
46 void DidCreateOrOpen(File::Error error, 39 void DidCreateOrOpen(File::Error error) {
47 PassPlatformFile file,
48 bool created) {
49 error_ = error; 40 error_ = error;
50 file_ = file.ReleaseValue();
51 created_ = created;
52 MessageLoop::current()->QuitWhenIdle(); 41 MessageLoop::current()->QuitWhenIdle();
53 } 42 }
54 43
55 void DidCreateTemporary(File::Error error, 44 void DidCreateTemporary(File::Error error,
56 PassPlatformFile file,
57 const FilePath& path) { 45 const FilePath& path) {
58 error_ = error; 46 error_ = error;
59 file_ = file.ReleaseValue();
60 path_ = path; 47 path_ = path;
61 MessageLoop::current()->QuitWhenIdle(); 48 MessageLoop::current()->QuitWhenIdle();
62 } 49 }
63 50
64 void DidGetFileInfo(File::Error error, 51 void DidGetFileInfo(File::Error error,
65 const File::Info& file_info) { 52 const File::Info& file_info) {
66 error_ = error; 53 error_ = error;
67 file_info_ = file_info; 54 file_info_ = file_info;
68 MessageLoop::current()->QuitWhenIdle(); 55 MessageLoop::current()->QuitWhenIdle();
69 } 56 }
70 57
71 void DidRead(File::Error error, 58 void DidRead(File::Error error,
72 const char* data, 59 const char* data,
73 int bytes_read) { 60 int bytes_read) {
74 error_ = error; 61 error_ = error;
75 buffer_.resize(bytes_read); 62 buffer_.resize(bytes_read);
76 memcpy(&buffer_[0], data, bytes_read); 63 memcpy(&buffer_[0], data, bytes_read);
77 MessageLoop::current()->QuitWhenIdle(); 64 MessageLoop::current()->QuitWhenIdle();
78 } 65 }
79 66
80 void DidWrite(File::Error error, 67 void DidWrite(File::Error error,
81 int bytes_written) { 68 int bytes_written) {
82 error_ = error; 69 error_ = error;
83 bytes_written_ = bytes_written; 70 bytes_written_ = bytes_written;
84 MessageLoop::current()->QuitWhenIdle(); 71 MessageLoop::current()->QuitWhenIdle();
85 } 72 }
86 73
87 protected: 74 protected:
88 PlatformFile GetTestPlatformFile(int flags) { 75 void CreateProxy(uint32 flags, FileProxy* proxy) {
89 if (file_ != kInvalidPlatformFileValue) 76 proxy->CreateOrOpen(
90 return file_; 77 test_path(), flags,
91 bool created; 78 Bind(&FileProxyTest::DidCreateOrOpen, weak_factory_.GetWeakPtr()));
92 PlatformFileError error; 79 MessageLoop::current()->Run();
93 file_ = CreatePlatformFile(test_path(), flags, &created, &error); 80 EXPECT_TRUE(proxy->IsValid());
94 EXPECT_EQ(PLATFORM_FILE_OK, error);
95 EXPECT_NE(kInvalidPlatformFileValue, file_);
96 return file_;
97 } 81 }
98 82
99 TaskRunner* file_task_runner() const { 83 TaskRunner* file_task_runner() const {
100 return file_thread_.message_loop_proxy().get(); 84 return file_thread_.message_loop_proxy().get();
101 } 85 }
102 const FilePath& test_dir_path() const { return dir_.path(); } 86 const FilePath& test_dir_path() const { return dir_.path(); }
103 const FilePath test_path() const { return dir_.path().AppendASCII("test"); } 87 const FilePath test_path() const { return dir_.path().AppendASCII("test"); }
104 88
105 MessageLoopForIO message_loop_; 89 MessageLoopForIO message_loop_;
106 Thread file_thread_; 90 Thread file_thread_;
107 91
108 ScopedTempDir dir_; 92 ScopedTempDir dir_;
109 File::Error error_; 93 File::Error error_;
110 bool created_;
111 PlatformFile file_;
112 FilePath path_; 94 FilePath path_;
113 File::Info file_info_; 95 File::Info file_info_;
114 std::vector<char> buffer_; 96 std::vector<char> buffer_;
115 int bytes_written_; 97 int bytes_written_;
116 WeakPtrFactory<FileUtilProxyTest> weak_factory_; 98 WeakPtrFactory<FileProxyTest> weak_factory_;
117 }; 99 };
118 100
119 TEST_F(FileUtilProxyTest, CreateOrOpen_Create) { 101 TEST_F(FileProxyTest, CreateOrOpen_Create) {
120 FileUtilProxy::CreateOrOpen( 102 FileProxy proxy(file_task_runner());
121 file_task_runner(), 103 proxy.CreateOrOpen(
122 test_path(), 104 test_path(),
123 PLATFORM_FILE_CREATE | PLATFORM_FILE_READ, 105 File::FLAG_CREATE | File::FLAG_READ,
124 Bind(&FileUtilProxyTest::DidCreateOrOpen, weak_factory_.GetWeakPtr())); 106 Bind(&FileProxyTest::DidCreateOrOpen, weak_factory_.GetWeakPtr()));
125 MessageLoop::current()->Run(); 107 MessageLoop::current()->Run();
126 108
127 EXPECT_EQ(File::FILE_OK, error_); 109 EXPECT_EQ(File::FILE_OK, error_);
128 EXPECT_TRUE(created_); 110 EXPECT_TRUE(proxy.IsValid());
129 EXPECT_NE(kInvalidPlatformFileValue, file_); 111 EXPECT_TRUE(proxy.created());
130 EXPECT_TRUE(PathExists(test_path())); 112 EXPECT_TRUE(PathExists(test_path()));
131 } 113 }
132 114
133 TEST_F(FileUtilProxyTest, CreateOrOpen_Open) { 115 TEST_F(FileProxyTest, CreateOrOpen_Open) {
134 // Creates a file. 116 // Creates a file.
135 WriteFile(test_path(), NULL, 0); 117 base::WriteFile(test_path(), NULL, 0);
136 ASSERT_TRUE(PathExists(test_path())); 118 ASSERT_TRUE(PathExists(test_path()));
137 119
138 // Opens the created file. 120 // Opens the created file.
139 FileUtilProxy::CreateOrOpen( 121 FileProxy proxy(file_task_runner());
140 file_task_runner(), 122 proxy.CreateOrOpen(
141 test_path(), 123 test_path(),
142 PLATFORM_FILE_OPEN | PLATFORM_FILE_READ, 124 File::FLAG_OPEN | File::FLAG_READ,
143 Bind(&FileUtilProxyTest::DidCreateOrOpen, weak_factory_.GetWeakPtr())); 125 Bind(&FileProxyTest::DidCreateOrOpen, weak_factory_.GetWeakPtr()));
144 MessageLoop::current()->Run(); 126 MessageLoop::current()->Run();
145 127
146 EXPECT_EQ(File::FILE_OK, error_); 128 EXPECT_EQ(File::FILE_OK, error_);
147 EXPECT_FALSE(created_); 129 EXPECT_TRUE(proxy.IsValid());
148 EXPECT_NE(kInvalidPlatformFileValue, file_); 130 EXPECT_FALSE(proxy.created());
149 } 131 }
150 132
151 TEST_F(FileUtilProxyTest, CreateOrOpen_OpenNonExistent) { 133 TEST_F(FileProxyTest, CreateOrOpen_OpenNonExistent) {
152 FileUtilProxy::CreateOrOpen( 134 FileProxy proxy(file_task_runner());
153 file_task_runner(), 135 proxy.CreateOrOpen(
154 test_path(), 136 test_path(),
155 PLATFORM_FILE_OPEN | PLATFORM_FILE_READ, 137 File::FLAG_OPEN | File::FLAG_READ,
156 Bind(&FileUtilProxyTest::DidCreateOrOpen, weak_factory_.GetWeakPtr())); 138 Bind(&FileProxyTest::DidCreateOrOpen, weak_factory_.GetWeakPtr()));
157 MessageLoop::current()->Run(); 139 MessageLoop::current()->Run();
158 EXPECT_EQ(File::FILE_ERROR_NOT_FOUND, error_); 140 EXPECT_EQ(File::FILE_ERROR_NOT_FOUND, error_);
159 EXPECT_FALSE(created_); 141 EXPECT_FALSE(proxy.IsValid());
160 EXPECT_EQ(kInvalidPlatformFileValue, file_); 142 EXPECT_FALSE(proxy.created());
161 EXPECT_FALSE(PathExists(test_path())); 143 EXPECT_FALSE(PathExists(test_path()));
162 } 144 }
163 145
164 TEST_F(FileUtilProxyTest, Close) { 146 TEST_F(FileProxyTest, Close) {
165 // Creates a file. 147 // Creates a file.
166 PlatformFile file = GetTestPlatformFile( 148 FileProxy proxy(file_task_runner());
167 PLATFORM_FILE_CREATE | PLATFORM_FILE_WRITE); 149 CreateProxy(File::FLAG_CREATE | File::FLAG_WRITE, &proxy);
168 150
169 #if defined(OS_WIN) 151 #if defined(OS_WIN)
170 // This fails on Windows if the file is not closed. 152 // This fails on Windows if the file is not closed.
171 EXPECT_FALSE(base::Move(test_path(), 153 EXPECT_FALSE(base::Move(test_path(), test_dir_path().AppendASCII("new")));
172 test_dir_path().AppendASCII("new")));
173 #endif 154 #endif
174 155
175 FileUtilProxy::Close( 156 proxy.Close(Bind(&FileProxyTest::DidFinish, weak_factory_.GetWeakPtr()));
176 file_task_runner(),
177 file,
178 Bind(&FileUtilProxyTest::DidFinish, weak_factory_.GetWeakPtr()));
179 MessageLoop::current()->Run(); 157 MessageLoop::current()->Run();
180 EXPECT_EQ(File::FILE_OK, error_); 158 EXPECT_EQ(File::FILE_OK, error_);
159 EXPECT_FALSE(proxy.IsValid());
181 160
182 // Now it should pass on all platforms. 161 // Now it should pass on all platforms.
183 EXPECT_TRUE(base::Move(test_path(), test_dir_path().AppendASCII("new"))); 162 EXPECT_TRUE(base::Move(test_path(), test_dir_path().AppendASCII("new")));
184 } 163 }
185 164
186 TEST_F(FileUtilProxyTest, CreateTemporary) { 165 TEST_F(FileProxyTest, CreateTemporary) {
187 FileUtilProxy::CreateTemporary( 166 {
188 file_task_runner(), 0 /* additional_file_flags */, 167 FileProxy proxy(file_task_runner());
189 Bind(&FileUtilProxyTest::DidCreateTemporary, weak_factory_.GetWeakPtr())); 168 proxy.CreateTemporary(
190 MessageLoop::current()->Run(); 169 0 /* additional_file_flags */,
191 EXPECT_EQ(File::FILE_OK, error_); 170 Bind(&FileProxyTest::DidCreateTemporary, weak_factory_.GetWeakPtr()));
192 EXPECT_TRUE(PathExists(path_)); 171 MessageLoop::current()->Run();
193 EXPECT_NE(kInvalidPlatformFileValue, file_);
194 172
195 // The file should be writable. 173 EXPECT_TRUE(proxy.IsValid());
196 #if defined(OS_WIN) 174 EXPECT_EQ(File::FILE_OK, error_);
197 HANDLE hEvent = CreateEvent(NULL, FALSE, FALSE, NULL); 175 EXPECT_TRUE(PathExists(path_));
198 OVERLAPPED overlapped = {0}; 176
199 overlapped.hEvent = hEvent; 177 // The file should be writable.
200 DWORD bytes_written; 178 proxy.Write(0, "test", 4,
201 if (!::WriteFile(file_, "test", 4, &bytes_written, &overlapped)) { 179 Bind(&FileProxyTest::DidWrite, weak_factory_.GetWeakPtr()));
202 // Temporary file is created with ASYNC flag, so WriteFile may return 0 180 MessageLoop::current()->Run();
203 // with ERROR_IO_PENDING. 181 EXPECT_EQ(File::FILE_OK, error_);
204 EXPECT_EQ(ERROR_IO_PENDING, GetLastError()); 182 EXPECT_EQ(4, bytes_written_);
205 GetOverlappedResult(file_, &overlapped, &bytes_written, TRUE);
206 } 183 }
207 EXPECT_EQ(4, bytes_written);
208 #else
209 // On POSIX ASYNC flag does not affect synchronous read/write behavior.
210 EXPECT_EQ(4, WritePlatformFile(file_, 0, "test", 4));
211 #endif
212 EXPECT_TRUE(ClosePlatformFile(file_));
213 file_ = kInvalidPlatformFileValue;
214 184
215 // Make sure the written data can be read from the returned path. 185 // Make sure the written data can be read from the returned path.
216 std::string data; 186 std::string data;
217 EXPECT_TRUE(ReadFileToString(path_, &data)); 187 EXPECT_TRUE(ReadFileToString(path_, &data));
218 EXPECT_EQ("test", data); 188 EXPECT_EQ("test", data);
219 189
220 // Make sure we can & do delete the created file to prevent leaks on the bots. 190 // Make sure we can & do delete the created file to prevent leaks on the bots.
221 EXPECT_TRUE(base::DeleteFile(path_, false)); 191 EXPECT_TRUE(base::DeleteFile(path_, false));
222 } 192 }
223 193
224 TEST_F(FileUtilProxyTest, GetFileInfo_File) { 194 TEST_F(FileProxyTest, GetInfo) {
225 // Setup. 195 // Setup.
226 ASSERT_EQ(4, WriteFile(test_path(), "test", 4)); 196 ASSERT_EQ(4, base::WriteFile(test_path(), "test", 4));
227 File::Info expected_info; 197 File::Info expected_info;
228 GetFileInfo(test_path(), &expected_info); 198 GetFileInfo(test_path(), &expected_info);
229 199
230 // Run. 200 // Run.
231 FileUtilProxy::GetFileInfo( 201 FileProxy proxy(file_task_runner());
232 file_task_runner(), 202 CreateProxy(File::FLAG_OPEN | File::FLAG_READ, &proxy);
233 test_path(), 203 proxy.GetInfo(
234 Bind(&FileUtilProxyTest::DidGetFileInfo, weak_factory_.GetWeakPtr())); 204 Bind(&FileProxyTest::DidGetFileInfo, weak_factory_.GetWeakPtr()));
235 MessageLoop::current()->Run(); 205 MessageLoop::current()->Run();
236 206
237 // Verify. 207 // Verify.
238 EXPECT_EQ(File::FILE_OK, error_); 208 EXPECT_EQ(File::FILE_OK, error_);
239 EXPECT_EQ(expected_info.size, file_info_.size); 209 EXPECT_EQ(expected_info.size, file_info_.size);
240 EXPECT_EQ(expected_info.is_directory, file_info_.is_directory); 210 EXPECT_EQ(expected_info.is_directory, file_info_.is_directory);
241 EXPECT_EQ(expected_info.is_symbolic_link, file_info_.is_symbolic_link); 211 EXPECT_EQ(expected_info.is_symbolic_link, file_info_.is_symbolic_link);
212
213 File file = proxy.TakeFile();
214 EXPECT_TRUE(file.GetInfo(&expected_info));
kinuko 2014/03/17 03:50:28 Sorry I hadn't responded quickly... I'm ok with th
242 EXPECT_EQ(expected_info.last_modified, file_info_.last_modified); 215 EXPECT_EQ(expected_info.last_modified, file_info_.last_modified);
243 EXPECT_EQ(expected_info.last_accessed, file_info_.last_accessed);
244 EXPECT_EQ(expected_info.creation_time, file_info_.creation_time); 216 EXPECT_EQ(expected_info.creation_time, file_info_.creation_time);
245 } 217 }
246 218
247 TEST_F(FileUtilProxyTest, GetFileInfo_Directory) { 219 TEST_F(FileProxyTest, Read) {
248 // Setup.
249 ASSERT_TRUE(base::CreateDirectory(test_path()));
250 File::Info expected_info;
251 GetFileInfo(test_path(), &expected_info);
252
253 // Run.
254 FileUtilProxy::GetFileInfo(
255 file_task_runner(),
256 test_path(),
257 Bind(&FileUtilProxyTest::DidGetFileInfo, weak_factory_.GetWeakPtr()));
258 MessageLoop::current()->Run();
259
260 // Verify.
261 EXPECT_EQ(File::FILE_OK, error_);
262 EXPECT_EQ(expected_info.size, file_info_.size);
263 EXPECT_EQ(expected_info.is_directory, file_info_.is_directory);
264 EXPECT_EQ(expected_info.is_symbolic_link, file_info_.is_symbolic_link);
265 EXPECT_EQ(expected_info.last_modified, file_info_.last_modified);
266 EXPECT_EQ(expected_info.last_accessed, file_info_.last_accessed);
267 EXPECT_EQ(expected_info.creation_time, file_info_.creation_time);
268 }
269
270 TEST_F(FileUtilProxyTest, Read) {
271 // Setup. 220 // Setup.
272 const char expected_data[] = "bleh"; 221 const char expected_data[] = "bleh";
273 int expected_bytes = arraysize(expected_data); 222 int expected_bytes = arraysize(expected_data);
274 ASSERT_EQ(expected_bytes, 223 ASSERT_EQ(expected_bytes,
275 WriteFile(test_path(), expected_data, expected_bytes)); 224 base::WriteFile(test_path(), expected_data, expected_bytes));
276 225
277 // Run. 226 // Run.
278 FileUtilProxy::Read( 227 FileProxy proxy(file_task_runner());
279 file_task_runner(), 228 CreateProxy(File::FLAG_OPEN | File::FLAG_READ, &proxy);
280 GetTestPlatformFile(PLATFORM_FILE_OPEN | PLATFORM_FILE_READ), 229
281 0, // offset 230 proxy.Read(0, 128, Bind(&FileProxyTest::DidRead, weak_factory_.GetWeakPtr()));
282 128,
283 Bind(&FileUtilProxyTest::DidRead, weak_factory_.GetWeakPtr()));
284 MessageLoop::current()->Run(); 231 MessageLoop::current()->Run();
285 232
286 // Verify. 233 // Verify.
287 EXPECT_EQ(File::FILE_OK, error_); 234 EXPECT_EQ(File::FILE_OK, error_);
288 EXPECT_EQ(expected_bytes, static_cast<int>(buffer_.size())); 235 EXPECT_EQ(expected_bytes, static_cast<int>(buffer_.size()));
289 for (size_t i = 0; i < buffer_.size(); ++i) { 236 for (size_t i = 0; i < buffer_.size(); ++i) {
290 EXPECT_EQ(expected_data[i], buffer_[i]); 237 EXPECT_EQ(expected_data[i], buffer_[i]);
291 } 238 }
292 } 239 }
293 240
294 TEST_F(FileUtilProxyTest, WriteAndFlush) { 241 TEST_F(FileProxyTest, WriteAndFlush) {
242 FileProxy proxy(file_task_runner());
243 CreateProxy(File::FLAG_CREATE | File::FLAG_WRITE, &proxy);
244
295 const char data[] = "foo!"; 245 const char data[] = "foo!";
296 int data_bytes = ARRAYSIZE_UNSAFE(data); 246 int data_bytes = ARRAYSIZE_UNSAFE(data);
297 PlatformFile file = GetTestPlatformFile( 247 proxy.Write(0, data, data_bytes,
298 PLATFORM_FILE_CREATE | PLATFORM_FILE_WRITE); 248 Bind(&FileProxyTest::DidWrite, weak_factory_.GetWeakPtr()));
299
300 FileUtilProxy::Write(
301 file_task_runner(),
302 file,
303 0, // offset
304 data,
305 data_bytes,
306 Bind(&FileUtilProxyTest::DidWrite, weak_factory_.GetWeakPtr()));
307 MessageLoop::current()->Run(); 249 MessageLoop::current()->Run();
308 EXPECT_EQ(File::FILE_OK, error_); 250 EXPECT_EQ(File::FILE_OK, error_);
309 EXPECT_EQ(data_bytes, bytes_written_); 251 EXPECT_EQ(data_bytes, bytes_written_);
310 252
311 // Flush the written data. (So that the following read should always 253 // Flush the written data. (So that the following read should always
312 // succeed. On some platforms it may work with or without this flush.) 254 // succeed. On some platforms it may work with or without this flush.)
313 FileUtilProxy::Flush( 255 proxy.Flush(Bind(&FileProxyTest::DidFinish, weak_factory_.GetWeakPtr()));
314 file_task_runner(),
315 file,
316 Bind(&FileUtilProxyTest::DidFinish, weak_factory_.GetWeakPtr()));
317 MessageLoop::current()->Run(); 256 MessageLoop::current()->Run();
318 EXPECT_EQ(File::FILE_OK, error_); 257 EXPECT_EQ(File::FILE_OK, error_);
319 258
320 // Verify the written data. 259 // Verify the written data.
321 char buffer[10]; 260 char buffer[10];
322 EXPECT_EQ(data_bytes, base::ReadFile(test_path(), buffer, data_bytes)); 261 EXPECT_EQ(data_bytes, base::ReadFile(test_path(), buffer, data_bytes));
323 for (int i = 0; i < data_bytes; ++i) { 262 for (int i = 0; i < data_bytes; ++i) {
324 EXPECT_EQ(data[i], buffer[i]); 263 EXPECT_EQ(data[i], buffer[i]);
325 } 264 }
326 } 265 }
327 266
328 TEST_F(FileUtilProxyTest, Touch) { 267 TEST_F(FileProxyTest, SetTimes) {
268 FileProxy proxy(file_task_runner());
269 CreateProxy(
270 File::FLAG_CREATE | File::FLAG_WRITE | File::FLAG_WRITE_ATTRIBUTES,
271 &proxy);
272
329 Time last_accessed_time = Time::Now() - TimeDelta::FromDays(12345); 273 Time last_accessed_time = Time::Now() - TimeDelta::FromDays(12345);
330 Time last_modified_time = Time::Now() - TimeDelta::FromHours(98765); 274 Time last_modified_time = Time::Now() - TimeDelta::FromHours(98765);
331 275
332 FileUtilProxy::Touch( 276 proxy.SetTimes(last_accessed_time, last_modified_time,
333 file_task_runner(), 277 Bind(&FileProxyTest::DidFinish, weak_factory_.GetWeakPtr()));
334 GetTestPlatformFile(PLATFORM_FILE_CREATE |
335 PLATFORM_FILE_WRITE |
336 PLATFORM_FILE_WRITE_ATTRIBUTES),
337 last_accessed_time,
338 last_modified_time,
339 Bind(&FileUtilProxyTest::DidFinish, weak_factory_.GetWeakPtr()));
340 MessageLoop::current()->Run(); 278 MessageLoop::current()->Run();
341 EXPECT_EQ(File::FILE_OK, error_); 279 EXPECT_EQ(File::FILE_OK, error_);
342 280
343 File::Info info; 281 File::Info info;
344 GetFileInfo(test_path(), &info); 282 GetFileInfo(test_path(), &info);
345 283
346 // The returned values may only have the seconds precision, so we cast 284 // The returned values may only have the seconds precision, so we cast
347 // the double values to int here. 285 // the double values to int here.
348 EXPECT_EQ(static_cast<int>(last_modified_time.ToDoubleT()), 286 EXPECT_EQ(static_cast<int>(last_modified_time.ToDoubleT()),
349 static_cast<int>(info.last_modified.ToDoubleT())); 287 static_cast<int>(info.last_modified.ToDoubleT()));
350 EXPECT_EQ(static_cast<int>(last_accessed_time.ToDoubleT()), 288 EXPECT_EQ(static_cast<int>(last_accessed_time.ToDoubleT()),
351 static_cast<int>(info.last_accessed.ToDoubleT())); 289 static_cast<int>(info.last_accessed.ToDoubleT()));
352 } 290 }
353 291
354 TEST_F(FileUtilProxyTest, Truncate_Shrink) { 292 TEST_F(FileProxyTest, SetLength_Shrink) {
355 // Setup. 293 // Setup.
356 const char kTestData[] = "0123456789"; 294 const char kTestData[] = "0123456789";
357 ASSERT_EQ(10, WriteFile(test_path(), kTestData, 10)); 295 ASSERT_EQ(10, base::WriteFile(test_path(), kTestData, 10));
358 File::Info info; 296 File::Info info;
359 GetFileInfo(test_path(), &info); 297 GetFileInfo(test_path(), &info);
360 ASSERT_EQ(10, info.size); 298 ASSERT_EQ(10, info.size);
361 299
362 // Run. 300 // Run.
363 FileUtilProxy::Truncate( 301 FileProxy proxy(file_task_runner());
364 file_task_runner(), 302 CreateProxy(File::FLAG_OPEN | File::FLAG_WRITE, &proxy);
365 GetTestPlatformFile(PLATFORM_FILE_OPEN | PLATFORM_FILE_WRITE), 303 proxy.SetLength(7,
366 7, 304 Bind(&FileProxyTest::DidFinish, weak_factory_.GetWeakPtr()));
367 Bind(&FileUtilProxyTest::DidFinish, weak_factory_.GetWeakPtr()));
368 MessageLoop::current()->Run(); 305 MessageLoop::current()->Run();
369 306
370 // Verify. 307 // Verify.
371 GetFileInfo(test_path(), &info); 308 GetFileInfo(test_path(), &info);
372 ASSERT_EQ(7, info.size); 309 ASSERT_EQ(7, info.size);
373 310
374 char buffer[7]; 311 char buffer[7];
375 EXPECT_EQ(7, base::ReadFile(test_path(), buffer, 7)); 312 EXPECT_EQ(7, base::ReadFile(test_path(), buffer, 7));
376 int i = 0; 313 int i = 0;
377 for (; i < 7; ++i) 314 for (; i < 7; ++i)
378 EXPECT_EQ(kTestData[i], buffer[i]); 315 EXPECT_EQ(kTestData[i], buffer[i]);
379 } 316 }
380 317
381 TEST_F(FileUtilProxyTest, Truncate_Expand) { 318 TEST_F(FileProxyTest, SetLength_Expand) {
382 // Setup. 319 // Setup.
383 const char kTestData[] = "9876543210"; 320 const char kTestData[] = "9876543210";
384 ASSERT_EQ(10, WriteFile(test_path(), kTestData, 10)); 321 ASSERT_EQ(10, base::WriteFile(test_path(), kTestData, 10));
385 File::Info info; 322 File::Info info;
386 GetFileInfo(test_path(), &info); 323 GetFileInfo(test_path(), &info);
387 ASSERT_EQ(10, info.size); 324 ASSERT_EQ(10, info.size);
388 325
389 // Run. 326 // Run.
390 FileUtilProxy::Truncate( 327 FileProxy proxy(file_task_runner());
391 file_task_runner(), 328 CreateProxy(File::FLAG_OPEN | File::FLAG_WRITE, &proxy);
392 GetTestPlatformFile(PLATFORM_FILE_OPEN | PLATFORM_FILE_WRITE), 329 proxy.SetLength(53,
393 53, 330 Bind(&FileProxyTest::DidFinish, weak_factory_.GetWeakPtr()));
394 Bind(&FileUtilProxyTest::DidFinish, weak_factory_.GetWeakPtr()));
395 MessageLoop::current()->Run(); 331 MessageLoop::current()->Run();
396 332
397 // Verify. 333 // Verify.
398 GetFileInfo(test_path(), &info); 334 GetFileInfo(test_path(), &info);
399 ASSERT_EQ(53, info.size); 335 ASSERT_EQ(53, info.size);
400 336
401 char buffer[53]; 337 char buffer[53];
402 EXPECT_EQ(53, base::ReadFile(test_path(), buffer, 53)); 338 EXPECT_EQ(53, base::ReadFile(test_path(), buffer, 53));
403 int i = 0; 339 int i = 0;
404 for (; i < 10; ++i) 340 for (; i < 10; ++i)
405 EXPECT_EQ(kTestData[i], buffer[i]); 341 EXPECT_EQ(kTestData[i], buffer[i]);
406 for (; i < 53; ++i) 342 for (; i < 53; ++i)
407 EXPECT_EQ(0, buffer[i]); 343 EXPECT_EQ(0, buffer[i]);
408 } 344 }
409 345
410 } // namespace base 346 } // namespace base
OLDNEW
« no previous file with comments | « base/files/file_proxy.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698