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
|
// 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/exclusive_access/fullscreen_controller.h"
#include "base/functional/bind.h"
#include "base/test/simple_test_tick_clock.h"
#include "base/test/test_mock_time_task_runner.h"
#include "base/time/time.h"
#include "build/build_config.h"
#include "chrome/browser/content_settings/host_content_settings_map_factory.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_commands.h"
#include "chrome/browser/ui/browser_tabstrip.h"
#include "chrome/browser/ui/browser_window.h"
#include "chrome/browser/ui/browser_window/public/browser_window_features.h"
#include "chrome/browser/ui/exclusive_access/exclusive_access_context.h"
#include "chrome/browser/ui/exclusive_access/exclusive_access_manager.h"
#include "chrome/browser/ui/exclusive_access/exclusive_access_test.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/browser/ui/ui_features.h"
#include "chrome/common/pref_names.h"
#include "chrome/test/base/ui_test_utils.h"
#include "components/content_settings/core/browser/host_content_settings_map.h"
#include "components/input/native_web_keyboard_event.h"
#include "components/prefs/pref_service.h"
#include "content/public/browser/web_contents.h"
#include "content/public/common/url_constants.h"
#include "content/public/test/browser_test.h"
#include "net/test/embedded_test_server/embedded_test_server.h"
#include "ui/events/event.h"
#include "ui/events/event_constants.h"
#include "ui/events/keycodes/keyboard_codes.h"
#if BUILDFLAG(IS_CHROMEOS)
#include "ash/wm/window_pin_util.h"
#endif
using content::WebContents;
using ui::PAGE_TRANSITION_TYPED;
using FullscreenControllerTest = ExclusiveAccessTest;
namespace {
// In some environments (Linux and Mac) the operation is finished asynchronously
// and we have to wait until the state change has occurred.
void WaitForDisplayed(Browser* browser) {
base::RunLoop outer_loop;
auto wait_for_state = base::BindRepeating(
[](base::RunLoop* outer_loop, Browser* browser) {
ExclusiveAccessManager* manager =
browser->GetFeatures().exclusive_access_manager();
if (manager->context()->IsExclusiveAccessBubbleDisplayed()) {
outer_loop->Quit();
}
},
&outer_loop, browser);
base::RepeatingTimer timer;
timer.Start(FROM_HERE, base::Milliseconds(1), std::move(wait_for_state));
outer_loop.Run();
}
} // namespace
//
// Fullscreen tests.
//
#if BUILDFLAG(IS_MAC)
#define MAYBE_FullscreenOnFileURL DISABLED_FullscreenOnFileURL
#else
#define MAYBE_FullscreenOnFileURL FullscreenOnFileURL
#endif
// TODO(https://crbug.com/330729275): Re-enable when fixed on macOS 14.
IN_PROC_BROWSER_TEST_F(FullscreenControllerTest, MAYBE_FullscreenOnFileURL) {
static const base::FilePath::CharType* kEmptyFile =
FILE_PATH_LITERAL("empty.html");
GURL file_url(ui_test_utils::GetTestUrl(
base::FilePath(base::FilePath::kCurrentDirectory),
base::FilePath(kEmptyFile)));
ASSERT_TRUE(AddTabAtIndex(0, file_url, PAGE_TRANSITION_TYPED));
GetFullscreenController()->EnterFullscreenModeForTab(
browser()
->tab_strip_model()
->GetActiveWebContents()
->GetPrimaryMainFrame());
WaitForDisplayed(browser());
ASSERT_TRUE(IsExclusiveAccessBubbleDisplayed());
}
//
// KeyboardLock fullscreen tests.
//
IN_PROC_BROWSER_TEST_F(FullscreenControllerTest, KeyboardLockWithEscLocked) {
EnterActiveTabFullscreen();
ASSERT_TRUE(RequestKeyboardLock(/*esc_key_locked=*/true));
ASSERT_TRUE(GetExclusiveAccessManager()
->keyboard_lock_controller()
->IsKeyboardLockActive());
ASSERT_EQ(EXCLUSIVE_ACCESS_BUBBLE_TYPE_KEYBOARD_LOCK_EXIT_INSTRUCTION,
GetExclusiveAccessBubbleType());
}
IN_PROC_BROWSER_TEST_F(FullscreenControllerTest, KeyboardLockWithEscUnlocked) {
EnterActiveTabFullscreen();
ASSERT_TRUE(RequestKeyboardLock(/*esc_key_locked=*/false));
ASSERT_TRUE(GetExclusiveAccessManager()
->keyboard_lock_controller()
->IsKeyboardLockActive());
ASSERT_EQ(EXCLUSIVE_ACCESS_BUBBLE_TYPE_FULLSCREEN_EXIT_INSTRUCTION,
GetExclusiveAccessBubbleType());
}
IN_PROC_BROWSER_TEST_F(FullscreenControllerTest,
KeyboardLockOnFileURLWithEscLocked) {
static const base::FilePath::CharType* kEmptyFile =
FILE_PATH_LITERAL("empty.html");
GURL file_url(ui_test_utils::GetTestUrl(
base::FilePath(base::FilePath::kCurrentDirectory),
base::FilePath(kEmptyFile)));
ASSERT_TRUE(AddTabAtIndex(0, file_url, PAGE_TRANSITION_TYPED));
EnterActiveTabFullscreen();
ASSERT_TRUE(RequestKeyboardLock(/*esc_key_locked=*/true));
ASSERT_TRUE(GetExclusiveAccessManager()
->keyboard_lock_controller()
->IsKeyboardLockActive());
ASSERT_EQ(EXCLUSIVE_ACCESS_BUBBLE_TYPE_KEYBOARD_LOCK_EXIT_INSTRUCTION,
GetExclusiveAccessBubbleType());
}
IN_PROC_BROWSER_TEST_F(FullscreenControllerTest,
KeyboardLockOnFileURLWithEscUnlocked) {
static const base::FilePath::CharType* kEmptyFile =
FILE_PATH_LITERAL("empty.html");
GURL file_url(ui_test_utils::GetTestUrl(
base::FilePath(base::FilePath::kCurrentDirectory),
base::FilePath(kEmptyFile)));
ASSERT_TRUE(AddTabAtIndex(0, file_url, PAGE_TRANSITION_TYPED));
EnterActiveTabFullscreen();
ASSERT_TRUE(RequestKeyboardLock(/*esc_key_locked=*/false));
ASSERT_TRUE(GetExclusiveAccessManager()
->keyboard_lock_controller()
->IsKeyboardLockActive());
ASSERT_EQ(EXCLUSIVE_ACCESS_BUBBLE_TYPE_FULLSCREEN_EXIT_INSTRUCTION,
GetExclusiveAccessBubbleType());
}
IN_PROC_BROWSER_TEST_F(FullscreenControllerTest,
KeyboardLockNotLockedInWindowMode) {
ASSERT_TRUE(RequestKeyboardLock(/*esc_key_locked=*/true));
ASSERT_FALSE(GetExclusiveAccessManager()
->keyboard_lock_controller()
->IsKeyboardLockActive());
ASSERT_EQ(EXCLUSIVE_ACCESS_BUBBLE_TYPE_NONE, GetExclusiveAccessBubbleType());
EnterActiveTabFullscreen();
}
IN_PROC_BROWSER_TEST_F(FullscreenControllerTest,
KeyboardLockExitsOnEscPressWhenEscNotLocked) {
EnterActiveTabFullscreen();
ASSERT_TRUE(RequestKeyboardLock(/*esc_key_locked=*/false));
ASSERT_TRUE(GetExclusiveAccessManager()
->keyboard_lock_controller()
->IsKeyboardLockActive());
SendEscapeToExclusiveAccessManager();
ASSERT_FALSE(GetExclusiveAccessManager()
->keyboard_lock_controller()
->IsKeyboardLockActive());
}
IN_PROC_BROWSER_TEST_F(FullscreenControllerTest,
KeyboardLockDoesNotExitOnEscPressWhenEscIsLocked) {
EnterActiveTabFullscreen();
ASSERT_TRUE(RequestKeyboardLock(/*esc_key_locked=*/true));
ASSERT_TRUE(GetExclusiveAccessManager()
->keyboard_lock_controller()
->IsKeyboardLockActive());
SendEscapeToExclusiveAccessManager();
ASSERT_TRUE(GetExclusiveAccessManager()
->keyboard_lock_controller()
->IsKeyboardLockActive());
}
IN_PROC_BROWSER_TEST_F(FullscreenControllerTest,
KeyboardLockNotLockedInExtensionFullscreenMode) {
EnterExtensionInitiatedFullscreen();
ASSERT_TRUE(RequestKeyboardLock(/*esc_key_locked=*/true));
ASSERT_FALSE(GetExclusiveAccessManager()
->keyboard_lock_controller()
->IsKeyboardLockActive());
ASSERT_TRUE(IsExclusiveAccessBubbleDisplayed());
ASSERT_NE(EXCLUSIVE_ACCESS_BUBBLE_TYPE_KEYBOARD_LOCK_EXIT_INSTRUCTION,
GetExclusiveAccessBubbleType());
}
IN_PROC_BROWSER_TEST_F(FullscreenControllerTest,
KeyboardLockNotLockedAfterFullscreenTransition) {
ASSERT_TRUE(RequestKeyboardLock(/*esc_key_locked=*/true));
EnterActiveTabFullscreen();
ASSERT_FALSE(GetExclusiveAccessManager()
->keyboard_lock_controller()
->IsKeyboardLockActive());
ASSERT_TRUE(IsExclusiveAccessBubbleDisplayed());
ASSERT_NE(EXCLUSIVE_ACCESS_BUBBLE_TYPE_KEYBOARD_LOCK_EXIT_INSTRUCTION,
GetExclusiveAccessBubbleType());
}
IN_PROC_BROWSER_TEST_F(FullscreenControllerTest,
KeyboardLockBubbleHideCallbackUnlock) {
EnterActiveTabFullscreen();
keyboard_lock_bubble_hide_reason_recorder_.clear();
ASSERT_TRUE(RequestKeyboardLock(/*esc_key_locked=*/true));
ASSERT_EQ(0ul, keyboard_lock_bubble_hide_reason_recorder_.size());
CancelKeyboardLock();
ASSERT_EQ(1ul, keyboard_lock_bubble_hide_reason_recorder_.size());
ASSERT_EQ(ExclusiveAccessBubbleHideReason::kInterrupted,
keyboard_lock_bubble_hide_reason_recorder_[0]);
}
IN_PROC_BROWSER_TEST_F(FullscreenControllerTest, FastKeyboardLockUnlockRelock) {
EnterActiveTabFullscreen();
ASSERT_TRUE(RequestKeyboardLock(/*esc_key_locked=*/true));
// Shorter than `ExclusiveAccessBubble::kShowTime`.
Wait(ExclusiveAccessBubble::kShowTime / 2);
CancelKeyboardLock();
ASSERT_TRUE(RequestKeyboardLock(/*esc_key_locked=*/true));
ASSERT_TRUE(GetExclusiveAccessManager()
->keyboard_lock_controller()
->IsKeyboardLockActive());
ASSERT_EQ(EXCLUSIVE_ACCESS_BUBBLE_TYPE_KEYBOARD_LOCK_EXIT_INSTRUCTION,
GetExclusiveAccessBubbleType());
}
IN_PROC_BROWSER_TEST_F(FullscreenControllerTest, SlowKeyboardLockUnlockRelock) {
EnterActiveTabFullscreen();
ASSERT_TRUE(RequestKeyboardLock(/*esc_key_locked=*/true));
// Longer than `ExclusiveAccessBubble::kShowTime`.
Wait(ExclusiveAccessBubble::kShowTime * 2);
CancelKeyboardLock();
ASSERT_TRUE(RequestKeyboardLock(/*esc_key_locked=*/true));
ASSERT_TRUE(GetExclusiveAccessManager()
->keyboard_lock_controller()
->IsKeyboardLockActive());
ASSERT_EQ(EXCLUSIVE_ACCESS_BUBBLE_TYPE_KEYBOARD_LOCK_EXIT_INSTRUCTION,
GetExclusiveAccessBubbleType());
}
IN_PROC_BROWSER_TEST_F(FullscreenControllerTest,
RepeatedEscEventsWithinWindowReshowsExitBubble) {
EnterActiveTabFullscreen();
base::SimpleTestTickClock clock;
SetEscRepeatTestTickClock(&clock);
bool esc_threshold_reached = false;
SetEscRepeatThresholdReachedCallback(base::BindOnce(
[](bool* triggered) { *triggered = true; }, &esc_threshold_reached));
// Set the window to a known value for testing.
SetEscRepeatWindowLength(base::Seconds(1));
ASSERT_TRUE(RequestKeyboardLock(/*esc_key_locked=*/true));
ASSERT_TRUE(GetExclusiveAccessManager()
->keyboard_lock_controller()
->IsKeyboardLockActive());
input::NativeWebKeyboardEvent key_down_event(
blink::WebKeyboardEvent::Type::kRawKeyDown,
blink::WebInputEvent::kNoModifiers,
blink::WebInputEvent::GetStaticTimeStampForTests());
key_down_event.windows_key_code = ui::VKEY_ESCAPE;
input::NativeWebKeyboardEvent key_up_event(
blink::WebKeyboardEvent::Type::kKeyUp, blink::WebInputEvent::kNoModifiers,
blink::WebInputEvent::GetStaticTimeStampForTests());
key_up_event.windows_key_code = ui::VKEY_ESCAPE;
// Total time for keypress events is 400ms which is inside the window.
GetExclusiveAccessManager()->HandleUserKeyEvent(key_down_event);
// Keypresses are counted on the keyup event.
GetExclusiveAccessManager()->HandleUserKeyEvent(key_up_event);
ASSERT_FALSE(esc_threshold_reached);
clock.Advance(base::Milliseconds(100));
GetExclusiveAccessManager()->HandleUserKeyEvent(key_down_event);
clock.Advance(base::Milliseconds(100));
GetExclusiveAccessManager()->HandleUserKeyEvent(key_up_event);
ASSERT_FALSE(esc_threshold_reached);
clock.Advance(base::Milliseconds(100));
GetExclusiveAccessManager()->HandleUserKeyEvent(key_down_event);
clock.Advance(base::Milliseconds(100));
GetExclusiveAccessManager()->HandleUserKeyEvent(key_up_event);
ASSERT_TRUE(esc_threshold_reached);
}
IN_PROC_BROWSER_TEST_F(FullscreenControllerTest,
RepeatedEscEventsOutsideWindowDoesNotShowExitBubble) {
EnterActiveTabFullscreen();
base::SimpleTestTickClock clock;
SetEscRepeatTestTickClock(&clock);
bool esc_threshold_reached = false;
SetEscRepeatThresholdReachedCallback(base::BindOnce(
[](bool* triggered) { *triggered = true; }, &esc_threshold_reached));
// Set the window to a known value for testing.
SetEscRepeatWindowLength(base::Seconds(1));
ASSERT_TRUE(RequestKeyboardLock(/*esc_key_locked=*/true));
ASSERT_TRUE(GetExclusiveAccessManager()
->keyboard_lock_controller()
->IsKeyboardLockActive());
input::NativeWebKeyboardEvent key_down_event(
blink::WebKeyboardEvent::Type::kRawKeyDown,
blink::WebInputEvent::kNoModifiers,
blink::WebInputEvent::GetStaticTimeStampForTests());
key_down_event.windows_key_code = ui::VKEY_ESCAPE;
input::NativeWebKeyboardEvent key_up_event(
blink::WebKeyboardEvent::Type::kKeyUp, blink::WebInputEvent::kNoModifiers,
blink::WebInputEvent::GetStaticTimeStampForTests());
key_up_event.windows_key_code = ui::VKEY_ESCAPE;
// Total time for keypress events is 1200ms which is outside the window.
GetExclusiveAccessManager()->HandleUserKeyEvent(key_down_event);
// Keypresses are counted on the keyup event.
GetExclusiveAccessManager()->HandleUserKeyEvent(key_up_event);
ASSERT_FALSE(esc_threshold_reached);
clock.Advance(base::Milliseconds(400));
GetExclusiveAccessManager()->HandleUserKeyEvent(key_down_event);
clock.Advance(base::Milliseconds(200));
GetExclusiveAccessManager()->HandleUserKeyEvent(key_up_event);
ASSERT_FALSE(esc_threshold_reached);
clock.Advance(base::Milliseconds(400));
GetExclusiveAccessManager()->HandleUserKeyEvent(key_down_event);
clock.Advance(base::Milliseconds(200));
GetExclusiveAccessManager()->HandleUserKeyEvent(key_up_event);
ASSERT_FALSE(esc_threshold_reached);
}
IN_PROC_BROWSER_TEST_F(FullscreenControllerTest, KeyboardLockAfterPointerLock) {
EnterActiveTabFullscreen();
RequestToLockPointer(/*user_gesture=*/true,
/*last_unlocked_by_target=*/false);
ASSERT_TRUE(IsExclusiveAccessBubbleDisplayed());
ASSERT_TRUE(GetExclusiveAccessManager()
->pointer_lock_controller()
->IsPointerLocked());
ASSERT_TRUE(RequestKeyboardLock(/*esc_key_locked=*/false));
ASSERT_TRUE(GetExclusiveAccessManager()
->keyboard_lock_controller()
->IsKeyboardLockActive());
ASSERT_TRUE(GetExclusiveAccessManager()
->pointer_lock_controller()
->IsPointerLocked());
ASSERT_TRUE(IsExclusiveAccessBubbleDisplayed());
ASSERT_NE(EXCLUSIVE_ACCESS_BUBBLE_TYPE_KEYBOARD_LOCK_EXIT_INSTRUCTION,
GetExclusiveAccessBubbleType());
}
IN_PROC_BROWSER_TEST_F(FullscreenControllerTest,
KeyboardLockAfterPointerLockWithEscLocked) {
EnterActiveTabFullscreen();
RequestToLockPointer(/*user_gesture=*/true,
/*last_unlocked_by_target=*/false);
ASSERT_TRUE(IsExclusiveAccessBubbleDisplayed());
ASSERT_TRUE(GetExclusiveAccessManager()
->pointer_lock_controller()
->IsPointerLocked());
ASSERT_TRUE(RequestKeyboardLock(/*esc_key_locked=*/true));
ASSERT_TRUE(GetExclusiveAccessManager()
->keyboard_lock_controller()
->IsKeyboardLockActive());
ASSERT_EQ(EXCLUSIVE_ACCESS_BUBBLE_TYPE_KEYBOARD_LOCK_EXIT_INSTRUCTION,
GetExclusiveAccessBubbleType());
}
IN_PROC_BROWSER_TEST_F(FullscreenControllerTest,
KeyboardLockCycleWithMixedEscLockStates) {
EnterActiveTabFullscreen();
keyboard_lock_bubble_hide_reason_recorder_.clear();
ASSERT_TRUE(RequestKeyboardLock(/*esc_key_locked=*/true));
ASSERT_TRUE(GetExclusiveAccessManager()
->keyboard_lock_controller()
->IsKeyboardLockActive());
ASSERT_EQ(EXCLUSIVE_ACCESS_BUBBLE_TYPE_KEYBOARD_LOCK_EXIT_INSTRUCTION,
GetExclusiveAccessBubbleType());
ASSERT_EQ(0ul, keyboard_lock_bubble_hide_reason_recorder_.size());
ASSERT_TRUE(RequestKeyboardLock(/*esc_key_locked=*/false));
ASSERT_TRUE(GetExclusiveAccessManager()
->keyboard_lock_controller()
->IsKeyboardLockActive());
ASSERT_EQ(EXCLUSIVE_ACCESS_BUBBLE_TYPE_FULLSCREEN_EXIT_INSTRUCTION,
GetExclusiveAccessBubbleType());
ASSERT_EQ(1ul, keyboard_lock_bubble_hide_reason_recorder_.size());
ASSERT_EQ(ExclusiveAccessBubbleHideReason::kInterrupted,
keyboard_lock_bubble_hide_reason_recorder_[0]);
keyboard_lock_bubble_hide_reason_recorder_.clear();
ASSERT_TRUE(RequestKeyboardLock(/*esc_key_locked=*/false));
ASSERT_TRUE(GetExclusiveAccessManager()
->keyboard_lock_controller()
->IsKeyboardLockActive());
ASSERT_EQ(EXCLUSIVE_ACCESS_BUBBLE_TYPE_FULLSCREEN_EXIT_INSTRUCTION,
GetExclusiveAccessBubbleType());
ASSERT_EQ(0ul, keyboard_lock_bubble_hide_reason_recorder_.size());
ASSERT_TRUE(RequestKeyboardLock(/*esc_key_locked=*/true));
ASSERT_TRUE(GetExclusiveAccessManager()
->keyboard_lock_controller()
->IsKeyboardLockActive());
ASSERT_EQ(EXCLUSIVE_ACCESS_BUBBLE_TYPE_KEYBOARD_LOCK_EXIT_INSTRUCTION,
GetExclusiveAccessBubbleType());
ASSERT_EQ(1ul, keyboard_lock_bubble_hide_reason_recorder_.size());
ASSERT_EQ(ExclusiveAccessBubbleHideReason::kInterrupted,
keyboard_lock_bubble_hide_reason_recorder_[0]);
keyboard_lock_bubble_hide_reason_recorder_.clear();
ASSERT_TRUE(RequestKeyboardLock(/*esc_key_locked=*/true));
ASSERT_TRUE(GetExclusiveAccessManager()
->keyboard_lock_controller()
->IsKeyboardLockActive());
ASSERT_EQ(EXCLUSIVE_ACCESS_BUBBLE_TYPE_KEYBOARD_LOCK_EXIT_INSTRUCTION,
GetExclusiveAccessBubbleType());
ASSERT_EQ(0ul, keyboard_lock_bubble_hide_reason_recorder_.size());
}
// Test whether the top view's status is correct during various transitions
// among normal state, browser fullscreen mode, and tab fullscreen mode.
// Sheriff: http://crbug.com/925928
IN_PROC_BROWSER_TEST_F(FullscreenControllerTest, DISABLED_TopViewStatusChange) {
ExclusiveAccessContext* context = GetExclusiveAccessManager()->context();
#if BUILDFLAG(IS_MAC)
// First, set the preference to true so we expect to see the top view in
// fullscreen mode.
PrefService* prefs = browser()->profile()->GetPrefs();
prefs->SetBoolean(prefs::kShowFullscreenToolbar, true);
#endif
// Test Normal state <--> Tab fullscreen mode.
EXPECT_FALSE(context->IsFullscreen());
EXPECT_TRUE(browser()->window()->IsToolbarVisible());
EnterActiveTabFullscreen();
EXPECT_TRUE(context->IsFullscreen());
EXPECT_FALSE(browser()->window()->IsToolbarVisible());
SendEscapeToExclusiveAccessManager();
EXPECT_FALSE(context->IsFullscreen());
EXPECT_TRUE(browser()->window()->IsToolbarVisible());
// Test Normal state <--> Browser fullscreen mode <--> Tab fullscreen mode.
ui_test_utils::ToggleFullscreenModeAndWait(browser());
EXPECT_TRUE(context->IsFullscreen());
#if BUILDFLAG(IS_MAC) || BUILDFLAG(IS_CHROMEOS)
bool should_show_top_ui = true;
#else
bool should_show_top_ui = false;
#endif
EXPECT_EQ(should_show_top_ui, browser()->window()->IsToolbarVisible());
EnterActiveTabFullscreen();
EXPECT_TRUE(context->IsFullscreen());
#if BUILDFLAG(IS_CHROMEOS)
EXPECT_TRUE(browser()->window()->IsToolbarVisible());
#else
EXPECT_FALSE(browser()->window()->IsToolbarVisible());
#endif
SendEscapeToExclusiveAccessManager();
EXPECT_TRUE(context->IsFullscreen());
EXPECT_EQ(should_show_top_ui, browser()->window()->IsToolbarVisible());
ui_test_utils::ToggleFullscreenModeAndWait(browser());
EXPECT_FALSE(context->IsFullscreen());
EXPECT_TRUE(browser()->window()->IsToolbarVisible());
// Test exiting tab fullscreen mode by toggling browser fullscreen mode.
// This is to simulate pressing fullscreen shortcut key during tab fullscreen
// mode across all platforms.
// On Mac, this happens by clicking green traffic light button to exit
// tab fullscreen.
EnterActiveTabFullscreen();
EXPECT_TRUE(context->IsFullscreen());
EXPECT_FALSE(browser()->window()->IsToolbarVisible());
ui_test_utils::ToggleFullscreenModeAndWait(browser());
EXPECT_FALSE(context->IsFullscreen());
EXPECT_TRUE(browser()->window()->IsToolbarVisible());
ui_test_utils::ToggleFullscreenModeAndWait(browser());
EXPECT_TRUE(context->IsFullscreen());
EXPECT_EQ(should_show_top_ui, browser()->window()->IsToolbarVisible());
}
// The controller must |CanEnterFullscreenModeForTab| while in fullscreen.
// While an element is in fullscreen, requesting fullscreen for a different
// element in the tab is handled in the renderer process if both elements are in
// the same process. But the request will come to the browser when the element
// is in a different process, such as OOPIF, because the renderer doesn't know
// if an element in other renderer process is in fullscreen. crbug.com/1298081
IN_PROC_BROWSER_TEST_F(FullscreenControllerTest,
EnterFullscreenWhenInFullscreen) {
EnterActiveTabFullscreen();
EXPECT_TRUE(GetFullscreenController()->CanEnterFullscreenModeForTab(
browser()
->tab_strip_model()
->GetActiveWebContents()
->GetPrimaryMainFrame()));
}
class FullscreenControllerPressAndHoldEscTest
: public FullscreenControllerTest {
public:
FullscreenControllerPressAndHoldEscTest() {
task_runner_ = base::MakeRefCounted<base::TestMockTimeTaskRunner>();
}
base::TestMockTimeTaskRunner* task_runner() { return task_runner_.get(); }
private:
base::test::ScopedFeatureList scoped_feature_list_{
features::kPressAndHoldEscToExitBrowserFullscreen};
scoped_refptr<base::TestMockTimeTaskRunner> task_runner_;
};
IN_PROC_BROWSER_TEST_F(FullscreenControllerPressAndHoldEscTest,
ExitBrowserFullscreenOnPressAndHoldEsc) {
// Enter browser fullscreen.
ui_test_utils::ToggleFullscreenModeAndWait(browser());
ASSERT_FALSE(IsWindowFullscreenForTabOrPending());
// Short-press Esc key won't exit browser fullscreen.
SendEscapeToExclusiveAccessManager(/*is_key_down=*/true);
SendEscapeToExclusiveAccessManager(/*is_key_down=*/false);
EXPECT_TRUE(IsFullscreenForBrowser());
// Press-and-hold Esc will exit browser fullscreen.
{
base::TestMockTimeTaskRunner::ScopedContext scoped_context(task_runner());
SendEscapeToExclusiveAccessManager(/*is_key_down=*/true);
task_runner()->FastForwardBy(base::Seconds(2));
}
WaitAndVerifyFullscreenState(/*browser_fullscreen=*/false,
/*tab_fullscreen=*/false);
}
#if BUILDFLAG(IS_CHROMEOS)
IN_PROC_BROWSER_TEST_F(FullscreenControllerPressAndHoldEscTest,
NotExitBrowserLockedFullscreenOnPressEsc) {
// Enter browser locked fullscreen.
PinWindow(browser()->window()->GetNativeWindow(), /*trusted=*/true);
ASSERT_FALSE(IsWindowFullscreenForTabOrPending());
// Short-press Esc key won't exit browser locked fullscreen.
SendEscapeToExclusiveAccessManager(/*is_key_down=*/true);
SendEscapeToExclusiveAccessManager(/*is_key_down=*/false);
EXPECT_TRUE(IsFullscreenForBrowser());
}
IN_PROC_BROWSER_TEST_F(FullscreenControllerPressAndHoldEscTest,
NotExitBrowserLockedFullscreenOnPressAndHoldEsc) {
// Enter browser locked fullscreen.
PinWindow(browser()->window()->GetNativeWindow(), /*trusted=*/true);
ASSERT_FALSE(IsWindowFullscreenForTabOrPending());
// Press-and-hold Esc will not exit browser locked fullscreen.
{
base::TestMockTimeTaskRunner::ScopedContext scoped_context(task_runner());
SendEscapeToExclusiveAccessManager(/*is_key_down=*/true);
task_runner()->FastForwardBy(base::Seconds(2));
}
EXPECT_TRUE(IsFullscreenForBrowser());
}
#endif
IN_PROC_BROWSER_TEST_F(FullscreenControllerPressAndHoldEscTest,
ExitBrowserFullscreenOnMultipleEscKeyDown) {
// Enter browser fullscreen.
ui_test_utils::ToggleFullscreenModeAndWait(browser());
ASSERT_FALSE(IsWindowFullscreenForTabOrPending());
// Send repeating keydown events to simulate platform-specific behavior.
const base::Time start = task_runner()->Now();
{
base::TestMockTimeTaskRunner::ScopedContext scoped_context(task_runner());
while (IsFullscreenForBrowser()) {
SendEscapeToExclusiveAccessManager(/*is_key_down=*/true);
task_runner()->FastForwardBy(base::Milliseconds(300));
}
}
const base::TimeDelta time_to_exit = task_runner()->Now() - start;
// Fullscreen should exit about 1.5 seconds after the first keypress.
EXPECT_GT(time_to_exit, base::Seconds(1));
// Allow some time for the async `IsFullscreenForBrowser()` change.
EXPECT_LT(time_to_exit, base::Seconds(3));
}
IN_PROC_BROWSER_TEST_F(FullscreenControllerPressAndHoldEscTest,
ExitBrowserAndTabFullscreenOnPressAndHoldEsc) {
// Enter tab fullscreen and browser fullscreen.
GetFullscreenController()->ToggleBrowserFullscreenMode(
/*user_initiated=*/false);
GetFullscreenController()->EnterFullscreenModeForTab(
browser()
->tab_strip_model()
->GetActiveWebContents()
->GetPrimaryMainFrame(),
{});
WaitAndVerifyFullscreenState(/*browser_fullscreen=*/true,
/*tab_fullscreen=*/true);
// The first Esc key down event will exit tab fullscreen, but not browser
// fullscreen. Note that the key hasn't been released yet.
SendEscapeToExclusiveAccessManager(/*is_key_down=*/true);
WaitAndVerifyFullscreenState(/*browser_fullscreen=*/true,
/*tab_fullscreen=*/false);
// Press-and-hold Esc will exit browser fullscreen.
{
base::TestMockTimeTaskRunner::ScopedContext scoped_context(task_runner());
SendEscapeToExclusiveAccessManager(/*is_key_down=*/true);
task_runner()->FastForwardBy(base::Seconds(2));
}
WaitAndVerifyFullscreenState(/*browser_fullscreen=*/false,
/*tab_fullscreen=*/false);
}
IN_PROC_BROWSER_TEST_F(
FullscreenControllerPressAndHoldEscTest,
ExitBrowserFullscreenAndUnlockKeyboardOnPressAndHoldEsc) {
// Enter tab fullscreen and browser fullscreen. Then request keyboard lock
// with Esc locked.
GetFullscreenController()->ToggleBrowserFullscreenMode(
/*user_initiated=*/false);
GetFullscreenController()->EnterFullscreenModeForTab(
browser()
->tab_strip_model()
->GetActiveWebContents()
->GetPrimaryMainFrame(),
{});
WaitAndVerifyFullscreenState(/*browser_fullscreen=*/true,
/*tab_fullscreen=*/true);
ASSERT_TRUE(RequestKeyboardLock(/*esc_key_locked=*/true));
// Short-press Esc key will not do anything.
SendEscapeToExclusiveAccessManager(/*is_key_down=*/true);
SendEscapeToExclusiveAccessManager(/*is_key_down=*/false);
EXPECT_TRUE(IsWindowFullscreenForTabOrPending());
EXPECT_TRUE(IsFullscreenForBrowser());
ASSERT_TRUE(GetExclusiveAccessManager()
->keyboard_lock_controller()
->IsKeyboardLockActive());
// Press-and-hold Esc key will exit fullscreen and unlock the keyboard.
{
base::TestMockTimeTaskRunner::ScopedContext scoped_context(task_runner());
SendEscapeToExclusiveAccessManager(/*is_key_down=*/true);
task_runner()->FastForwardBy(base::Seconds(2));
}
WaitAndVerifyFullscreenState(/*browser_fullscreen=*/false,
/*tab_fullscreen=*/false);
EXPECT_FALSE(GetExclusiveAccessManager()
->keyboard_lock_controller()
->IsKeyboardLockActive());
}
|