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 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051
|
// 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.
// This class runs CUJ tests for lens overlay. These tests simulate input events
// and cannot be run in parallel.
#include <utility>
#include "base/strings/string_util.h"
#include "base/strings/stringprintf.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/renderer_context_menu/render_view_context_menu.h"
#include "chrome/browser/search_engines/template_url_service_factory.h"
#include "chrome/browser/signin/identity_manager_factory.h"
#include "chrome/browser/sync/sync_service_factory.h"
#include "chrome/browser/themes/theme_service.h"
#include "chrome/browser/themes/theme_service_factory.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_element_identifiers.h"
#include "chrome/browser/ui/lens/lens_overlay_controller.h"
#include "chrome/browser/ui/lens/lens_overlay_gen204_controller.h"
#include "chrome/browser/ui/lens/lens_search_controller.h"
#include "chrome/browser/ui/lens/test_lens_search_controller.h"
#include "chrome/browser/ui/tabs/public/tab_features.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/browser/ui/toolbar/app_menu_model.h"
#include "chrome/common/webui_url_constants.h"
#include "chrome/test/base/search_test_utils.h"
#include "chrome/test/interaction/interactive_browser_test.h"
#include "chrome/test/user_education/interactive_feature_promo_test.h"
#include "components/feature_engagement/public/feature_constants.h"
#include "components/lens/lens_features.h"
#include "components/lens/lens_overlay_invocation_source.h"
#include "components/lens/lens_overlay_permission_utils.h"
#include "components/pdf/browser/pdf_document_helper.h"
#include "components/prefs/pref_service.h"
#include "components/search_engines/template_url_service.h"
#include "components/user_education/views/help_bubble_view.h"
#include "content/public/browser/render_view_host.h"
#include "content/public/test/browser_test.h"
#include "media/base/media_switches.h"
#include "net/base/mock_network_change_notifier.h"
#include "net/base/network_change_notifier.h"
#include "ui/base/clipboard/clipboard.h"
#include "ui/base/clipboard/clipboard_format_type.h"
#include "ui/events/keycodes/dom/dom_code.h"
#include "ui/gfx/geometry/point.h"
namespace {
constexpr char kDocumentWithNamedElement[] = "/select.html";
constexpr char kDocumentWithImage[] = "/test_visual.html";
constexpr char kDocumentWithVideo[] = "/media/bigbuck-player.html";
constexpr char kPdfDocument[] = "/pdf/test.pdf";
class TabFeaturesFake : public tabs::TabFeatures {
public:
TabFeaturesFake() = default;
protected:
std::unique_ptr<LensSearchController> CreateLensController(
tabs::TabInterface* tab) override {
return std::make_unique<lens::TestLensSearchController>(tab);
}
};
class LensOverlayControllerCUJTest : public InteractiveFeaturePromoTest {
public:
template <typename... Args>
explicit LensOverlayControllerCUJTest(Args&&... args)
: InteractiveFeaturePromoTest(
UseDefaultTrackerAllowingPromos({std::forward<Args>(args)...})) {
tabs::TabFeatures::ReplaceTabFeaturesForTesting(
base::BindRepeating(&LensOverlayControllerCUJTest::CreateTabFeatures,
base::Unretained(this)));
}
~LensOverlayControllerCUJTest() override = default;
void SetUp() override {
SetUpFeatureList();
ASSERT_TRUE(embedded_test_server()->InitializeAndListen());
InteractiveFeaturePromoTest::SetUp();
}
virtual void SetUpFeatureList() {
feature_list_.InitWithFeaturesAndParameters(
/*enabled_features=*/{{lens::features::kLensOverlay, {}},
{lens::features::kLensOverlayTranslateButton, {}},
{media::kContextMenuSearchForVideoFrame, {}},
{lens::features::kLensOverlayContextualSearchbox,
{{"use-pdfs-as-context", "true"},
{"use-inner-html-as-context", "true"},
{"auto-focus-searchbox", "false"}}}},
/*disabled_features=*/{
lens::features::kLensOverlaySimplifiedSelection});
}
void WaitForTemplateURLServiceToLoad() {
auto* const template_url_service =
TemplateURLServiceFactory::GetForProfile(browser()->profile());
search_test_utils::WaitForTemplateURLServiceToLoad(template_url_service);
}
void SetUpOnMainThread() override {
InteractiveFeaturePromoTest::SetUpOnMainThread();
embedded_test_server()->StartAcceptingConnections();
// Permits sharing the page screenshot by default.
PrefService* prefs = browser()->profile()->GetPrefs();
prefs->SetBoolean(lens::prefs::kLensSharingPageScreenshotEnabled, true);
prefs->SetBoolean(lens::prefs::kLensSharingPageContentEnabled, true);
}
void TearDownOnMainThread() override {
EXPECT_TRUE(embedded_test_server()->ShutdownAndWaitUntilComplete());
InteractiveFeaturePromoTest::TearDownOnMainThread();
// Disallow sharing the page screenshot by default.
PrefService* prefs = browser()->profile()->GetPrefs();
prefs->SetBoolean(lens::prefs::kLensSharingPageScreenshotEnabled, false);
}
std::unique_ptr<tabs::TabFeatures> CreateTabFeatures() {
return std::make_unique<TabFeaturesFake>();
}
InteractiveTestApi::MultiStep OpenLensOverlay() {
DEFINE_LOCAL_ELEMENT_IDENTIFIER_VALUE(kActiveTab);
const GURL url = embedded_test_server()->GetURL(kDocumentWithNamedElement);
// In kDocumentWithNamedElement.
const DeepQuery kPathToBody{
"body",
};
return Steps(InstrumentTab(kActiveTab),
NavigateWebContents(kActiveTab, url),
EnsurePresent(kActiveTab, kPathToBody),
WaitForWebContentsPainted(kActiveTab),
// Open the three dot menu and select the Lens Overlay option.
PressButton(kToolbarAppMenuButtonElementId),
WaitForShow(AppMenuModel::kShowLensOverlay),
SelectMenuItem(AppMenuModel::kShowLensOverlay));
}
InteractiveTestApi::MultiStep OpenLensOverlayFromImage() {
DEFINE_LOCAL_ELEMENT_IDENTIFIER_VALUE(kActiveTab);
const GURL url = embedded_test_server()->GetURL(kDocumentWithImage);
// In kDocumentWithImage.
const DeepQuery kPathToImg{
"img",
};
return Steps(InstrumentTab(kActiveTab),
NavigateWebContents(kActiveTab, url),
WaitForWebContentsPainted(kActiveTab),
MoveMouseTo(kActiveTab, kPathToImg),
MayInvolveNativeContextMenu(
ClickMouse(ui_controls::RIGHT),
SelectMenuItem(RenderViewContextMenu::kSearchForImageItem,
InputType::kMouse)));
}
InteractiveTestApi::MultiStep OpenLensOverlayFromVideo() {
DEFINE_LOCAL_ELEMENT_IDENTIFIER_VALUE(kActiveTab);
DEFINE_LOCAL_CUSTOM_ELEMENT_EVENT_TYPE(kVideoIsPlaying);
const GURL url = embedded_test_server()->GetURL(kDocumentWithVideo);
const char kPlayVideo[] = "(el) => { el.play(); }";
const DeepQuery kPathToVideo{"video"};
constexpr char kMediaIsPlaying[] =
"(el) => { return el.currentTime > 0.1 && !el.paused && !el.ended && "
"el.readyState > 2; }";
StateChange video_is_playing;
video_is_playing.event = kVideoIsPlaying;
video_is_playing.where = kPathToVideo;
video_is_playing.test_function = kMediaIsPlaying;
return Steps(
InstrumentTab(kActiveTab), NavigateWebContents(kActiveTab, url),
EnsurePresent(kActiveTab, kPathToVideo),
ExecuteJsAt(kActiveTab, kPathToVideo, kPlayVideo),
WaitForStateChange(kActiveTab, video_is_playing),
MoveMouseTo(kActiveTab, kPathToVideo),
MayInvolveNativeContextMenu(
ClickMouse(ui_controls::RIGHT),
SelectMenuItem(RenderViewContextMenu::kSearchForVideoFrameItem,
InputType::kMouse)));
}
InteractiveTestApi::MultiStep WaitForScreenshotRendered(
ui::ElementIdentifier overlayId) {
DEFINE_LOCAL_CUSTOM_ELEMENT_EVENT_TYPE(kScreenshotIsRendered);
const DeepQuery kPathToSelectionOverlay{"lens-overlay-app",
"lens-selection-overlay"};
constexpr char kSelectionOverlayHasBounds[] =
"(el) => { return el.getBoundingClientRect().width > 0 && "
"el.getBoundingClientRect().height > 0; }";
StateChange screenshot_is_rendered;
screenshot_is_rendered.event = kScreenshotIsRendered;
screenshot_is_rendered.where = kPathToSelectionOverlay;
screenshot_is_rendered.test_function = kSelectionOverlayHasBounds;
return Steps(EnsurePresent(overlayId),
WaitForStateChange(overlayId, screenshot_is_rendered));
}
protected:
base::test::ScopedFeatureList feature_list_;
};
// This tests the following CUJ:
// (1) User navigates to a website.
// (2) User opens lens overlay.
// (3) User clicks the "close" button to close lens overlay.
IN_PROC_BROWSER_TEST_F(LensOverlayControllerCUJTest, OpenAndClose) {
WaitForTemplateURLServiceToLoad();
DEFINE_LOCAL_ELEMENT_IDENTIFIER_VALUE(kOverlayId);
const GURL url = embedded_test_server()->GetURL(kDocumentWithNamedElement);
// In kDocumentWithNamedElement.
const DeepQuery kPathToBody{
"body",
};
// In the lens overlay.
const DeepQuery kPathToCloseButton{
"lens-overlay-app",
"#closeButton",
};
constexpr char kClickFn[] = "(el) => { el.click(); }";
RunTestSequence(
OpenLensOverlay(),
// The overlay controller is an independent floating widget associated
// with a tab rather than a browser window, so by convention gets its own
// element context.
InAnyContext(
InstrumentNonTabWebView(kOverlayId,
LensOverlayController::kOverlayId),
WaitForWebContentsReady(
kOverlayId, GURL(chrome::kChromeUILensOverlayUntrustedURL))),
// Wait for the webview to finish loading to prevent re-entrancy.
InSameContext(EnsurePresent(kOverlayId, kPathToCloseButton),
ExecuteJsAt(kOverlayId, kPathToCloseButton, kClickFn,
ExecuteJsMode::kFireAndForget),
WaitForHide(kOverlayId)));
}
// This tests the following CUJ:
// (1) User navigates to a website.
// (2) User opens lens overlay.
// (3) User presses the escape key to close lens overlay.
#if BUILDFLAG(IS_LINUX) && defined(ADDRESS_SANITIZER)
// Flaky on ASAN on Linux.
#define MAYBE_EscapeKeyClose DISABLED_EscapeKeyClose
#else
#define MAYBE_EscapeKeyClose EscapeKeyClose
#endif
IN_PROC_BROWSER_TEST_F(LensOverlayControllerCUJTest, MAYBE_EscapeKeyClose) {
WaitForTemplateURLServiceToLoad();
DEFINE_LOCAL_ELEMENT_IDENTIFIER_VALUE(kOverlayId);
const GURL url = embedded_test_server()->GetURL(kDocumentWithNamedElement);
// In kDocumentWithNamedElement.
const DeepQuery kPathToBody{
"body",
};
const ui::Accelerator escape_key(ui::VKEY_ESCAPE, ui::EF_NONE);
RunTestSequence(
OpenLensOverlay(),
// The overlay controller is an independent floating widget associated
// with a tab rather than a browser window, so by convention gets its own
// element context.
InAnyContext(
InstrumentNonTabWebView(kOverlayId,
LensOverlayController::kOverlayId),
WaitForWebContentsReady(
kOverlayId, GURL(chrome::kChromeUILensOverlayUntrustedURL)),
WaitForWebContentsPainted(kOverlayId)),
// Wait for the webview to finish loading to prevent re-entrancy.
InSameContext(FocusWebContents(kOverlayId),
SendAccelerator(kOverlayId, escape_key),
WaitForHide(kOverlayId)));
}
// This tests the following CUJ:
// (1) User navigates to a website.
// (2) User opens lens overlay.
// (3) User highlights some text.
// (4) User presses CTRL+C on some text.
// (5) Highlighted text gets copied.
// TODO(crbug.com/399520257): Fix test failure on Linux, and ASAN.
#if BUILDFLAG(IS_LINUX) || defined(ADDRESS_SANITIZER)
// Flaky on ASAN, and on Linux.
#define MAYBE_CopyKeyCommandCopies DISABLED_CopyKeyCommandCopies
#else
#define MAYBE_CopyKeyCommandCopies CopyKeyCommandCopies
#endif
IN_PROC_BROWSER_TEST_F(LensOverlayControllerCUJTest,
MAYBE_CopyKeyCommandCopies) {
WaitForTemplateURLServiceToLoad();
DEFINE_LOCAL_ELEMENT_IDENTIFIER_VALUE(kOverlayId);
DEFINE_LOCAL_ELEMENT_IDENTIFIER_VALUE(kOverlaySidePanelWebViewId);
DEFINE_LOCAL_STATE_IDENTIFIER_VALUE(ui::test::PollingStateObserver<bool>,
kTextCopiedState);
const GURL url = embedded_test_server()->GetURL(kDocumentWithNamedElement);
// In kDocumentWithNamedElement.
const DeepQuery kPathToBody{
"body",
};
// Path to text
const DeepQuery kPathToWord{
"lens-overlay-app",
"lens-selection-overlay",
"lens-text-layer",
".word",
};
const ui::Accelerator ctrl_c_accelerator(ui::VKEY_C, ui::EF_CONTROL_DOWN);
RunTestSequence(
OpenLensOverlay(),
// The overlay controller is an independent floating widget associated
// with a tab rather than a browser window, so by convention gets its own
// element context.
InAnyContext(
InstrumentNonTabWebView(kOverlayId,
LensOverlayController::kOverlayId),
WaitForWebContentsReady(
kOverlayId, GURL(chrome::kChromeUILensOverlayUntrustedURL))),
// Wait for the webview to finish loading to prevent re-entrancy. Then
// click a word to highlight it. Flush tasks after click to prevent
// flakiness.
InSameContext(WaitForShow(LensOverlayController::kOverlayId),
WaitForScreenshotRendered(kOverlayId),
EnsurePresent(kOverlayId, kPathToWord),
MoveMouseTo(kOverlayId, kPathToWord),
ClickMouse(ui_controls::LEFT)),
// Clicking the text should have opened the side panel with the results
// frame.
InAnyContext(InstrumentNonTabWebView(
kOverlaySidePanelWebViewId,
LensOverlayController::kOverlaySidePanelWebViewId),
WaitForWebContentsReady(kOverlaySidePanelWebViewId),
WaitForWebContentsPainted(kOverlaySidePanelWebViewId)),
// Press CTRL+C command and ensure the highlighted text is saved to
// clipboard. We send the command to the side panel web view because in
// actual usage, the side panel is the view with focus so it receives
// the event right after selecting text.
InSameContext(
WaitForShow(kOverlaySidePanelWebViewId),
FocusWebContents(kOverlaySidePanelWebViewId),
SendAccelerator(kOverlaySidePanelWebViewId, ctrl_c_accelerator),
PollState(kTextCopiedState,
[&]() {
ui::Clipboard* clipboard =
ui::Clipboard::GetForCurrentThread();
std::u16string clipboard_text;
clipboard->ReadText(ui::ClipboardBuffer::kCopyPaste,
/* data_dst = */ nullptr,
&clipboard_text);
return base::EqualsASCII(clipboard_text, "This");
}),
WaitForState(kTextCopiedState, true)));
}
// This tests the following CUJ:
// (1) User navigates to a website.
// (2) User opens lens overlay.
// (3) User makes a selection that opens the results side panel.
// (4) User presses the escape key to close lens overlay.
#if BUILDFLAG(IS_LINUX) && defined(ADDRESS_SANITIZER)
// Flaky on ASAN on Linux.
#define MAYBE_EscapeKeyCloseWithResultsPanel \
DISABLED_EscapeKeyCloseWithResultsPanel
#else
#define MAYBE_EscapeKeyCloseWithResultsPanel EscapeKeyCloseWithResultsPanel
#endif
IN_PROC_BROWSER_TEST_F(LensOverlayControllerCUJTest,
MAYBE_EscapeKeyCloseWithResultsPanel) {
WaitForTemplateURLServiceToLoad();
DEFINE_LOCAL_ELEMENT_IDENTIFIER_VALUE(kOverlayId);
DEFINE_LOCAL_ELEMENT_IDENTIFIER_VALUE(kOverlaySidePanelWebViewId);
const GURL url = embedded_test_server()->GetURL(kDocumentWithNamedElement);
// In kDocumentWithNamedElement.
const DeepQuery kPathToBody{
"body",
};
const DeepQuery kPathToRegionSelection{
"lens-overlay-app",
"lens-selection-overlay",
"#regionSelectionLayer",
};
const DeepQuery kPathToResultsFrame{
"lens-side-panel-app",
"#results",
};
auto off_center_point =
base::BindLambdaForTesting([&](ui::TrackedElement* el) {
return el->AsA<views::TrackedElementViews>()
->view()
->GetBoundsInScreen()
.CenterPoint() +
gfx::Vector2d(50, 50);
});
const ui::Accelerator escape_key(ui::VKEY_ESCAPE, ui::EF_NONE);
RunTestSequence(
OpenLensOverlay(),
// The overlay controller is an independent floating widget
// associated with a tab rather than a browser window, so by
// convention gets its own element context.
InAnyContext(
InstrumentNonTabWebView(kOverlayId,
LensOverlayController::kOverlayId),
WaitForWebContentsReady(
kOverlayId, GURL(chrome::kChromeUILensOverlayUntrustedURL))),
// Wait for the webview to finish loading to prevent re-entrancy. Then do
// a drag offset from the center. Flush tasks after drag to prevent
// flakiness.
InSameContext(
WaitForShow(LensOverlayController::kOverlayId),
WaitForScreenshotRendered(kOverlayId),
EnsurePresent(kOverlayId, kPathToRegionSelection),
MoveMouseTo(LensOverlayController::kOverlayId),
DragMouseTo(LensOverlayController::kOverlayId, off_center_point)),
// The drag should have opened the side panel with the results frame.
InAnyContext(
InstrumentNonTabWebView(
kOverlaySidePanelWebViewId,
LensOverlayController::kOverlaySidePanelWebViewId),
WaitForWebContentsReady(kOverlaySidePanelWebViewId),
WaitForWebContentsPainted(kOverlaySidePanelWebViewId),
EnsurePresent(kOverlaySidePanelWebViewId, kPathToResultsFrame)),
// Press the escape key to and ensure the overlay closes.
InSameContext(WaitForShow(kOverlaySidePanelWebViewId),
FocusWebContents(kOverlaySidePanelWebViewId),
SendAccelerator(kOverlaySidePanelWebViewId, escape_key),
WaitForHide(kOverlayId)));
}
// This tests the following CUJ:
// (1) User navigates to a website.
// (2) User opens lens overlay.
// (3) User drags to select a manual region on the overlay.
// (4) Side panel opens with results.
// TODO(crbug.com/355224013): Re-enable this test
IN_PROC_BROWSER_TEST_F(LensOverlayControllerCUJTest,
DISABLED_SelectManualRegion) {
WaitForTemplateURLServiceToLoad();
DEFINE_LOCAL_ELEMENT_IDENTIFIER_VALUE(kOverlayId);
DEFINE_LOCAL_ELEMENT_IDENTIFIER_VALUE(kOverlaySidePanelWebViewId);
auto* const browser_view = BrowserView::GetBrowserViewForBrowser(browser());
const DeepQuery kPathToRegionSelection{
"lens-overlay-app",
"lens-selection-overlay",
"#regionSelectionLayer",
};
const DeepQuery kPathToResultsFrame{
"lens-side-panel-app",
"#results",
};
auto off_center_point = base::BindLambdaForTesting([browser_view]() {
gfx::Point off_center =
browser_view->contents_web_view()->bounds().CenterPoint();
off_center.Offset(100, 100);
return off_center;
});
RunTestSequence(
OpenLensOverlay(),
// The overlay controller is an independent floating widget
// associated with a tab rather than a browser window, so by
// convention gets its own element context.
InAnyContext(
InstrumentNonTabWebView(kOverlayId,
LensOverlayController::kOverlayId),
WaitForWebContentsReady(
kOverlayId, GURL(chrome::kChromeUILensOverlayUntrustedURL))),
// Wait for the webview to finish loading to prevent re-entrancy. Then do
// a drag offset from the center. Flush tasks after drag to prevent
// flakiness.
InSameContext(WaitForShow(LensOverlayController::kOverlayId),
WaitForScreenshotRendered(kOverlayId),
EnsurePresent(kOverlayId, kPathToRegionSelection),
MoveMouseTo(LensOverlayController::kOverlayId),
DragMouseTo(off_center_point)),
// The drag should have opened the side panel with the results frame.
InAnyContext(
InstrumentNonTabWebView(
kOverlaySidePanelWebViewId,
LensOverlayController::kOverlaySidePanelWebViewId),
EnsurePresent(kOverlaySidePanelWebViewId, kPathToResultsFrame)));
}
// This tests the following CUJ:
// (1) User navigates to a website.
// (2) User right-clicks an image and opens lens overlay.
// (3) Side panel opens with results.
// Disabled on mac because the mac interaction test
// util implementation does not support setting the input (mouse / keyboard)
// type for a context menu item selection.
#if BUILDFLAG(IS_MAC)
#define MAYBE_SearchForImage DISABLED_SearchForImage
#else
#define MAYBE_SearchForImage SearchForImage
#endif
IN_PROC_BROWSER_TEST_F(LensOverlayControllerCUJTest, MAYBE_SearchForImage) {
WaitForTemplateURLServiceToLoad();
DEFINE_LOCAL_ELEMENT_IDENTIFIER_VALUE(kOverlayId);
DEFINE_LOCAL_ELEMENT_IDENTIFIER_VALUE(kOverlaySidePanelWebViewId);
const DeepQuery kPathToRegionSelection{
"lens-overlay-app",
"lens-selection-overlay",
"#regionSelectionLayer",
};
const DeepQuery kPathToResultsFrame{
"lens-side-panel-app",
"#results",
};
RunTestSequence(
OpenLensOverlayFromImage(),
// The overlay controller is an independent floating widget
// associated with a tab rather than a browser window, so by
// convention gets its own element context.
InAnyContext(
InstrumentNonTabWebView(kOverlayId,
LensOverlayController::kOverlayId),
WaitForWebContentsReady(
kOverlayId, GURL(chrome::kChromeUILensOverlayUntrustedURL))),
// The side panel should open with the results frame.
InAnyContext(
InstrumentNonTabWebView(
kOverlaySidePanelWebViewId,
LensOverlayController::kOverlaySidePanelWebViewId),
EnsurePresent(kOverlaySidePanelWebViewId, kPathToResultsFrame)));
}
// This tests the following CUJ:
// (1) User navigates to a website.
// (2) User right-clicks a video and opens "Search with Google Lens".
// (3) Side panel opens with results.
// Disabled on mac because the mac interaction test
// util implementation does not support setting the input (mouse / keyboard)
// type for a context menu item selection.
#if BUILDFLAG(IS_MAC)
#define MAYBE_SearchForVideoFrame DISABLED_SearchForVideoFrame
#else
#define MAYBE_SearchForVideoFrame SearchForVideoFrame
#endif
IN_PROC_BROWSER_TEST_F(LensOverlayControllerCUJTest,
MAYBE_SearchForVideoFrame) {
WaitForTemplateURLServiceToLoad();
DEFINE_LOCAL_ELEMENT_IDENTIFIER_VALUE(kOverlayId);
DEFINE_LOCAL_ELEMENT_IDENTIFIER_VALUE(kOverlaySidePanelWebViewId);
const DeepQuery kPathToRegionSelection{
"lens-overlay-app",
"lens-selection-overlay",
"#regionSelectionLayer",
};
const DeepQuery kPathToResultsFrame{
"lens-side-panel-app",
"#results",
};
RunTestSequence(
OpenLensOverlayFromVideo(),
// The overlay controller is an independent floating widget
// associated with a tab rather than a browser window, so by
// convention gets its own element context.
InAnyContext(
InstrumentNonTabWebView(kOverlayId,
LensOverlayController::kOverlayId),
WaitForWebContentsReady(
kOverlayId, GURL(chrome::kChromeUILensOverlayUntrustedURL))),
// The side panel should open with the results frame.
InAnyContext(
InstrumentNonTabWebView(
kOverlaySidePanelWebViewId,
LensOverlayController::kOverlaySidePanelWebViewId),
EnsurePresent(kOverlaySidePanelWebViewId, kPathToResultsFrame)));
}
// This tests the following CUJ:
// (1) User navigates to a PDF.
// (2) User opens lens overlay.
// (3) The CSB should say "Ask about this document"
// (3) User make a query
// (4) This side panel opens
// (5) The CSB should say "Ask about this document"
// (6) The user navigates to a webpage.
// (7) The CSB should say "Ask about this page"
IN_PROC_BROWSER_TEST_F(LensOverlayControllerCUJTest, NavigationsUpdateCSB) {
WaitForTemplateURLServiceToLoad();
DEFINE_LOCAL_ELEMENT_IDENTIFIER_VALUE(kOverlayId);
DEFINE_LOCAL_ELEMENT_IDENTIFIER_VALUE(kOverlaySidePanelWebViewId);
DEFINE_LOCAL_ELEMENT_IDENTIFIER_VALUE(kActiveTab);
DEFINE_LOCAL_CUSTOM_ELEMENT_EVENT_TYPE(kHintTextUpdatedEvent);
const GURL pdf_url = embedded_test_server()->GetURL(kPdfDocument);
// Paths to searchbox hint text.
const DeepQuery kPathToOverlaySearchboxInput{
"lens-overlay-app",
"cr-searchbox",
"input",
};
const DeepQuery kPathToSidePanelSearchboxInput{
"lens-side-panel-app",
"cr-searchbox",
"input",
};
const DeepQuery kPathToOverlayGhostLoaderText{
"lens-overlay-app", "cr-searchbox-ghost-loader", "#hint-text1"};
const DeepQuery kPathToSidePanelGhostLoaderText{
"lens-side-panel-app", "cr-searchbox-ghost-loader", "#hint-text1"};
// Helper function to check for specific text in an element.
auto CheckSearchboxHintText = [](ui::ElementIdentifier web_contents_id,
const DeepQuery& query,
const std::string& expected_text) {
return CheckJsResultAt(web_contents_id, query,
base::StringPrintf("el => el.placeholder === '%s'",
expected_text.c_str()));
};
auto CheckGhostLoaderText = [](ui::ElementIdentifier web_contents_id,
const DeepQuery& query,
const std::string& expected_text) {
return CheckJsResultAt(
web_contents_id, query,
base::StringPrintf("el => el.innerText.trim() === '%s'",
expected_text.c_str()));
};
// State change to wait for the hint text to update.
StateChange hint_text_updated;
hint_text_updated.event = kHintTextUpdatedEvent;
hint_text_updated.type = StateChange::Type::kExistsAndConditionTrue;
hint_text_updated.where = kPathToSidePanelSearchboxInput;
hint_text_updated.test_function =
"el => el.placeholder === 'Ask about this document'";
RunTestSequence(
// TODO(crbug.com/355224013): Ideally, this opens with a PDF to start,
// but the right click menu item is not accessible in the UI test on PDF.
// Once these tests can open without the rigth click menu, this should be
// updated to open a PDF.
OpenLensOverlay(),
// The overlay controller is an independent floating widget associated
// with a tab rather than a browser window, so by convention gets its own
// element context.
InAnyContext(
InstrumentNonTabWebView(kOverlayId,
LensOverlayController::kOverlayId),
WaitForWebContentsReady(
kOverlayId, GURL(chrome::kChromeUILensOverlayUntrustedURL))),
// The CSB should be in the overlay with the text "Ask about this
// document".
InSameContext(
WaitForShow(LensOverlayController::kOverlayId),
WaitForScreenshotRendered(kOverlayId),
CheckSearchboxHintText(kOverlayId, kPathToOverlaySearchboxInput,
"Ask about this page"),
CheckGhostLoaderText(kOverlayId, kPathToOverlayGhostLoaderText,
"Generating suggestions for this page…")),
// The use makes a query in the searchbox and the side panel opens.
InSameContext(
// Focus the overlay to receive input events.
FocusWebContents(kOverlayId),
// Focus the searchbox.
ExecuteJsAt(kOverlayId, kPathToOverlaySearchboxInput,
"(el) => { el.focus(); }",
ExecuteJsMode::kWaitForCompletion),
// Emulate focus into the searchbox.
ExecuteJsAt(
kOverlayId, kPathToOverlaySearchboxInput,
base::StringPrintf(
"(el) => { el.value = '%s'; el.dispatchEvent(new "
"Event('input', { bubbles: true })); el.dispatchEvent(new "
"Event('change', { bubbles: true }));}",
"test query"),
ExecuteJsMode::kWaitForCompletion),
// Simulate the enter key being pressed.
ExecuteJsAt(
kOverlayId, kPathToOverlaySearchboxInput,
base::StringPrintf(
"(el) => { el.dispatchEvent(new KeyboardEvent('keydown', { "
"key:'%s', bubbles: true }));}",
"Enter"),
ExecuteJsMode::kFireAndForget)),
// Side panel should open.
InAnyContext(InstrumentNonTabWebView(
kOverlaySidePanelWebViewId,
LensOverlayController::kOverlaySidePanelWebViewId),
WaitForWebContentsReady(kOverlaySidePanelWebViewId)),
// The CSB in the side panel should say "Ask about this document"
InSameContext(
CheckSearchboxHintText(kOverlaySidePanelWebViewId,
kPathToSidePanelSearchboxInput,
"Ask about this page"),
CheckGhostLoaderText(kOverlaySidePanelWebViewId,
kPathToSidePanelGhostLoaderText,
"Generating suggestions for this page…")),
// The user navigates to a webpage.
InAnyContext(InstrumentTab(kActiveTab),
NavigateWebContents(kActiveTab, pdf_url)),
// The CSB in the overlay should eventually say "Ask about this page"
InAnyContext(
WaitForStateChange(kOverlaySidePanelWebViewId, hint_text_updated),
CheckSearchboxHintText(kOverlaySidePanelWebViewId,
kPathToSidePanelSearchboxInput,
"Ask about this document"),
CheckGhostLoaderText(kOverlaySidePanelWebViewId,
kPathToSidePanelGhostLoaderText,
"Generating suggestions for this document…")));
}
class LensOverlayControllerPromoTest : public LensOverlayControllerCUJTest {
public:
LensOverlayControllerPromoTest()
: LensOverlayControllerCUJTest(
feature_engagement::kIPHSidePanelLensOverlayPinnableFeature,
feature_engagement::
kIPHSidePanelLensOverlayPinnableFollowupFeature) {}
~LensOverlayControllerPromoTest() override = default;
};
IN_PROC_BROWSER_TEST_F(LensOverlayControllerPromoTest, ShowsPromo) {
// Use the same setup and initial sequence as `SelectManualRegion` above in
// order to trigger the side panel.
WaitForTemplateURLServiceToLoad();
DEFINE_LOCAL_ELEMENT_IDENTIFIER_VALUE(kOverlayId);
auto* const browser_view = BrowserView::GetBrowserViewForBrowser(browser());
const DeepQuery kPathToRegionSelection{
"lens-overlay-app",
"lens-selection-overlay",
"#regionSelectionLayer",
};
const DeepQuery kPathToResultsFrame{
"lens-side-panel-app",
"#results",
};
auto off_center_point = base::BindLambdaForTesting([browser_view]() {
gfx::Point off_center =
browser_view->contents_web_view()->bounds().CenterPoint();
off_center.Offset(100, 100);
return off_center;
});
RunTestSequence(
OpenLensOverlay(),
// The overlay controller is an independent floating widget
// associated with a tab rather than a browser window, so by
// convention gets its own element context.
InAnyContext(
InstrumentNonTabWebView(kOverlayId,
LensOverlayController::kOverlayId),
WaitForWebContentsReady(
kOverlayId, GURL(chrome::kChromeUILensOverlayUntrustedURL))),
// Wait for the webview to finish loading to prevent re-entrancy. Then do
// a drag offset from the center. Flush tasks after drag to prevent
// flakiness.
InSameContext(WaitForShow(LensOverlayController::kOverlayId),
WaitForScreenshotRendered(kOverlayId),
EnsurePresent(kOverlayId, kPathToRegionSelection),
MoveMouseTo(LensOverlayController::kOverlayId),
DragMouseTo(off_center_point)),
// The drag should have opened the side panel with the results frame.
WaitForShow(LensOverlayController::kOverlaySidePanelWebViewId),
// Wait for the initial "do you want to pin this?" help bubble.
WaitForPromo(feature_engagement::kIPHSidePanelLensOverlayPinnableFeature),
// Pin the side panel. This should dismiss the IPH, but also launch
// another, so wait for the first hide to avoid the next check picking up
// the wrong help bubble.
PressButton(kSidePanelPinButtonElementId),
// Specifying transition-only-on-event here means even if there is a
// different help bubble already in-frame, this step will succeed when any
// help bubble goes away.
WaitForHide(
user_education::HelpBubbleView::kHelpBubbleElementIdForTesting)
.SetTransitionOnlyOnEvent(true),
// A second IPH should appear showing where the item was pinned.
WaitForPromo(
feature_engagement::kIPHSidePanelLensOverlayPinnableFollowupFeature));
}
class LensOverlayControllerTranslatePromoTest
: public LensOverlayControllerCUJTest {
public:
LensOverlayControllerTranslatePromoTest()
: LensOverlayControllerCUJTest(
feature_engagement::kIPHLensOverlayTranslateButtonFeature) {}
~LensOverlayControllerTranslatePromoTest() override = default;
};
// This tests the following promo flow:
// (1) User opens the Lens Overlay.
// (2) Promo shows. After, user clicks the translate button.
// (3) Promo hides.
IN_PROC_BROWSER_TEST_F(LensOverlayControllerTranslatePromoTest,
ShowsTranslatePromo) {
WaitForTemplateURLServiceToLoad();
DEFINE_LOCAL_ELEMENT_IDENTIFIER_VALUE(kOverlayId);
const DeepQuery kPathToTranslateButton{
"lens-overlay-app",
"#translateButton",
"#translateEnableButton",
};
RunTestSequence(
OpenLensOverlay(),
// The overlay controller is an independent floating widget
// associated with a tab rather than a browser window, so by
// convention gets its own element context.
InAnyContext(
InstrumentNonTabWebView(kOverlayId,
LensOverlayController::kOverlayId),
WaitForWebContentsReady(
kOverlayId, GURL(chrome::kChromeUILensOverlayUntrustedURL))),
// Wait for the webview to finish loading to prevent re-entrancy.
InSameContext(WaitForShow(LensOverlayController::kOverlayId),
WaitForScreenshotRendered(kOverlayId),
EnsurePresent(kOverlayId, kPathToTranslateButton)),
// Wait for the initial translate promo help bubble.
WaitForPromo(feature_engagement::kIPHLensOverlayTranslateButtonFeature),
// Click the translate button element.
ClickElement(kOverlayId, kPathToTranslateButton),
WaitForHide(
user_education::HelpBubbleView::kHelpBubbleElementIdForTesting));
}
class LensPreselectionBubbleInteractiveUiTest
: public LensOverlayControllerCUJTest {
public:
LensPreselectionBubbleInteractiveUiTest() = default;
~LensPreselectionBubbleInteractiveUiTest() override = default;
LensPreselectionBubbleInteractiveUiTest(
const LensPreselectionBubbleInteractiveUiTest&) = delete;
void operator=(const LensPreselectionBubbleInteractiveUiTest&) = delete;
auto SetConnectionOffline() {
return Do(base::BindLambdaForTesting([&]() {
// Set the network connection type to being offline.
scoped_mock_network_change_notifier =
std::make_unique<net::test::ScopedMockNetworkChangeNotifier>();
scoped_mock_network_change_notifier->mock_network_change_notifier()
->SetConnectionType(net::NetworkChangeNotifier::CONNECTION_NONE);
}));
}
void TearDownOnMainThread() override {
scoped_mock_network_change_notifier.reset();
}
private:
base::test::ScopedFeatureList feature_list_;
raw_ptr<views::Widget> preselection_widget_;
std::unique_ptr<net::test::ScopedMockNetworkChangeNotifier>
scoped_mock_network_change_notifier;
};
// This tests the following CUJ:
// (1) User opens the Lens Overlay while offline..
// (2) The user presses the exit button in the preselection bubble.
// (3) The overlay should close.
IN_PROC_BROWSER_TEST_F(LensPreselectionBubbleInteractiveUiTest,
PermissionBubbleOffline) {
RunTestSequence(EnsureNotPresent(kLensPreselectionBubbleExitButtonElementId),
SetConnectionOffline(), OpenLensOverlay(),
WaitForShow(kLensPreselectionBubbleExitButtonElementId),
PressButton(kLensPreselectionBubbleExitButtonElementId),
WaitForHide(LensOverlayController::kOverlayId));
}
class LensOverlayControllerSimplifiedSelectionCUJTest
: public LensOverlayControllerCUJTest {
public:
LensOverlayControllerSimplifiedSelectionCUJTest() = default;
~LensOverlayControllerSimplifiedSelectionCUJTest() override = default;
LensOverlayControllerSimplifiedSelectionCUJTest(
const LensOverlayControllerSimplifiedSelectionCUJTest&) = delete;
void operator=(const LensOverlayControllerSimplifiedSelectionCUJTest&) =
delete;
void SetUpFeatureList() override {
feature_list_.InitWithFeaturesAndParameters(
/*enabled_features=*/{{lens::features::kLensOverlay, {}},
{lens::features::kLensOverlaySimplifiedSelection,
{}},
{lens::features::kLensOverlayContextualSearchbox,
{{"use-pdfs-as-context", "true"},
{"use-inner-html-as-context", "true"},
{"auto-focus-searchbox", "false"}}}},
/*disabled_features=*/{lens::features::kLensOverlayTranslateButton});
}
};
// This tests the following CUJ:
// (1) User navigates to a website.
// (2) User opens lens overlay.
// (3) User highlights some region.
// (4) User presses CTRL+C.
// (5) Text in region gets copied.
// TODO(crbug.com/399520257): Fix test failure on Linux, and ASAN.
#if BUILDFLAG(IS_LINUX) || defined(ADDRESS_SANITIZER)
// Flaky on ASAN, and on Linux.
#define MAYBE_CopyKeyCommandCopiesText DISABLED_CopyKeyCommandCopiesText
#else
#define MAYBE_CopyKeyCommandCopiesText CopyKeyCommandCopiesText
#endif
IN_PROC_BROWSER_TEST_F(LensOverlayControllerSimplifiedSelectionCUJTest,
MAYBE_CopyKeyCommandCopiesText) {
WaitForTemplateURLServiceToLoad();
DEFINE_LOCAL_ELEMENT_IDENTIFIER_VALUE(kOverlayId);
DEFINE_LOCAL_ELEMENT_IDENTIFIER_VALUE(kOverlaySidePanelWebViewId);
DEFINE_LOCAL_STATE_IDENTIFIER_VALUE(ui::test::PollingStateObserver<bool>,
kTextCopiedState);
const GURL url = embedded_test_server()->GetURL(kDocumentWithNamedElement);
auto top_left_point = base::BindLambdaForTesting([&](ui::TrackedElement* el) {
return gfx::Point(el->AsA<views::TrackedElementViews>()
->view()
->GetBoundsInScreen()
.origin());
});
// Path to region selection layer.
const DeepQuery kPathToRegionSelection{
"lens-overlay-app",
"lens-selection-overlay",
"region-selection",
};
const ui::Accelerator ctrl_c_accelerator(ui::VKEY_C, ui::EF_CONTROL_DOWN);
RunTestSequence(
OpenLensOverlay(),
// The overlay controller is an independent floating widget associated
// with a tab rather than a browser window, so by convention gets its own
// element context.
InAnyContext(
InstrumentNonTabWebView(kOverlayId,
LensOverlayController::kOverlayId),
WaitForWebContentsReady(
kOverlayId, GURL(chrome::kChromeUILensOverlayUntrustedURL))),
// Wait for the webview to finish loading to prevent re-entrancy. Then
// click the center of the region selection layer to select a region.
// Flush tasks after click to prevent flakiness.
InSameContext(
WaitForShow(LensOverlayController::kOverlayId),
WaitForScreenshotRendered(kOverlayId),
EnsurePresent(kOverlayId, kPathToRegionSelection),
MoveMouseTo(kOverlayId, kPathToRegionSelection),
DragMouseTo(LensOverlayController::kOverlayId, top_left_point)),
// Clicking the overlay should have opened the side panel with the results
// frame.
InAnyContext(InstrumentNonTabWebView(
kOverlaySidePanelWebViewId,
LensOverlayController::kOverlaySidePanelWebViewId),
WaitForWebContentsReady(kOverlaySidePanelWebViewId),
WaitForWebContentsPainted(kOverlaySidePanelWebViewId)),
// Press CTRL+C command and ensure the selected region is saved to
// clipboard. Send the command to the side panel web view because in
// actual usage, the side panel is the view with focus so it receives
// the event right after selecting the region.
InSameContext(
WaitForShow(kOverlaySidePanelWebViewId),
FocusWebContents(kOverlaySidePanelWebViewId),
SendAccelerator(kOverlaySidePanelWebViewId, ctrl_c_accelerator),
PollState(
kTextCopiedState,
[&]() {
ui::Clipboard* clipboard = ui::Clipboard::GetForCurrentThread();
std::u16string clipboard_text;
clipboard->ReadText(ui::ClipboardBuffer::kCopyPaste,
/* data_dst = */ nullptr, &clipboard_text);
return base::EqualsASCII(clipboard_text, "This is test text.");
}),
WaitForState(kTextCopiedState, true)));
}
} // namespace
|