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
|
// Copyright 2024 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/glic/glic_profile_manager.h"
#include <memory>
#include <string>
#include <type_traits>
#include "base/memory/memory_pressure_monitor.h"
#include "chrome/browser/browser_features.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/contextual_cueing/contextual_cueing_service.h"
#include "chrome/browser/glic/glic_keyed_service.h"
#include "chrome/browser/glic/glic_keyed_service_factory.h"
#include "chrome/browser/glic/test_support/glic_test_environment.h"
#include "chrome/browser/glic/test_support/glic_test_util.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/browser/profiles/profile_test_util.h"
#include "chrome/browser/signin/identity_manager_factory.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_list.h"
#include "chrome/browser/ui/ui_features.h"
#include "chrome/common/chrome_features.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "chrome/test/base/test_browser_window.h"
#include "chrome/test/base/testing_browser_process.h"
#include "chrome/test/base/testing_profile.h"
#include "chrome/test/base/ui_test_utils.h"
#include "content/public/test/browser_test.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/base/ozone_buildflags.h"
namespace glic {
namespace {
class MockGlicKeyedService : public GlicKeyedService {
public:
MockGlicKeyedService(
content::BrowserContext* browser_context,
signin::IdentityManager* identity_manager,
ProfileManager* profile_manager,
GlicProfileManager* glic_profile_manager,
contextual_cueing::ContextualCueingService* contextual_cueing_service)
: GlicKeyedService(Profile::FromBrowserContext(browser_context),
identity_manager,
profile_manager,
glic_profile_manager,
contextual_cueing_service) {}
MOCK_METHOD(void, ClosePanel, (), (override));
bool IsWindowDetached() const override { return detached_; }
void SetWindowDetached() { detached_ = true; }
bool IsWindowShowing() const override { return showing_; }
void SetWindowShowing() { showing_ = true; }
private:
bool detached_ = false;
bool showing_ = false;
};
class GlicProfileManagerBrowserTest : public InProcessBrowserTest {
public:
GlicProfileManagerBrowserTest() {
scoped_feature_list_.InitAndDisableFeature(
features::kDestroyProfileOnBrowserClose);
create_services_subscription_ =
BrowserContextDependencyManager::GetInstance()
->RegisterCreateServicesCallbackForTesting(base::BindRepeating(
&GlicProfileManagerBrowserTest::SetTestingFactory,
base::Unretained(this)));
}
void SetUpOnMainThread() override {
InProcessBrowserTest::SetUpOnMainThread();
}
MockGlicKeyedService* GetMockGlicKeyedService(Profile* profile) {
auto* service = GlicKeyedServiceFactory::GetGlicKeyedService(profile);
return static_cast<MockGlicKeyedService*>(service);
}
Profile* CreateNewProfile() {
auto* profile_manager = g_browser_process->profile_manager();
auto new_path = profile_manager->GenerateNextProfileDirectoryPath();
profiles::testing::CreateProfileSync(profile_manager, new_path);
return profile_manager->GetProfile(new_path);
}
protected:
void SetTestingFactory(content::BrowserContext* context) {
GlicKeyedServiceFactory::GetInstance()->SetTestingFactory(
context, base::BindRepeating(
&GlicProfileManagerBrowserTest::CreateMockGlicKeyedService,
base::Unretained(this)));
}
std::unique_ptr<KeyedService> CreateMockGlicKeyedService(
content::BrowserContext* context) {
auto* identitity_manager = IdentityManagerFactory::GetForProfile(
Profile::FromBrowserContext(context));
return std::make_unique<MockGlicKeyedService>(
context, identitity_manager, g_browser_process->profile_manager(),
GlicProfileManager::GetInstance(),
/*contextual_cueing_service=*/nullptr);
}
GlicTestEnvironment glic_test_environment_;
base::test::ScopedFeatureList scoped_feature_list_;
base::CallbackListSubscription create_services_subscription_;
};
IN_PROC_BROWSER_TEST_F(GlicProfileManagerBrowserTest,
SetActiveGlic_SameProfile) {
auto* service0 = GetMockGlicKeyedService(browser()->profile());
GlicProfileManager::GetInstance()->SetActiveGlic(service0);
// Opening glic twice for the same profile shouldn't cause it to close.
EXPECT_CALL(*service0, ClosePanel()).Times(0);
GlicProfileManager::GetInstance()->SetActiveGlic(service0);
}
IN_PROC_BROWSER_TEST_F(GlicProfileManagerBrowserTest,
SetActiveGlic_DifferentProfiles) {
auto* service0 = GetMockGlicKeyedService(browser()->profile());
auto* profile1 = CreateNewProfile();
auto* service1 = GetMockGlicKeyedService(profile1);
auto* profile_manager = GlicProfileManager::GetInstance();
profile_manager->SetActiveGlic(service0);
// Tell the mock glic to pretend that the window is open (otherwise, we won't
// attempt to close it).
service0->SetWindowShowing();
// Opening glic from a second profile should make the profile manager close
// the first one.
EXPECT_CALL(*service0, ClosePanel());
profile_manager->SetActiveGlic(service1);
}
IN_PROC_BROWSER_TEST_F(GlicProfileManagerBrowserTest,
ProfileForLaunch_WithDetachedGlic) {
auto* service0 = GetMockGlicKeyedService(browser()->profile());
// Setup Profile 1
auto* profile1 = CreateNewProfile();
auto* profile_manager = GlicProfileManager::GetInstance();
// Profile 0 is the last used Glic and Profile 1 is the last used window.
// Profile 1 should be selected for launch.
profile_manager->SetActiveGlic(service0);
CreateBrowser(profile1);
EXPECT_EQ(profile1, profile_manager->GetProfileForLaunch());
// Simulate showing detached for Profile 0.
// Profile 0 should now be selected for launch.
service0->SetWindowDetached();
EXPECT_EQ(browser()->profile(), profile_manager->GetProfileForLaunch());
}
IN_PROC_BROWSER_TEST_F(GlicProfileManagerBrowserTest,
ProfileForLaunch_BasedOnActivationOrder) {
// Setup Profile 1
auto* profile1 = CreateNewProfile();
// Applies to next profile.
glic_test_environment_.SetForceSigninAndModelExecutionCapability(false);
// Setup Profile 2 (not glic compliant)
auto* profile2 = CreateNewProfile();
auto* profile_manager = GlicProfileManager::GetInstance();
// profile0 is the most recently used profile
EXPECT_EQ(browser()->profile(), profile_manager->GetProfileForLaunch());
// profile1 is the most recently used profile
[[maybe_unused]] auto* browser1 = CreateBrowser(profile1);
EXPECT_EQ(profile1, profile_manager->GetProfileForLaunch());
// profile2 is the most recently used profile but it isn't
// compliant, so still using profile1
CreateBrowser(profile2);
EXPECT_EQ(profile1, profile_manager->GetProfileForLaunch());
#if !(BUILDFLAG(IS_OZONE_WAYLAND))
// profile0 is the most recently used profile
browser()->window()->Activate();
ui_test_utils::WaitForBrowserSetLastActive(browser());
EXPECT_EQ(browser()->profile(), profile_manager->GetProfileForLaunch());
#endif
}
class GlicProfileManagerPreloadingTest
: public InProcessBrowserTest,
public testing::WithParamInterface<bool> {
public:
explicit GlicProfileManagerPreloadingTest(const std::string& delay_ms) {
if (IsPreloadingEnabled()) {
scoped_feature_list_.InitWithFeaturesAndParameters(
/*enabled_features=*/{{features::kGlicWarming,
{{features::kGlicWarmingDelayMs.name,
delay_ms},
{features::kGlicWarmingJitterMs.name, "0"}}}},
/*disabled_features=*/{});
}
// We initialize memory pressure to moderate to prevent any premature
// preloading.
GlicProfileManager::ForceMemoryPressureForTesting(
base::MemoryPressureMonitor::MemoryPressureLevel::
MEMORY_PRESSURE_LEVEL_MODERATE);
GlicProfileManager::ForceConnectionTypeForTesting(
network::mojom::ConnectionType::CONNECTION_WIFI);
}
GlicProfileManagerPreloadingTest() : GlicProfileManagerPreloadingTest("0") {}
void SetUpOnMainThread() override {
InProcessBrowserTest::SetUpOnMainThread();
GlicProfileManager::ForceProfileForLaunchForTesting(browser()->profile());
run_loop_ = std::make_unique<base::RunLoop>();
}
void TearDownOnMainThread() override { run_loop_.reset(); }
void TearDown() override {
GlicProfileManager::ForceProfileForLaunchForTesting(std::nullopt);
GlicProfileManager::ForceMemoryPressureForTesting(std::nullopt);
GlicProfileManager::ForceConnectionTypeForTesting(std::nullopt);
InProcessBrowserTest::TearDown();
}
bool IsPreloadingEnabled() const { return GetParam(); }
void ResetMemoryPressure() {
GlicProfileManager::ForceMemoryPressureForTesting(
base::MemoryPressureMonitor::MemoryPressureLevel::
MEMORY_PRESSURE_LEVEL_NONE);
}
bool WaitForShouldPreload() {
auto* profile_manager = GlicProfileManager::GetInstance();
profile_manager->ShouldPreloadForProfile(
browser()->profile(),
base::BindOnce(&GlicProfileManagerPreloadingTest::OnShouldPreload,
base::Unretained(this)));
run_loop_->Run();
return should_preload_;
}
void SetConnectionType(network::mojom::ConnectionType connection_type) {
GlicProfileManager::ForceConnectionTypeForTesting(connection_type);
}
private:
void OnShouldPreload(bool should_preload) {
should_preload_ = should_preload;
run_loop_->Quit();
}
GlicTestEnvironment glic_test_environment_;
bool should_preload_ = false;
std::unique_ptr<base::RunLoop> run_loop_;
base::test::ScopedFeatureList scoped_feature_list_;
};
IN_PROC_BROWSER_TEST_P(GlicProfileManagerPreloadingTest,
ShouldPreloadForProfile_Success) {
ResetMemoryPressure();
const bool should_preload = IsPreloadingEnabled();
EXPECT_EQ(should_preload, WaitForShouldPreload());
}
IN_PROC_BROWSER_TEST_P(GlicProfileManagerPreloadingTest,
ShouldPreloadForProfile_NotSupportedProfile) {
ResetMemoryPressure();
GlicProfileManager::ForceProfileForLaunchForTesting(std::nullopt);
SetModelExecutionCapability(browser()->profile(), false);
EXPECT_FALSE(WaitForShouldPreload());
}
IN_PROC_BROWSER_TEST_P(GlicProfileManagerPreloadingTest,
ShouldPreloadForProfile_WillBeDestroyed) {
ResetMemoryPressure();
browser()->profile()->NotifyWillBeDestroyed();
EXPECT_FALSE(WaitForShouldPreload());
}
IN_PROC_BROWSER_TEST_P(GlicProfileManagerPreloadingTest,
ShouldPreloadForProfile_MemoryPressure) {
// Note: we keep memory pressure at moderate here.
EXPECT_FALSE(WaitForShouldPreload());
}
IN_PROC_BROWSER_TEST_P(GlicProfileManagerPreloadingTest,
ShouldPreloadForProfile_Cellular) {
ResetMemoryPressure();
SetConnectionType(network::mojom::ConnectionType::CONNECTION_2G);
EXPECT_FALSE(WaitForShouldPreload());
}
// See *Deferred* below. Checks that we don't defer preloading when there's no
// delay.
IN_PROC_BROWSER_TEST_P(GlicProfileManagerPreloadingTest,
ShouldPreloadForProfile_DoNotDefer) {
ResetMemoryPressure();
auto* service =
GlicKeyedServiceFactory::GetGlicKeyedService(browser()->profile());
service->TryPreload();
base::RunLoop run_loop;
// Since we have no delay, running until idle should mean that we do warm
// (provided warming is enabled).
run_loop.RunUntilIdle();
const bool should_preload = IsPreloadingEnabled();
EXPECT_EQ(should_preload, service->window_controller().IsWarmed());
}
INSTANTIATE_TEST_SUITE_P(All,
GlicProfileManagerPreloadingTest,
::testing::Bool());
class GlicProfileManagerDeferredPreloadingTest
: public GlicProfileManagerPreloadingTest {
public:
// This sets the delay to 500 ms.
GlicProfileManagerDeferredPreloadingTest()
: GlicProfileManagerPreloadingTest(/*delay_ms=*/"500") {}
~GlicProfileManagerDeferredPreloadingTest() override = default;
private:
base::test::ScopedFeatureList scoped_feature_list_;
};
// This is really a keyed service test, but it is convenient to locate it here
// for now. It just checks that if we have a preload delay, that we won't
// preload immediately.
IN_PROC_BROWSER_TEST_P(GlicProfileManagerDeferredPreloadingTest,
ShouldPreloadForProfile_Defer) {
ResetMemoryPressure();
auto* service =
GlicKeyedServiceFactory::GetGlicKeyedService(browser()->profile());
service->TryPreload();
base::RunLoop run_loop;
// Since we shouldn't preload until after the delay, we shouldn't be warmed
// after running until idle.
run_loop.RunUntilIdle();
EXPECT_FALSE(service->window_controller().IsWarmed());
}
IN_PROC_BROWSER_TEST_P(GlicProfileManagerDeferredPreloadingTest,
ShouldPreloadForProfile_DeferWithProfileDeletion) {
ResetMemoryPressure();
auto* service =
GlicKeyedServiceFactory::GetGlicKeyedService(browser()->profile());
base::RunLoop run_loop;
service->AddPreloadCallback(base::BindOnce(
[](base::RunLoop* run_loop, base::OnceClosure quit_closure) {
std::move(quit_closure).Run();
},
&run_loop, run_loop.QuitClosure()));
service->TryPreload();
service->reset_profile_for_test();
run_loop.Run();
EXPECT_FALSE(service->window_controller().IsWarmed());
}
INSTANTIATE_TEST_SUITE_P(All,
GlicProfileManagerDeferredPreloadingTest,
::testing::Bool());
} // namespace
} // namespace glic
|