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
|
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/test/bind.h"
#include "base/test/scoped_feature_list.h"
#include "build/buildflag.h"
#include "chrome/browser/download/bubble/download_bubble_prefs.h"
#include "chrome/browser/download/chrome_download_manager_delegate.h"
#include "chrome/browser/download/download_browsertest_utils.h"
#include "chrome/browser/download/download_core_service.h"
#include "chrome/browser/download/download_core_service_factory.h"
#include "chrome/browser/feature_engagement/tracker_factory.h"
#include "chrome/browser/ui/accelerator_utils.h"
#include "chrome/browser/ui/actions/chrome_action_id.h"
#include "chrome/browser/ui/browser_element_identifiers.h"
#include "chrome/browser/ui/browser_window/public/browser_window_features.h"
#include "chrome/browser/ui/exclusive_access/exclusive_access_test.h"
#include "chrome/browser/ui/views/download/bubble/download_bubble_contents_view.h"
#include "chrome/browser/ui/views/download/bubble/download_toolbar_ui_controller.h"
#include "chrome/browser/ui/views/exclusive_access_bubble_views.h"
#include "chrome/browser/ui/views/frame/browser_view.h"
#include "chrome/browser/ui/views/toolbar/pinned_toolbar_actions_container.h"
#include "chrome/browser/ui/views/toolbar/toolbar_view.h"
#include "chrome/common/chrome_features.h"
#include "chrome/test/base/ui_test_utils.h"
#include "chrome/test/user_education/interactive_feature_promo_test.h"
#include "components/feature_engagement/public/feature_constants.h"
#include "components/feature_engagement/test/scoped_iph_feature_list.h"
#include "components/policy/core/browser/browser_policy_connector.h"
#include "components/policy/core/common/mock_configuration_policy_provider.h"
#include "components/policy/core/common/policy_map.h"
#include "components/policy/policy_constants.h"
#include "components/safe_browsing/core/common/safe_browsing_policy_handler.h"
#include "components/safe_browsing/core/common/safe_browsing_prefs.h"
#include "components/user_education/views/help_bubble_view.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/download_test_observer.h"
#include "ui/views/widget/any_widget_observer.h"
#include "url/gurl.h"
#if BUILDFLAG(IS_CHROMEOS)
#include "chrome/browser/ui/ash/test_util.h"
#endif
#if BUILDFLAG(IS_MAC)
#include "chrome/browser/ui/browser_commands.h"
#endif
namespace {
class DownloadsVisibleObserver : public views::ViewObserver,
public ui::test::StateObserver<bool> {
public:
explicit DownloadsVisibleObserver(views::View* view) : view_(view) {
observation_.Observe(view);
}
// ui::test::StateObserver:
bool GetStateObserverInitialState() const override {
for (views::View* child : view_->children()) {
if (views::Button::AsButton(child) &&
static_cast<PinnedActionToolbarButton*>(child)->GetActionId() ==
kActionShowDownloads) {
child->SetProperty(views::kElementIdentifierKey,
kToolbarDownloadButtonElementId);
return true;
}
}
return false;
}
// views::ViewObserver:
void OnChildViewAdded(views::View* view, views::View* child) override {
if (views::Button::AsButton(child) &&
static_cast<PinnedActionToolbarButton*>(child)->GetActionId() ==
kActionShowDownloads) {
child->SetProperty(views::kElementIdentifierKey,
kToolbarDownloadButtonElementId);
OnStateObserverStateChanged(true);
}
}
void OnChildViewRemoved(views::View* view, views::View* child) override {
if (views::Button::AsButton(child) &&
static_cast<PinnedActionToolbarButton*>(child)->GetActionId() ==
kActionShowDownloads) {
OnStateObserverStateChanged(false);
}
}
void OnViewIsDeleting(views::View* view) override {
view_ = nullptr;
observation_.Reset();
}
private:
raw_ptr<views::View> view_;
base::ScopedObservation<views::View, views::ViewObserver> observation_{this};
};
DEFINE_LOCAL_STATE_IDENTIFIER_VALUE(DownloadsVisibleObserver,
kDownloadsButtonVisible);
// This waits for the download bubble widget to be shown.
views::NamedWidgetShownWaiter CreateDownloadBubbleDialogWaiter() {
return views::NamedWidgetShownWaiter{
views::test::AnyWidgetTestPasskey{},
DownloadToolbarUIController::kBubbleName};
}
// Wait for the bubble to show up. `waiter` should be created before this
// call, and should be for the download bubble's widget name.
auto WaitForDownloadBubbleShow(views::NamedWidgetShownWaiter& waiter) {
return base::BindLambdaForTesting(
[&waiter]() { waiter.WaitIfNeededAndGet(); });
}
bool IsExclusiveAccessBubbleVisible(ExclusiveAccessBubbleViews* bubble) {
bool is_hiding = bubble->animation_for_test()->IsClosing();
return bubble->IsShowing() || (bubble->IsVisible() && !is_hiding);
}
// TODO(chlily): Deduplicate this helper class into a test utils file.
class TestDownloadManagerDelegate : public ChromeDownloadManagerDelegate {
public:
explicit TestDownloadManagerDelegate(Profile* profile)
: ChromeDownloadManagerDelegate(profile) {
GetDownloadIdReceiverCallback().Run(download::DownloadItem::kInvalidId + 1);
}
~TestDownloadManagerDelegate() override = default;
bool DetermineDownloadTarget(
download::DownloadItem* item,
download::DownloadTargetCallback* callback) override {
auto set_dangerous = [](download::DownloadTargetCallback callback,
download::DownloadTargetInfo target_info) {
target_info.danger_type = download::DOWNLOAD_DANGER_TYPE_DANGEROUS_URL;
std::move(callback).Run(std::move(target_info));
};
download::DownloadTargetCallback dangerous_callback =
base::BindOnce(set_dangerous, std::move(*callback));
bool run = ChromeDownloadManagerDelegate::DetermineDownloadTarget(
item, &dangerous_callback);
// ChromeDownloadManagerDelegate::DetermineDownloadTarget() needs to run the
// |callback|.
DCHECK(run);
DCHECK(!dangerous_callback);
return true;
}
};
class DownloadBubbleInteractiveUiTest
: public InteractiveFeaturePromoTestT<DownloadTestBase> {
public:
DownloadBubbleInteractiveUiTest()
: InteractiveFeaturePromoTestT(UseDefaultTrackerAllowingPromos(
{feature_engagement::kIPHDownloadEsbPromoFeature})) {
#if BUILDFLAG(IS_MAC)
// TODO(chlily): Add test coverage for immersive fullscreen disabled on Mac.
test_features_.InitWithFeatures({features::kImmersiveFullscreen}, {});
#endif // BUILDFLAG(IS_MAC)
}
void SetUpInProcessBrowserTestFixture() override {
InteractiveFeaturePromoTestT::SetUpInProcessBrowserTestFixture();
policy_provider_.SetDefaultReturns(
/*is_initialization_complete_return=*/true,
/*is_first_policy_load_complete_return=*/true);
policy::BrowserPolicyConnector::SetPolicyProviderForTesting(
&policy_provider_);
}
void SetUpOnMainThread() override {
InteractiveFeaturePromoTestT::SetUpOnMainThread();
embedded_test_server()->ServeFilesFromDirectory(GetTestDataDirectory());
ASSERT_TRUE(embedded_test_server()->Start());
}
DownloadDisplay* GetDownloadDisplay() {
return browser()->GetFeatures().download_toolbar_ui_controller();
}
auto DownloadBubbleIsShowingDetails(bool showing) {
return base::BindOnce(
[](DownloadDisplay* download_display, bool showing) {
return showing == download_display->IsShowingDetails();
},
GetDownloadDisplay(), showing);
}
// Whether the download bubble's widget is showing and active.
auto DownloadBubbleIsActive(bool active) {
return base::BindOnce(
[](DownloadToolbarUIController* toolbar_ui_controller, bool active) {
if (!toolbar_ui_controller->IsShowingDetails() ||
!toolbar_ui_controller->bubble_contents_for_testing()
->GetWidget()) {
return false;
}
return active ==
toolbar_ui_controller->bubble_contents_for_testing()
->GetWidget()
->IsActive();
},
browser()->GetFeatures().download_toolbar_ui_controller(), active);
}
auto DownloadBubblePromoIsActive(bool active, const base::Feature& feature) {
return base::BindOnce(
[](Browser* browser, bool active, const base::Feature& feature) {
return active == BrowserView::GetBrowserViewForBrowser(browser)
->GetFeaturePromoControllerForTesting()
->IsPromoActive(feature);
},
browser(), active, std::cref(feature));
}
auto ChangeButtonVisibility(bool visible) {
return base::BindOnce(
[](DownloadDisplay* download_display, bool visible) {
if (visible) {
download_display->Show();
} else {
download_display->Hide();
}
},
GetDownloadDisplay(), visible);
}
auto ChangeBubbleVisibility(bool visible) {
return base::BindOnce(
[](DownloadDisplay* download_display, bool visible) {
if (visible) {
download_display->ShowDetails();
} else {
download_display->HideDetails();
}
},
GetDownloadDisplay(), visible);
}
auto DownloadTestFile() {
GURL url = embedded_test_server()->GetURL(
base::StrCat({"/", DownloadTestBase::kDownloadTest1Path}));
return base::BindLambdaForTesting(
[this, url]() { DownloadAndWait(browser(), url); });
}
auto DownloadDangerousTestFile() {
// Set up the fake delegate that forces the download to be malicious.
std::unique_ptr<TestDownloadManagerDelegate> test_delegate(
new TestDownloadManagerDelegate(browser()->profile()));
DownloadCoreServiceFactory::GetForBrowserContext(browser()->profile())
->SetDownloadManagerDelegateForTesting(std::move(test_delegate));
GURL url = embedded_test_server()->GetURL(
DownloadTestBase::kDangerousMockFilePath);
return base::BindLambdaForTesting([this, url]() {
std::unique_ptr<content::DownloadTestObserver> waiter{
DangerousDownloadWaiter(
browser(), /*num_downloads=*/1,
content::DownloadTestObserver::DangerousDownloadAction::
ON_DANGEROUS_DOWNLOAD_QUIT)};
EXPECT_TRUE(ui_test_utils::NavigateToURL(browser(), url));
waiter->WaitForFinished();
});
}
// Check for whether the exclusive access bubble is shown ("Press Esc to
// exit fullscreen" or other similar message).
auto IsExclusiveAccessBubbleDisplayed(bool displayed) {
return base::BindLambdaForTesting([&, displayed = displayed]() {
ExclusiveAccessBubbleViews* bubble =
BrowserView::GetBrowserViewForBrowser(browser())
->exclusive_access_bubble();
return displayed ==
(bubble ? IsExclusiveAccessBubbleVisible(bubble) : false);
});
}
// Whether the exclusive access bubble, if any, is a download notification.
auto IsExclusiveAccessBubbleForDownload(bool for_download) {
return base::BindLambdaForTesting([&, for_download = for_download]() {
ExclusiveAccessBubbleViews* bubble =
BrowserView::GetBrowserViewForBrowser(browser())
->exclusive_access_bubble();
return for_download ==
(bubble ? ExclusiveAccessTest::IsBubbleDownloadNotification(bubble)
: false);
});
}
#if BUILDFLAG(IS_MAC)
auto EnterImmersiveFullscreen() {
return [&]() { ui_test_utils::ToggleFullscreenModeAndWait(browser()); };
}
auto IsInImmersiveFullscreen() {
return [&]() {
auto* browser_view = BrowserView::GetBrowserViewForBrowser(browser());
return browser_view->GetWidget()->IsFullscreen() &&
browser_view->immersive_mode_controller()->IsEnabled();
};
}
#endif // BUILDFLAG(IS_MAC)
bool IsPartialViewEnabled() {
return download::IsDownloadBubblePartialViewEnabled(browser()->profile());
}
views::View* GetContainerView() {
return BrowserView::GetBrowserViewForBrowser(browser())
->toolbar()
->pinned_toolbar_actions_container();
}
private:
base::test::ScopedFeatureList test_features_;
protected:
testing::NiceMock<policy::MockConfigurationPolicyProvider> policy_provider_;
};
IN_PROC_BROWSER_TEST_F(DownloadBubbleInteractiveUiTest,
ToolbarIconAndBubbleDetailsShownAfterDownload) {
RunTestSequence(Do(DownloadTestFile()),
ObserveState(kDownloadsButtonVisible, GetContainerView()),
WaitForState(kDownloadsButtonVisible, true),
Check(DownloadBubbleIsShowingDetails(IsPartialViewEnabled())),
// Hide the bubble so it's not showing while tearing down the
// test browser (which causes a crash on Mac).
Do(ChangeBubbleVisibility(false)));
}
IN_PROC_BROWSER_TEST_F(DownloadBubbleInteractiveUiTest,
DownloadBubbleMainView) {
RunTestSequence(Do(ChangeButtonVisibility(true)),
ObserveState(kDownloadsButtonVisible, GetContainerView()),
WaitForState(kDownloadsButtonVisible, true),
Check(DownloadBubbleIsShowingDetails(false)),
// Press the button to open the main view.
PressButton(kToolbarDownloadButtonElementId),
// Close the main view.
Do(ChangeBubbleVisibility(false)),
// Now download a file to show the partial view, if enabled.
Do(DownloadTestFile()),
Check(DownloadBubbleIsShowingDetails(IsPartialViewEnabled())),
// Hide the partial view, if enabled.
Do(ChangeBubbleVisibility(false)),
Check(DownloadBubbleIsShowingDetails(false)));
}
#if BUILDFLAG(GOOGLE_CHROME_BRANDING)
IN_PROC_BROWSER_TEST_F(DownloadBubbleInteractiveUiTest,
DangerousDownloadShowsEsbIphPromo_WhenAutomaticClose) {
RunTestSequence(
Do(DownloadDangerousTestFile()),
ObserveState(kDownloadsButtonVisible, GetContainerView()),
WaitForState(kDownloadsButtonVisible, true),
Check(DownloadBubbleIsShowingDetails(IsPartialViewEnabled())),
// Hide the partial view, if enabled. The IPH should be shown.
Do(ChangeBubbleVisibility(false)),
Check(DownloadBubbleIsShowingDetails(false)),
If([&]() { return IsPartialViewEnabled(); },
Then(InAnyContext(WaitForShow(user_education::HelpBubbleView::
kHelpBubbleElementIdForTesting)),
Check(DownloadBubblePromoIsActive(
IsPartialViewEnabled(),
feature_engagement::kIPHDownloadEsbPromoFeature)))));
}
IN_PROC_BROWSER_TEST_F(DownloadBubbleInteractiveUiTest,
DangerousDownloadShowsEsbIphPromo_WhenUserClicksAway) {
RunTestSequence(
Do(DownloadDangerousTestFile()),
ObserveState(kDownloadsButtonVisible, GetContainerView()),
WaitForState(kDownloadsButtonVisible, true),
Check(DownloadBubbleIsShowingDetails(IsPartialViewEnabled())),
// Click outside (at the center point of the browser) to close the bubble.
MoveMouseTo(kBrowserViewElementId), ClickMouse(),
EnsureNotPresent(kToolbarDownloadBubbleElementId),
Check(DownloadBubbleIsShowingDetails(false),
"Bubble is closed after clicking outside of it."),
If([&]() { return IsPartialViewEnabled(); },
Then(InAnyContext(WaitForShow(user_education::HelpBubbleView::
kHelpBubbleElementIdForTesting)),
Check(DownloadBubblePromoIsActive(
IsPartialViewEnabled(),
feature_engagement::kIPHDownloadEsbPromoFeature)))));
}
IN_PROC_BROWSER_TEST_F(
DownloadBubbleInteractiveUiTest,
DangerousDownloadDoesNotShowEsbIphPromo_WhenSafeBrowsingDisabled) {
browser()->profile()->GetPrefs()->SetBoolean(prefs::kSafeBrowsingEnabled,
false);
RunTestSequence(
Do(DownloadDangerousTestFile()),
ObserveState(kDownloadsButtonVisible, GetContainerView()),
WaitForState(kDownloadsButtonVisible, true),
Check(DownloadBubbleIsShowingDetails(IsPartialViewEnabled())),
// Hide the partial view, if enabled. The IPH should not be shown.
Do(ChangeBubbleVisibility(false)),
Check(DownloadBubbleIsShowingDetails(false)),
Check(DownloadBubblePromoIsActive(
false, feature_engagement::kIPHDownloadEsbPromoFeature)));
}
IN_PROC_BROWSER_TEST_F(
DownloadBubbleInteractiveUiTest,
DangerousDownloadDoesNotShowEsbIphPromo_WhenEnhancedSafeBrowsingEnabled) {
browser()->profile()->GetPrefs()->SetBoolean(prefs::kSafeBrowsingEnhanced,
true);
RunTestSequence(
Do(DownloadDangerousTestFile()),
ObserveState(kDownloadsButtonVisible, GetContainerView()),
WaitForState(kDownloadsButtonVisible, true),
Check(DownloadBubbleIsShowingDetails(IsPartialViewEnabled())),
// Hide the partial view, if enabled. The IPH should not be shown.
Do(ChangeBubbleVisibility(false)),
Check(DownloadBubbleIsShowingDetails(false)),
Check(DownloadBubblePromoIsActive(
false, feature_engagement::kIPHDownloadEsbPromoFeature)));
}
IN_PROC_BROWSER_TEST_F(
DownloadBubbleInteractiveUiTest,
DangerousDownloadDoesNotShowEsbIphPromo_WhenSafeBrowsingSetByPolicy) {
policy::PolicyMap policy;
policy.Set(
policy::key::kSafeBrowsingProtectionLevel, policy::POLICY_LEVEL_MANDATORY,
policy::POLICY_SCOPE_USER, policy::POLICY_SOURCE_CLOUD,
base::Value(static_cast<int>(safe_browsing::SafeBrowsingPolicyHandler::
ProtectionLevel::kStandardProtection)),
nullptr);
policy_provider_.UpdateChromePolicy(policy);
EXPECT_TRUE(safe_browsing::SafeBrowsingPolicyHandler::
IsSafeBrowsingProtectionLevelSetByPolicy(
browser()->profile()->GetPrefs()));
RunTestSequence(
Do(DownloadDangerousTestFile()),
ObserveState(kDownloadsButtonVisible, GetContainerView()),
WaitForState(kDownloadsButtonVisible, true),
Check(DownloadBubbleIsShowingDetails(IsPartialViewEnabled())),
// Hide the partial view, if enabled. The IPH should not be shown.
Do(ChangeBubbleVisibility(false)),
Check(DownloadBubbleIsShowingDetails(false)),
Check(DownloadBubblePromoIsActive(
false, feature_engagement::kIPHDownloadEsbPromoFeature)));
}
#endif
// This test is only for Mac where we have immersive fullscreen.
#if BUILDFLAG(IS_MAC)
IN_PROC_BROWSER_TEST_F(DownloadBubbleInteractiveUiTest,
ToolbarIconShownAfterImmersiveFullscreenDownload) {
RunTestSequence(
Do(EnterImmersiveFullscreen()), Check(IsInImmersiveFullscreen()),
// No download toolbar icon should be present before the download.
ObserveState(kDownloadsButtonVisible, GetContainerView()),
WaitForState(kDownloadsButtonVisible, false),
// Download a file to make the partial bubble show up, if enabled.
Do(DownloadTestFile()),
// This step is fine and won't be flaky on ChromeOS, because waiting for
// the element to show includes waiting for the server to notify us that
// we are in immersive mode.
WaitForState(kDownloadsButtonVisible, true),
Check(DownloadBubbleIsShowingDetails(IsPartialViewEnabled())),
// Hide the bubble, if enabled, so it's not showing while tearing down the
// test browser (which causes a crash on Mac).
// TODO(chlily): Rewrite this test to interact with the UI instead of
// hiding the bubble artificially, to properly test user journeys.
Do(ChangeBubbleVisibility(false)), Do(ChangeButtonVisibility(false)),
WaitForState(kDownloadsButtonVisible, false));
}
#endif // BUILDFLAG(IS_MAC)
// Test that downloading a file in tab fullscreen (not browser fullscreen)
// results in an exclusive access bubble, and the partial view, if enabled, is
// displayed after the tab exits fullscreen.
IN_PROC_BROWSER_TEST_F(
DownloadBubbleInteractiveUiTest,
ExclusiveAccessBubbleShownForTabFullscreenDownloadThenPartialView) {
using ui_test_utils::FullscreenWaiter;
DEFINE_LOCAL_ELEMENT_IDENTIFIER_VALUE(kWebContentsElementId);
// Grab the fullscreen accelerator, which is used to exit fullscreen in the
// test. For some reason, exiting tab fullscreen via JavaScript doesn't work
// (times out).
ui::Accelerator fullscreen_accelerator;
#if BUILDFLAG(IS_MAC)
// SendAccelerator or ui_controls::SendKeyPress doesn't support fn key on
// Mac, that the default fullscreen hotkey wouldn't work.
// TODO: When SendAccelerator fixed on mac, remove this hard coded key.
fullscreen_accelerator =
ui::Accelerator(ui::VKEY_F, ui::EF_COMMAND_DOWN | ui::EF_CONTROL_DOWN);
#else
chrome::AcceleratorProviderForBrowser(browser())->GetAcceleratorForCommandId(
IDC_FULLSCREEN, &fullscreen_accelerator);
#endif
views::NamedWidgetShownWaiter dialog_waiter =
CreateDownloadBubbleDialogWaiter();
auto tab_fullscreen_waiter = std::make_unique<FullscreenWaiter>(
browser(), FullscreenWaiter::Expectation{.tab_fullscreen = true});
RunTestSequenceInContext(
browser()->window()->GetElementContext(),
InstrumentTab(kWebContentsElementId),
NavigateWebContents(kWebContentsElementId,
embedded_test_server()->GetURL("/empty.html")),
// Enter tab fullscreen.
InParallel(
RunSubsequence(
ExecuteJs(kWebContentsElementId,
"() => document.documentElement.requestFullscreen()")),
RunSubsequence(
InAnyContext(WaitForShow(kExclusiveAccessBubbleViewElementId))),
RunSubsequence(Do([&]() {
tab_fullscreen_waiter->Wait();
// Reset the fullscreen waiter to wait for exiting fullscreen next
// time.
tab_fullscreen_waiter = std::make_unique<FullscreenWaiter>(
browser(), FullscreenWaiter::kNoFullscreen);
}))),
// The exclusive access bubble should notify about the fullscreen change.
Check(IsExclusiveAccessBubbleDisplayed(true),
"Exclusive access bubble is displayed upon entering fullscreen"),
Check(IsExclusiveAccessBubbleForDownload(false),
"Exclusive access bubble is not for a download"),
// Download a file to make the exclusive access bubble appear again.
Do(DownloadTestFile()),
// The exclusive access bubble should be displayed and should be for a
// download.
InAnyContext(WaitForShow(kExclusiveAccessBubbleViewElementId)),
Check(IsExclusiveAccessBubbleDisplayed(true),
"Exclusive access bubble is displayed after starting a download"),
Check(IsExclusiveAccessBubbleForDownload(true),
"Exclusive access bubble is for a download"),
// Now exit fullscreen, and the partial view, if enabled, should be shown.
InParallel(RunSubsequence(SendAccelerator(kBrowserViewElementId,
fullscreen_accelerator)),
RunSubsequence(Do([&]() { tab_fullscreen_waiter->Wait(); }))),
If([&]() { return IsPartialViewEnabled(); },
Then(Do(WaitForDownloadBubbleShow(dialog_waiter)),
Check(DownloadBubbleIsShowingDetails(true),
"Download bubble is showing details after exiting "
"fullscreen"))),
// TODO(chlily): Rewrite this test to interact with the UI instead of
// hiding the bubble artificially, to properly test user journeys.
Do(ChangeBubbleVisibility(false)), Do(ChangeButtonVisibility(false)),
ObserveState(kDownloadsButtonVisible, GetContainerView()),
WaitForState(kDownloadsButtonVisible, false));
}
// Tests that the partial view does not steal focus from the web contents, and
// that the partial view is still closable when clicking outside of it, and that
// the main view is focused when shown.
IN_PROC_BROWSER_TEST_F(DownloadBubbleInteractiveUiTest,
ClosePartialBubbleOnClick) {
RunTestSequence(
// Download a test file so that the partial view shows up.
Do(DownloadTestFile()),
ObserveState(kDownloadsButtonVisible, GetContainerView()),
WaitForState(kDownloadsButtonVisible, true),
Check(DownloadBubbleIsShowingDetails(IsPartialViewEnabled()),
"Partial view shows after download, if enabled."),
If([&] { return IsPartialViewEnabled(); },
// The bubble, if enabled, should be shown as inactive to avoid
// stealing focus from the page.
Then(Check(DownloadBubbleIsActive(false),
"Partial view, if enabled, is inactive."))),
// Click outside (at the center point of the browser) to close the bubble.
MoveMouseTo(kBrowserViewElementId), ClickMouse(),
EnsureNotPresent(kToolbarDownloadBubbleElementId),
Check(DownloadBubbleIsShowingDetails(false),
"Bubble is closed after clicking outside of it."),
// Click on the toolbar button to show the main view, which should always
// have focus.
PressButton(kToolbarDownloadButtonElementId),
WaitForShow(kToolbarDownloadBubbleElementId),
Check(DownloadBubbleIsShowingDetails(true),
"Main view is shown after clicking button."),
// The main view widget should be active.
Check(DownloadBubbleIsActive(true), "Main view is active."),
// Hide the bubble so it's not showing while tearing down the
// test browser (which causes a crash on Mac).
Do(ChangeBubbleVisibility(false)), Do(ChangeButtonVisibility(false)),
WaitForState(kDownloadsButtonVisible, false));
}
} // namespace
|