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

Unified Diff: content/browser/fileapi/transient_file_util_unittest.cc

Issue 2368913003: Populate storage_unittests target. (Closed)
Patch Set: Removed unnecessary include from storage/browser/blob/blob_storage_context_unittest.cc. Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/fileapi/transient_file_util_unittest.cc
diff --git a/content/browser/fileapi/transient_file_util_unittest.cc b/content/browser/fileapi/transient_file_util_unittest.cc
deleted file mode 100644
index 8b747e5e0876b25fb7ff6ca48caf72992d0f2a36..0000000000000000000000000000000000000000
--- a/content/browser/fileapi/transient_file_util_unittest.cc
+++ /dev/null
@@ -1,122 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include <memory>
-
-#include "base/files/file_path.h"
-#include "base/files/file_util.h"
-#include "base/files/scoped_temp_dir.h"
-#include "base/macros.h"
-#include "base/memory/ptr_util.h"
-#include "base/run_loop.h"
-#include "content/public/test/test_file_system_context.h"
-#include "storage/browser/blob/scoped_file.h"
-#include "storage/browser/fileapi/file_system_context.h"
-#include "storage/browser/fileapi/file_system_operation_context.h"
-#include "storage/browser/fileapi/isolated_context.h"
-#include "storage/browser/fileapi/transient_file_util.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-using storage::FileSystemURL;
-
-namespace content {
-
-class TransientFileUtilTest : public testing::Test {
- public:
- TransientFileUtilTest() {}
- ~TransientFileUtilTest() override {}
-
- void SetUp() override {
- file_system_context_ = CreateFileSystemContextForTesting(
- NULL, base::FilePath(FILE_PATH_LITERAL("dummy")));
- transient_file_util_.reset(new storage::TransientFileUtil);
-
- ASSERT_TRUE(data_dir_.CreateUniqueTempDir());
- }
-
- void TearDown() override {
- file_system_context_ = NULL;
- base::RunLoop().RunUntilIdle();
- }
-
- void CreateAndRegisterTemporaryFile(
- FileSystemURL* file_url,
- base::FilePath* file_path) {
- EXPECT_TRUE(base::CreateTemporaryFileInDir(data_dir_.GetPath(), file_path));
- storage::IsolatedContext* isolated_context =
- storage::IsolatedContext::GetInstance();
- std::string name = "tmp";
- std::string fsid = isolated_context->RegisterFileSystemForPath(
- storage::kFileSystemTypeForTransientFile,
- std::string(),
- *file_path,
- &name);
- ASSERT_TRUE(!fsid.empty());
- base::FilePath virtual_path = isolated_context->CreateVirtualRootPath(
- fsid).AppendASCII(name);
- *file_url = file_system_context_->CreateCrackedFileSystemURL(
- GURL("http://foo"), storage::kFileSystemTypeIsolated, virtual_path);
- }
-
- std::unique_ptr<storage::FileSystemOperationContext> NewOperationContext() {
- return base::MakeUnique<storage::FileSystemOperationContext>(
- file_system_context_.get());
- }
-
- storage::FileSystemFileUtil* file_util() {
- return transient_file_util_.get();
- }
-
- private:
- base::MessageLoop message_loop_;
- base::ScopedTempDir data_dir_;
- scoped_refptr<storage::FileSystemContext> file_system_context_;
- std::unique_ptr<storage::TransientFileUtil> transient_file_util_;
-
- DISALLOW_COPY_AND_ASSIGN(TransientFileUtilTest);
-};
-
-TEST_F(TransientFileUtilTest, TransientFile) {
- FileSystemURL temp_url;
- base::FilePath temp_path;
-
- CreateAndRegisterTemporaryFile(&temp_url, &temp_path);
-
- base::File::Error error;
- base::File::Info file_info;
- base::FilePath path;
-
- // Make sure the file is there.
- ASSERT_TRUE(temp_url.is_valid());
- ASSERT_TRUE(base::PathExists(temp_path));
- ASSERT_FALSE(base::DirectoryExists(temp_path));
-
- // Create a snapshot file.
- {
- storage::ScopedFile scoped_file = file_util()->CreateSnapshotFile(
- NewOperationContext().get(), temp_url, &error, &file_info, &path);
- ASSERT_EQ(base::File::FILE_OK, error);
- ASSERT_EQ(temp_path, path);
- ASSERT_FALSE(file_info.is_directory);
-
- // The file should be still there.
- ASSERT_TRUE(base::PathExists(temp_path));
- ASSERT_EQ(base::File::FILE_OK,
- file_util()->GetFileInfo(NewOperationContext().get(),
- temp_url, &file_info, &path));
- ASSERT_EQ(temp_path, path);
- ASSERT_FALSE(file_info.is_directory);
- }
-
- // The file's now scoped out.
- base::RunLoop().RunUntilIdle();
-
- // Now the temporary file and the transient filesystem must be gone too.
- ASSERT_FALSE(base::PathExists(temp_path));
- ASSERT_EQ(base::File::FILE_ERROR_NOT_FOUND,
- file_util()->GetFileInfo(NewOperationContext().get(),
- temp_url, &file_info, &path));
-}
-
-} // namespace content

Powered by Google App Engine
This is Rietveld 408576698