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
|
// Copyright 2011 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/themes_helper.h"
#include "base/check.h"
#include "base/functional/bind.h"
#include "base/strings/string_number_conversions.h"
#include "chrome/browser/extensions/updater/extension_updater.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/sync/test/integration/sync_extension_helper.h"
#include "chrome/browser/themes/theme_helper.h"
#include "chrome/browser/themes/theme_service.h"
#include "chrome/browser/themes/theme_service_factory.h"
#include "components/crx_file/id_util.h"
#include "extensions/common/manifest.h"
namespace {
// Make a name to pass to an extension helper.
std::string MakeName(int index) {
return "faketheme" + base::NumberToString(index);
}
ThemeService* GetThemeService(Profile* profile) {
return ThemeServiceFactory::GetForProfile(profile);
}
bool UsingSystemThemeFunc(ThemeService* theme_service) {
return theme_service->UsingSystemTheme();
}
bool UsingDefaultThemeFunc(ThemeService* theme_service) {
return theme_service->UsingDefaultTheme();
}
bool UsingCustomThemeFunc(ThemeService* theme_service) {
return theme_service->GetThemeID() != ThemeHelper::kDefaultThemeID;
}
bool UsingGrayscaleThemeFunc(ThemeService* theme_service) {
return theme_service->GetIsGrayscale();
}
} // namespace
namespace themes_helper {
bool IsSystemThemeDistinctFromDefaultTheme(Profile* profile) {
return GetThemeService(profile)->IsSystemThemeDistinctFromDefaultTheme();
}
std::string GetCustomTheme(int index) {
return crx_file::id_util::GenerateId(MakeName(index));
}
std::string GetThemeID(Profile* profile) {
return GetThemeService(profile)->GetThemeID();
}
bool UsingCustomTheme(Profile* profile) {
return UsingCustomThemeFunc(GetThemeService(profile));
}
bool UsingDefaultTheme(Profile* profile) {
return UsingDefaultThemeFunc(GetThemeService(profile));
}
bool UsingSystemTheme(Profile* profile) {
return UsingSystemThemeFunc(GetThemeService(profile));
}
bool UsingGrayscaleTheme(Profile* profile) {
return UsingGrayscaleThemeFunc(GetThemeService(profile));
}
bool ThemeIsPendingInstall(Profile* profile, const std::string& id) {
return SyncExtensionHelper::GetInstance()->IsExtensionPendingInstallForSync(
profile, id);
}
void UseCustomTheme(Profile* profile, int index) {
SyncExtensionHelper::GetInstance()->InstallExtension(
profile, MakeName(index), extensions::Manifest::TYPE_THEME);
}
void UseGrayscaleTheme(Profile* profile) {
GetThemeService(profile)->SetIsGrayscale(true);
}
void UseDefaultTheme(Profile* profile) {
GetThemeService(profile)->UseDefaultTheme();
}
void UseSystemTheme(Profile* profile) {
GetThemeService(profile)->UseSystemTheme();
}
} // namespace themes_helper
ThemePendingInstallChecker::ThemePendingInstallChecker(Profile* profile,
const std::string& theme)
: profile_(profile), theme_(theme) {
auto* updater = extensions::ExtensionUpdater::Get(profile_);
CHECK(updater);
CHECK(updater->enabled());
updater->SetUpdatingStartedCallbackForTesting(
base::BindRepeating(&ThemePendingInstallChecker::CheckExitCondition,
weak_ptr_factory_.GetWeakPtr()));
}
ThemePendingInstallChecker::~ThemePendingInstallChecker() = default;
bool ThemePendingInstallChecker::IsExitConditionSatisfied(std::ostream* os) {
*os << "Waiting for pending theme to be '" << *theme_ << "'";
return themes_helper::ThemeIsPendingInstall(profile_, *theme_);
}
ThemeConditionChecker::ThemeConditionChecker(
Profile* profile,
const std::string& debug_message,
const base::RepeatingCallback<bool(ThemeService*)>& exit_condition)
: profile_(profile),
debug_message_(debug_message),
exit_condition_(exit_condition) {
GetThemeService(profile_)->AddObserver(this);
}
ThemeConditionChecker::~ThemeConditionChecker() {
GetThemeService(profile_)->RemoveObserver(this);
}
bool ThemeConditionChecker::IsExitConditionSatisfied(std::ostream* os) {
*os << debug_message_;
return exit_condition_.Run(GetThemeService(profile_));
}
void ThemeConditionChecker::OnThemeChanged() {
CheckExitCondition();
}
SystemThemeChecker::SystemThemeChecker(Profile* profile)
: ThemeConditionChecker(profile,
"Waiting until profile is using system theme",
base::BindRepeating(&UsingSystemThemeFunc)) {}
DefaultThemeChecker::DefaultThemeChecker(Profile* profile)
: ThemeConditionChecker(profile,
"Waiting until profile is using default theme",
base::BindRepeating(&UsingDefaultThemeFunc)) {}
CustomThemeChecker::CustomThemeChecker(Profile* profile)
: ThemeConditionChecker(profile,
"Waiting until profile is using a custom theme",
base::BindRepeating(&UsingCustomThemeFunc)) {}
GrayscaleThemeChecker::GrayscaleThemeChecker(Profile* profile)
: ThemeConditionChecker(
profile,
"Waiting until profile is using the grayscale theme",
base::BindRepeating(&UsingGrayscaleThemeFunc)) {}
|