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
|
// 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 <utility>
#include "ash/birch/birch_data_provider.h"
#include "ash/birch/birch_item.h"
#include "ash/birch/birch_model.h"
#include "ash/constants/ash_pref_names.h"
#include "ash/constants/ash_switches.h"
#include "ash/public/cpp/test/test_new_window_delegate.h"
#include "ash/shell.h"
#include "ash/wm/overview/birch/birch_chip_button_base.h"
#include "ash/wm/overview/overview_test_util.h"
#include "base/check.h"
#include "base/command_line.h"
#include "base/files/file_path.h"
#include "base/memory/weak_ptr.h"
#include "base/unguessable_token.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/ash/birch/birch_keyed_service.h"
#include "chrome/browser/ui/ash/birch/birch_keyed_service_factory.h"
#include "chrome/browser/ui/ash/birch/birch_test_util.h"
#include "chrome/browser/ui/ash/main_extra_parts/chrome_browser_main_extra_parts_ash.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "content/public/test/browser_test.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/base/models/image_model.h"
#include "ui/events/test/event_generator.h"
#include "ui/views/widget/widget.h"
#include "url/gurl.h"
namespace ash {
namespace {
// A weather provider that provides a single weather item.
class TestWeatherProvider : public BirchDataProvider {
public:
TestWeatherProvider() = default;
~TestWeatherProvider() override = default;
// BirchDataProvider:
void RequestBirchDataFetch() override {
std::vector<BirchWeatherItem> items;
items.emplace_back(u"Cloudy", 70.f, GURL("http://icon.com/"));
Shell::Get()->birch_model()->SetWeatherItems(std::move(items));
}
};
// A calendar provider that provides a single ongoing calendar event.
class TestCalendarProvider : public BirchDataProvider {
public:
TestCalendarProvider() = default;
~TestCalendarProvider() override = default;
// BirchDataProvider:
void RequestBirchDataFetch() override {
std::vector<BirchCalendarItem> items;
items.emplace_back(
/*title=*/u"Event",
/*start_time=*/base::Time::Now() - base::Minutes(30),
/*end_time=*/base::Time::Now() + base::Minutes(30),
/*calendar_url=*/GURL("http://example.com/"),
/*conference_url=*/GURL(),
/*event_id=*/"event_id",
/*all_day_event=*/false);
Shell::Get()->birch_model()->SetCalendarItems(std::move(items));
// Also set attachments, which are normally part of calendar fetch.
Shell::Get()->birch_model()->SetAttachmentItems({});
}
};
// A provider that provides a single attachment.
class TestCalendarAttachmentProvider : public BirchDataProvider {
public:
TestCalendarAttachmentProvider() = default;
~TestCalendarAttachmentProvider() override = default;
// BirchDataProvider:
void RequestBirchDataFetch() override {
// Also set calendar items, which are normally fetched with attachments.
Shell::Get()->birch_model()->SetCalendarItems({});
std::vector<BirchAttachmentItem> items;
items.emplace_back(u"Attachment 0",
/*file_url=*/GURL("http://attachment.com/"),
/*icon_url=*/GURL("http://favicon.com/"),
/*start_time=*/base::Time::Now() - base::Minutes(30),
/*end_time=*/base::Time::Now() + base::Minutes(30),
/*file_id=*/"file_id0");
Shell::Get()->birch_model()->SetAttachmentItems(std::move(items));
}
};
// A file suggest provider that provides no files.
class EmptyFileSuggestProvider : public BirchDataProvider {
public:
EmptyFileSuggestProvider() = default;
~EmptyFileSuggestProvider() override = default;
// BirchDataProvider:
void RequestBirchDataFetch() override {
Shell::Get()->birch_model()->SetFileSuggestItems({});
}
};
// A file suggest provider that provides a single file.
class TestFileSuggestProvider : public BirchDataProvider {
public:
TestFileSuggestProvider() = default;
~TestFileSuggestProvider() override = default;
// BirchDataProvider:
void RequestBirchDataFetch() override {
std::vector<BirchFileItem> items;
items.emplace_back(base::FilePath("test-path"), "title", u"suggestion",
base::Time::Now() - base::Minutes(30), "file_id",
"icon_url");
Shell::Get()->birch_model()->SetFileSuggestItems(std::move(items));
// Ensure attachment data is fresh, otherwise the birch data fetch won't
// complete. The calendar pref is disabled in the test that uses this
// provider, so we must provide attachment data here.
Shell::Get()->birch_model()->SetAttachmentItems({});
}
};
// A recent tabs provider that provides a single URL.
class TestRecentTabsProvider : public BirchDataProvider {
public:
TestRecentTabsProvider() = default;
~TestRecentTabsProvider() override = default;
// BirchDataProvider:
void RequestBirchDataFetch() override {
std::vector<BirchTabItem> items;
items.emplace_back(u"tab", GURL("http://example.com/"), base::Time::Now(),
GURL("http://favicon.com/"), "session",
BirchTabItem::DeviceFormFactor::kDesktop);
Shell::Get()->birch_model()->SetRecentTabItems(std::move(items));
}
};
// A last active provider that provides a single URL.
class TestLastActiveProvider : public BirchDataProvider {
public:
TestLastActiveProvider() = default;
~TestLastActiveProvider() override = default;
// BirchDataProvider:
void RequestBirchDataFetch() override {
std::vector<BirchLastActiveItem> items;
items.emplace_back(u"item", GURL("http://example.com/"), base::Time());
Shell::Get()->birch_model()->SetLastActiveItems(std::move(items));
}
};
// A most visited provider that provides a single URL.
class TestMostVisitedProvider : public BirchDataProvider {
public:
TestMostVisitedProvider() = default;
~TestMostVisitedProvider() override = default;
// BirchDataProvider:
void RequestBirchDataFetch() override {
std::vector<BirchMostVisitedItem> items;
items.emplace_back(u"item", GURL("http://example.com/"));
Shell::Get()->birch_model()->SetMostVisitedItems(std::move(items));
}
};
class TestSelfShareProvider : public BirchDataProvider {
public:
TestSelfShareProvider() = default;
~TestSelfShareProvider() override = default;
// BirchDataProvider:
void RequestBirchDataFetch() override {
std::vector<BirchSelfShareItem> items;
items.emplace_back(u"guid", u"tab", GURL("http://example.com/"),
base::Time::Now(), u"my device",
SecondaryIconType::kTabFromPhone, base::DoNothing());
Shell::Get()->birch_model()->SetSelfShareItems(std::move(items));
}
};
class TestLostMediaProvider : public BirchDataProvider {
public:
TestLostMediaProvider() = default;
~TestLostMediaProvider() override = default;
// BirchDataProvider:
void RequestBirchDataFetch() override {
std::vector<BirchLostMediaItem> items;
items.emplace_back(GURL("https://www.source.com"), u"media title",
std::nullopt, SecondaryIconType::kLostMediaVideo,
base::BindRepeating(&TestLostMediaProvider::OnActivation,
weak_factory_.GetWeakPtr()));
Shell::Get()->birch_model()->SetLostMediaItems(std::move(items));
}
// Activation callback for the test lost media item.
void OnActivation() { did_activate_ = true; }
bool did_activate_ = false;
base::WeakPtrFactory<TestLostMediaProvider> weak_factory_{this};
};
class TestReleaseNotesProvider : public BirchDataProvider {
public:
TestReleaseNotesProvider() = default;
~TestReleaseNotesProvider() override = default;
// BirchDataProvider:
void RequestBirchDataFetch() override {
std::vector<BirchReleaseNotesItem> items;
items.emplace_back(u"title", u"subtitle", GURL("chrome://help-app/updates"),
base::Time::Min());
Shell::Get()->birch_model()->SetReleaseNotesItems(std::move(items));
}
};
// A new window delegate that records opened files and URLs.
class MockNewWindowDelegate : public TestNewWindowDelegate {
public:
MockNewWindowDelegate() = default;
~MockNewWindowDelegate() override = default;
// NewWindowDelegate:
void OpenUrl(const GURL& url,
OpenUrlFrom from,
Disposition disposition) override {
opened_url_ = url;
}
void OpenFile(const base::FilePath& file_path) override {
opened_file_ = file_path;
}
GURL opened_url_;
base::FilePath opened_file_;
};
void ClickOnView(views::View* target_view) {
ui::test::EventGenerator event_generator(
target_view->GetWidget()->GetNativeWindow()->GetRootWindow());
target_view->GetWidget()->LayoutRootViewIfNecessary();
event_generator.MoveMouseTo(target_view->GetBoundsInScreen().CenterPoint());
event_generator.ClickLeftButton();
}
class BirchBrowserTest : public InProcessBrowserTest {
public:
BirchBrowserTest() = default;
~BirchBrowserTest() override = default;
BirchBrowserTest(const BirchBrowserTest&) = delete;
BirchBrowserTest& operator=(const BirchBrowserTest&) = delete;
void SetUpOnMainThread() override {
InProcessBrowserTest::SetUpOnMainThread();
// Clear out the existing ChromeNewWindowDelegateClient so we can replace it
// with a mock (there are CHECKs that prevent doing this without the reset).
ChromeBrowserMainExtraPartsAsh::Get()
->ResetChromeNewWindowClientForTesting();
new_window_delegate_ = std::make_unique<MockNewWindowDelegate>();
}
void TearDownOnMainThread() override {
new_window_delegate_.reset();
InProcessBrowserTest::TearDownOnMainThread();
}
BirchKeyedService* GetBirchKeyedService() {
return BirchKeyedServiceFactory::GetInstance()->GetService(
browser()->profile());
}
protected:
std::unique_ptr<MockNewWindowDelegate> new_window_delegate_;
};
// Test that no crash occurs on shutdown with an instantiated BirchKeyedService.
IN_PROC_BROWSER_TEST_F(BirchBrowserTest, NoCrashOnShutdown) {
auto* birch_keyed_service = GetBirchKeyedService();
EXPECT_TRUE(birch_keyed_service);
}
IN_PROC_BROWSER_TEST_F(BirchBrowserTest, WeatherChip) {
// Set up a weather provider so a single chip for weather will be created.
Shell::Get()->birch_model()->OverrideWeatherProviderForTest(
std::make_unique<TestWeatherProvider>());
// Force it to be morning so the weather item will be ranked and appear.
base::CommandLine::ForCurrentProcess()->AppendSwitch(
switches::kBirchIsMorning);
// Disable the prefs for data providers other than weather. This ensures the
// data is fresh once the weather provider replies.
DisableAllDataTypePrefsExcept({prefs::kBirchUseWeather});
// Ensure the item remover is initialized, otherwise data fetches won't
// complete.
EnsureItemRemoverInitialized();
// Set up a callback for a birch data fetch.
base::RunLoop birch_data_fetch_waiter;
Shell::Get()->birch_model()->SetDataFetchCallbackForTest(
birch_data_fetch_waiter.QuitClosure());
// Enter overview, which triggers a birch data fetch.
ToggleOverview();
WaitForOverviewEntered();
// Wait for fetch callback to complete.
birch_data_fetch_waiter.Run();
// The birch bar is created with a single weather chip.
BirchChipButtonBase* button = GetBirchChipButton();
EXPECT_EQ(button->GetItem()->GetType(), BirchItemType::kWeather);
// Clicking the button closes overview and destroys the button, so avoid a
// dangling pointer with std::exchange.
ClickOnView(std::exchange(button, nullptr));
// Clicking on the chip opens a browser with a Google search for weather.
EXPECT_EQ(new_window_delegate_->opened_url_,
GURL("https://google.com/search?q=weather"));
}
IN_PROC_BROWSER_TEST_F(BirchBrowserTest, CalendarChip) {
// Set up a calendar provider that provides a single calendar chip.
auto* birch_keyed_service = GetBirchKeyedService();
TestCalendarProvider calendar_provider;
birch_keyed_service->set_calendar_provider_for_test(&calendar_provider);
// Disable the prefs for data providers other than calendar. This ensures the
// data is fresh once the calendar provider replies.
DisableAllDataTypePrefsExcept({prefs::kBirchUseCalendar});
// Ensure the item remover is initialized, otherwise data fetches won't
// complete.
EnsureItemRemoverInitialized();
// Set up a callback for a birch data fetch.
base::RunLoop birch_data_fetch_waiter;
Shell::Get()->birch_model()->SetDataFetchCallbackForTest(
birch_data_fetch_waiter.QuitClosure());
// Enter overview, which triggers a birch data fetch.
ToggleOverview();
WaitForOverviewEntered();
// Wait for fetch callback to complete.
birch_data_fetch_waiter.Run();
// The birch bar is created with a single calendar chip.
BirchChipButtonBase* button = GetBirchChipButton();
EXPECT_EQ(button->GetItem()->GetType(), BirchItemType::kCalendar);
// Clicking the button closes overview and destroys the button, so avoid a
// dangling pointer with std::exchange.
ClickOnView(std::exchange(button, nullptr));
EXPECT_EQ(new_window_delegate_->opened_url_, GURL("http://example.com/"));
}
IN_PROC_BROWSER_TEST_F(BirchBrowserTest, AttachmentChip) {
// Set up a calendar provider that provides a single attachment.
auto* birch_keyed_service = GetBirchKeyedService();
TestCalendarAttachmentProvider attachment_provider;
birch_keyed_service->set_calendar_provider_for_test(&attachment_provider);
// The file suggest pref must be enabled to fetch attachments, so we must also
// have a file suggest provider.
EmptyFileSuggestProvider file_suggest_provider;
birch_keyed_service->set_file_suggest_provider_for_test(
&file_suggest_provider);
// Disable the prefs for data providers other than file suggest, which
// controls attachments. This ensures the data is fresh once the attachment
// provider replies.
DisableAllDataTypePrefsExcept({prefs::kBirchUseFileSuggest});
// Ensure the item remover is initialized, otherwise data fetches won't
// complete.
EnsureItemRemoverInitialized();
// Set up a callback for a birch data fetch.
base::RunLoop birch_data_fetch_waiter;
Shell::Get()->birch_model()->SetDataFetchCallbackForTest(
birch_data_fetch_waiter.QuitClosure());
// Enter overview, which triggers a birch data fetch.
ToggleOverview();
WaitForOverviewEntered();
// Wait for fetch callback to complete.
birch_data_fetch_waiter.Run();
// The birch bar is created with a single attachment chip.
BirchChipButtonBase* button = GetBirchChipButton();
EXPECT_EQ(button->GetItem()->GetType(), BirchItemType::kAttachment);
// Clicking the button closes overview and destroys the button, so avoid
// dangling pointers with std::exchange.
ClickOnView(std::exchange(button, nullptr));
EXPECT_EQ(new_window_delegate_->opened_url_, GURL("http://attachment.com/"));
}
IN_PROC_BROWSER_TEST_F(BirchBrowserTest, FileSuggestChip) {
// Set up a file suggest provider that provides a single file.
auto* birch_keyed_service = GetBirchKeyedService();
TestFileSuggestProvider test_provider;
birch_keyed_service->set_file_suggest_provider_for_test(&test_provider);
// Disable the prefs for data providers other than file suggest. This ensures
// the data is fresh once the calendar provider replies.
DisableAllDataTypePrefsExcept({prefs::kBirchUseFileSuggest});
// Ensure the item remover is initialized, otherwise data fetches won't
// complete.
EnsureItemRemoverInitialized();
// Set up a callback for a birch data fetch.
base::RunLoop birch_data_fetch_waiter;
Shell::Get()->birch_model()->SetDataFetchCallbackForTest(
birch_data_fetch_waiter.QuitClosure());
// Enter overview, which triggers a birch data fetch.
ToggleOverview();
WaitForOverviewEntered();
// Wait for fetch callback to complete.
birch_data_fetch_waiter.Run();
// The birch bar is created with a single file chip.
BirchChipButtonBase* button = GetBirchChipButton();
EXPECT_EQ(button->GetItem()->GetType(), BirchItemType::kFile);
// Clicking the button closes overview and destroys the button, so avoid a
// dangling pointer with std::exchange.
ClickOnView(std::exchange(button, nullptr));
// Clicking the button should attempt to open the file.
EXPECT_EQ(new_window_delegate_->opened_file_, base::FilePath("test-path"));
}
IN_PROC_BROWSER_TEST_F(BirchBrowserTest, RecentTabsChip) {
// Set up a provider that provides a single chip.
auto* birch_keyed_service = GetBirchKeyedService();
TestRecentTabsProvider recent_tabs_provider;
birch_keyed_service->set_recent_tabs_provider_for_test(&recent_tabs_provider);
// Disable the prefs for data providers other than chrome tabs. This ensures
// the data is fresh once the test provider replies.
DisableAllDataTypePrefsExcept({prefs::kBirchUseChromeTabs});
// Ensure the item remover is initialized, otherwise data fetches won't
// complete.
EnsureItemRemoverInitialized();
// Set up a callback for a birch data fetch.
base::RunLoop birch_data_fetch_waiter;
Shell::Get()->birch_model()->SetDataFetchCallbackForTest(
birch_data_fetch_waiter.QuitClosure());
// Enter overview, which triggers a birch data fetch.
ToggleOverview();
WaitForOverviewEntered();
// Wait for fetch callback to complete.
birch_data_fetch_waiter.Run();
// The birch bar is created with a single chip.
BirchChipButtonBase* button = GetBirchChipButton();
EXPECT_EQ(button->GetItem()->GetType(), BirchItemType::kTab);
// Clicking the button closes overview and destroys the button, so avoid a
// dangling pointer with std::exchange.
ClickOnView(std::exchange(button, nullptr));
// Clicking the button should attempt to open the URL.
EXPECT_EQ(new_window_delegate_->opened_url_, GURL("http://example.com/"));
}
IN_PROC_BROWSER_TEST_F(BirchBrowserTest, LastActiveChip) {
// Set up a last active provider that provides a single chip.
auto* birch_keyed_service = GetBirchKeyedService();
TestLastActiveProvider last_active_provider;
birch_keyed_service->set_last_active_provider_for_test(&last_active_provider);
// Last active chips only show in the morning so force morning in the ranker.
base::CommandLine::ForCurrentProcess()->AppendSwitch(
switches::kBirchIsMorning);
// Disable the prefs for data providers other than chrome tabs. This ensures
// the data is fresh once the last active provider replies.
DisableAllDataTypePrefsExcept({prefs::kBirchUseChromeTabs});
// Ensure the item remover is initialized, otherwise data fetches won't
// complete.
EnsureItemRemoverInitialized();
// Set up a callback for a birch data fetch.
base::RunLoop birch_data_fetch_waiter;
Shell::Get()->birch_model()->SetDataFetchCallbackForTest(
birch_data_fetch_waiter.QuitClosure());
// Enter overview, which triggers a birch data fetch.
ToggleOverview();
WaitForOverviewEntered();
// Wait for fetch callback to complete.
birch_data_fetch_waiter.Run();
// The birch bar is created with a single chip.
BirchChipButtonBase* button = GetBirchChipButton();
EXPECT_EQ(button->GetItem()->GetType(), BirchItemType::kLastActive);
// Clicking the button closes overview and destroys the button, so avoid a
// dangling pointer with std::exchange.
ClickOnView(std::exchange(button, nullptr));
// Clicking the button should attempt to open the URL.
EXPECT_EQ(new_window_delegate_->opened_url_, GURL("http://example.com/"));
}
IN_PROC_BROWSER_TEST_F(BirchBrowserTest, MostVisitedChip) {
// Set up a most visited provider that provides a single chip.
auto* birch_keyed_service = GetBirchKeyedService();
TestMostVisitedProvider most_visited_provider;
birch_keyed_service->set_most_visited_provider_for_test(
&most_visited_provider);
// Most visited chips only show in the morning so force morning in the ranker.
base::CommandLine::ForCurrentProcess()->AppendSwitch(
switches::kBirchIsMorning);
// Disable the prefs for data providers other than chrome tabs. This ensures
// the data is fresh once the most visited provider replies.
DisableAllDataTypePrefsExcept({prefs::kBirchUseChromeTabs});
// Ensure the item remover is initialized, otherwise data fetches won't
// complete.
EnsureItemRemoverInitialized();
// Set up a callback for a birch data fetch.
base::RunLoop birch_data_fetch_waiter;
Shell::Get()->birch_model()->SetDataFetchCallbackForTest(
birch_data_fetch_waiter.QuitClosure());
// Enter overview, which triggers a birch data fetch.
ToggleOverview();
WaitForOverviewEntered();
// Wait for fetch callback to complete.
birch_data_fetch_waiter.Run();
// The birch bar is created with a single chip.
BirchChipButtonBase* button = GetBirchChipButton();
EXPECT_EQ(button->GetItem()->GetType(), BirchItemType::kMostVisited);
// Clicking the button closes overview and destroys the button, so avoid a
// dangling pointer with std::exchange.
ClickOnView(std::exchange(button, nullptr));
// Clicking the button should attempt to open the URL.
EXPECT_EQ(new_window_delegate_->opened_url_, GURL("http://example.com/"));
}
IN_PROC_BROWSER_TEST_F(BirchBrowserTest, SelfShareChip) {
// Set up a self share provider that provides a single chip.
auto* birch_keyed_service = GetBirchKeyedService();
TestSelfShareProvider self_share_provider;
birch_keyed_service->set_self_share_provider_for_test(&self_share_provider);
// Disable the prefs for data providers other than chrome tabs. This ensures
// the data is fresh once the self share provider replies.
DisableAllDataTypePrefsExcept({prefs::kBirchUseChromeTabs});
// Ensure the item remover is initialized, otherwise data fetches won't
// complete.
EnsureItemRemoverInitialized();
// Set up a callback for a birch data fetch.
base::RunLoop birch_data_fetch_waiter;
Shell::Get()->birch_model()->SetDataFetchCallbackForTest(
birch_data_fetch_waiter.QuitClosure());
// Enter overview, which triggers a birch data fetch.
ToggleOverview();
WaitForOverviewEntered();
// Wait for fetch callback to complete.
birch_data_fetch_waiter.Run();
// The birch bar is created with a single chip.
BirchChipButtonBase* button = GetBirchChipButton();
EXPECT_EQ(button->GetItem()->GetType(), BirchItemType::kSelfShare);
// Clicking the button closes overview and destroys the button, so avoid a
// dangling pointer with std::exchange.
ClickOnView(std::exchange(button, nullptr));
// Clicking the button should attempt to open the URL.
EXPECT_EQ(new_window_delegate_->opened_url_, GURL("http://example.com/"));
}
IN_PROC_BROWSER_TEST_F(BirchBrowserTest, LostMediaChip) {
// Set up a provider that provides a single chip.
auto* birch_keyed_service = GetBirchKeyedService();
TestLostMediaProvider lost_media_provider;
birch_keyed_service->set_lost_media_provider_for_test(&lost_media_provider);
// Disable the prefs for data providers other than lost media. This ensures
// the data is fresh once the lost media provider replies.
DisableAllDataTypePrefsExcept({prefs::kBirchUseLostMedia});
// Ensure the item remover is initialized, otherwise data fetches won't
// complete.
EnsureItemRemoverInitialized();
// Set up a callback for a birch data fetch.
base::RunLoop birch_data_fetch_waiter;
Shell::Get()->birch_model()->SetDataFetchCallbackForTest(
birch_data_fetch_waiter.QuitClosure());
// Enter overview, which triggers a birch data fetch.
ToggleOverview();
WaitForOverviewEntered();
// Wait for fetch callback to complete.
birch_data_fetch_waiter.Run();
// The birch bar is created with a single chip.
BirchChipButtonBase* button = GetBirchChipButton();
EXPECT_EQ(button->GetItem()->GetType(), BirchItemType::kLostMedia);
// Clicking the button closes overview and destroys the button, so avoid a
// dangling pointer with std::exchange.
ClickOnView(std::exchange(button, nullptr));
// Clicking the button should activate the item. In this test the activation
// callback is bound to the provider.
EXPECT_TRUE(lost_media_provider.did_activate_);
// Reset lost media provider.
birch_keyed_service->set_lost_media_provider_for_test(nullptr);
}
IN_PROC_BROWSER_TEST_F(BirchBrowserTest, ReleaseNotesChip) {
// Set up a provider that provides a single chip.
auto* birch_keyed_service = GetBirchKeyedService();
TestReleaseNotesProvider provider;
birch_keyed_service->set_release_notes_provider_for_test(&provider);
// Disable the prefs for data providers other than release notes. This
// ensures the data is fresh once the release notes provider replies.
DisableAllDataTypePrefsExcept({prefs::kBirchUseReleaseNotes});
// Ensure the item remover is initialized, otherwise data fetches won't
// complete.
EnsureItemRemoverInitialized();
// Set up a callback for a birch data fetch.
base::RunLoop birch_data_fetch_waiter;
Shell::Get()->birch_model()->SetDataFetchCallbackForTest(
birch_data_fetch_waiter.QuitClosure());
// Enter overview, which triggers a birch data fetch.
ToggleOverview();
WaitForOverviewEntered();
// Wait for fetch callback to complete.
birch_data_fetch_waiter.Run();
// The birch bar is created with a single chip.
BirchChipButtonBase* button = GetBirchChipButton();
EXPECT_EQ(button->GetItem()->GetType(), BirchItemType::kReleaseNotes);
// Clicking the button closes overview and destroys the button, so avoid a
// dangling pointer with std::exchange.
ClickOnView(std::exchange(button, nullptr));
// Clicking the button should attempt to open the URL.
EXPECT_EQ(new_window_delegate_->opened_url_,
GURL("chrome://help-app/updates"));
}
} // namespace
} // namespace ash
|