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 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729
|
// 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/ui/browser_command_controller.h"
#include <string_view>
#include "base/command_line.h"
#include "base/containers/contains.h"
#include "base/run_loop.h"
#include "base/test/scoped_feature_list.h"
#include "base/test/task_environment.h"
#include "build/build_config.h"
#include "chrome/app/chrome_command_ids.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profile_window.h"
#include "chrome/browser/search_engines/template_url_service_factory.h"
#include "chrome/browser/sessions/tab_restore_service_factory.h"
#include "chrome/browser/sessions/tab_restore_service_load_waiter.h"
#include "chrome/browser/signin/identity_manager_factory.h"
#include "chrome/browser/translate/translate_test_utils.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_commands.h"
#include "chrome/browser/ui/browser_list.h"
#include "chrome/browser/ui/browser_window.h"
#include "chrome/browser/ui/browser_window/public/browser_window_features.h"
#include "chrome/browser/ui/profiles/profile_picker.h"
#include "chrome/browser/ui/profiles/profile_ui_test_utils.h"
#include "chrome/browser/ui/startup/startup_browser_creator.h"
#include "chrome/browser/ui/tab_modal_confirm_dialog_browsertest.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/browser/ui/ui_features.h"
#include "chrome/browser/ui/views/side_panel/side_panel_ui.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "chrome/test/base/test_browser_window.h"
#include "chrome/test/base/testing_profile_manager.h"
#include "chrome/test/base/ui_test_utils.h"
#include "components/commerce/core/commerce_feature_list.h"
#include "components/search_engines/template_url_service.h"
#include "components/sessions/core/tab_restore_service.h"
#include "components/sessions/core/tab_restore_service_observer.h"
#include "components/signin/public/identity_manager/identity_manager.h"
#include "components/signin/public/identity_manager/identity_test_environment.h"
#include "components/signin/public/identity_manager/identity_test_utils.h"
#include "components/translate/core/browser/language_state.h"
#include "components/translate/core/browser/translate_manager.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/browser_test_utils.h"
#include "content/public/test/test_navigation_observer.h"
#include "content/public/test/test_utils.h"
#include "net/base/network_change_notifier.h"
#include "ui/base/ui_base_features.h"
#if BUILDFLAG(IS_CHROMEOS)
#include "ash/constants/ash_switches.h"
#include "ash/wm/window_pin_util.h"
#include "ui/aura/window.h"
#endif
#if BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_WIN)
#include "chrome/common/chrome_features.h"
#endif // BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_WIN)
#if BUILDFLAG(ENABLE_GLIC)
#include "chrome/browser/glic/glic_keyed_service_factory.h"
#include "chrome/browser/glic/glic_pref_names.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/pref_names.h"
#include "components/prefs/pref_service.h"
#endif
namespace chrome {
class BrowserCommandControllerBrowserTest : public InProcessBrowserTest {
public:
BrowserCommandControllerBrowserTest() = default;
BrowserCommandControllerBrowserTest(
const BrowserCommandControllerBrowserTest&) = delete;
BrowserCommandControllerBrowserTest& operator=(
const BrowserCommandControllerBrowserTest&) = delete;
~BrowserCommandControllerBrowserTest() override = default;
void SetUpCommandLine(base::CommandLine* command_line) override {
#if BUILDFLAG(IS_CHROMEOS)
command_line->AppendSwitch(
ash::switches::kIgnoreUserProfileMappingForTests);
#endif
}
};
// Test case for menus that only appear after Chrome Refresh.
class BrowserCommandControllerBrowserTestRefreshOnly
: public BrowserCommandControllerBrowserTest {
public:
BrowserCommandControllerBrowserTestRefreshOnly() = default;
BrowserCommandControllerBrowserTestRefreshOnly(
const BrowserCommandControllerBrowserTestRefreshOnly&) = delete;
BrowserCommandControllerBrowserTestRefreshOnly& operator=(
const BrowserCommandControllerBrowserTestRefreshOnly&) = delete;
~BrowserCommandControllerBrowserTestRefreshOnly() override = default;
protected:
void LoadAndWaitForLanguage(std::string_view relative_url) {
ASSERT_TRUE(embedded_test_server()->Start());
GURL url = embedded_test_server()->GetURL(relative_url);
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), url));
ChromeTranslateClient* chrome_translate_client =
ChromeTranslateClient::FromWebContents(
browser()->tab_strip_model()->GetActiveWebContents());
std::unique_ptr<translate::TranslateWaiter> translate_waiter =
translate::CreateTranslateWaiter(
browser()->tab_strip_model()->GetActiveWebContents(),
translate::TranslateWaiter::WaitEvent::kLanguageDetermined);
while (
chrome_translate_client->GetLanguageState().source_language().empty()) {
translate_waiter->Wait();
}
translate::TranslateManager::SetIgnoreMissingKeyForTesting(true);
net::NetworkChangeNotifier::CreateMockIfNeeded();
browser()->command_controller()->TabStateChanged();
}
};
// Test case for actions behind Toolbar Pinning.
using BrowserCommandControllerBrowserTestToolbarPinningOnly =
BrowserCommandControllerBrowserTestRefreshOnly;
// Verify that showing a constrained window disables find.
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTest, DisableFind) {
EXPECT_TRUE(chrome::IsCommandEnabled(browser(), IDC_FIND));
// Showing constrained window should disable find.
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
auto delegate = std::make_unique<MockTabModalConfirmDialogDelegate>(
web_contents, nullptr);
MockTabModalConfirmDialogDelegate* delegate_ptr = delegate.get();
TabModalConfirmDialog::Create(std::move(delegate), web_contents);
EXPECT_FALSE(chrome::IsCommandEnabled(browser(), IDC_FIND));
// Switching to a new (unblocked) tab should reenable it.
AddBlankTabAndShow(browser());
EXPECT_TRUE(chrome::IsCommandEnabled(browser(), IDC_FIND));
// Switching back to the blocked tab should disable it again.
browser()->tab_strip_model()->ActivateTabAt(0);
EXPECT_FALSE(chrome::IsCommandEnabled(browser(), IDC_FIND));
// Closing the constrained window should reenable it.
delegate_ptr->Cancel();
content::RunAllPendingInMessageLoop();
EXPECT_TRUE(chrome::IsCommandEnabled(browser(), IDC_FIND));
}
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTest,
DisableCommandsInSingleTab) {
EXPECT_FALSE(
chrome::IsCommandEnabled(browser(), IDC_WINDOW_CLOSE_TABS_TO_RIGHT));
EXPECT_FALSE(
chrome::IsCommandEnabled(browser(), IDC_WINDOW_CLOSE_OTHER_TABS));
EXPECT_FALSE(chrome::IsCommandEnabled(browser(), IDC_MOVE_TAB_TO_NEW_WINDOW));
// Add a new tab.
auto* tab_strip_model = browser()->tab_strip_model();
AddBlankTabAndShow(browser());
ASSERT_EQ(2, tab_strip_model->count());
ASSERT_EQ(1, tab_strip_model->active_index());
// Active previous tab.
tab_strip_model->ActivateTabAt(0);
ASSERT_EQ(2, tab_strip_model->count());
ASSERT_EQ(0, tab_strip_model->active_index());
EXPECT_TRUE(
chrome::IsCommandEnabled(browser(), IDC_WINDOW_CLOSE_TABS_TO_RIGHT));
EXPECT_TRUE(chrome::IsCommandEnabled(browser(), IDC_WINDOW_CLOSE_OTHER_TABS));
EXPECT_TRUE(chrome::IsCommandEnabled(browser(), IDC_MOVE_TAB_TO_NEW_WINDOW));
// Close the newly added tab.
tab_strip_model->CloseWebContentsAt(1, TabCloseTypes::CLOSE_USER_GESTURE);
ASSERT_EQ(1, tab_strip_model->count());
EXPECT_FALSE(
chrome::IsCommandEnabled(browser(), IDC_WINDOW_CLOSE_TABS_TO_RIGHT));
EXPECT_FALSE(
chrome::IsCommandEnabled(browser(), IDC_WINDOW_CLOSE_OTHER_TABS));
EXPECT_FALSE(chrome::IsCommandEnabled(browser(), IDC_MOVE_TAB_TO_NEW_WINDOW));
}
#if !BUILDFLAG(IS_CHROMEOS)
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTest,
NewAvatarMenuEnabledInGuestMode) {
EXPECT_EQ(1U, BrowserList::GetInstance()->size());
Browser* browser = CreateGuestBrowser();
EXPECT_TRUE(browser);
const CommandUpdater* command_updater = browser->command_controller();
EXPECT_TRUE(command_updater->IsCommandEnabled(IDC_SHOW_AVATAR_MENU));
}
#endif
#if BUILDFLAG(IS_CHROMEOS)
class BrowserCommandControllerBrowserTestLockedFullscreen
: public BrowserCommandControllerBrowserTest {
protected:
void SetUpOnMainThread() override {
BrowserCommandControllerBrowserTest::SetUpOnMainThread();
// Set up browser for testing / validating page navigation and tab
// management command states. This mostly involves opening a new tab and
// ensuring that we are able to navigate back and forward for the test.
OpenUrlWithDisposition(GURL("chrome://new-tab-page/"),
WindowOpenDisposition::NEW_FOREGROUND_TAB);
OpenUrlWithDisposition(GURL("chrome://version/"),
WindowOpenDisposition::CURRENT_TAB);
OpenUrlWithDisposition(GURL("about:blank"),
WindowOpenDisposition::CURRENT_TAB);
// Go back by one page to ensure the forward command is also available for
// testing purposes.
content::TestNavigationObserver navigation_observer(
browser()->tab_strip_model()->GetActiveWebContents());
chrome::GoBack(browser(), WindowOpenDisposition::CURRENT_TAB);
navigation_observer.Wait();
ASSERT_TRUE(chrome::CanGoBack(browser()));
ASSERT_TRUE(chrome::CanGoForward(browser()));
}
void EnterLockedFullscreen() {
PinWindow(browser()->window()->GetNativeWindow(), /*trusted=*/true);
// Update the corresponding command controller state as well as other
// states so we can verify what commands are enabled.
browser()->command_controller()->LockedFullscreenStateChanged();
browser()->command_controller()->TabStateChanged();
browser()->command_controller()->FullscreenStateChanged();
browser()->command_controller()->PrintingStateChanged();
browser()->command_controller()->ExtensionStateChanged();
browser()->command_controller()->FindBarVisibilityChanged();
browser()->command_controller()->UpdateReloadStopState(/*is_loading=*/true,
/*force=*/false);
}
void ExitLockedFullscreen() {
UnpinWindow(browser()->window()->GetNativeWindow());
browser()->command_controller()->LockedFullscreenStateChanged();
}
CommandUpdaterImpl* GetCommandUpdater() {
return &browser()->command_controller()->command_updater_;
}
private:
void OpenUrlWithDisposition(GURL url, WindowOpenDisposition disposition) {
ASSERT_TRUE(ui_test_utils::NavigateToURLWithDisposition(
browser(), url, disposition,
ui_test_utils::BROWSER_TEST_WAIT_FOR_LOAD_STOP));
}
};
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTestLockedFullscreen,
WhenNotLockedForOnTask) {
browser()->SetLockedForOnTask(false);
CommandUpdaterImpl* const command_updater = GetCommandUpdater();
// IDC_EXIT is always enabled in regular mode so it's a perfect candidate for
// testing.
EXPECT_TRUE(command_updater->IsCommandEnabled(IDC_EXIT));
EnterLockedFullscreen();
// IDC_EXIT is not enabled in locked fullscreen.
EXPECT_FALSE(command_updater->IsCommandEnabled(IDC_EXIT));
constexpr int kAllowlistedIds[] = {IDC_CUT, IDC_COPY, IDC_PASTE};
// Go through all the command ids and ensure only allowlisted commands are
// enabled.
for (int id : command_updater->GetAllIds()) {
bool is_command_allowlisted = base::Contains(kAllowlistedIds, id);
EXPECT_EQ(command_updater->IsCommandEnabled(id), is_command_allowlisted)
<< "Command " << id << " failed to meet enabled state expectation";
}
// Exit locked fullscreen and verify IDC_EXIT is enabled again.
ExitLockedFullscreen();
EXPECT_TRUE(command_updater->IsCommandEnabled(IDC_EXIT));
}
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTestLockedFullscreen,
WhenLockedForOnTask) {
browser()->SetLockedForOnTask(true);
CommandUpdaterImpl* const command_updater = GetCommandUpdater();
// IDC_EXIT is always enabled in regular mode so it's a perfect candidate for
// testing.
EXPECT_TRUE(command_updater->IsCommandEnabled(IDC_EXIT));
EnterLockedFullscreen();
// IDC_EXIT is not enabled in locked fullscreen.
EXPECT_FALSE(command_updater->IsCommandEnabled(IDC_EXIT));
// NOTE: If new commands are being added, please disable them by default and
// notify the ChromeOS team by filing a bug under this component --
// b/?q=componentid:1389107.
constexpr int kAllowlistedIds[] = {
IDC_CUT, IDC_COPY, IDC_PASTE,
// Page navigation commands.
IDC_BACK, IDC_FORWARD, IDC_RELOAD, IDC_RELOAD_BYPASSING_CACHE,
IDC_RELOAD_CLEARING_CACHE, IDC_STOP,
// Tab navigation commands.
IDC_SELECT_NEXT_TAB, IDC_SELECT_PREVIOUS_TAB,
// Find content commands.
IDC_FIND, IDC_FIND_NEXT, IDC_FIND_PREVIOUS, IDC_CLOSE_FIND_OR_STOP};
// Go through all the command ids and ensure only allowlisted commands are
// enabled.
for (int id : command_updater->GetAllIds()) {
bool is_command_allowlisted = base::Contains(kAllowlistedIds, id);
EXPECT_EQ(command_updater->IsCommandEnabled(id), is_command_allowlisted)
<< "Command " << id << " failed to meet enabled state expectation";
}
// Exit locked fullscreen and verify IDC_EXIT is enabled again.
ExitLockedFullscreen();
EXPECT_TRUE(command_updater->IsCommandEnabled(IDC_EXIT));
}
#endif
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTest,
TestTabRestoreServiceInitialized) {
// Note: The command should start out as enabled as the default.
// All the initialization happens before any test code executes,
// so we can't validate it.
// The TabRestoreService should get initialized (Loaded)
// automatically upon launch.
// Wait for robustness because InProcessBrowserTest::PreRunTestOnMainThread
// does not flush the task scheduler.
TabRestoreServiceLoadWaiter waiter(
TabRestoreServiceFactory::GetForProfile(browser()->profile()));
waiter.Wait();
// After initialization, the command should become disabled because there's
// nothing to restore.
chrome::BrowserCommandController* commandController =
browser()->command_controller();
ASSERT_EQ(false, commandController->IsCommandEnabled(IDC_RESTORE_TAB));
}
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTest,
PRE_TestTabRestoreCommandEnabled) {
ui_test_utils::NavigateToURLWithDisposition(
browser(), GURL("about:blank"), WindowOpenDisposition::NEW_FOREGROUND_TAB,
ui_test_utils::BROWSER_TEST_WAIT_FOR_LOAD_STOP);
ASSERT_EQ(2, browser()->tab_strip_model()->count());
EXPECT_EQ(1, browser()->tab_strip_model()->active_index());
content::WebContents* tab_to_close =
browser()->tab_strip_model()->GetActiveWebContents();
content::WebContentsDestroyedWatcher destroyed_watcher(tab_to_close);
browser()->tab_strip_model()->CloseSelectedTabs();
destroyed_watcher.Wait();
}
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTest,
TestTabRestoreCommandEnabled) {
// The TabRestoreService should get initialized (Loaded)
// automatically upon launch.
// Wait for robustness because InProcessBrowserTest::PreRunTestOnMainThread
// does not flush the task scheduler.
TabRestoreServiceLoadWaiter waiter(
TabRestoreServiceFactory::GetForProfile(browser()->profile()));
waiter.Wait();
// After initialization, the command should remain enabled because there's
// one tab to restore.
chrome::BrowserCommandController* commandController =
browser()->command_controller();
ASSERT_EQ(true, commandController->IsCommandEnabled(IDC_RESTORE_TAB));
}
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTest,
OpenDisabledForAppBrowser) {
auto params = Browser::CreateParams::CreateForApp(
"abcdefghaghpphfffooibmlghaeopach", true /* trusted_source */,
gfx::Rect(), /* window_bounts */
browser()->profile(), true /* user_gesture */);
Browser* browser = Browser::Create(params);
chrome::BrowserCommandController* commandController =
browser->command_controller();
ASSERT_EQ(false, commandController->IsCommandEnabled(IDC_OPEN_FILE));
}
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTest,
OpenDisabledForAppPopupBrowser) {
auto params = Browser::CreateParams::CreateForAppPopup(
"abcdefghaghpphfffooibmlghaeopach", true /* trusted_source */,
gfx::Rect(), /* window_bounts */
browser()->profile(), true /* user_gesture */);
Browser* browser = Browser::Create(params);
chrome::BrowserCommandController* commandController =
browser->command_controller();
ASSERT_EQ(false, commandController->IsCommandEnabled(IDC_OPEN_FILE));
}
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTest,
OpenDisabledForDevToolsBrowser) {
auto params = Browser::CreateParams::CreateForDevTools(browser()->profile());
Browser* browser = Browser::Create(params);
chrome::BrowserCommandController* commandController =
browser->command_controller();
ASSERT_EQ(false, commandController->IsCommandEnabled(IDC_OPEN_FILE));
}
#if !BUILDFLAG(IS_CHROMEOS)
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTestRefreshOnly,
ExecuteProfileMenuCustomizeChrome) {
EXPECT_TRUE(chrome::ExecuteCommand(browser(), IDC_CUSTOMIZE_CHROME));
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
content::WaitForLoadStop(web_contents);
EXPECT_EQ(web_contents->GetURL().possibly_invalid_spec(),
"chrome://settings/manageProfile");
}
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTestRefreshOnly,
ExecuteProfileMenuManageGoogleAccount) {
signin::IdentityManager* identity_manager =
IdentityManagerFactory::GetForProfile(browser()->profile());
CoreAccountInfo account_info = signin::SetPrimaryAccount(
identity_manager, "user@example.com", signin::ConsentLevel::kSignin);
chrome::UpdateCommandEnabled(browser(), IDC_MANAGE_GOOGLE_ACCOUNT, true);
EXPECT_TRUE(chrome::ExecuteCommand(browser(), IDC_MANAGE_GOOGLE_ACCOUNT));
}
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTestRefreshOnly,
ExecuteProfileMenuCloseProfile) {
EXPECT_TRUE(chrome::ExecuteCommand(browser(), IDC_CLOSE_PROFILE));
}
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTestRefreshOnly,
ExecuteShowSyncSettings) {
EXPECT_TRUE(chrome::ExecuteCommand(browser(), IDC_SHOW_SYNC_SETTINGS));
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
content::WaitForLoadStop(web_contents);
EXPECT_EQ(web_contents->GetURL().possibly_invalid_spec(),
"chrome://settings/syncSetup");
}
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTestRefreshOnly,
ExecuteShowCustomizeChrome) {
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
content::WaitForLoadStop(web_contents);
EXPECT_TRUE(
chrome::ExecuteCommand(browser(), IDC_SHOW_CUSTOMIZE_CHROME_SIDE_PANEL));
const std::optional<SidePanelEntryId> current_entry =
browser()->GetFeatures().side_panel_ui()->GetCurrentEntryId();
EXPECT_TRUE(current_entry.has_value());
EXPECT_EQ(SidePanelEntryId::kCustomizeChrome, current_entry.value());
}
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTestRefreshOnly,
ExecuteShowCustomizeChromeToolbar) {
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
content::WaitForLoadStop(web_contents);
EXPECT_TRUE(
chrome::ExecuteCommand(browser(), IDC_SHOW_CUSTOMIZE_CHROME_TOOLBAR));
const std::optional<SidePanelEntryId> current_entry =
browser()->GetFeatures().side_panel_ui()->GetCurrentEntryId();
EXPECT_TRUE(current_entry.has_value());
EXPECT_EQ(SidePanelEntryId::kCustomizeChrome, current_entry.value());
}
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTestRefreshOnly,
ExecuteProfileMenuOpenGuestProfile) {
EXPECT_TRUE(chrome::ExecuteCommand(browser(), IDC_OPEN_GUEST_PROFILE));
Browser* guest_browser = ui_test_utils::WaitForBrowserToOpen();
ASSERT_TRUE(guest_browser);
ASSERT_TRUE(guest_browser->profile()->IsGuestSession());
}
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTestRefreshOnly,
ExecuteTurnOnSync) {
EXPECT_TRUE(chrome::ExecuteCommand(browser(), IDC_TURN_ON_SYNC));
}
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTestRefreshOnly,
ExecuteShowSigninWhenPaused) {
signin::IdentityManager* identity_manager =
IdentityManagerFactory::GetForProfile(browser()->profile());
signin::MakePrimaryAccountAvailable(identity_manager, "user@example.com",
signin::ConsentLevel::kSync);
signin::SetRefreshTokenForPrimaryAccount(identity_manager);
signin::SetInvalidRefreshTokenForPrimaryAccount(identity_manager);
EXPECT_TRUE(chrome::ExecuteCommand(browser(), IDC_SHOW_SIGNIN_WHEN_PAUSED));
}
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTestRefreshOnly,
ExecuteProfileMenuAddNewProfile) {
EXPECT_TRUE(chrome::ExecuteCommand(browser(), IDC_ADD_NEW_PROFILE));
profiles::testing::WaitForPickerLoadStop(
GURL("chrome://profile-picker/new-profile"));
EXPECT_TRUE(ProfilePicker::IsOpen());
}
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTestRefreshOnly,
ExecuteProfileMenuManageChromeProfiles) {
EXPECT_TRUE(chrome::ExecuteCommand(browser(), IDC_MANAGE_CHROME_PROFILES));
profiles::testing::WaitForPickerWidgetCreated();
EXPECT_TRUE(ProfilePicker::IsOpen());
}
#endif
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTestRefreshOnly,
ShowTranslateStatusChromePage) {
ASSERT_TRUE(embedded_test_server()->Start());
GURL url = GURL("chrome://new-tab-page/");
translate::TranslateManager::SetIgnoreMissingKeyForTesting(true);
net::NetworkChangeNotifier::CreateMockIfNeeded();
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), url));
browser()->command_controller()->TabStateChanged();
EXPECT_FALSE(
browser()->command_controller()->IsCommandEnabled(IDC_SHOW_TRANSLATE));
}
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTestRefreshOnly,
ShowTranslateStatusEnglishPage) {
LoadAndWaitForLanguage("/english_page.html");
EXPECT_TRUE(
browser()->command_controller()->IsCommandEnabled(IDC_SHOW_TRANSLATE));
}
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTestRefreshOnly,
ShowTranslateStatusFrenchPage) {
LoadAndWaitForLanguage("/french_page.html");
EXPECT_TRUE(
browser()->command_controller()->IsCommandEnabled(IDC_SHOW_TRANSLATE));
}
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTestRefreshOnly,
ExecuteShowTranslateBubble) {
LoadAndWaitForLanguage("/french_page.html");
EXPECT_TRUE(chrome::ExecuteCommand(browser(), IDC_SHOW_TRANSLATE));
}
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTestToolbarPinningOnly,
ShowTranslateStatusChromePage) {
ASSERT_TRUE(embedded_test_server()->Start());
GURL url = GURL("chrome://new-tab-page/");
translate::TranslateManager::SetIgnoreMissingKeyForTesting(true);
net::NetworkChangeNotifier::CreateMockIfNeeded();
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), url));
browser()->command_controller()->TabStateChanged();
EXPECT_FALSE(actions::ActionManager::GetForTesting()
.FindAction(kActionShowTranslate)
->GetEnabled());
}
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTestToolbarPinningOnly,
ShowTranslateStatusEnglishPage) {
LoadAndWaitForLanguage("/english_page.html");
EXPECT_TRUE(actions::ActionManager::GetForTesting()
.FindAction(kActionShowTranslate)
->GetEnabled());
}
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTestToolbarPinningOnly,
ShowTranslateStatusFrenchPage) {
LoadAndWaitForLanguage("/french_page.html");
EXPECT_TRUE(actions::ActionManager::GetForTesting()
.FindAction(kActionShowTranslate)
->GetEnabled());
}
#if BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_WIN)
using CreateShortcutBrowserCommandControllerNavTest =
BrowserCommandControllerBrowserTest;
IN_PROC_BROWSER_TEST_F(CreateShortcutBrowserCommandControllerNavTest,
ErrorUrlDisabled) {
ASSERT_TRUE(embedded_test_server()->Start());
// This returns a 404 server error, and cannot be unit-tested, since a valid
// request is not obtained for the navigation entry being committed in
// unit-tests.
GURL error_url(embedded_test_server()->GetURL("example.com", "/abcdef/"));
EXPECT_TRUE(ui_test_utils::NavigateToURL(browser(), error_url));
EXPECT_FALSE(chrome::IsCommandEnabled(browser(), IDC_CREATE_SHORTCUT));
}
#endif // BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_WIN)
// Tests for comparison table submenu.
class BrowserCommandControllerBrowserTestCompare
: public BrowserCommandControllerBrowserTest {
public:
BrowserCommandControllerBrowserTestCompare() {
scoped_feature_list_.InitAndEnableFeature(commerce::kProductSpecifications);
}
private:
base::test::ScopedFeatureList scoped_feature_list_;
};
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTestCompare,
AddToTableMenu_UrlSchemeHttp) {
GURL url = GURL("http://example.com");
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), url));
browser()->command_controller()->TabStateChanged();
EXPECT_TRUE(browser()->command_controller()->IsCommandEnabled(
IDC_ADD_TO_COMPARISON_TABLE_MENU));
}
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTestCompare,
AddToTableMenu_UrlSchemeHttps) {
GURL url = GURL("https://example.com");
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), url));
browser()->command_controller()->TabStateChanged();
EXPECT_TRUE(browser()->command_controller()->IsCommandEnabled(
IDC_ADD_TO_COMPARISON_TABLE_MENU));
}
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTestCompare,
AddToTableMenu_UrlSchemeNotHttpOrHttps) {
GURL url = GURL("chrome://history");
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), url));
browser()->command_controller()->TabStateChanged();
EXPECT_FALSE(browser()->command_controller()->IsCommandEnabled(
IDC_ADD_TO_COMPARISON_TABLE_MENU));
}
#if BUILDFLAG(ENABLE_GLIC)
class BrowserCommandControllerBrowserTestGlic
: public BrowserCommandControllerBrowserTest {
public:
void SetUp() override {
scoped_feature_list_.InitWithFeatures(
{features::kGlic, features::kTabstripComboButton}, {});
BrowserCommandControllerBrowserTest::SetUp();
}
void SetUpCommandLine(base::CommandLine* command_line) override {
// Bypass glic eligibility check.
base::CommandLine::ForCurrentProcess()->AppendSwitch(::switches::kGlicDev);
}
private:
base::test::ScopedFeatureList scoped_feature_list_;
};
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTestGlic,
ExecuteGlicTogglePin) {
PrefService* profile_prefs = browser()->profile()->GetPrefs();
profile_prefs->SetBoolean(glic::prefs::kGlicPinnedToTabstrip, false);
EXPECT_TRUE(chrome::ExecuteCommand(browser(), IDC_GLIC_TOGGLE_PIN));
EXPECT_TRUE(profile_prefs->GetBoolean(glic::prefs::kGlicPinnedToTabstrip));
EXPECT_TRUE(chrome::ExecuteCommand(browser(), IDC_GLIC_TOGGLE_PIN));
EXPECT_FALSE(profile_prefs->GetBoolean(glic::prefs::kGlicPinnedToTabstrip));
}
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTestGlic,
EnabledInRegularProfile) {
ASSERT_TRUE(browser()->profile()->IsRegularProfile());
EXPECT_TRUE(chrome::IsCommandEnabled(browser(), IDC_GLIC_TOGGLE_PIN));
}
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTestGlic,
DisabledInIncognitoProfile) {
Browser* incognito_browser = CreateIncognitoBrowser();
EXPECT_TRUE(incognito_browser->profile()->IsIncognitoProfile());
EXPECT_FALSE(
chrome::IsCommandEnabled(incognito_browser, IDC_GLIC_TOGGLE_PIN));
}
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTestGlic,
DisabledInGuestProfile) {
Browser* guest_browser = CreateGuestBrowser();
EXPECT_TRUE(guest_browser->profile()->IsGuestSession());
EXPECT_FALSE(chrome::IsCommandEnabled(guest_browser, IDC_GLIC_TOGGLE_PIN));
}
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTestGlic,
ThreeDotMenuItemEnabledInRegularProfile) {
ASSERT_TRUE(browser()->profile()->IsRegularProfile());
EXPECT_TRUE(chrome::IsCommandEnabled(browser(), IDC_OPEN_GLIC));
}
IN_PROC_BROWSER_TEST_F(BrowserCommandControllerBrowserTestGlic,
ExecuteGlicThreeDotMenuItem) {
// Bypass glic eligibility check.
PrefService* profile_prefs = browser()->profile()->GetPrefs();
profile_prefs->SetInteger(
::prefs::kGeminiSettings,
static_cast<int>(glic::prefs::SettingsPolicyState::kEnabled));
// Bypass fre.
profile_prefs->SetInteger(glic::prefs::kGlicCompletedFre,
static_cast<int>(glic::prefs::FreStatus::kCompleted));
EXPECT_TRUE(chrome::ExecuteCommand(browser(), IDC_OPEN_GLIC));
ASSERT_TRUE(
glic::GlicKeyedServiceFactory::GetGlicKeyedService(browser()->profile())
->IsWindowShowing());
}
#endif // BUILDFLAG(ENABLE_GLIC)
} // namespace chrome
|