1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
|
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ash/file_manager/trash_unittest_base.h"
#include "base/files/file_util.h"
#include "base/i18n/time_formatting.h"
#include "base/strings/escape.h"
#include "base/strings/strcat.h"
#include "chrome/browser/ash/drive/drive_integration_service_factory.h"
#include "chrome/browser/ash/file_manager/path_util.h"
#include "chrome/browser/ash/file_manager/trash_common_util.h"
#include "chrome/test/base/testing_browser_process.h"
#include "chromeos/ash/components/dbus/chunneld/chunneld_client.h"
#include "chromeos/ash/components/dbus/cros_disks/cros_disks_client.h"
#include "chromeos/ash/components/dbus/seneschal/seneschal_client.h"
#include "google_apis/gaia/gaia_id.h"
#include "storage/browser/file_system/external_mount_points.h"
#include "storage/browser/quota/quota_manager_proxy.h"
#include "storage/browser/test/test_file_system_context.h"
namespace file_manager::io_task {
TrashBaseTest::TrashBaseTest() = default;
TrashBaseTest::~TrashBaseTest() = default;
void TrashBaseTest::SetUp() {
ASSERT_TRUE(temp_dir_.CreateUniqueTempDir());
// Pass in a mock factory method that sets up a fake
// DriveIntegrationService. This ensures the enabled paths contain the drive
// path.
create_drive_integration_service_ = base::BindRepeating(
&TrashBaseTest::CreateDriveIntegrationService, base::Unretained(this));
service_factory_for_test_ = std::make_unique<
drive::DriveIntegrationServiceFactory::ScopedFactoryForTest>(
&create_drive_integration_service_);
fake_user_manager_.Reset(std::make_unique<ash::FakeChromeUserManager>());
// Create the profile and add it to the user manager for DriveFS.
profile_ =
std::make_unique<TestingProfile>(base::FilePath(temp_dir_.GetPath()));
AccountId account_id = AccountId::FromUserEmailGaiaId(
profile_->GetProfileUserName(), GaiaId("12345"));
fake_user_manager_->AddUserWithAffiliationAndTypeAndProfile(
account_id, /*is_affiliated=*/false, user_manager::UserType::kRegular,
profile_.get());
fake_user_manager_->LoginUser(account_id, true);
file_system_context_ =
storage::CreateFileSystemContextForTesting(nullptr, temp_dir_.GetPath());
my_files_dir_ = temp_dir_.GetPath().Append("MyFiles");
storage::ExternalMountPoints::GetSystemInstance()->RegisterFileSystem(
file_manager::util::GetDownloadsMountPointName(profile_.get()),
storage::kFileSystemTypeLocal, storage::FileSystemMountOption(),
my_files_dir_);
// Create Downloads inside the `temp_dir_` which will implicitly create the
// `my_files_dir_.
downloads_dir_ = my_files_dir_.Append("Downloads");
ASSERT_TRUE(base::CreateDirectory(downloads_dir_));
ash::CrosDisksClient::InitializeFake();
// The TrashService launches a sandboxed process to perform parsing in, in
// unit tests this is not possible. So instead override the launcher to
// start an in-process TrashService and have `LaunchTrashService` invoke it.
ash::trash_service::SetTrashServiceLaunchOverrideForTesting(
base::BindRepeating(&TrashBaseTest::CreateInProcessTrashService,
base::Unretained(this)));
}
mojo::PendingRemote<ash::trash_service::mojom::TrashService>
TrashBaseTest::CreateInProcessTrashService() {
mojo::PendingRemote<ash::trash_service::mojom::TrashService> remote;
trash_service_impl_ = std::make_unique<ash::trash_service::TrashServiceImpl>(
remote.InitWithNewPipeAndPassReceiver());
return remote;
}
void TrashBaseTest::TearDown() {
// Ensure any previously registered mount points for Downloads are revoked.
storage::ExternalMountPoints::GetSystemInstance()->RevokeAllFileSystems();
profile_.reset();
fake_user_manager_.Reset();
ash::CrosDisksClient::Shutdown();
}
drive::DriveIntegrationService* TrashBaseTest::CreateDriveIntegrationService(
Profile* profile) {
base::ScopedAllowBlockingForTesting allow_blocking;
base::FilePath mount_point = temp_dir_.GetPath().Append("drivefs");
fake_drivefs_helper_ =
std::make_unique<drive::FakeDriveFsHelper>(profile, mount_point);
integration_service_ = new drive::DriveIntegrationService(
TestingBrowserProcess::GetGlobal()->local_state(), profile, "",
mount_point, fake_drivefs_helper_->CreateFakeDriveFsListenerFactory());
return integration_service_;
}
storage::FileSystemURL TrashBaseTest::CreateFileSystemURL(
const base::FilePath& absolute_path) {
std::string relative_path = absolute_path.value();
// URLs in test are required to be relative to the `base_path_`. This ensures
// all FileSystemURLs in test are made relative.
EXPECT_TRUE(file_manager::util::ReplacePrefix(
&relative_path, temp_dir_.GetPath().AsEndingWithSeparator().value(), ""));
return file_system_context_->CreateCrackedFileSystemURL(
kTestStorageKey, storage::kFileSystemTypeTest,
base::FilePath::FromUTF8Unsafe(relative_path));
}
const base::FilePath TrashBaseTest::GenerateInfoPath(
const std::string& file_name) {
return trash::GenerateTrashPath(
downloads_dir_.Append(trash::kTrashFolderName), trash::kInfoFolderName,
file_name);
}
const base::FilePath TrashBaseTest::GenerateFilesPath(
const std::string& file_name) {
return trash::GenerateTrashPath(
downloads_dir_.Append(trash::kTrashFolderName), trash::kFilesFolderName,
file_name);
}
const std::string TrashBaseTest::CreateTrashInfoContentsFromPath(
const base::FilePath& file_path,
const base::FilePath& base_path,
const base::FilePath& prefix_path) {
std::string relative_restore_path = file_path.value();
EXPECT_TRUE(file_manager::util::ReplacePrefix(
&relative_restore_path, base_path.AsEndingWithSeparator().value(), ""));
base::FilePath prefix = (prefix_path.IsAbsolute())
? prefix_path
: base::FilePath("/").Append(prefix_path);
return base::StrCat(
{"[Trash Info]\nPath=",
base::EscapePath(prefix.AsEndingWithSeparator().value()),
base::EscapePath(relative_restore_path), "\nDeletionDate=",
base::TimeFormatAsIso8601(base::Time::UnixEpoch()), "\n"});
}
const std::string TrashBaseTest::CreateTrashInfoContentsFromPath(
const base::FilePath& file_path) {
return CreateTrashInfoContentsFromPath(file_path, my_files_dir_,
base::FilePath("/"));
}
bool TrashBaseTest::EnsureTrashDirectorySetup(
const base::FilePath& parent_path) {
base::FilePath trash_path = parent_path.Append(trash::kTrashFolderName);
if (!base::CreateDirectory(trash_path.Append(trash::kInfoFolderName))) {
return false;
}
if (!base::CreateDirectory(trash_path.Append(trash::kFilesFolderName))) {
return false;
}
return true;
}
TrashBaseIOTest::TrashBaseIOTest() = default;
TrashBaseIOTest::~TrashBaseIOTest() = default;
void TrashBaseIOTest::SetUp() {
TrashBaseTest::SetUp();
VolumeManagerFactory::GetInstance()->SetTestingFactory(
profile_.get(),
base::BindLambdaForTesting([this](content::BrowserContext* context) {
return std::unique_ptr<KeyedService>(std::make_unique<VolumeManager>(
Profile::FromBrowserContext(context), nullptr, nullptr,
&disk_mount_manager_, nullptr,
VolumeManager::GetMtpStorageInfoCallback()));
}));
}
} // namespace file_manager::io_task
|