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

Side by Side Diff: content/browser/fileapi/upload_file_system_file_element_reader_unittest.cc

Issue 157053010: Move async_file_test_helper.* to content/public/test/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: re-up with similarity=25 Created 6 years, 10 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "webkit/browser/fileapi/upload_file_system_file_element_reader.h" 5 #include "webkit/browser/fileapi/upload_file_system_file_element_reader.h"
6 6
7 #include "base/files/scoped_temp_dir.h" 7 #include "base/files/scoped_temp_dir.h"
8 #include "base/message_loop/message_loop.h" 8 #include "base/message_loop/message_loop.h"
9 #include "base/run_loop.h" 9 #include "base/run_loop.h"
10 #include "content/public/test/async_file_test_helper.h"
10 #include "content/public/test/test_file_system_context.h" 11 #include "content/public/test/test_file_system_context.h"
11 #include "net/base/io_buffer.h" 12 #include "net/base/io_buffer.h"
12 #include "net/base/test_completion_callback.h" 13 #include "net/base/test_completion_callback.h"
13 #include "testing/gtest/include/gtest/gtest.h" 14 #include "testing/gtest/include/gtest/gtest.h"
14 #include "webkit/browser/fileapi/async_file_test_helper.h"
15 #include "webkit/browser/fileapi/file_system_backend.h" 15 #include "webkit/browser/fileapi/file_system_backend.h"
16 #include "webkit/browser/fileapi/file_system_context.h" 16 #include "webkit/browser/fileapi/file_system_context.h"
17 #include "webkit/browser/fileapi/file_system_operation_context.h" 17 #include "webkit/browser/fileapi/file_system_operation_context.h"
18 #include "webkit/browser/fileapi/file_system_url.h" 18 #include "webkit/browser/fileapi/file_system_url.h"
19 19
20 using fileapi::AsyncFileTestHelper; 20 using content::AsyncFileTestHelper;
21 using fileapi::FileSystemContext; 21 using fileapi::FileSystemContext;
22 using fileapi::FileSystemType; 22 using fileapi::FileSystemType;
23 using fileapi::FileSystemURL; 23 using fileapi::FileSystemURL;
24 using fileapi::UploadFileSystemFileElementReader; 24 using fileapi::UploadFileSystemFileElementReader;
25 25
26 namespace content { 26 namespace content {
27 27
28 namespace { 28 namespace {
29 29
30 const char kFileSystemURLOrigin[] = "http://remote"; 30 const char kFileSystemURLOrigin[] = "http://remote";
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 TEST_F(UploadFileSystemFileElementReaderTest, WrongURL) { 275 TEST_F(UploadFileSystemFileElementReaderTest, WrongURL) {
276 const GURL wrong_url = GetFileSystemURL("wrong_file_name.dat"); 276 const GURL wrong_url = GetFileSystemURL("wrong_file_name.dat");
277 reader_.reset(new UploadFileSystemFileElementReader( 277 reader_.reset(new UploadFileSystemFileElementReader(
278 file_system_context_.get(), wrong_url, 0, kuint64max, base::Time())); 278 file_system_context_.get(), wrong_url, 0, kuint64max, base::Time()));
279 net::TestCompletionCallback init_callback; 279 net::TestCompletionCallback init_callback;
280 ASSERT_EQ(net::ERR_IO_PENDING, reader_->Init(init_callback.callback())); 280 ASSERT_EQ(net::ERR_IO_PENDING, reader_->Init(init_callback.callback()));
281 EXPECT_EQ(net::ERR_FILE_NOT_FOUND, init_callback.WaitForResult()); 281 EXPECT_EQ(net::ERR_FILE_NOT_FOUND, init_callback.WaitForResult());
282 } 282 }
283 283
284 } // namespace content 284 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/fileapi/plugin_private_file_system_backend_unittest.cc ('k') | content/content_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698