summaryrefslogtreecommitdiffstats
path: root/webkit/fileapi/file_system_url_request_job_unittest.cc
diff options
context:
space:
mode:
authorericu@google.com <ericu@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-05-28 01:12:18 +0000
committerericu@google.com <ericu@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-05-28 01:12:18 +0000
commit054702d224472e01faf94482e2219ff1cd2b1aa7 (patch)
tree4e4a2074c84c7acf8a31ff40af9eb372b0037c0d /webkit/fileapi/file_system_url_request_job_unittest.cc
parent1ebd7b1c556b39785a7e7fb80e959caf2e43fe93 (diff)
downloadchromium_src-054702d224472e01faf94482e2219ff1cd2b1aa7.zip
chromium_src-054702d224472e01faf94482e2219ff1cd2b1aa7.tar.gz
chromium_src-054702d224472e01faf94482e2219ff1cd2b1aa7.tar.bz2
Code to turn on obfuscated filesystems for all, and to migrate all existing users automatically whenever they next access the filesystem or check its quota usage.
Avi, I've added you just for the ChildProcessSecurity stuff in worker_process_host.cc and browser_render_process_host.cc. Drop me a line if you need to know what's going on there. This is for M13, so please ask soon. BUG=none TEST=unit tests Review URL: http://codereview.chromium.org/6976017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@87129 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/fileapi/file_system_url_request_job_unittest.cc')
-rw-r--r--webkit/fileapi/file_system_url_request_job_unittest.cc48
1 files changed, 44 insertions, 4 deletions
diff --git a/webkit/fileapi/file_system_url_request_job_unittest.cc b/webkit/fileapi/file_system_url_request_job_unittest.cc
index 0012c64..e7b91ec 100644
--- a/webkit/fileapi/file_system_url_request_job_unittest.cc
+++ b/webkit/fileapi/file_system_url_request_job_unittest.cc
@@ -32,7 +32,10 @@
#include "net/url_request/url_request_test_util.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "webkit/fileapi/file_system_context.h"
+#include "webkit/fileapi/file_system_file_util.h"
+#include "webkit/fileapi/file_system_operation_context.h"
#include "webkit/fileapi/file_system_path_manager.h"
+#include "webkit/fileapi/sandbox_mount_point_provider.h"
namespace fileapi {
namespace {
@@ -152,10 +155,47 @@ class FileSystemURLRequestJobTest : public testing::Test {
TestRequestHelper(url, NULL, false);
}
- void WriteFile(const base::StringPiece file_name,
+ void CreateDirectory(const base::StringPiece& dir_name) {
+ FilePath path = FilePath().AppendASCII(dir_name);
+ FileSystemFileUtil* file_util = file_system_context_->path_manager()->
+ sandbox_provider()->GetFileSystemFileUtil();
+ FileSystemOperationContext context(file_system_context_, file_util);
+ context.set_src_origin_url(GURL("http://remote"));
+ context.set_src_virtual_path(path);
+ context.set_src_type(fileapi::kFileSystemTypeTemporary);
+ context.set_allowed_bytes_growth(1024);
+
+ ASSERT_EQ(base::PLATFORM_FILE_OK, file_util->CreateDirectory(
+ &context,
+ path,
+ false /* exclusive */,
+ false /* recursive */));
+ }
+
+ void WriteFile(const base::StringPiece& file_name,
const char* buf, int buf_size) {
- FilePath path = origin_root_path_.AppendASCII(file_name);
- ASSERT_EQ(buf_size, file_util::WriteFile(path, buf, buf_size));
+ FilePath path = FilePath().AppendASCII(file_name);
+ FileSystemFileUtil* file_util = file_system_context_->path_manager()->
+ sandbox_provider()->GetFileSystemFileUtil();
+ FileSystemOperationContext context(file_system_context_, file_util);
+ context.set_src_origin_url(GURL("http://remote"));
+ context.set_src_virtual_path(path);
+ context.set_src_type(fileapi::kFileSystemTypeTemporary);
+ context.set_allowed_bytes_growth(1024);
+
+ base::PlatformFile handle = base::kInvalidPlatformFileValue;
+ bool created = false;
+ ASSERT_EQ(base::PLATFORM_FILE_OK, file_util->CreateOrOpen(
+ &context,
+ path,
+ base::PLATFORM_FILE_CREATE | base::PLATFORM_FILE_WRITE,
+ &handle,
+ &created));
+ EXPECT_TRUE(created);
+ ASSERT_NE(base::kInvalidPlatformFileValue, handle);
+ ASSERT_EQ(buf_size,
+ base::WritePlatformFile(handle, 0 /* offset */, buf, buf_size));
+ base::ClosePlatformFile(handle);
}
GURL CreateFileSystemURL(const std::string& path) {
@@ -271,7 +311,7 @@ TEST_F(FileSystemURLRequestJobTest, RangeOutOfBounds) {
}
TEST_F(FileSystemURLRequestJobTest, FileDirRedirect) {
- ASSERT_TRUE(file_util::CreateDirectory(origin_root_path_.AppendASCII("dir")));
+ CreateDirectory("dir");
TestRequest(CreateFileSystemURL("dir"));
EXPECT_EQ(1, delegate_->received_redirect_count());