Index: content/browser/fileapi/obfuscated_file_util_unittest.cc |
diff --git a/content/browser/fileapi/obfuscated_file_util_unittest.cc b/content/browser/fileapi/obfuscated_file_util_unittest.cc |
index 58f99d96a26903acd0cea6a813ff632dd20808c4..a293bec724a58f19b1aa14c7cc56d33fa6c0d332 100644 |
--- a/content/browser/fileapi/obfuscated_file_util_unittest.cc |
+++ b/content/browser/fileapi/obfuscated_file_util_unittest.cc |
@@ -8,6 +8,7 @@ |
#include "base/bind.h" |
#include "base/file_util.h" |
+#include "base/files/file.h" |
#include "base/files/file_path.h" |
#include "base/files/scoped_temp_dir.h" |
#include "base/memory/scoped_ptr.h" |
@@ -293,11 +294,11 @@ class ObfuscatedFileUtilTest : public testing::Test { |
bool PathExists(const FileSystemURL& url) { |
scoped_ptr<FileSystemOperationContext> context(NewContext(NULL)); |
- base::PlatformFileInfo file_info; |
+ base::File::Info file_info; |
base::FilePath platform_path; |
- base::PlatformFileError error = ofu()->GetFileInfo( |
+ base::File::Error error = ofu()->GetFileInfo( |
context.get(), url, &file_info, &platform_path); |
- return error == base::PLATFORM_FILE_OK; |
+ return error == base::File::FILE_OK; |
} |
bool DirectoryExists(const FileSystemURL& url) { |
@@ -325,13 +326,13 @@ class ObfuscatedFileUtilTest : public testing::Test { |
const FileSystemURL& url, base::PlatformFile file_handle) { |
scoped_ptr<FileSystemOperationContext> context(NewContext(NULL)); |
base::FilePath local_path; |
- EXPECT_EQ(base::PLATFORM_FILE_OK, ofu()->GetLocalFilePath( |
- context.get(), url, &local_path)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->GetLocalFilePath(context.get(), url, &local_path)); |
- base::PlatformFileInfo file_info0; |
+ base::File::Info file_info0; |
base::FilePath data_path; |
- EXPECT_EQ(base::PLATFORM_FILE_OK, ofu()->GetFileInfo( |
- context.get(), url, &file_info0, &data_path)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->GetFileInfo(context.get(), url, &file_info0, &data_path)); |
EXPECT_EQ(data_path, local_path); |
EXPECT_TRUE(FileExists(data_path)); |
EXPECT_EQ(0, GetSize(data_path)); |
@@ -340,25 +341,20 @@ class ObfuscatedFileUtilTest : public testing::Test { |
const int length = arraysize(data) - 1; |
if (base::kInvalidPlatformFileValue == file_handle) { |
- bool created = true; |
- base::PlatformFileError error; |
- file_handle = base::CreatePlatformFile( |
- data_path, |
- base::PLATFORM_FILE_OPEN | base::PLATFORM_FILE_WRITE, |
- &created, |
- &error); |
- ASSERT_NE(base::kInvalidPlatformFileValue, file_handle); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, error); |
- EXPECT_FALSE(created); |
+ base::File file(data_path, |
+ base::File::FLAG_OPEN | base::File::FLAG_WRITE); |
+ ASSERT_TRUE(file.IsValid()); |
+ EXPECT_FALSE(file.created()); |
+ file_handle = file.TakePlatformFile(); |
} |
ASSERT_EQ(length, base::WritePlatformFile(file_handle, 0, data, length)); |
EXPECT_TRUE(base::ClosePlatformFile(file_handle)); |
- base::PlatformFileInfo file_info1; |
+ base::File::Info file_info1; |
EXPECT_EQ(length, GetSize(data_path)); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, ofu()->GetFileInfo( |
- context.get(), url, &file_info1, &data_path)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->GetFileInfo(context.get(), url, &file_info1, &data_path)); |
EXPECT_EQ(data_path, local_path); |
EXPECT_FALSE(file_info0.is_directory); |
@@ -370,13 +366,13 @@ class ObfuscatedFileUtilTest : public testing::Test { |
EXPECT_LE(file_info0.last_modified, file_info1.last_modified); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, ofu()->Truncate( |
- context.get(), url, length * 2)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->Truncate(context.get(), url, length * 2)); |
EXPECT_EQ(length * 2, GetSize(data_path)); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, ofu()->Truncate( |
- context.get(), url, 0)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->Truncate(context.get(), url, 0)); |
EXPECT_EQ(0, GetSize(data_path)); |
} |
@@ -389,10 +385,10 @@ class ObfuscatedFileUtilTest : public testing::Test { |
for (iter = files.begin(); iter != files.end(); ++iter) { |
bool created = true; |
context.reset(NewContext(NULL)); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
- ofu()->EnsureFileExists( |
- context.get(), FileSystemURLAppend(root_url, *iter), |
- &created)); |
+ ASSERT_EQ(base::File::FILE_OK, |
+ ofu()->EnsureFileExists(context.get(), |
+ FileSystemURLAppend(root_url, *iter), |
+ &created)); |
ASSERT_FALSE(created); |
} |
for (iter = directories.begin(); iter != directories.end(); ++iter) { |
@@ -450,9 +446,9 @@ class ObfuscatedFileUtilTest : public testing::Test { |
std::set<base::FilePath::StringType>* directories) { |
scoped_ptr<FileSystemOperationContext> context; |
std::vector<fileapi::DirectoryEntry> entries; |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
- AsyncFileTestHelper::ReadDirectory( |
- file_system_context(), root_url, &entries)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ AsyncFileTestHelper::ReadDirectory(file_system_context(), |
+ root_url, &entries)); |
EXPECT_EQ(0UL, entries.size()); |
files->clear(); |
@@ -467,22 +463,20 @@ class ObfuscatedFileUtilTest : public testing::Test { |
for (iter = files->begin(); iter != files->end(); ++iter) { |
bool created = false; |
context.reset(NewContext(NULL)); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
- ofu()->EnsureFileExists( |
- context.get(), |
- FileSystemURLAppend(root_url, *iter), |
- &created)); |
+ ASSERT_EQ(base::File::FILE_OK, |
+ ofu()->EnsureFileExists(context.get(), |
+ FileSystemURLAppend(root_url, *iter), |
+ &created)); |
ASSERT_TRUE(created); |
} |
for (iter = directories->begin(); iter != directories->end(); ++iter) { |
bool exclusive = true; |
bool recursive = false; |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
- ofu()->CreateDirectory( |
- context.get(), |
- FileSystemURLAppend(root_url, *iter), |
- exclusive, recursive)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->CreateDirectory(context.get(), |
+ FileSystemURLAppend(root_url, *iter), |
+ exclusive, recursive)); |
} |
ValidateTestDirectory(root_url, *files, *directories); |
} |
@@ -495,7 +489,7 @@ class ObfuscatedFileUtilTest : public testing::Test { |
scoped_ptr<FileSystemOperationContext> context; |
std::vector<fileapi::DirectoryEntry> entries; |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
AsyncFileTestHelper::ReadDirectory( |
file_system_context(), root_url, &entries)); |
std::vector<fileapi::DirectoryEntry>::iterator entry_iter; |
@@ -523,15 +517,15 @@ class ObfuscatedFileUtilTest : public testing::Test { |
base::Time last_modified_time = base::Time::Now(); |
scoped_ptr<FileSystemOperationContext> context(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
- ofu()->Touch( |
- context.get(), url, last_access_time, last_modified_time)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->Touch(context.get(), url, last_access_time, |
+ last_modified_time)); |
// Currently we fire no change notifications for Touch. |
EXPECT_TRUE(change_observer()->HasNoChange()); |
base::FilePath local_path; |
- base::PlatformFileInfo file_info; |
+ base::File::Info file_info; |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, ofu()->GetFileInfo( |
+ EXPECT_EQ(base::File::FILE_OK, ofu()->GetFileInfo( |
context.get(), url, &file_info, &local_path)); |
// We compare as time_t here to lower our resolution, to avoid false |
// negatives caused by conversion to the local filesystem's native |
@@ -541,13 +535,13 @@ class ObfuscatedFileUtilTest : public testing::Test { |
context.reset(NewContext(NULL)); |
last_modified_time += base::TimeDelta::FromHours(1); |
last_access_time += base::TimeDelta::FromHours(14); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
- ofu()->Touch( |
- context.get(), url, last_access_time, last_modified_time)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->Touch(context.get(), url, last_access_time, |
+ last_modified_time)); |
EXPECT_TRUE(change_observer()->HasNoChange()); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, ofu()->GetFileInfo( |
- context.get(), url, &file_info, &local_path)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->GetFileInfo(context.get(), url, &file_info, &local_path)); |
EXPECT_EQ(file_info.last_modified.ToTimeT(), last_modified_time.ToTimeT()); |
if (is_file) // Directories in OFU don't support atime. |
EXPECT_EQ(file_info.last_accessed.ToTimeT(), last_access_time.ToTimeT()); |
@@ -561,24 +555,20 @@ class ObfuscatedFileUtilTest : public testing::Test { |
FileSystemURL dest_url = CreateURLFromUTF8("new file"); |
int64 src_file_length = 87; |
- base::PlatformFileError error_code; |
- bool created = false; |
- int file_flags = base::PLATFORM_FILE_CREATE | base::PLATFORM_FILE_WRITE; |
- base::PlatformFile file_handle = |
- base::CreatePlatformFile( |
- src_file_path, file_flags, &created, &error_code); |
- EXPECT_TRUE(created); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, error_code); |
- ASSERT_NE(base::kInvalidPlatformFileValue, file_handle); |
- ASSERT_TRUE(base::TruncatePlatformFile(file_handle, src_file_length)); |
- EXPECT_TRUE(base::ClosePlatformFile(file_handle)); |
+ base::File file(src_file_path, |
+ base::File::FLAG_CREATE | base::File::FLAG_WRITE); |
+ ASSERT_TRUE(file.IsValid()); |
+ EXPECT_TRUE(file.created()); |
+ ASSERT_TRUE(file.SetLength(src_file_length)); |
+ file.Close(); |
scoped_ptr<FileSystemOperationContext> context; |
if (overwrite) { |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
- ofu()->EnsureFileExists(context.get(), dest_url, &created)); |
+ bool created = false; |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->EnsureFileExists(context.get(), dest_url, &created)); |
EXPECT_TRUE(created); |
// We must have observed one (and only one) create_file_count. |
@@ -592,14 +582,14 @@ class ObfuscatedFileUtilTest : public testing::Test { |
// Verify that file creation requires sufficient quota for the path. |
context.reset(NewContext(NULL)); |
context->set_allowed_bytes_growth(path_cost + src_file_length - 1); |
- EXPECT_EQ(base::PLATFORM_FILE_ERROR_NO_SPACE, |
+ EXPECT_EQ(base::File::FILE_ERROR_NO_SPACE, |
ofu()->CopyInForeignFile(context.get(), |
src_file_path, dest_url)); |
} |
context.reset(NewContext(NULL)); |
context->set_allowed_bytes_growth(path_cost + src_file_length); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->CopyInForeignFile(context.get(), |
src_file_path, dest_url)); |
@@ -607,21 +597,22 @@ class ObfuscatedFileUtilTest : public testing::Test { |
EXPECT_FALSE(DirectoryExists(dest_url)); |
context.reset(NewContext(NULL)); |
- base::PlatformFileInfo file_info; |
+ base::File::Info file_info; |
base::FilePath data_path; |
- EXPECT_EQ(base::PLATFORM_FILE_OK, ofu()->GetFileInfo( |
- context.get(), dest_url, &file_info, &data_path)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->GetFileInfo(context.get(), dest_url, &file_info, |
+ &data_path)); |
EXPECT_NE(data_path, src_file_path); |
EXPECT_TRUE(FileExists(data_path)); |
EXPECT_EQ(src_file_length, GetSize(data_path)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
- ofu()->DeleteFile(context.get(), dest_url)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->DeleteFile(context.get(), dest_url)); |
} |
void ClearTimestamp(const FileSystemURL& url) { |
scoped_ptr<FileSystemOperationContext> context(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->Touch(context.get(), url, base::Time(), base::Time())); |
EXPECT_EQ(base::Time(), GetModifiedTime(url)); |
} |
@@ -629,9 +620,9 @@ class ObfuscatedFileUtilTest : public testing::Test { |
base::Time GetModifiedTime(const FileSystemURL& url) { |
scoped_ptr<FileSystemOperationContext> context(NewContext(NULL)); |
base::FilePath data_path; |
- base::PlatformFileInfo file_info; |
+ base::File::Info file_info; |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->GetFileInfo(context.get(), url, &file_info, &data_path)); |
EXPECT_TRUE(change_observer()->HasNoChange()); |
return file_info.last_modified; |
@@ -652,19 +643,19 @@ class ObfuscatedFileUtilTest : public testing::Test { |
FileSystemURLAppendUTF8(dest_dir_url, "fuga")); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->CreateDirectory(context.get(), src_dir_url, true, true)); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->CreateDirectory(context.get(), dest_dir_url, true, true)); |
bool created = false; |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->EnsureFileExists(context.get(), src_file_url, &created)); |
if (overwrite) { |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->EnsureFileExists(context.get(), |
dest_file_url, &created)); |
} |
@@ -672,7 +663,7 @@ class ObfuscatedFileUtilTest : public testing::Test { |
ClearTimestamp(src_dir_url); |
ClearTimestamp(dest_dir_url); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->CopyOrMoveFile(context.get(), |
src_file_url, dest_file_url, |
FileSystemOperation::OPTION_NONE, |
@@ -781,10 +772,10 @@ class ObfuscatedFileUtilTest : public testing::Test { |
storage_policy_->AddIsolated(origin_); |
scoped_ptr<ObfuscatedFileUtil> file_util = CreateObfuscatedFileUtil( |
storage_policy_.get()); |
- base::PlatformFileError error = base::PLATFORM_FILE_ERROR_FAILED; |
+ base::File::Error error = base::File::FILE_ERROR_FAILED; |
base::FilePath origin_directory = file_util->GetDirectoryForOrigin( |
origin_, true /* create */, &error); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, error); |
+ EXPECT_EQ(base::File::FILE_OK, error); |
// The database is migrated from the old one. |
EXPECT_TRUE(base::DirectoryExists(origin_directory)); |
@@ -837,13 +828,12 @@ TEST_F(ObfuscatedFileUtilTest, TestCreateAndDeleteFile) { |
scoped_ptr<FileSystemOperationContext> context(NewContext(NULL)); |
int file_flags = base::PLATFORM_FILE_CREATE | base::PLATFORM_FILE_WRITE; |
- EXPECT_EQ(base::PLATFORM_FILE_ERROR_NOT_FOUND, |
- ofu()->CreateOrOpen( |
- context.get(), url, file_flags, &file_handle, |
- &created)); |
+ EXPECT_EQ(base::File::FILE_ERROR_NOT_FOUND, |
+ ofu()->CreateOrOpen(context.get(), url, file_flags, &file_handle, |
+ &created)); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_ERROR_NOT_FOUND, |
+ EXPECT_EQ(base::File::FILE_ERROR_NOT_FOUND, |
ofu()->DeleteFile(context.get(), url)); |
url = CreateURLFromUTF8("test file"); |
@@ -854,16 +844,16 @@ TEST_F(ObfuscatedFileUtilTest, TestCreateAndDeleteFile) { |
context.reset(NewContext(NULL)); |
context->set_allowed_bytes_growth( |
ObfuscatedFileUtil::ComputeFilePathCost(url.path()) - 1); |
- ASSERT_EQ(base::PLATFORM_FILE_ERROR_NO_SPACE, |
- ofu()->CreateOrOpen( |
- context.get(), url, file_flags, &file_handle, &created)); |
+ ASSERT_EQ(base::File::FILE_ERROR_NO_SPACE, |
+ ofu()->CreateOrOpen(context.get(), url, file_flags, |
+ &file_handle, &created)); |
context.reset(NewContext(NULL)); |
context->set_allowed_bytes_growth( |
ObfuscatedFileUtil::ComputeFilePathCost(url.path())); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
- ofu()->CreateOrOpen( |
- context.get(), url, file_flags, &file_handle, &created)); |
+ ASSERT_EQ(base::File::FILE_OK, |
+ ofu()->CreateOrOpen(context.get(), url, file_flags, &file_handle, |
+ &created)); |
ASSERT_TRUE(created); |
EXPECT_EQ(1, change_observer()->get_and_reset_create_file_count()); |
EXPECT_NE(base::kInvalidPlatformFileValue, file_handle); |
@@ -872,20 +862,19 @@ TEST_F(ObfuscatedFileUtilTest, TestCreateAndDeleteFile) { |
context.reset(NewContext(NULL)); |
base::FilePath local_path; |
- EXPECT_EQ(base::PLATFORM_FILE_OK, ofu()->GetLocalFilePath( |
- context.get(), url, &local_path)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->GetLocalFilePath(context.get(), url, &local_path)); |
EXPECT_TRUE(base::PathExists(local_path)); |
// Verify that deleting a file isn't stopped by zero quota, and that it frees |
// up quote from its path. |
context.reset(NewContext(NULL)); |
context->set_allowed_bytes_growth(0); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
- ofu()->DeleteFile(context.get(), url)); |
+ EXPECT_EQ(base::File::FILE_OK, ofu()->DeleteFile(context.get(), url)); |
EXPECT_EQ(1, change_observer()->get_and_reset_remove_file_count()); |
EXPECT_FALSE(base::PathExists(local_path)); |
EXPECT_EQ(ObfuscatedFileUtil::ComputeFilePathCost(url.path()), |
- context->allowed_bytes_growth()); |
+ context->allowed_bytes_growth()); |
context.reset(NewContext(NULL)); |
bool exclusive = true; |
@@ -893,16 +882,17 @@ TEST_F(ObfuscatedFileUtilTest, TestCreateAndDeleteFile) { |
FileSystemURL directory_url = CreateURLFromUTF8( |
"series/of/directories"); |
url = FileSystemURLAppendUTF8(directory_url, "file name"); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, ofu()->CreateDirectory( |
- context.get(), directory_url, exclusive, recursive)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->CreateDirectory(context.get(), directory_url, exclusive, |
+ recursive)); |
// The oepration created 3 directories recursively. |
EXPECT_EQ(3, change_observer()->get_and_reset_create_directory_count()); |
context.reset(NewContext(NULL)); |
file_handle = base::kInvalidPlatformFileValue; |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
- ofu()->CreateOrOpen( |
- context.get(), url, file_flags, &file_handle, &created)); |
+ ASSERT_EQ(base::File::FILE_OK, |
+ ofu()->CreateOrOpen(context.get(), url, file_flags, &file_handle, |
+ &created)); |
ASSERT_TRUE(created); |
EXPECT_EQ(1, change_observer()->get_and_reset_create_file_count()); |
EXPECT_NE(base::kInvalidPlatformFileValue, file_handle); |
@@ -910,13 +900,12 @@ TEST_F(ObfuscatedFileUtilTest, TestCreateAndDeleteFile) { |
CheckFileAndCloseHandle(url, file_handle); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, ofu()->GetLocalFilePath( |
- context.get(), url, &local_path)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->GetLocalFilePath(context.get(), url, &local_path)); |
EXPECT_TRUE(base::PathExists(local_path)); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
- ofu()->DeleteFile(context.get(), url)); |
+ EXPECT_EQ(base::File::FILE_OK, ofu()->DeleteFile(context.get(), url)); |
EXPECT_EQ(1, change_observer()->get_and_reset_remove_file_count()); |
EXPECT_FALSE(base::PathExists(local_path)); |
@@ -929,30 +918,28 @@ TEST_F(ObfuscatedFileUtilTest, TestTruncate) { |
FileSystemURL url = CreateURLFromUTF8("file"); |
scoped_ptr<FileSystemOperationContext> context(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_ERROR_NOT_FOUND, |
+ EXPECT_EQ(base::File::FILE_ERROR_NOT_FOUND, |
ofu()->Truncate(context.get(), url, 4)); |
context.reset(NewContext(NULL)); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
- ofu()->EnsureFileExists(context.get(), url, &created)); |
+ ASSERT_EQ(base::File::FILE_OK, |
+ ofu()->EnsureFileExists(context.get(), url, &created)); |
ASSERT_TRUE(created); |
EXPECT_EQ(1, change_observer()->get_and_reset_create_file_count()); |
context.reset(NewContext(NULL)); |
base::FilePath local_path; |
- EXPECT_EQ(base::PLATFORM_FILE_OK, ofu()->GetLocalFilePath( |
- context.get(), url, &local_path)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->GetLocalFilePath(context.get(), url, &local_path)); |
EXPECT_EQ(0, GetSize(local_path)); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, ofu()->Truncate( |
- context.get(), url, 10)); |
+ EXPECT_EQ(base::File::FILE_OK, ofu()->Truncate(context.get(), url, 10)); |
EXPECT_EQ(1, change_observer()->get_and_reset_modify_file_count()); |
EXPECT_EQ(10, GetSize(local_path)); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, ofu()->Truncate( |
- context.get(), url, 1)); |
+ EXPECT_EQ(base::File::FILE_OK, ofu()->Truncate(context.get(), url, 1)); |
EXPECT_EQ(1, GetSize(local_path)); |
EXPECT_EQ(1, change_observer()->get_and_reset_modify_file_count()); |
@@ -967,41 +954,32 @@ TEST_F(ObfuscatedFileUtilTest, TestQuotaOnTruncation) { |
bool created = false; |
FileSystemURL url = CreateURLFromUTF8("file"); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->EnsureFileExists( |
AllowUsageIncrease(PathCost(url))->context(), |
url, &created)); |
ASSERT_TRUE(created); |
ASSERT_EQ(0, ComputeTotalFileSize()); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
- ofu()->Truncate( |
- AllowUsageIncrease(1020)->context(), |
- url, 1020)); |
+ ASSERT_EQ(base::File::FILE_OK, |
+ ofu()->Truncate(AllowUsageIncrease(1020)->context(), url, 1020)); |
ASSERT_EQ(1020, ComputeTotalFileSize()); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
- ofu()->Truncate( |
- AllowUsageIncrease(-1020)->context(), |
- url, 0)); |
+ ASSERT_EQ(base::File::FILE_OK, |
+ ofu()->Truncate(AllowUsageIncrease(-1020)->context(), url, 0)); |
ASSERT_EQ(0, ComputeTotalFileSize()); |
- EXPECT_EQ(base::PLATFORM_FILE_ERROR_NO_SPACE, |
- ofu()->Truncate( |
- DisallowUsageIncrease(1021)->context(), |
- url, 1021)); |
+ EXPECT_EQ(base::File::FILE_ERROR_NO_SPACE, |
+ ofu()->Truncate(DisallowUsageIncrease(1021)->context(), |
+ url, 1021)); |
ASSERT_EQ(0, ComputeTotalFileSize()); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
- ofu()->Truncate( |
- AllowUsageIncrease(1020)->context(), |
- url, 1020)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->Truncate(AllowUsageIncrease(1020)->context(), url, 1020)); |
ASSERT_EQ(1020, ComputeTotalFileSize()); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
- ofu()->Truncate( |
- AllowUsageIncrease(0)->context(), |
- url, 1020)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->Truncate(AllowUsageIncrease(0)->context(), url, 1020)); |
ASSERT_EQ(1020, ComputeTotalFileSize()); |
// quota exceeded |
@@ -1009,24 +987,21 @@ TEST_F(ObfuscatedFileUtilTest, TestQuotaOnTruncation) { |
scoped_ptr<UsageVerifyHelper> helper = AllowUsageIncrease(-1); |
helper->context()->set_allowed_bytes_growth( |
helper->context()->allowed_bytes_growth() - 1); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->Truncate(helper->context(), url, 1019)); |
ASSERT_EQ(1019, ComputeTotalFileSize()); |
} |
// Delete backing file to make following truncation fail. |
base::FilePath local_path; |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
- ofu()->GetLocalFilePath( |
- UnlimitedContext().get(), |
- url, &local_path)); |
+ ASSERT_EQ(base::File::FILE_OK, |
+ ofu()->GetLocalFilePath(UnlimitedContext().get(), url, |
+ &local_path)); |
ASSERT_FALSE(local_path.empty()); |
ASSERT_TRUE(base::DeleteFile(local_path, false)); |
- EXPECT_EQ(base::PLATFORM_FILE_ERROR_NOT_FOUND, |
- ofu()->Truncate( |
- LimitedContext(1234).get(), |
- url, 1234)); |
+ EXPECT_EQ(base::File::FILE_ERROR_NOT_FOUND, |
+ ofu()->Truncate(LimitedContext(1234).get(), url, 1234)); |
ASSERT_EQ(0, ComputeTotalFileSize()); |
} |
@@ -1034,9 +1009,8 @@ TEST_F(ObfuscatedFileUtilTest, TestEnsureFileExists) { |
FileSystemURL url = CreateURLFromUTF8("fake/file"); |
bool created = false; |
scoped_ptr<FileSystemOperationContext> context(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_ERROR_NOT_FOUND, |
- ofu()->EnsureFileExists( |
- context.get(), url, &created)); |
+ EXPECT_EQ(base::File::FILE_ERROR_NOT_FOUND, |
+ ofu()->EnsureFileExists(context.get(), url, &created)); |
EXPECT_TRUE(change_observer()->HasNoChange()); |
// Verify that file creation requires sufficient quota for the path. |
@@ -1045,7 +1019,7 @@ TEST_F(ObfuscatedFileUtilTest, TestEnsureFileExists) { |
created = false; |
context->set_allowed_bytes_growth( |
ObfuscatedFileUtil::ComputeFilePathCost(url.path()) - 1); |
- ASSERT_EQ(base::PLATFORM_FILE_ERROR_NO_SPACE, |
+ ASSERT_EQ(base::File::FILE_ERROR_NO_SPACE, |
ofu()->EnsureFileExists(context.get(), url, &created)); |
ASSERT_FALSE(created); |
EXPECT_TRUE(change_observer()->HasNoChange()); |
@@ -1053,7 +1027,7 @@ TEST_F(ObfuscatedFileUtilTest, TestEnsureFileExists) { |
context.reset(NewContext(NULL)); |
context->set_allowed_bytes_growth( |
ObfuscatedFileUtil::ComputeFilePathCost(url.path())); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->EnsureFileExists(context.get(), url, &created)); |
ASSERT_TRUE(created); |
EXPECT_EQ(1, change_observer()->get_and_reset_create_file_count()); |
@@ -1061,7 +1035,7 @@ TEST_F(ObfuscatedFileUtilTest, TestEnsureFileExists) { |
CheckFileAndCloseHandle(url, base::kInvalidPlatformFileValue); |
context.reset(NewContext(NULL)); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->EnsureFileExists(context.get(), url, &created)); |
ASSERT_FALSE(created); |
EXPECT_TRUE(change_observer()->HasNoChange()); |
@@ -1071,15 +1045,14 @@ TEST_F(ObfuscatedFileUtilTest, TestEnsureFileExists) { |
context.reset(NewContext(NULL)); |
bool exclusive = true; |
bool recursive = true; |
- EXPECT_EQ(base::PLATFORM_FILE_OK, ofu()->CreateDirectory( |
- context.get(), |
- FileSystemURLDirName(url), |
- exclusive, recursive)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->CreateDirectory(context.get(), FileSystemURLDirName(url), |
+ exclusive, recursive)); |
// 2 directories: path/ and path/to. |
EXPECT_EQ(2, change_observer()->get_and_reset_create_directory_count()); |
context.reset(NewContext(NULL)); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->EnsureFileExists(context.get(), url, &created)); |
ASSERT_TRUE(created); |
EXPECT_FALSE(DirectoryExists(url)); |
@@ -1093,12 +1066,12 @@ TEST_F(ObfuscatedFileUtilTest, TestDirectoryOps) { |
bool exclusive = false; |
bool recursive = false; |
FileSystemURL url = CreateURLFromUTF8("foo/bar"); |
- EXPECT_EQ(base::PLATFORM_FILE_ERROR_NOT_FOUND, ofu()->CreateDirectory( |
- context.get(), url, exclusive, recursive)); |
+ EXPECT_EQ(base::File::FILE_ERROR_NOT_FOUND, |
+ ofu()->CreateDirectory(context.get(), url, exclusive, recursive)); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_ERROR_NOT_FOUND, |
- ofu()->DeleteDirectory(context.get(), url)); |
+ EXPECT_EQ(base::File::FILE_ERROR_NOT_FOUND, |
+ ofu()->DeleteDirectory(context.get(), url)); |
FileSystemURL root = CreateURLFromUTF8(std::string()); |
EXPECT_FALSE(DirectoryExists(url)); |
@@ -1109,8 +1082,8 @@ TEST_F(ObfuscatedFileUtilTest, TestDirectoryOps) { |
context.reset(NewContext(NULL)); |
exclusive = false; |
recursive = true; |
- EXPECT_EQ(base::PLATFORM_FILE_OK, ofu()->CreateDirectory( |
- context.get(), url, exclusive, recursive)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->CreateDirectory(context.get(), url, exclusive, recursive)); |
EXPECT_EQ(2, change_observer()->get_and_reset_create_directory_count()); |
EXPECT_TRUE(DirectoryExists(url)); |
@@ -1126,37 +1099,37 @@ TEST_F(ObfuscatedFileUtilTest, TestDirectoryOps) { |
// Can't remove a non-empty directory. |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_ERROR_NOT_EMPTY, |
- ofu()->DeleteDirectory(context.get(), |
- FileSystemURLDirName(url))); |
+ EXPECT_EQ(base::File::FILE_ERROR_NOT_EMPTY, |
+ ofu()->DeleteDirectory(context.get(), |
+ FileSystemURLDirName(url))); |
EXPECT_TRUE(change_observer()->HasNoChange()); |
- base::PlatformFileInfo file_info; |
+ base::File::Info file_info; |
base::FilePath local_path; |
- EXPECT_EQ(base::PLATFORM_FILE_OK, ofu()->GetFileInfo( |
- context.get(), url, &file_info, &local_path)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->GetFileInfo(context.get(), url, &file_info, &local_path)); |
EXPECT_TRUE(local_path.empty()); |
EXPECT_TRUE(file_info.is_directory); |
EXPECT_FALSE(file_info.is_symbolic_link); |
// Same create again should succeed, since exclusive is false. |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, ofu()->CreateDirectory( |
- context.get(), url, exclusive, recursive)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->CreateDirectory(context.get(), url, exclusive, recursive)); |
EXPECT_TRUE(change_observer()->HasNoChange()); |
exclusive = true; |
recursive = true; |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_ERROR_EXISTS, ofu()->CreateDirectory( |
- context.get(), url, exclusive, recursive)); |
+ EXPECT_EQ(base::File::FILE_ERROR_EXISTS, |
+ ofu()->CreateDirectory(context.get(), url, exclusive, recursive)); |
EXPECT_TRUE(change_observer()->HasNoChange()); |
// Verify that deleting a directory isn't stopped by zero quota, and that it |
// frees up quota from its path. |
context.reset(NewContext(NULL)); |
context->set_allowed_bytes_growth(0); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, ofu()->DeleteDirectory(context.get(), url)); |
+ EXPECT_EQ(base::File::FILE_OK, ofu()->DeleteDirectory(context.get(), url)); |
EXPECT_EQ(1, change_observer()->get_and_reset_remove_directory_count()); |
EXPECT_EQ(ObfuscatedFileUtil::ComputeFilePathCost(url.path()), |
context->allowed_bytes_growth()); |
@@ -1168,8 +1141,8 @@ TEST_F(ObfuscatedFileUtilTest, TestDirectoryOps) { |
context.reset(NewContext(NULL)); |
EXPECT_TRUE(ofu()->IsDirectoryEmpty(context.get(), url)); |
- EXPECT_EQ(base::PLATFORM_FILE_ERROR_NOT_FOUND, ofu()->GetFileInfo( |
- context.get(), url, &file_info, &local_path)); |
+ EXPECT_EQ(base::File::FILE_ERROR_NOT_FOUND, |
+ ofu()->GetFileInfo(context.get(), url, &file_info, &local_path)); |
// Verify that file creation requires sufficient quota for the path. |
exclusive = true; |
@@ -1177,15 +1150,15 @@ TEST_F(ObfuscatedFileUtilTest, TestDirectoryOps) { |
context.reset(NewContext(NULL)); |
context->set_allowed_bytes_growth( |
ObfuscatedFileUtil::ComputeFilePathCost(url.path()) - 1); |
- EXPECT_EQ(base::PLATFORM_FILE_ERROR_NO_SPACE, ofu()->CreateDirectory( |
- context.get(), url, exclusive, recursive)); |
+ EXPECT_EQ(base::File::FILE_ERROR_NO_SPACE, |
+ ofu()->CreateDirectory(context.get(), url, exclusive, recursive)); |
EXPECT_TRUE(change_observer()->HasNoChange()); |
context.reset(NewContext(NULL)); |
context->set_allowed_bytes_growth( |
ObfuscatedFileUtil::ComputeFilePathCost(url.path())); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, ofu()->CreateDirectory( |
- context.get(), url, exclusive, recursive)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->CreateDirectory(context.get(), url, exclusive, recursive)); |
EXPECT_EQ(1, change_observer()->get_and_reset_create_directory_count()); |
EXPECT_TRUE(DirectoryExists(url)); |
@@ -1194,16 +1167,16 @@ TEST_F(ObfuscatedFileUtilTest, TestDirectoryOps) { |
exclusive = true; |
recursive = false; |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_ERROR_EXISTS, ofu()->CreateDirectory( |
- context.get(), url, exclusive, recursive)); |
+ EXPECT_EQ(base::File::FILE_ERROR_EXISTS, |
+ ofu()->CreateDirectory(context.get(), url, exclusive, recursive)); |
EXPECT_TRUE(change_observer()->HasNoChange()); |
exclusive = true; |
recursive = false; |
url = CreateURLFromUTF8("foo"); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_ERROR_EXISTS, ofu()->CreateDirectory( |
- context.get(), url, exclusive, recursive)); |
+ EXPECT_EQ(base::File::FILE_ERROR_EXISTS, |
+ ofu()->CreateDirectory(context.get(), url, exclusive, recursive)); |
EXPECT_TRUE(change_observer()->HasNoChange()); |
url = CreateURLFromUTF8("blah"); |
@@ -1214,8 +1187,8 @@ TEST_F(ObfuscatedFileUtilTest, TestDirectoryOps) { |
exclusive = true; |
recursive = false; |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, ofu()->CreateDirectory( |
- context.get(), url, exclusive, recursive)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->CreateDirectory(context.get(), url, exclusive, recursive)); |
EXPECT_EQ(1, change_observer()->get_and_reset_create_directory_count()); |
EXPECT_TRUE(DirectoryExists(url)); |
@@ -1224,8 +1197,8 @@ TEST_F(ObfuscatedFileUtilTest, TestDirectoryOps) { |
exclusive = true; |
recursive = false; |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_ERROR_EXISTS, ofu()->CreateDirectory( |
- context.get(), url, exclusive, recursive)); |
+ EXPECT_EQ(base::File::FILE_ERROR_EXISTS, |
+ ofu()->CreateDirectory(context.get(), url, exclusive, recursive)); |
EXPECT_TRUE(change_observer()->HasNoChange()); |
} |
@@ -1234,8 +1207,8 @@ TEST_F(ObfuscatedFileUtilTest, TestReadDirectory) { |
bool exclusive = true; |
bool recursive = true; |
FileSystemURL url = CreateURLFromUTF8("directory/to/use"); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, ofu()->CreateDirectory( |
- context.get(), url, exclusive, recursive)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->CreateDirectory(context.get(), url, exclusive, recursive)); |
TestReadDirectoryHelper(url); |
} |
@@ -1252,14 +1225,14 @@ TEST_F(ObfuscatedFileUtilTest, TestReadDirectoryOnFile) { |
scoped_ptr<FileSystemOperationContext> context(NewContext(NULL)); |
bool created = false; |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
- ofu()->EnsureFileExists(context.get(), url, &created)); |
+ ASSERT_EQ(base::File::FILE_OK, |
+ ofu()->EnsureFileExists(context.get(), url, &created)); |
ASSERT_TRUE(created); |
std::vector<fileapi::DirectoryEntry> entries; |
- EXPECT_EQ(base::PLATFORM_FILE_ERROR_NOT_A_DIRECTORY, |
- AsyncFileTestHelper::ReadDirectory( |
- file_system_context(), url, &entries)); |
+ EXPECT_EQ(base::File::FILE_ERROR_NOT_A_DIRECTORY, |
+ AsyncFileTestHelper::ReadDirectory(file_system_context(), url, |
+ &entries)); |
EXPECT_TRUE(ofu()->IsDirectoryEmpty(context.get(), url)); |
} |
@@ -1272,14 +1245,14 @@ TEST_F(ObfuscatedFileUtilTest, TestTouch) { |
base::Time last_modified_time = base::Time::Now(); |
// It's not there yet. |
- EXPECT_EQ(base::PLATFORM_FILE_ERROR_NOT_FOUND, |
- ofu()->Touch( |
- context.get(), url, last_access_time, last_modified_time)); |
+ EXPECT_EQ(base::File::FILE_ERROR_NOT_FOUND, |
+ ofu()->Touch(context.get(), url, last_access_time, |
+ last_modified_time)); |
// OK, now create it. |
context.reset(NewContext(NULL)); |
bool created = false; |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->EnsureFileExists(context.get(), url, &created)); |
ASSERT_TRUE(created); |
TestTouchHelper(url, true); |
@@ -1289,8 +1262,8 @@ TEST_F(ObfuscatedFileUtilTest, TestTouch) { |
bool exclusive = true; |
bool recursive = false; |
url = CreateURLFromUTF8("dir"); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, ofu()->CreateDirectory(context.get(), |
- url, exclusive, recursive)); |
+ ASSERT_EQ(base::File::FILE_OK, |
+ ofu()->CreateDirectory(context.get(), url, exclusive, recursive)); |
TestTouchHelper(url, false); |
} |
@@ -1301,12 +1274,12 @@ TEST_F(ObfuscatedFileUtilTest, TestPathQuotas) { |
url = CreateURLFromUTF8("file name"); |
context->set_allowed_bytes_growth(5); |
bool created = false; |
- EXPECT_EQ(base::PLATFORM_FILE_ERROR_NO_SPACE, |
- ofu()->EnsureFileExists(context.get(), url, &created)); |
+ EXPECT_EQ(base::File::FILE_ERROR_NO_SPACE, |
+ ofu()->EnsureFileExists(context.get(), url, &created)); |
EXPECT_FALSE(created); |
context->set_allowed_bytes_growth(1024); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
- ofu()->EnsureFileExists(context.get(), url, &created)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->EnsureFileExists(context.get(), url, &created)); |
EXPECT_TRUE(created); |
int64 path_cost = ObfuscatedFileUtil::ComputeFilePathCost(url.path()); |
EXPECT_EQ(1024 - path_cost, context->allowed_bytes_growth()); |
@@ -1326,8 +1299,8 @@ TEST_F(ObfuscatedFileUtilTest, TestPathQuotas) { |
} |
context.reset(NewContext(NULL)); |
context->set_allowed_bytes_growth(1024); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, ofu()->CreateDirectory( |
- context.get(), url, exclusive, recursive)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->CreateDirectory(context.get(), url, exclusive, recursive)); |
EXPECT_EQ(1024 - path_cost, context->allowed_bytes_growth()); |
} |
@@ -1337,39 +1310,39 @@ TEST_F(ObfuscatedFileUtilTest, TestCopyOrMoveFileNotFound) { |
scoped_ptr<FileSystemOperationContext> context(NewContext(NULL)); |
bool is_copy_not_move = false; |
- EXPECT_EQ(base::PLATFORM_FILE_ERROR_NOT_FOUND, |
- ofu()->CopyOrMoveFile(context.get(), source_url, dest_url, |
- FileSystemOperation::OPTION_NONE, |
- is_copy_not_move)); |
+ EXPECT_EQ(base::File::FILE_ERROR_NOT_FOUND, |
+ ofu()->CopyOrMoveFile(context.get(), source_url, dest_url, |
+ FileSystemOperation::OPTION_NONE, |
+ is_copy_not_move)); |
EXPECT_TRUE(change_observer()->HasNoChange()); |
context.reset(NewContext(NULL)); |
is_copy_not_move = true; |
- EXPECT_EQ(base::PLATFORM_FILE_ERROR_NOT_FOUND, |
- ofu()->CopyOrMoveFile(context.get(), source_url, dest_url, |
- FileSystemOperation::OPTION_NONE, |
- is_copy_not_move)); |
+ EXPECT_EQ(base::File::FILE_ERROR_NOT_FOUND, |
+ ofu()->CopyOrMoveFile(context.get(), source_url, dest_url, |
+ FileSystemOperation::OPTION_NONE, |
+ is_copy_not_move)); |
EXPECT_TRUE(change_observer()->HasNoChange()); |
source_url = CreateURLFromUTF8("dir/dir/file"); |
bool exclusive = true; |
bool recursive = true; |
context.reset(NewContext(NULL)); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, ofu()->CreateDirectory( |
- context.get(), |
- FileSystemURLDirName(source_url), |
- exclusive, recursive)); |
+ ASSERT_EQ(base::File::FILE_OK, |
+ ofu()->CreateDirectory(context.get(), |
+ FileSystemURLDirName(source_url), |
+ exclusive, recursive)); |
EXPECT_EQ(2, change_observer()->get_and_reset_create_directory_count()); |
is_copy_not_move = false; |
- EXPECT_EQ(base::PLATFORM_FILE_ERROR_NOT_FOUND, |
- ofu()->CopyOrMoveFile(context.get(), source_url, dest_url, |
- FileSystemOperation::OPTION_NONE, |
- is_copy_not_move)); |
+ EXPECT_EQ(base::File::FILE_ERROR_NOT_FOUND, |
+ ofu()->CopyOrMoveFile(context.get(), source_url, dest_url, |
+ FileSystemOperation::OPTION_NONE, |
+ is_copy_not_move)); |
EXPECT_TRUE(change_observer()->HasNoChange()); |
context.reset(NewContext(NULL)); |
is_copy_not_move = true; |
- EXPECT_EQ(base::PLATFORM_FILE_ERROR_NOT_FOUND, |
- ofu()->CopyOrMoveFile(context.get(), source_url, dest_url, |
- FileSystemOperation::OPTION_NONE, |
- is_copy_not_move)); |
+ EXPECT_EQ(base::File::FILE_ERROR_NOT_FOUND, |
+ ofu()->CopyOrMoveFile(context.get(), source_url, dest_url, |
+ FileSystemOperation::OPTION_NONE, |
+ is_copy_not_move)); |
EXPECT_TRUE(change_observer()->HasNoChange()); |
} |
@@ -1396,64 +1369,68 @@ TEST_F(ObfuscatedFileUtilTest, TestCopyOrMoveFileSuccess) { |
FileSystemURL dest_url = CreateURLFromUTF8(test_case.dest_path); |
context.reset(NewContext(NULL)); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, ofu()->CreateDirectory( |
- context.get(), |
- FileSystemURLDirName(source_url), |
- exclusive, recursive)); |
+ ASSERT_EQ(base::File::FILE_OK, |
+ ofu()->CreateDirectory(context.get(), |
+ FileSystemURLDirName(source_url), |
+ exclusive, recursive)); |
context.reset(NewContext(NULL)); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, ofu()->CreateDirectory( |
- context.get(), |
- FileSystemURLDirName(dest_url), |
- exclusive, recursive)); |
+ ASSERT_EQ(base::File::FILE_OK, |
+ ofu()->CreateDirectory(context.get(), |
+ FileSystemURLDirName(dest_url), |
+ exclusive, recursive)); |
bool created = false; |
context.reset(NewContext(NULL)); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->EnsureFileExists(context.get(), source_url, &created)); |
ASSERT_TRUE(created); |
context.reset(NewContext(NULL)); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->Truncate(context.get(), source_url, kSourceLength)); |
if (test_case.cause_overwrite) { |
context.reset(NewContext(NULL)); |
created = false; |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->EnsureFileExists(context.get(), dest_url, &created)); |
ASSERT_TRUE(created); |
context.reset(NewContext(NULL)); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->Truncate(context.get(), dest_url, kDestLength)); |
} |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, ofu()->CopyOrMoveFile( |
- context.get(), source_url, dest_url, FileSystemOperation::OPTION_NONE, |
- test_case.is_copy_not_move)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->CopyOrMoveFile(context.get(), source_url, dest_url, |
+ FileSystemOperation::OPTION_NONE, |
+ test_case.is_copy_not_move)); |
if (test_case.is_copy_not_move) { |
- base::PlatformFileInfo file_info; |
+ base::File::Info file_info; |
base::FilePath local_path; |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, ofu()->GetFileInfo( |
- context.get(), source_url, &file_info, &local_path)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->GetFileInfo(context.get(), source_url, &file_info, |
+ &local_path)); |
EXPECT_EQ(kSourceLength, file_info.size); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->DeleteFile(context.get(), source_url)); |
} else { |
- base::PlatformFileInfo file_info; |
+ base::File::Info file_info; |
base::FilePath local_path; |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_ERROR_NOT_FOUND, ofu()->GetFileInfo( |
- context.get(), source_url, &file_info, &local_path)); |
+ EXPECT_EQ(base::File::FILE_ERROR_NOT_FOUND, |
+ ofu()->GetFileInfo(context.get(), source_url, &file_info, |
+ &local_path)); |
} |
- base::PlatformFileInfo file_info; |
+ base::File::Info file_info; |
base::FilePath local_path; |
- EXPECT_EQ(base::PLATFORM_FILE_OK, ofu()->GetFileInfo( |
- context.get(), dest_url, &file_info, &local_path)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->GetFileInfo(context.get(), dest_url, &file_info, |
+ &local_path)); |
EXPECT_EQ(kSourceLength, file_info.size); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->DeleteFile(context.get(), dest_url)); |
} |
} |
@@ -1463,32 +1440,29 @@ TEST_F(ObfuscatedFileUtilTest, TestCopyPathQuotas) { |
FileSystemURL dest_url = CreateURLFromUTF8("destination path"); |
scoped_ptr<FileSystemOperationContext> context(NewContext(NULL)); |
bool created = false; |
- ASSERT_EQ(base::PLATFORM_FILE_OK, ofu()->EnsureFileExists( |
- context.get(), src_url, &created)); |
+ ASSERT_EQ(base::File::FILE_OK, |
+ ofu()->EnsureFileExists(context.get(), src_url, &created)); |
bool is_copy = true; |
// Copy, no overwrite. |
context->set_allowed_bytes_growth( |
ObfuscatedFileUtil::ComputeFilePathCost(dest_url.path()) - 1); |
- EXPECT_EQ(base::PLATFORM_FILE_ERROR_NO_SPACE, |
- ofu()->CopyOrMoveFile( |
- context.get(), |
- src_url, dest_url, FileSystemOperation::OPTION_NONE, is_copy)); |
+ EXPECT_EQ(base::File::FILE_ERROR_NO_SPACE, |
+ ofu()->CopyOrMoveFile(context.get(), src_url, dest_url, |
+ FileSystemOperation::OPTION_NONE, is_copy)); |
context.reset(NewContext(NULL)); |
context->set_allowed_bytes_growth( |
ObfuscatedFileUtil::ComputeFilePathCost(dest_url.path())); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
- ofu()->CopyOrMoveFile( |
- context.get(), |
- src_url, dest_url, FileSystemOperation::OPTION_NONE, is_copy)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->CopyOrMoveFile(context.get(), src_url, dest_url, |
+ FileSystemOperation::OPTION_NONE, is_copy)); |
// Copy, with overwrite. |
context.reset(NewContext(NULL)); |
context->set_allowed_bytes_growth(0); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
- ofu()->CopyOrMoveFile( |
- context.get(), |
- src_url, dest_url, FileSystemOperation::OPTION_NONE, is_copy)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->CopyOrMoveFile(context.get(), src_url, dest_url, |
+ FileSystemOperation::OPTION_NONE, is_copy)); |
} |
TEST_F(ObfuscatedFileUtilTest, TestMovePathQuotasWithRename) { |
@@ -1496,8 +1470,8 @@ TEST_F(ObfuscatedFileUtilTest, TestMovePathQuotasWithRename) { |
FileSystemURL dest_url = CreateURLFromUTF8("destination path"); |
scoped_ptr<FileSystemOperationContext> context(NewContext(NULL)); |
bool created = false; |
- ASSERT_EQ(base::PLATFORM_FILE_OK, ofu()->EnsureFileExists( |
- context.get(), src_url, &created)); |
+ ASSERT_EQ(base::File::FILE_OK, |
+ ofu()->EnsureFileExists(context.get(), src_url, &created)); |
bool is_copy = false; |
// Move, rename, no overwrite. |
@@ -1505,45 +1479,43 @@ TEST_F(ObfuscatedFileUtilTest, TestMovePathQuotasWithRename) { |
context->set_allowed_bytes_growth( |
ObfuscatedFileUtil::ComputeFilePathCost(dest_url.path()) - |
ObfuscatedFileUtil::ComputeFilePathCost(src_url.path()) - 1); |
- EXPECT_EQ(base::PLATFORM_FILE_ERROR_NO_SPACE, |
- ofu()->CopyOrMoveFile( |
- context.get(), |
- src_url, dest_url, FileSystemOperation::OPTION_NONE, is_copy)); |
+ EXPECT_EQ(base::File::FILE_ERROR_NO_SPACE, |
+ ofu()->CopyOrMoveFile(context.get(), src_url, dest_url, |
+ FileSystemOperation::OPTION_NONE, is_copy)); |
context.reset(NewContext(NULL)); |
context->set_allowed_bytes_growth( |
ObfuscatedFileUtil::ComputeFilePathCost(dest_url.path()) - |
ObfuscatedFileUtil::ComputeFilePathCost(src_url.path())); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
- ofu()->CopyOrMoveFile( |
- context.get(), |
- src_url, dest_url, FileSystemOperation::OPTION_NONE, is_copy)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->CopyOrMoveFile(context.get(), src_url, dest_url, |
+ FileSystemOperation::OPTION_NONE, is_copy)); |
context.reset(NewContext(NULL)); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, ofu()->EnsureFileExists( |
- context.get(), src_url, &created)); |
+ ASSERT_EQ(base::File::FILE_OK, |
+ ofu()->EnsureFileExists(context.get(), src_url, &created)); |
// Move, rename, with overwrite. |
context.reset(NewContext(NULL)); |
context->set_allowed_bytes_growth(0); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
- ofu()->CopyOrMoveFile( |
- context.get(), |
- src_url, dest_url, FileSystemOperation::OPTION_NONE, is_copy)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->CopyOrMoveFile(context.get(), src_url, dest_url, |
+ FileSystemOperation::OPTION_NONE, is_copy)); |
} |
TEST_F(ObfuscatedFileUtilTest, TestMovePathQuotasWithoutRename) { |
FileSystemURL src_url = CreateURLFromUTF8("src path"); |
scoped_ptr<FileSystemOperationContext> context(NewContext(NULL)); |
bool created = false; |
- ASSERT_EQ(base::PLATFORM_FILE_OK, ofu()->EnsureFileExists( |
- context.get(), src_url, &created)); |
+ ASSERT_EQ(base::File::FILE_OK, |
+ ofu()->EnsureFileExists(context.get(), src_url, &created)); |
bool exclusive = true; |
bool recursive = false; |
FileSystemURL dir_url = CreateURLFromUTF8("directory path"); |
context.reset(NewContext(NULL)); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, ofu()->CreateDirectory( |
- context.get(), dir_url, exclusive, recursive)); |
+ ASSERT_EQ(base::File::FILE_OK, |
+ ofu()->CreateDirectory(context.get(), dir_url, exclusive, |
+ recursive)); |
FileSystemURL dest_url = FileSystemURLAppend( |
dir_url, src_url.path().value()); |
@@ -1553,22 +1525,20 @@ TEST_F(ObfuscatedFileUtilTest, TestMovePathQuotasWithoutRename) { |
// Move, no rename, no overwrite. |
context.reset(NewContext(NULL)); |
context->set_allowed_bytes_growth(allowed_bytes_growth); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
- ofu()->CopyOrMoveFile( |
- context.get(), |
- src_url, dest_url, FileSystemOperation::OPTION_NONE, is_copy)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->CopyOrMoveFile(context.get(), src_url, dest_url, |
+ FileSystemOperation::OPTION_NONE, is_copy)); |
EXPECT_EQ(allowed_bytes_growth, context->allowed_bytes_growth()); |
// Move, no rename, with overwrite. |
context.reset(NewContext(NULL)); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, ofu()->EnsureFileExists( |
- context.get(), src_url, &created)); |
+ ASSERT_EQ(base::File::FILE_OK, |
+ ofu()->EnsureFileExists(context.get(), src_url, &created)); |
context.reset(NewContext(NULL)); |
context->set_allowed_bytes_growth(allowed_bytes_growth); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
- ofu()->CopyOrMoveFile( |
- context.get(), |
- src_url, dest_url, FileSystemOperation::OPTION_NONE, is_copy)); |
+ EXPECT_EQ(base::File::FILE_OK, |
+ ofu()->CopyOrMoveFile(context.get(), src_url, dest_url, |
+ FileSystemOperation::OPTION_NONE, is_copy)); |
EXPECT_EQ( |
allowed_bytes_growth + |
ObfuscatedFileUtil::ComputeFilePathCost(src_url.path()), |
@@ -1585,8 +1555,9 @@ TEST_F(ObfuscatedFileUtilTest, TestEnumerator) { |
FileSystemURL src_url = CreateURLFromUTF8("source dir"); |
bool exclusive = true; |
bool recursive = false; |
- ASSERT_EQ(base::PLATFORM_FILE_OK, ofu()->CreateDirectory( |
- context.get(), src_url, exclusive, recursive)); |
+ ASSERT_EQ(base::File::FILE_OK, |
+ ofu()->CreateDirectory(context.get(), src_url, exclusive, |
+ recursive)); |
std::set<base::FilePath::StringType> files; |
std::set<base::FilePath::StringType> directories; |
@@ -1595,7 +1566,7 @@ TEST_F(ObfuscatedFileUtilTest, TestEnumerator) { |
FileSystemURL dest_url = CreateURLFromUTF8("destination dir"); |
EXPECT_FALSE(DirectoryExists(dest_url)); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
AsyncFileTestHelper::Copy( |
file_system_context(), src_url, dest_url)); |
@@ -1603,7 +1574,7 @@ TEST_F(ObfuscatedFileUtilTest, TestEnumerator) { |
EXPECT_TRUE(DirectoryExists(src_url)); |
EXPECT_TRUE(DirectoryExists(dest_url)); |
recursive = true; |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
AsyncFileTestHelper::Remove( |
file_system_context(), dest_url, recursive)); |
EXPECT_FALSE(DirectoryExists(dest_url)); |
@@ -1638,7 +1609,7 @@ TEST_F(ObfuscatedFileUtilTest, TestOriginEnumerator) { |
scoped_ptr<FileSystemOperationContext> context( |
NewContext(file_system.get())); |
bool created = false; |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->EnsureFileExists( |
context.get(), |
file_system->CreateURLFromUTF8("file"), |
@@ -1651,7 +1622,7 @@ TEST_F(ObfuscatedFileUtilTest, TestOriginEnumerator) { |
scoped_ptr<FileSystemOperationContext> context( |
NewContext(file_system.get())); |
bool created = false; |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->EnsureFileExists( |
context.get(), |
file_system->CreateURLFromUTF8("file"), |
@@ -1712,19 +1683,18 @@ TEST_F(ObfuscatedFileUtilTest, TestRevokeUsageCache) { |
if (test_case.is_directory) { |
bool exclusive = true; |
bool recursive = false; |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
- ofu()->CreateDirectory(context.get(), CreateURL(file_path), |
- exclusive, recursive)); |
+ ASSERT_EQ(base::File::FILE_OK, |
+ ofu()->CreateDirectory(context.get(), CreateURL(file_path), |
+ exclusive, recursive)); |
} else { |
bool created = false; |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
- ofu()->EnsureFileExists(context.get(), CreateURL(file_path), |
- &created)); |
+ ASSERT_EQ(base::File::FILE_OK, |
+ ofu()->EnsureFileExists(context.get(), CreateURL(file_path), |
+ &created)); |
ASSERT_TRUE(created); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
- ofu()->Truncate(context.get(), |
- CreateURL(file_path), |
- test_case.data_file_size)); |
+ ASSERT_EQ(base::File::FILE_OK, |
+ ofu()->Truncate(context.get(), CreateURL(file_path), |
+ test_case.data_file_size)); |
expected_quota += test_case.data_file_size; |
} |
} |
@@ -1751,20 +1721,20 @@ TEST_F(ObfuscatedFileUtilTest, TestInconsistency) { |
scoped_ptr<FileSystemOperationContext> context; |
base::PlatformFile file; |
- base::PlatformFileInfo file_info; |
+ base::File::Info file_info; |
base::FilePath data_path; |
bool created = false; |
// Create a non-empty file. |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->EnsureFileExists(context.get(), kPath1, &created)); |
EXPECT_TRUE(created); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->Truncate(context.get(), kPath1, 10)); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->GetFileInfo( |
context.get(), kPath1, &file_info, &data_path)); |
EXPECT_EQ(10, file_info.size); |
@@ -1775,18 +1745,18 @@ TEST_F(ObfuscatedFileUtilTest, TestInconsistency) { |
// Try to get file info of broken file. |
EXPECT_FALSE(PathExists(kPath1)); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->EnsureFileExists(context.get(), kPath1, &created)); |
EXPECT_TRUE(created); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->GetFileInfo( |
context.get(), kPath1, &file_info, &data_path)); |
EXPECT_EQ(0, file_info.size); |
// Make another broken file to |kPath2|. |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->EnsureFileExists(context.get(), kPath2, &created)); |
EXPECT_TRUE(created); |
@@ -1795,31 +1765,32 @@ TEST_F(ObfuscatedFileUtilTest, TestInconsistency) { |
// Repair broken |kPath1|. |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_ERROR_NOT_FOUND, |
+ EXPECT_EQ(base::File::FILE_ERROR_NOT_FOUND, |
ofu()->Touch(context.get(), kPath1, base::Time::Now(), |
base::Time::Now())); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->EnsureFileExists(context.get(), kPath1, &created)); |
EXPECT_TRUE(created); |
// Copy from sound |kPath1| to broken |kPath2|. |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->CopyOrMoveFile(context.get(), kPath1, kPath2, |
FileSystemOperation::OPTION_NONE, |
true /* copy */)); |
ofu()->DestroyDirectoryDatabase(origin(), type_string()); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->CreateOrOpen( |
context.get(), kPath1, |
base::PLATFORM_FILE_READ | base::PLATFORM_FILE_CREATE, |
&file, &created)); |
EXPECT_TRUE(created); |
- EXPECT_TRUE(base::GetPlatformFileInfo(file, &file_info)); |
+ |
+ base::File base_file(file); |
+ EXPECT_TRUE(base_file.GetInfo(&file_info)); |
EXPECT_EQ(0, file_info.size); |
- EXPECT_TRUE(base::ClosePlatformFile(file)); |
} |
TEST_F(ObfuscatedFileUtilTest, TestIncompleteDirectoryReading) { |
@@ -1834,24 +1805,24 @@ TEST_F(ObfuscatedFileUtilTest, TestIncompleteDirectoryReading) { |
for (size_t i = 0; i < ARRAYSIZE_UNSAFE(kPath); ++i) { |
bool created = false; |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->EnsureFileExists(context.get(), kPath[i], &created)); |
EXPECT_TRUE(created); |
} |
std::vector<fileapi::DirectoryEntry> entries; |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
AsyncFileTestHelper::ReadDirectory( |
file_system_context(), empty_path, &entries)); |
EXPECT_EQ(3u, entries.size()); |
base::FilePath local_path; |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->GetLocalFilePath(context.get(), kPath[0], &local_path)); |
EXPECT_TRUE(base::DeleteFile(local_path, false)); |
entries.clear(); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
AsyncFileTestHelper::ReadDirectory( |
file_system_context(), empty_path, &entries)); |
EXPECT_EQ(ARRAYSIZE_UNSAFE(kPath) - 1, entries.size()); |
@@ -1862,7 +1833,7 @@ TEST_F(ObfuscatedFileUtilTest, TestDirectoryTimestampForCreation) { |
const FileSystemURL dir_url = CreateURLFromUTF8("foo_dir"); |
// Create working directory. |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->CreateDirectory(context.get(), dir_url, false, false)); |
// EnsureFileExists, create case. |
@@ -1871,7 +1842,7 @@ TEST_F(ObfuscatedFileUtilTest, TestDirectoryTimestampForCreation) { |
bool created = false; |
ClearTimestamp(dir_url); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->EnsureFileExists(context.get(), url, &created)); |
EXPECT_TRUE(created); |
EXPECT_NE(base::Time(), GetModifiedTime(dir_url)); |
@@ -1880,7 +1851,7 @@ TEST_F(ObfuscatedFileUtilTest, TestDirectoryTimestampForCreation) { |
created = true; |
ClearTimestamp(dir_url); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->EnsureFileExists(context.get(), url, &created)); |
EXPECT_FALSE(created); |
EXPECT_EQ(base::Time(), GetModifiedTime(dir_url)); |
@@ -1888,12 +1859,12 @@ TEST_F(ObfuscatedFileUtilTest, TestDirectoryTimestampForCreation) { |
// fail case. |
url = FileSystemURLAppendUTF8(dir_url, "EnsureFileExists_dir"); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->CreateDirectory(context.get(), url, false, false)); |
ClearTimestamp(dir_url); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_ERROR_NOT_A_FILE, |
+ EXPECT_EQ(base::File::FILE_ERROR_NOT_A_FILE, |
ofu()->EnsureFileExists(context.get(), url, &created)); |
EXPECT_EQ(base::Time(), GetModifiedTime(dir_url)); |
@@ -1903,7 +1874,7 @@ TEST_F(ObfuscatedFileUtilTest, TestDirectoryTimestampForCreation) { |
created = false; |
ClearTimestamp(dir_url); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->CreateOrOpen( |
context.get(), url, |
base::PLATFORM_FILE_CREATE | base::PLATFORM_FILE_WRITE, |
@@ -1918,7 +1889,7 @@ TEST_F(ObfuscatedFileUtilTest, TestDirectoryTimestampForCreation) { |
created = true; |
ClearTimestamp(dir_url); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->CreateOrOpen( |
context.get(), url, |
base::PLATFORM_FILE_OPEN | base::PLATFORM_FILE_WRITE, |
@@ -1932,7 +1903,7 @@ TEST_F(ObfuscatedFileUtilTest, TestDirectoryTimestampForCreation) { |
file_handle = base::kInvalidPlatformFileValue; |
ClearTimestamp(dir_url); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_ERROR_EXISTS, |
+ EXPECT_EQ(base::File::FILE_ERROR_EXISTS, |
ofu()->CreateOrOpen( |
context.get(), url, |
base::PLATFORM_FILE_CREATE | base::PLATFORM_FILE_WRITE, |
@@ -1946,7 +1917,7 @@ TEST_F(ObfuscatedFileUtilTest, TestDirectoryTimestampForCreation) { |
FileSystemURL subdir_url(FileSystemURLAppendUTF8(url, "subdir")); |
ClearTimestamp(dir_url); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->CreateDirectory(context.get(), subdir_url, |
true /* exclusive */, true /* recursive */)); |
EXPECT_NE(base::Time(), GetModifiedTime(dir_url)); |
@@ -1957,7 +1928,7 @@ TEST_F(ObfuscatedFileUtilTest, TestDirectoryTimestampForCreation) { |
ClearTimestamp(dir_url); |
ClearTimestamp(url); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->CreateDirectory(context.get(), subdir_url, |
true /* exclusive */, true /* recursive */)); |
EXPECT_EQ(base::Time(), GetModifiedTime(dir_url)); |
@@ -1967,7 +1938,7 @@ TEST_F(ObfuscatedFileUtilTest, TestDirectoryTimestampForCreation) { |
url = FileSystemURLAppendUTF8(dir_url, "CreateDirectory_dir"); |
ClearTimestamp(dir_url); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_ERROR_EXISTS, |
+ EXPECT_EQ(base::File::FILE_ERROR_EXISTS, |
ofu()->CreateDirectory(context.get(), url, |
true /* exclusive */, true /* recursive */)); |
EXPECT_EQ(base::Time(), GetModifiedTime(dir_url)); |
@@ -1977,17 +1948,17 @@ TEST_F(ObfuscatedFileUtilTest, TestDirectoryTimestampForCreation) { |
FileSystemURL src_path = FileSystemURLAppendUTF8( |
dir_url, "CopyInForeignFile_src_file"); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->EnsureFileExists(context.get(), src_path, &created)); |
EXPECT_TRUE(created); |
base::FilePath src_local_path; |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->GetLocalFilePath(context.get(), src_path, &src_local_path)); |
ClearTimestamp(dir_url); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->CopyInForeignFile(context.get(), |
src_local_path, |
url)); |
@@ -1999,7 +1970,7 @@ TEST_F(ObfuscatedFileUtilTest, TestDirectoryTimestampForDeletion) { |
const FileSystemURL dir_url = CreateURLFromUTF8("foo_dir"); |
// Create working directory. |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->CreateDirectory(context.get(), dir_url, false, false)); |
// DeleteFile, delete case. |
@@ -2007,20 +1978,20 @@ TEST_F(ObfuscatedFileUtilTest, TestDirectoryTimestampForDeletion) { |
dir_url, "DeleteFile_file"); |
bool created = false; |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->EnsureFileExists(context.get(), url, &created)); |
EXPECT_TRUE(created); |
ClearTimestamp(dir_url); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->DeleteFile(context.get(), url)); |
EXPECT_NE(base::Time(), GetModifiedTime(dir_url)); |
// fail case. |
ClearTimestamp(dir_url); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_ERROR_NOT_FOUND, |
+ EXPECT_EQ(base::File::FILE_ERROR_NOT_FOUND, |
ofu()->DeleteFile(context.get(), url)); |
EXPECT_EQ(base::Time(), GetModifiedTime(dir_url)); |
@@ -2028,28 +1999,28 @@ TEST_F(ObfuscatedFileUtilTest, TestDirectoryTimestampForDeletion) { |
url = FileSystemURLAppendUTF8(dir_url, "DeleteDirectory_dir"); |
FileSystemURL file_path(FileSystemURLAppendUTF8(url, "pakeratta")); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->CreateDirectory(context.get(), url, true, true)); |
created = false; |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->EnsureFileExists(context.get(), file_path, &created)); |
EXPECT_TRUE(created); |
ClearTimestamp(dir_url); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_ERROR_NOT_EMPTY, |
+ EXPECT_EQ(base::File::FILE_ERROR_NOT_EMPTY, |
ofu()->DeleteDirectory(context.get(), url)); |
EXPECT_EQ(base::Time(), GetModifiedTime(dir_url)); |
// delete case. |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->DeleteFile(context.get(), file_path)); |
ClearTimestamp(dir_url); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, ofu()->DeleteDirectory(context.get(), url)); |
+ EXPECT_EQ(base::File::FILE_OK, ofu()->DeleteDirectory(context.get(), url)); |
EXPECT_NE(base::Time(), GetModifiedTime(dir_url)); |
} |
@@ -2070,27 +2041,27 @@ TEST_F(ObfuscatedFileUtilTest, TestFileEnumeratorTimestamp) { |
FileSystemURL url2 = FileSystemURLAppendUTF8(dir, "baz"); |
scoped_ptr<FileSystemOperationContext> context(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->CreateDirectory(context.get(), dir, false, false)); |
bool created = false; |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->EnsureFileExists(context.get(), url1, &created)); |
EXPECT_TRUE(created); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->CreateDirectory(context.get(), url2, false, false)); |
base::FilePath file_path; |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->GetLocalFilePath(context.get(), url1, &file_path)); |
EXPECT_FALSE(file_path.empty()); |
context.reset(NewContext(NULL)); |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->Touch(context.get(), url1, |
base::Time::Now() + base::TimeDelta::FromHours(1), |
base::Time())); |
@@ -2103,9 +2074,9 @@ TEST_F(ObfuscatedFileUtilTest, TestFileEnumeratorTimestamp) { |
base::FilePath file_path_each; |
while (!(file_path_each = file_enum->Next()).empty()) { |
context.reset(NewContext(NULL)); |
- base::PlatformFileInfo file_info; |
+ base::File::Info file_info; |
base::FilePath file_path; |
- EXPECT_EQ(base::PLATFORM_FILE_OK, |
+ EXPECT_EQ(base::File::FILE_OK, |
ofu()->GetFileInfo(context.get(), |
FileSystemURL::CreateForTest( |
dir.origin(), |
@@ -2134,14 +2105,14 @@ TEST_F(ObfuscatedFileUtilTest, MAYBE_TestQuotaOnCopyFile) { |
bool created; |
int64 expected_total_file_size = 0; |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->EnsureFileExists( |
AllowUsageIncrease(PathCost(from_file))->context(), |
from_file, &created)); |
ASSERT_TRUE(created); |
ASSERT_EQ(expected_total_file_size, ComputeTotalFileSize()); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->EnsureFileExists( |
AllowUsageIncrease(PathCost(obstacle_file))->context(), |
obstacle_file, &created)); |
@@ -2150,7 +2121,7 @@ TEST_F(ObfuscatedFileUtilTest, MAYBE_TestQuotaOnCopyFile) { |
int64 from_file_size = 1020; |
expected_total_file_size += from_file_size; |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->Truncate( |
AllowUsageIncrease(from_file_size)->context(), |
from_file, from_file_size)); |
@@ -2158,7 +2129,7 @@ TEST_F(ObfuscatedFileUtilTest, MAYBE_TestQuotaOnCopyFile) { |
int64 obstacle_file_size = 1; |
expected_total_file_size += obstacle_file_size; |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->Truncate( |
AllowUsageIncrease(obstacle_file_size)->context(), |
obstacle_file, obstacle_file_size)); |
@@ -2166,7 +2137,7 @@ TEST_F(ObfuscatedFileUtilTest, MAYBE_TestQuotaOnCopyFile) { |
int64 to_file1_size = from_file_size; |
expected_total_file_size += to_file1_size; |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->CopyOrMoveFile( |
AllowUsageIncrease( |
PathCost(to_file1) + to_file1_size)->context(), |
@@ -2175,7 +2146,7 @@ TEST_F(ObfuscatedFileUtilTest, MAYBE_TestQuotaOnCopyFile) { |
true /* copy */)); |
ASSERT_EQ(expected_total_file_size, ComputeTotalFileSize()); |
- ASSERT_EQ(base::PLATFORM_FILE_ERROR_NO_SPACE, |
+ ASSERT_EQ(base::File::FILE_ERROR_NO_SPACE, |
ofu()->CopyOrMoveFile( |
DisallowUsageIncrease( |
PathCost(to_file2) + from_file_size)->context(), |
@@ -2186,7 +2157,7 @@ TEST_F(ObfuscatedFileUtilTest, MAYBE_TestQuotaOnCopyFile) { |
int64 old_obstacle_file_size = obstacle_file_size; |
obstacle_file_size = from_file_size; |
expected_total_file_size += obstacle_file_size - old_obstacle_file_size; |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->CopyOrMoveFile( |
AllowUsageIncrease( |
obstacle_file_size - old_obstacle_file_size)->context(), |
@@ -2198,7 +2169,7 @@ TEST_F(ObfuscatedFileUtilTest, MAYBE_TestQuotaOnCopyFile) { |
int64 old_from_file_size = from_file_size; |
from_file_size = old_from_file_size - 1; |
expected_total_file_size += from_file_size - old_from_file_size; |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->Truncate( |
AllowUsageIncrease( |
from_file_size - old_from_file_size)->context(), |
@@ -2214,7 +2185,7 @@ TEST_F(ObfuscatedFileUtilTest, MAYBE_TestQuotaOnCopyFile) { |
obstacle_file_size - old_obstacle_file_size); |
helper->context()->set_allowed_bytes_growth( |
helper->context()->allowed_bytes_growth() - 1); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->CopyOrMoveFile( |
helper->context(), |
from_file, obstacle_file, |
@@ -2231,7 +2202,7 @@ TEST_F(ObfuscatedFileUtilTest, TestQuotaOnMoveFile) { |
bool created; |
int64 expected_total_file_size = 0; |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->EnsureFileExists( |
AllowUsageIncrease(PathCost(from_file))->context(), |
from_file, &created)); |
@@ -2240,7 +2211,7 @@ TEST_F(ObfuscatedFileUtilTest, TestQuotaOnMoveFile) { |
int64 from_file_size = 1020; |
expected_total_file_size += from_file_size; |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->Truncate( |
AllowUsageIncrease(from_file_size)->context(), |
from_file, from_file_size)); |
@@ -2248,7 +2219,7 @@ TEST_F(ObfuscatedFileUtilTest, TestQuotaOnMoveFile) { |
int64 to_file_size ALLOW_UNUSED = from_file_size; |
from_file_size = 0; |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->CopyOrMoveFile( |
AllowUsageIncrease(-PathCost(from_file) + |
PathCost(to_file))->context(), |
@@ -2257,14 +2228,14 @@ TEST_F(ObfuscatedFileUtilTest, TestQuotaOnMoveFile) { |
false /* move */)); |
ASSERT_EQ(expected_total_file_size, ComputeTotalFileSize()); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->EnsureFileExists( |
AllowUsageIncrease(PathCost(from_file))->context(), |
from_file, &created)); |
ASSERT_TRUE(created); |
ASSERT_EQ(expected_total_file_size, ComputeTotalFileSize()); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->EnsureFileExists( |
AllowUsageIncrease(PathCost(obstacle_file))->context(), |
obstacle_file, &created)); |
@@ -2273,7 +2244,7 @@ TEST_F(ObfuscatedFileUtilTest, TestQuotaOnMoveFile) { |
from_file_size = 1020; |
expected_total_file_size += from_file_size; |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->Truncate( |
AllowUsageIncrease(from_file_size)->context(), |
from_file, from_file_size)); |
@@ -2281,7 +2252,7 @@ TEST_F(ObfuscatedFileUtilTest, TestQuotaOnMoveFile) { |
int64 obstacle_file_size = 1; |
expected_total_file_size += obstacle_file_size; |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->Truncate( |
AllowUsageIncrease(1)->context(), |
obstacle_file, obstacle_file_size)); |
@@ -2291,7 +2262,7 @@ TEST_F(ObfuscatedFileUtilTest, TestQuotaOnMoveFile) { |
obstacle_file_size = from_file_size; |
from_file_size = 0; |
expected_total_file_size -= old_obstacle_file_size; |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->CopyOrMoveFile( |
AllowUsageIncrease( |
-old_obstacle_file_size - PathCost(from_file))->context(), |
@@ -2300,7 +2271,7 @@ TEST_F(ObfuscatedFileUtilTest, TestQuotaOnMoveFile) { |
false /* move */)); |
ASSERT_EQ(expected_total_file_size, ComputeTotalFileSize()); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->EnsureFileExists( |
AllowUsageIncrease(PathCost(from_file))->context(), |
from_file, &created)); |
@@ -2309,7 +2280,7 @@ TEST_F(ObfuscatedFileUtilTest, TestQuotaOnMoveFile) { |
from_file_size = 10; |
expected_total_file_size += from_file_size; |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->Truncate( |
AllowUsageIncrease(from_file_size)->context(), |
from_file, from_file_size)); |
@@ -2322,7 +2293,7 @@ TEST_F(ObfuscatedFileUtilTest, TestQuotaOnMoveFile) { |
expected_total_file_size -= old_obstacle_file_size; |
scoped_ptr<FileSystemOperationContext> context = |
LimitedContext(-old_obstacle_file_size - PathCost(from_file) - 1); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->CopyOrMoveFile( |
context.get(), from_file, obstacle_file, |
FileSystemOperation::OPTION_NONE, |
@@ -2338,58 +2309,58 @@ TEST_F(ObfuscatedFileUtilTest, TestQuotaOnRemove) { |
FileSystemURL dfile2(CreateURLFromUTF8("dir/dfile2")); |
bool created; |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->EnsureFileExists( |
AllowUsageIncrease(PathCost(file))->context(), |
file, &created)); |
ASSERT_TRUE(created); |
ASSERT_EQ(0, ComputeTotalFileSize()); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->CreateDirectory( |
AllowUsageIncrease(PathCost(dir))->context(), |
dir, false, false)); |
ASSERT_EQ(0, ComputeTotalFileSize()); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->EnsureFileExists( |
AllowUsageIncrease(PathCost(dfile1))->context(), |
dfile1, &created)); |
ASSERT_TRUE(created); |
ASSERT_EQ(0, ComputeTotalFileSize()); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->EnsureFileExists( |
AllowUsageIncrease(PathCost(dfile2))->context(), |
dfile2, &created)); |
ASSERT_TRUE(created); |
ASSERT_EQ(0, ComputeTotalFileSize()); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->Truncate( |
AllowUsageIncrease(340)->context(), |
file, 340)); |
ASSERT_EQ(340, ComputeTotalFileSize()); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->Truncate( |
AllowUsageIncrease(1020)->context(), |
dfile1, 1020)); |
ASSERT_EQ(1360, ComputeTotalFileSize()); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->Truncate( |
AllowUsageIncrease(120)->context(), |
dfile2, 120)); |
ASSERT_EQ(1480, ComputeTotalFileSize()); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->DeleteFile( |
AllowUsageIncrease(-PathCost(file) - 340)->context(), |
file)); |
ASSERT_EQ(1140, ComputeTotalFileSize()); |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
AsyncFileTestHelper::Remove( |
file_system_context(), dir, true /* recursive */)); |
ASSERT_EQ(0, ComputeTotalFileSize()); |
@@ -2401,7 +2372,7 @@ TEST_F(ObfuscatedFileUtilTest, TestQuotaOnOpen) { |
bool created; |
// Creating a file. |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->EnsureFileExists( |
AllowUsageIncrease(PathCost(file))->context(), |
file, &created)); |
@@ -2409,7 +2380,7 @@ TEST_F(ObfuscatedFileUtilTest, TestQuotaOnOpen) { |
ASSERT_EQ(0, ComputeTotalFileSize()); |
// Opening it, which shouldn't change the usage. |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->CreateOrOpen( |
AllowUsageIncrease(0)->context(), file, |
base::PLATFORM_FILE_OPEN | base::PLATFORM_FILE_WRITE, |
@@ -2418,13 +2389,13 @@ TEST_F(ObfuscatedFileUtilTest, TestQuotaOnOpen) { |
EXPECT_TRUE(base::ClosePlatformFile(file_handle)); |
const int length = 33; |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->Truncate( |
AllowUsageIncrease(length)->context(), file, length)); |
ASSERT_EQ(length, ComputeTotalFileSize()); |
// Opening it with CREATE_ALWAYS flag, which should truncate the file size. |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->CreateOrOpen( |
AllowUsageIncrease(-length)->context(), file, |
base::PLATFORM_FILE_CREATE_ALWAYS | base::PLATFORM_FILE_WRITE, |
@@ -2433,13 +2404,13 @@ TEST_F(ObfuscatedFileUtilTest, TestQuotaOnOpen) { |
EXPECT_TRUE(base::ClosePlatformFile(file_handle)); |
// Extending the file again. |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->Truncate( |
AllowUsageIncrease(length)->context(), file, length)); |
ASSERT_EQ(length, ComputeTotalFileSize()); |
// Opening it with TRUNCATED flag, which should truncate the file size. |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->CreateOrOpen( |
AllowUsageIncrease(-length)->context(), file, |
base::PLATFORM_FILE_OPEN_TRUNCATED | base::PLATFORM_FILE_WRITE, |
@@ -2473,14 +2444,14 @@ TEST_F(ObfuscatedFileUtilTest, OpenPathInNonDirectory) { |
FileSystemURL path_in_file(CreateURLFromUTF8("file/file")); |
bool created; |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->EnsureFileExists(UnlimitedContext().get(), file, &created)); |
ASSERT_TRUE(created); |
created = false; |
base::PlatformFile file_handle = base::kInvalidPlatformFileValue; |
int file_flags = base::PLATFORM_FILE_CREATE | base::PLATFORM_FILE_WRITE; |
- ASSERT_EQ(base::PLATFORM_FILE_ERROR_NOT_A_DIRECTORY, |
+ ASSERT_EQ(base::File::FILE_ERROR_NOT_A_DIRECTORY, |
ofu()->CreateOrOpen(UnlimitedContext().get(), |
path_in_file, |
file_flags, |
@@ -2489,7 +2460,7 @@ TEST_F(ObfuscatedFileUtilTest, OpenPathInNonDirectory) { |
ASSERT_FALSE(created); |
ASSERT_EQ(base::kInvalidPlatformFileValue, file_handle); |
- ASSERT_EQ(base::PLATFORM_FILE_ERROR_NOT_A_DIRECTORY, |
+ ASSERT_EQ(base::File::FILE_ERROR_NOT_A_DIRECTORY, |
ofu()->CreateDirectory(UnlimitedContext().get(), |
path_in_file, |
false /* exclusive */, |
@@ -2503,16 +2474,16 @@ TEST_F(ObfuscatedFileUtilTest, CreateDirectory_NotADirectoryInRecursive) { |
CreateURLFromUTF8("file/child/grandchild")); |
bool created; |
- ASSERT_EQ(base::PLATFORM_FILE_OK, |
+ ASSERT_EQ(base::File::FILE_OK, |
ofu()->EnsureFileExists(UnlimitedContext().get(), file, &created)); |
ASSERT_TRUE(created); |
- ASSERT_EQ(base::PLATFORM_FILE_ERROR_NOT_A_DIRECTORY, |
+ ASSERT_EQ(base::File::FILE_ERROR_NOT_A_DIRECTORY, |
ofu()->CreateDirectory(UnlimitedContext().get(), |
path_in_file, |
false /* exclusive */, |
true /* recursive */)); |
- ASSERT_EQ(base::PLATFORM_FILE_ERROR_NOT_A_DIRECTORY, |
+ ASSERT_EQ(base::File::FILE_ERROR_NOT_A_DIRECTORY, |
ofu()->CreateDirectory(UnlimitedContext().get(), |
path_in_file_in_file, |
false /* exclusive */, |