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 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385
|
// Copyright 2012 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/sync/test/integration/apps_helper.h"
#include "base/check.h"
#include "base/logging.h"
#include "base/memory/raw_ptr.h"
#include "base/run_loop.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/utf_string_conversions.h"
#include "base/task/single_thread_task_runner.h"
#include "base/test/bind.h"
#include "chrome/browser/apps/app_service/app_service_proxy.h"
#include "chrome/browser/apps/app_service/app_service_proxy_factory.h"
#include "chrome/browser/extensions/updater/extension_updater.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/sync/test/integration/sync_app_helper.h"
#include "chrome/browser/sync/test/integration/sync_datatype_helper.h"
#include "chrome/browser/sync/test/integration/sync_extension_helper.h"
#include "chrome/browser/sync/test/integration/sync_service_impl_harness.h"
#include "chrome/browser/web_applications/test/web_app_install_test_utils.h"
#include "chrome/browser/web_applications/test/web_app_test_observers.h"
#include "chrome/browser/web_applications/web_app_command_manager.h"
#include "chrome/browser/web_applications/web_app_command_scheduler.h"
#include "chrome/browser/web_applications/web_app_install_manager.h"
#include "chrome/browser/web_applications/web_app_provider.h"
#include "components/webapps/browser/install_result_code.h"
#include "components/webapps/browser/installable/installable_metrics.h"
#include "components/webapps/common/web_app_id.h"
#include "extensions/browser/extension_prefs.h"
#include "extensions/browser/extension_registry.h"
#include "extensions/common/manifest.h"
using sync_datatype_helper::test;
namespace {
std::string CreateFakeAppName(int index) {
return "fakeapp" + base::NumberToString(index);
}
void FlushPendingOperations(
std::vector<raw_ptr<Profile, VectorExperimental>> profiles) {
for (Profile* profile : profiles) {
web_app::WebAppProvider::GetForTest(profile)
->command_manager()
.AwaitAllCommandsCompleteForTesting();
// First, wait for all installations to complete.
base::flat_set<webapps::AppId> apps_to_be_installed =
web_app::WebAppProvider::GetForTest(profile)
->registrar_unsafe()
.GetAppsFromSyncAndPendingInstallation();
if (!apps_to_be_installed.empty()) {
// Because we don't know whether these have been installed yet or if we
// are waiting for installation with hooks, wait on either.
base::RunLoop loop;
auto install_listener_callback =
base::BindLambdaForTesting([&](const webapps::AppId& app_id) {
apps_to_be_installed.erase(app_id);
if (apps_to_be_installed.empty())
loop.Quit();
});
web_app::WebAppInstallManagerObserverAdapter install_adapter(profile);
install_adapter.SetWebAppInstalledDelegate(install_listener_callback);
install_adapter.SetWebAppInstalledWithOsHooksDelegate(
install_listener_callback);
loop.Run();
}
// Next, wait for uninstalls. These are easier because they don't have two
// stages.
web_app::WebAppProvider::GetForTest(profile)
->command_manager()
.AwaitAllCommandsCompleteForTesting();
}
}
} // namespace
namespace apps_helper {
bool HasSameApps(Profile* profile1, Profile* profile2) {
return SyncAppHelper::GetInstance()->AppStatesMatch(profile1, profile2);
}
bool AllProfilesHaveSameApps() {
const std::vector<raw_ptr<Profile, VectorExperimental>>& profiles =
test()->GetAllProfiles();
for (Profile* profile : profiles) {
if (profile != profiles.front() &&
!HasSameApps(profiles.front(), profile)) {
DVLOG(1) << "Profiles apps do not match.";
return false;
}
}
return true;
}
std::string InstallHostedApp(Profile* profile, int index) {
return SyncExtensionHelper::GetInstance()->InstallExtension(
profile, CreateFakeAppName(index), extensions::Manifest::TYPE_HOSTED_APP);
}
std::string InstallPlatformApp(Profile* profile, int index) {
return SyncExtensionHelper::GetInstance()->InstallExtension(
profile, CreateFakeAppName(index),
extensions::Manifest::TYPE_PLATFORM_APP);
}
std::string InstallHostedAppForAllProfiles(int index) {
std::string extension_id;
for (Profile* profile : test()->GetAllProfiles()) {
extension_id = InstallHostedApp(profile, index);
}
return extension_id;
}
void UninstallApp(Profile* profile, int index) {
return SyncExtensionHelper::GetInstance()->UninstallExtension(
profile, CreateFakeAppName(index));
}
void EnableApp(Profile* profile, int index) {
return SyncExtensionHelper::GetInstance()->EnableExtension(
profile, CreateFakeAppName(index));
}
void DisableApp(Profile* profile, int index) {
return SyncExtensionHelper::GetInstance()->DisableExtension(
profile, CreateFakeAppName(index));
}
bool IsAppEnabled(Profile* profile, int index) {
return SyncExtensionHelper::GetInstance()->IsExtensionEnabled(
profile, CreateFakeAppName(index));
}
void IncognitoEnableApp(Profile* profile, int index) {
return SyncExtensionHelper::GetInstance()->IncognitoEnableExtension(
profile, CreateFakeAppName(index));
}
void IncognitoDisableApp(Profile* profile, int index) {
return SyncExtensionHelper::GetInstance()->IncognitoDisableExtension(
profile, CreateFakeAppName(index));
}
bool IsIncognitoEnabled(Profile* profile, int index) {
return SyncExtensionHelper::GetInstance()->IsIncognitoEnabled(
profile, CreateFakeAppName(index));
}
void InstallAppsPendingForSync(Profile* profile) {
SyncExtensionHelper::GetInstance()->InstallExtensionsPendingForSync(profile);
}
syncer::StringOrdinal GetPageOrdinalForApp(Profile* profile, int app_index) {
return SyncAppHelper::GetInstance()->GetPageOrdinalForApp(
profile, CreateFakeAppName(app_index));
}
void SetPageOrdinalForApp(Profile* profile,
int app_index,
const syncer::StringOrdinal& page_ordinal) {
SyncAppHelper::GetInstance()->SetPageOrdinalForApp(
profile, CreateFakeAppName(app_index), page_ordinal);
}
syncer::StringOrdinal GetAppLaunchOrdinalForApp(Profile* profile,
int app_index) {
return SyncAppHelper::GetInstance()->GetAppLaunchOrdinalForApp(
profile, CreateFakeAppName(app_index));
}
void SetAppLaunchOrdinalForApp(
Profile* profile,
int app_index,
const syncer::StringOrdinal& app_launch_ordinal) {
SyncAppHelper::GetInstance()->SetAppLaunchOrdinalForApp(
profile, CreateFakeAppName(app_index), app_launch_ordinal);
}
void CopyNTPOrdinals(Profile* source, Profile* destination, int index) {
SetPageOrdinalForApp(destination, index, GetPageOrdinalForApp(source, index));
SetAppLaunchOrdinalForApp(destination, index,
GetAppLaunchOrdinalForApp(source, index));
}
void FixNTPOrdinalCollisions(Profile* profile) {
SyncAppHelper::GetInstance()->FixNTPOrdinalCollisions(profile);
}
bool AwaitWebAppQuiescence(
std::vector<raw_ptr<Profile, VectorExperimental>> profiles) {
FlushPendingOperations(profiles);
// If sync is off, then `AwaitQuiescence()` will crash. This code can be
// removed once https://crbug.com/1330792 is fixed.
if (sync_datatype_helper::test()) {
SyncTest* test = sync_datatype_helper::test();
bool is_sync_on = true;
for (SyncServiceImplHarness* client : test->GetSyncClients()) {
is_sync_on = is_sync_on && client->service()->IsSyncFeatureActive();
}
if (is_sync_on) {
if (!test->AwaitQuiescence())
return false;
FlushPendingOperations(profiles);
}
}
for (Profile* profile : profiles) {
// Only checks that there is no app in sync install state in the registry.
// Do not use |GetEnqueuedInstallAppIdsForTesting| because the task only
// gets removed from the queue on WebAppInstallTask::OnOsHooksCreated that
// happens asynchronously after the observer gets OnWebAppInstalled. And
// some installs might not have OS hooks installed but they will be in the
// registry.
auto* provider = web_app::WebAppProvider::GetForTest(profile);
std::vector<webapps::AppId> sync_apps_pending_install =
provider->registrar_unsafe().GetAppsFromSyncAndPendingInstallation();
if (!sync_apps_pending_install.empty()) {
LOG(ERROR) << "Apps from sync are still pending installation: "
<< sync_apps_pending_install.size();
return false;
}
std::vector<webapps::AppId> apps_in_uninstall =
provider->registrar_unsafe().GetAppsPendingUninstall();
if (!apps_in_uninstall.empty()) {
LOG(ERROR) << "App uninstalls are still pending: "
<< apps_in_uninstall.size();
return false;
}
}
return true;
}
webapps::AppId InstallWebApp(Profile* profile,
std::unique_ptr<web_app::WebAppInstallInfo> info) {
return web_app::test::InstallWebApp(
profile, std::move(info),
/*overwrite_existing_manifest_fields=*/true);
}
} // namespace apps_helper
AppsStatusChangeChecker::AppsStatusChangeChecker()
: profiles_(test()->GetAllProfiles()) {
DCHECK_GE(profiles_.size(), 2U);
for (Profile* profile : profiles_) {
InstallSyncedApps(profile);
// Fake the installation of synced apps from the web store.
auto* updater = extensions::ExtensionUpdater::Get(profile);
CHECK(updater);
CHECK(updater->enabled());
updater->SetUpdatingStartedCallbackForTesting(
base::BindLambdaForTesting(
[self = weak_ptr_factory_.GetWeakPtr(), profile]() {
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE,
base::BindOnce(&AppsStatusChangeChecker::InstallSyncedApps,
self, base::Unretained(profile)));
}));
// Register as an observer of ExtensionsRegistry to receive notifications of
// big events, like installs and uninstalls.
extensions::ExtensionRegistry* registry =
extensions::ExtensionRegistry::Get(profile);
registry->AddObserver(this);
// Register for ExtensionPrefs events, too, so we can get notifications
// about
// smaller but still syncable events, like launch type changes.
extensions::ExtensionPrefs* prefs =
extensions::ExtensionPrefs::Get(profile);
prefs->AddObserver(this);
install_tracker_observation_.AddObservation(
extensions::InstallTracker::Get(profile));
}
}
AppsStatusChangeChecker::~AppsStatusChangeChecker() {
for (Profile* profile : profiles_) {
extensions::ExtensionRegistry* registry =
extensions::ExtensionRegistry::Get(profile);
registry->RemoveObserver(this);
extensions::ExtensionPrefs* prefs =
extensions::ExtensionPrefs::Get(profile);
prefs->RemoveObserver(this);
}
}
void AppsStatusChangeChecker::OnExtensionLoaded(
content::BrowserContext* context,
const extensions::Extension* extension) {
CheckExitCondition();
}
void AppsStatusChangeChecker::OnExtensionUnloaded(
content::BrowserContext* context,
const extensions::Extension* extension,
extensions::UnloadedExtensionReason reason) {
CheckExitCondition();
}
void AppsStatusChangeChecker::OnExtensionInstalled(
content::BrowserContext* browser_context,
const extensions::Extension* extension,
bool is_update) {
CheckExitCondition();
}
void AppsStatusChangeChecker::OnExtensionUninstalled(
content::BrowserContext* browser_context,
const extensions::Extension* extension,
extensions::UninstallReason reason) {
CheckExitCondition();
}
void AppsStatusChangeChecker::OnExtensionDisableReasonsChanged(
const std::string& extension_id,
extensions::DisableReasonSet disabled_reasons) {
CheckExitCondition();
}
void AppsStatusChangeChecker::OnExtensionRegistered(
const std::string& extension_id,
const base::Time& install_time,
bool is_enabled) {
CheckExitCondition();
}
void AppsStatusChangeChecker::OnExtensionPrefsLoaded(
const std::string& extension_id,
const extensions::ExtensionPrefs* prefs) {
CheckExitCondition();
}
void AppsStatusChangeChecker::OnExtensionPrefsDeleted(
const std::string& extension_id) {
CheckExitCondition();
}
void AppsStatusChangeChecker::OnExtensionStateChanged(
const std::string& extension_id,
bool state) {
CheckExitCondition();
}
void AppsStatusChangeChecker::OnAppsReordered(
content::BrowserContext* context,
const std::optional<std::string>& extension_id) {
CheckExitCondition();
}
void AppsStatusChangeChecker::InstallSyncedApps(Profile* profile) {
// Installs apps too.
SyncExtensionHelper::GetInstance()->InstallExtensionsPendingForSync(profile);
}
AppsMatchChecker::AppsMatchChecker() = default;
bool AppsMatchChecker::IsExitConditionSatisfied(std::ostream* os) {
*os << "Waiting for apps to match";
auto it = profiles_.begin();
Profile* profile0 = *it;
++it;
for (; it != profiles_.end(); ++it) {
if (!SyncAppHelper::GetInstance()->AppStatesMatch(profile0, *it)) {
return false;
}
}
return true;
}
|