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 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232
|
// Copyright 2025 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <memory>
#include "base/callback_list.h"
#include "base/notreached.h"
#include "base/run_loop.h"
#include "base/test/bind.h"
#include "base/test/run_until.h"
#include "base/test/scoped_feature_list.h"
#include "base/time/time.h"
#include "chrome/browser/glic/glic_metrics.h"
#include "chrome/browser/glic/host/context/glic_page_context_fetcher.h"
#include "chrome/browser/glic/host/glic.mojom-shared.h"
#include "chrome/browser/glic/test_support/interactive_glic_test.h"
#include "chrome/browser/glic/test_support/interactive_test_util.h"
#include "chrome/browser/ui/browser_element_identifiers.h"
#include "chrome/common/chrome_features.h"
#include "chrome/test/interaction/interactive_browser_test.h"
#include "chrome/test/interaction/tracked_element_webcontents.h"
#include "components/optimization_guide/content/browser/page_content_proto_provider.h"
#include "components/optimization_guide/proto/features/common_quality_data.pb.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/browser_test_utils.h"
#include "mojo/public/cpp/base/proto_wrapper.h"
#include "mojo/public/cpp/system/message_pipe.h"
#include "services/service_manager/public/cpp/interface_provider.h"
#include "third_party/blink/public/mojom/annotation/annotation.mojom-test-utils.h"
#include "ui/base/interaction/element_identifier.h"
#include "ui/base/interaction/element_tracker.h"
namespace glic::test {
DEFINE_LOCAL_ELEMENT_IDENTIFIER_VALUE(kActiveTabId);
DEFINE_LOCAL_CUSTOM_ELEMENT_EVENT_TYPE(kAnnotationAgentDisconnectedByRemote);
DEFINE_LOCAL_CUSTOM_ELEMENT_EVENT_TYPE(kScrollStarted);
DEFINE_LOCAL_CUSTOM_ELEMENT_EVENT_TYPE(kScrollToRequestReceived);
constexpr char kActivateSurfaceIncompatibilityNotice[] =
"Programmatic window activation does not work on the Weston reference "
"implementation of Wayland used on Linux testbots. It also doesn't work "
"reliably on Linux in general. For this reason, some of these tests which "
"use ActivateSurface() (which is also called by FocusWebContents()) may be "
"skipped on machine configurations which do not reliably support them.";
// A fake service that can be used for more fine-grained control and timing
// around when selector matching completes.
class FakeAnnotationAgentContainer
: public blink::mojom::AnnotationAgentContainerInterceptorForTesting,
public blink::mojom::AnnotationAgent {
public:
FakeAnnotationAgentContainer() : receiver_(this), agent_receiver_(this) {}
~FakeAnnotationAgentContainer() override = default;
void Bind(mojo::ScopedMessagePipeHandle handle) {
receiver_.Bind(
mojo::PendingReceiver<blink::mojom::AnnotationAgentContainer>(
std::move(handle)));
}
// blink::mojom::AnnotationAgentContainer overrides
void CreateAgent(
mojo::PendingRemote<blink::mojom::AnnotationAgentHost>
pending_host_remote,
mojo::PendingReceiver<blink::mojom::AnnotationAgent> agent_receiver,
blink::mojom::AnnotationType type,
const blink::mojom::SelectorPtr selector,
std::optional<int> search_range_start_node_id) override {
if (agent_receiver_.is_bound()) {
agent_disconnected_ = false;
agent_receiver_.reset();
host_remote_.reset();
}
host_remote_.Bind(std::move(pending_host_remote));
agent_receiver_.Bind(std::move(agent_receiver));
agent_receiver_.set_disconnect_handler(base::BindLambdaForTesting([&]() {
agent_disconnected_ = true;
ui::TrackedElement* el =
ui::ElementTracker::GetElementTracker()->GetElementInAnyContext(
kBrowserViewElementId);
if (el) {
ui::ElementTracker::GetFrameworkDelegate()->NotifyCustomEvent(
el, kAnnotationAgentDisconnectedByRemote);
}
}));
auto* const el =
ui::ElementTracker::GetElementTracker()->GetElementInAnyContext(
kBrowserViewElementId);
ui::ElementTracker::GetFrameworkDelegate()->NotifyCustomEvent(
el, kScrollToRequestReceived);
}
// blink::mojom::AnnotationAgent overrides
void ScrollIntoView(bool applies_focus) override {
auto* const el =
ui::ElementTracker::GetElementTracker()->GetElementInAnyContext(
kBrowserViewElementId);
ui::ElementTracker::GetFrameworkDelegate()->NotifyCustomEvent(
el, kScrollStarted);
}
// blink::mojom::AnnotationAgentContainerInterceptorForTesting overrides
blink::mojom::AnnotationAgentContainer* GetForwardingInterface() override {
NOTREACHED();
}
void NotifyAttachment(gfx::Rect rect, blink::mojom::AttachmentResult result) {
host_remote_->DidFinishAttachment(rect, result);
}
bool HighlightIsActive() {
return agent_receiver_.is_bound() && !agent_disconnected_;
}
private:
mojo::Remote<blink::mojom::AnnotationAgentHost> host_remote_;
mojo::Receiver<blink::mojom::AnnotationAgentContainer> receiver_;
mojo::Receiver<blink::mojom::AnnotationAgent> agent_receiver_;
bool agent_disconnected_ = false;
};
class GlicAnnotationManagerUiTest : public InteractiveGlicTest {
public:
GlicAnnotationManagerUiTest() {
scoped_feature_list_.InitAndEnableFeature(features::kGlicScrollTo);
}
~GlicAnnotationManagerUiTest() override = default;
void SetUpOnMainThread() override {
histogram_tester_ = std::make_unique<base::HistogramTester>();
embedded_test_server()->ServeFilesFromSourceDirectory("content/test/data");
InteractiveGlicTest::SetUpOnMainThread();
}
// Retrieves AnnotatedPageContent for the currently focused tab (and caches
// it in `annotated_page_content_`).
auto GetPageContextFromFocusedTab() {
return Steps(Do([&]() {
GlicKeyedService* glic_service =
GlicKeyedServiceFactory::GetGlicKeyedService(browser()->GetProfile());
ASSERT_TRUE(glic_service);
base::RunLoop run_loop(base::RunLoop::Type::kNestableTasksAllowed);
auto options = mojom::GetTabContextOptions::New();
options->include_annotated_page_content = true;
FocusedTabData data = glic_service->sharing_manager().GetFocusedTabData();
if (data.focus()) {
FetchPageContext(
data.focus(), *options,
/*include_actionable_data=*/false,
base::BindLambdaForTesting([&](mojom::GetContextResultPtr result) {
mojo_base::ProtoWrapper& serialized_apc =
*result->get_tab_context()
->annotated_page_data->annotated_page_content;
annotated_page_content_ = std::make_unique<
optimization_guide::proto::AnnotatedPageContent>(
serialized_apc
.As<optimization_guide::proto::AnnotatedPageContent>()
.value());
run_loop.Quit();
}));
run_loop.Run();
}
}));
}
// Calls scrollTo() and waits until the promise resolves and succeeds.
using NodeIdCallback = base::OnceCallback<int()>;
using Selector = base::OnceCallback<base::Value::Dict()>;
auto ScrollTo(Selector selector) {
static constexpr char kScrollToJs[] =
R"js( () => { return client.browser.scrollTo({selector: $1}); } )js";
return Steps(
Do([&]() {
histogram_tester_ = std::make_unique<base::HistogramTester>();
}),
CheckJsResult(
kGlicContentsElementId,
content::JsReplace(kScrollToJs, std::move(selector).Run())),
Do([&]() {
histogram_tester_->ExpectTotalCount(
"Glic.ScrollTo.MatchDuration.Success", 1);
}));
}
// Similar to the above method, but also includes documentId in the params.
// If `document_id` is not set, it uses a value retrieved from
// `annotated_page_content_`.
using DocumentIdGetter = base::OnceCallback<std::string()>;
auto ScrollToWithDocumentId(
Selector selector,
std::optional<DocumentIdGetter> document_id = std::nullopt) {
return Steps(InAnyContext(WithElement(
kGlicContentsElementId, [&, selector = std::move(selector),
document_id_getter = std::move(document_id)](
ui::TrackedElement* el) mutable {
content::WebContents* glic_contents =
AsInstrumentedWebContents(el)->web_contents();
std::string document_id = GetDocumentIdFromAnnotatedPageContent();
if (document_id_getter.has_value()) {
document_id = std::move(document_id_getter.value()).Run();
}
std::string script = content::JsReplace(
R"js(
(() => {
return client.browser.scrollTo({
selector: $1,
documentId: $2
});
})();
)js",
std::move(selector).Run(), document_id);
ASSERT_TRUE(content::ExecJs(glic_contents, std::move(script)));
})));
}
// Calls scrollTo() and waits until the promise rejects with an error.
// Note: This will fail the test if the promise succeeds.
auto ScrollToExpectingError(Selector selector,
mojom::ScrollToErrorReason error_reason) {
static constexpr char kScrollToJs[] =
R"js(
async () => {
try {
await client.browser.scrollTo({selector: $1});
} catch (err) {
return err.reason;
}
}
)js";
return Steps(CheckJsResult(
kGlicContentsElementId,
content::JsReplace(kScrollToJs, std::move(selector).Run()),
::testing::Eq(static_cast<int>(error_reason))),
ExpectErrorRecorded(error_reason));
}
// Similar to the above method, but also includes documentId and domNodeId in
// the params. If `document_id` is not set, it uses a value retrieved from
// `annotated_page_content_`.
auto ScrollToWithDocumentIdExpectingError(
Selector selector,
mojom::ScrollToErrorReason error_reason,
std::optional<DocumentIdGetter> document_id = std::nullopt) {
auto step_callback = [&, selector = std::move(selector), error_reason,
document_id_getter = std::move(document_id)](
ui::TrackedElement* el) mutable {
content::WebContents* glic_contents =
AsInstrumentedWebContents(el)->web_contents();
std::string document_id = GetDocumentIdFromAnnotatedPageContent();
if (document_id_getter.has_value()) {
document_id = std::move(document_id_getter.value()).Run();
}
std::string script = content::JsReplace(
R"js(
(async () => {
try {
await client.browser.scrollTo({
selector: $1,
documentId: $2
});
} catch (err) {
return err.reason;
}
})();
)js",
std::move(selector).Run(), document_id);
EXPECT_EQ(content::EvalJs(glic_contents, std::move(script)),
static_cast<int>(error_reason));
};
return Steps(InAnyContext(WithElement(kGlicContentsElementId,
std::move(step_callback))),
ExpectErrorRecorded(error_reason));
}
// Calls scrollTo() and returns immediately.
auto ScrollToAsync(Selector selector) {
static constexpr char kScrollToJs[] =
R"js(
() => {
window.scrollToPromise = client.browser.scrollTo({selector: $1});
}
)js";
return Steps(
ExecuteJs(kGlicContentsElementId,
content::JsReplace(kScrollToJs, std::move(selector).Run()),
InteractiveBrowserTestApi::ExecuteJsMode::kFireAndForget));
}
// Should be used in combination with ScrollToAsync() above.
auto WaitForScrollToError(mojom::ScrollToErrorReason error_reason) {
return Steps(
CheckJsResult(kGlicContentsElementId, R"js(
() => {
return new Promise(resolve => {
window.scrollToPromise.catch(e => {
resolve(e.reason);
});
});
}
)js",
::testing::Eq(static_cast<int>(error_reason))), //
ExpectErrorRecorded(error_reason));
}
// Creates a new FakeAnnotationAgentContainer, and updates the remote
// interface registry with a method to bind to it instead of the real service.
auto InsertFakeAnnotationService() {
return Steps(Do([&]() {
service_manager::InterfaceProvider::TestApi test_api(
browser()
->tab_strip_model()
->GetActiveWebContents()
->GetPrimaryMainFrame()
->GetRemoteInterfaces());
fake_service_ = std::make_unique<FakeAnnotationAgentContainer>();
test_api.SetBinderForName(
blink::mojom::AnnotationAgentContainer::Name_,
base::BindRepeating(&FakeAnnotationAgentContainer::Bind,
base::Unretained(fake_service_.get())));
}));
}
auto SetTabContextPermission(bool enable) {
return Steps(Do([this, enable]() {
browser()->profile()->GetPrefs()->SetBoolean(
glic::prefs::kGlicTabContextEnabled, enable);
}));
}
// Checks if the currently focused tab (according to GlicFocusedTabManager) is
// `web_contents_id`, or waits until it is. Set `web_contents_id` to
// std::nullopt to wait until no tab is in focus.
auto WaitUntilGlicFocusedTabIs(
std::optional<ui::ElementIdentifier> web_contents_id) {
return Check([&, web_contents_id]() {
GlicKeyedService* glic_service =
GlicKeyedServiceFactory::GetGlicKeyedService(browser()->GetProfile());
content::WebContents* web_contents = nullptr;
if (web_contents_id) {
auto* tracked_element =
ui::ElementTracker::GetElementTracker()->GetElementInAnyContext(
web_contents_id.value());
web_contents =
InteractiveBrowserTest::AsInstrumentedWebContents(tracked_element)
->web_contents();
}
content::WebContents* focused_web_contents =
glic_service->sharing_manager().GetFocusedTabData().focus()
? glic_service->sharing_manager()
.GetFocusedTabData()
.focus()
->GetContents()
: nullptr;
if (focused_web_contents == web_contents) {
return true;
}
base::RunLoop run_loop(base::RunLoop::Type::kNestableTasksAllowed);
auto subscription =
glic_service->sharing_manager().AddFocusedTabChangedCallback(
base::BindLambdaForTesting([&run_loop, glic_service,
web_contents](const FocusedTabData&) {
content::WebContents* focused_web_contents =
glic_service->sharing_manager().GetFocusedTabData().focus()
? glic_service->sharing_manager()
.GetFocusedTabData()
.focus()
->GetContents()
: nullptr;
if (focused_web_contents == web_contents) {
run_loop.Quit();
return;
}
}));
run_loop.Run();
return true;
});
}
InteractiveTestApi::MultiStep ExpectErrorRecorded(
mojom::ScrollToErrorReason reason) {
return Steps(Do([this, reason]() {
histogram_tester_->ExpectUniqueSample("Glic.ScrollTo.ErrorReason", reason,
1u);
}));
}
auto UserSwitchesConversation() {
const DeepQuery kOnActiveThreadChanged{{"#dropScrollToHighlightBtn"}};
static constexpr char kClickFn[] = "el => el.click()";
return ExecuteJsAt(test::kGlicContentsElementId, kOnActiveThreadChanged,
kClickFn);
}
Selector ExactTextSelector(
std::string text,
std::optional<NodeIdCallback> node_id_cb = std::nullopt) {
return base::BindOnce(
[](std::string text, std::optional<NodeIdCallback> node_id_cb) {
base::Value::Dict dict;
dict.Set("text", text);
if (node_id_cb.has_value()) {
dict.Set("searchRangeStartNodeId",
std::move(node_id_cb.value()).Run());
}
return base::Value::Dict().Set("exactText", std::move(dict));
},
std::move(text), std::move(node_id_cb));
}
Selector TextFragmentSelector(
std::string text_start,
std::string text_end,
std::optional<NodeIdCallback> node_id_cb = std::nullopt) {
return base::BindOnce(
[](std::string text_start, std::string text_end,
std::optional<NodeIdCallback> node_id_cb) {
base::Value::Dict dict;
dict.Set("textStart", text_start);
dict.Set("textEnd", text_end);
if (node_id_cb.has_value()) {
dict.Set("searchRangeStartNodeId",
std::move(node_id_cb.value()).Run());
}
return base::Value::Dict().Set("textFragment", std::move(dict));
},
std::move(text_start), std::move(text_end), std::move(node_id_cb));
}
Selector NodeIdSelector(NodeIdCallback node_id_cb) {
return base::BindOnce(
[](NodeIdCallback node_id_cb) {
return base::Value::Dict().Set(
"node",
base::Value::Dict().Set("nodeId", std::move(node_id_cb).Run()));
},
std::move(node_id_cb));
}
FakeAnnotationAgentContainer* fake_service() { return fake_service_.get(); }
// Returns the main frame's document identifier in `annotated_page_content_`.
std::string GetDocumentIdFromAnnotatedPageContent() {
CHECK(annotated_page_content_);
return annotated_page_content_->main_frame_data()
.document_identifier()
.serialized_token();
}
int GetRootDomNodeIdFromAnnotatedPageContent() {
CHECK(annotated_page_content_);
return annotated_page_content_->root_node()
.content_attributes()
.common_ancestor_dom_node_id();
}
int GetInvalidDomNodeIdFromAnnotatedPageContent() {
CHECK(annotated_page_content_);
return annotated_page_content_->root_node()
.content_attributes()
.common_ancestor_dom_node_id() +
9999;
}
base::HistogramTester* histogram_tester() const {
return histogram_tester_.get();
}
private:
base::test::ScopedFeatureList scoped_feature_list_;
std::unique_ptr<FakeAnnotationAgentContainer> fake_service_;
base::CallbackListSubscription focused_tab_change_subscription_;
std::unique_ptr<optimization_guide::proto::AnnotatedPageContent>
annotated_page_content_;
std::unique_ptr<base::HistogramTester> histogram_tester_;
};
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerUiTest, ScrollToExactText) {
RunTestSequence(InstrumentTab(kActiveTabId),
NavigateWebContents(
kActiveTabId, embedded_test_server()->GetURL(
"/scrollable_page_with_content.html")),
OpenGlicWindow(GlicWindowMode::kDetached), //
SetTabContextPermission(true), //
ScrollTo(ExactTextSelector("Some text")),
WaitForJsResult(kActiveTabId, "() => did_scroll"));
}
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerUiTest, ScrollToTextFragment) {
RunTestSequence(InstrumentTab(kActiveTabId),
NavigateWebContents(
kActiveTabId, embedded_test_server()->GetURL(
"/scrollable_page_with_content.html")),
OpenGlicWindow(GlicWindowMode::kDetached), //
SetTabContextPermission(true),
ScrollTo(TextFragmentSelector("Some", "text")),
WaitForJsResult(kActiveTabId, "() => did_scroll"));
}
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerUiTest, NoMatchFound) {
RunTestSequence(
InstrumentTab(kActiveTabId),
NavigateWebContents(
kActiveTabId,
embedded_test_server()->GetURL("/scrollable_page_with_content.html")),
OpenGlicWindow(GlicWindowMode::kDetached), //
SetTabContextPermission(true),
ScrollToExpectingError(ExactTextSelector("Text does not exist"),
mojom::ScrollToErrorReason::kNoMatchFound));
}
// Runs a navigation while a scrollTo() request is being processed.
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerUiTest,
NavigationAfterScrollToRequest) {
RunTestSequence(
InstrumentTab(kActiveTabId), //
NavigateWebContents(
kActiveTabId,
embedded_test_server()->GetURL("/scrollable_page_with_content.html")),
OpenGlicWindow(GlicWindowMode::kDetached), //
SetTabContextPermission(true), //
InsertFakeAnnotationService(),
ScrollToAsync(ExactTextSelector("does not matter")),
WaitForEvent(kBrowserViewElementId, kScrollToRequestReceived),
NavigateWebContents(kActiveTabId,
embedded_test_server()->GetURL("/title.html")),
WaitForScrollToError(
mojom::ScrollToErrorReason::kFocusedTabChangedOrNavigated));
}
// Opens a new tab while a scrollTo() request is being processed (which results
// in the previous tab losing focus).
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerUiTest,
NewTabOpenedAfterScrollToRequest) {
RunTestSequence(
InstrumentTab(kActiveTabId), //
NavigateWebContents(
kActiveTabId,
embedded_test_server()->GetURL("/scrollable_page_with_content.html")),
OpenGlicWindow(GlicWindowMode::kDetached), //
SetTabContextPermission(true),
InsertFakeAnnotationService(), //
ScrollToAsync(ExactTextSelector("does not matter")),
WaitForEvent(kBrowserViewElementId, kScrollToRequestReceived),
PressButton(kNewTabButtonElementId),
WaitForScrollToError(
mojom::ScrollToErrorReason::kFocusedTabChangedOrNavigated));
}
// This tests a state where GlicFocusedTabManager has no focused tab. It
// relies on chrome://settings not being considered as a valid URL by the class.
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerUiTest, NoFocusedTab) {
RunTestSequence(
InstrumentTab(kActiveTabId),
NavigateWebContents(kActiveTabId, GURL("chrome://settings")),
OpenGlicWindow(GlicWindowMode::kDetached), //
SetTabContextPermission(true),
WaitUntilGlicFocusedTabIs(std::nullopt), //
InsertFakeAnnotationService(), //
ScrollToExpectingError(ExactTextSelector("does not matter"),
mojom::ScrollToErrorReason::kNoFocusedTab));
}
// Sends a second scrollTo() request before the first request finishes
// processing.
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerUiTest, SecondScrollToRequest) {
RunTestSequence(
InstrumentTab(kActiveTabId),
NavigateWebContents(
kActiveTabId,
embedded_test_server()->GetURL("/scrollable_page_with_content.html")),
OpenGlicWindow(GlicWindowMode::kDetached), //
SetTabContextPermission(true), //
InsertFakeAnnotationService(),
ScrollToAsync(ExactTextSelector("Some text")),
WaitForEvent(kBrowserViewElementId, kScrollToRequestReceived),
// Stores the first window.scrollToPromise in a new variable (because we
// set it again below when we call ScrollToAsync again).
ExecuteJs(kGlicContentsElementId,
"() => { window.firstPromise = window.scrollToPromise; }"),
ScrollToAsync(ExactTextSelector("Some text again")),
CheckJsResult(
kGlicContentsElementId, R"js(
() => {
return new Promise(resolve => {
window.firstPromise.catch(e => { resolve(e.reason); });
});
}
)js",
static_cast<int>(mojom::ScrollToErrorReason::kNewerScrollToCall)),
ExpectErrorRecorded(mojom::ScrollToErrorReason::kNewerScrollToCall));
}
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerUiTest,
HighlightKeptAliveAfterScrollToRequestIsComplete) {
RunTestSequence(
InstrumentTab(kActiveTabId), //
NavigateWebContents(
kActiveTabId,
embedded_test_server()->GetURL("/scrollable_page_with_content.html")),
OpenGlicWindow(GlicWindowMode::kDetached), //
SetTabContextPermission(true),
InsertFakeAnnotationService(), //
ScrollToAsync(ExactTextSelector("does not matter")),
WaitForEvent(kBrowserViewElementId, kScrollToRequestReceived), //
Do([&]() {
fake_service()->NotifyAttachment(
gfx::Rect(20, 20), blink::mojom::AttachmentResult::kSuccess);
}),
WaitForEvent(kBrowserViewElementId, kScrollStarted),
Check([&]() { return fake_service()->HighlightIsActive(); },
"Agent connection should still be alive."));
}
// Switches focus from the Glic window to the active tab after the scroll
// request completes. The highlight should remain active.
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerUiTest,
HighlightKeptAfterFocusSwitchesFromGlicWindow) {
RunTestSequence(
SetOnIncompatibleAction(OnIncompatibleAction::kSkipTest,
kActivateSurfaceIncompatibilityNotice),
InstrumentTab(kActiveTabId), //
NavigateWebContents(
kActiveTabId,
embedded_test_server()->GetURL("/scrollable_page_with_content.html")),
OpenGlicWindow(GlicWindowMode::kDetached), //
SetTabContextPermission(true),
FocusWebContents(kGlicContentsElementId), //
InsertFakeAnnotationService(), //
ScrollToAsync(ExactTextSelector("does not matter")),
WaitForEvent(kBrowserViewElementId, kScrollToRequestReceived), //
Do([&]() {
fake_service()->NotifyAttachment(
gfx::Rect(20, 20), blink::mojom::AttachmentResult::kSuccess);
}),
WaitForEvent(kBrowserViewElementId, kScrollStarted),
FocusWebContents(kActiveTabId), //
WaitUntilGlicFocusedTabIs(kActiveTabId),
Check([&]() { return fake_service()->HighlightIsActive(); },
"Agent connection should still be alive."));
}
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerUiTest,
HighlightKeptAfterFocusSwitchesToNewTab) {
DEFINE_LOCAL_ELEMENT_IDENTIFIER_VALUE(kNewTabId);
RunTestSequence(
InstrumentTab(kActiveTabId), //
NavigateWebContents(kActiveTabId,
embedded_test_server()->GetURL("/title1.html")),
OpenGlicWindow(GlicWindowMode::kDetached), //
SetTabContextPermission(true),
InsertFakeAnnotationService(), //
ScrollToAsync(ExactTextSelector("does not matter")),
WaitForEvent(kBrowserViewElementId, kScrollToRequestReceived), //
Do([&]() {
fake_service()->NotifyAttachment(
gfx::Rect(20, 20), blink::mojom::AttachmentResult::kSuccess);
}),
WaitForEvent(kBrowserViewElementId, kScrollStarted),
AddInstrumentedTab(kNewTabId, embedded_test_server()->GetURL(
"/scrollable_page_with_content.html")),
WaitUntilGlicFocusedTabIs(kNewTabId),
Check([&]() { return fake_service()->HighlightIsActive(); }),
SelectTab(kTabStripElementId, 0), //
WaitUntilGlicFocusedTabIs(kActiveTabId),
Check([&]() { return fake_service()->HighlightIsActive(); }));
}
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerUiTest,
HighlightDroppedAfterScrollToInNewTab) {
DEFINE_LOCAL_ELEMENT_IDENTIFIER_VALUE(kNewTabId);
RunTestSequence(
InstrumentTab(kActiveTabId), //
NavigateWebContents(kActiveTabId,
embedded_test_server()->GetURL("/title1.html")),
OpenGlicWindow(GlicWindowMode::kDetached), //
SetTabContextPermission(true),
InsertFakeAnnotationService(), //
ScrollToAsync(ExactTextSelector("does not matter")),
WaitForEvent(kBrowserViewElementId, kScrollToRequestReceived), //
Do([&]() {
fake_service()->NotifyAttachment(
gfx::Rect(20, 20), blink::mojom::AttachmentResult::kSuccess);
}),
WaitForEvent(kBrowserViewElementId, kScrollStarted),
AddInstrumentedTab(kNewTabId, embedded_test_server()->GetURL(
"/scrollable_page_with_content.html")),
WaitUntilGlicFocusedTabIs(kNewTabId),
Check([&]() { return fake_service()->HighlightIsActive(); }),
ScrollTo(ExactTextSelector("Some text")),
Check([&]() { return !fake_service()->HighlightIsActive(); }));
}
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerUiTest,
TwoSuccessfulScrollToCalls) {
RunTestSequence(InstrumentTab(kActiveTabId), //
NavigateWebContents(
kActiveTabId, embedded_test_server()->GetURL(
"/scrollable_page_with_content.html")),
OpenGlicWindow(GlicWindowMode::kDetached), //
SetTabContextPermission(true), //
ScrollTo(ExactTextSelector("Some text")),
WaitForJsResult(kActiveTabId, "() => did_scroll"),
ExecuteJs(kActiveTabId, "() => { did_scroll = false; }"),
ScrollTo(ExactTextSelector("Go Down")),
WaitForJsResult(kActiveTabId, "() => did_scroll"));
}
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerUiTest,
HighlightDroppedAfterPageIsNavigatedFrom) {
RunTestSequence(
InstrumentTab(kActiveTabId), //
NavigateWebContents(
kActiveTabId,
embedded_test_server()->GetURL("/scrollable_page_with_content.html")),
OpenGlicWindow(GlicWindowMode::kDetached), //
SetTabContextPermission(true),
InsertFakeAnnotationService(), //
ScrollToAsync(ExactTextSelector("does not matter")),
WaitForEvent(kBrowserViewElementId, kScrollToRequestReceived), //
Do([&]() {
fake_service()->NotifyAttachment(
gfx::Rect(20, 20), blink::mojom::AttachmentResult::kSuccess);
}),
WaitForEvent(kBrowserViewElementId, kScrollStarted),
Check([&]() { return fake_service()->HighlightIsActive(); },
"Agent connection should still be alive."),
NavigateWebContents(kActiveTabId,
embedded_test_server()->GetURL("/title2.html")),
Check([&]() { return !fake_service()->HighlightIsActive(); }));
}
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerUiTest, WithDocumentId) {
RunTestSequence(InstrumentTab(kActiveTabId),
NavigateWebContents(
kActiveTabId, embedded_test_server()->GetURL(
"/scrollable_page_with_content.html")),
OpenGlicWindow(GlicWindowMode::kDetached), //
SetTabContextPermission(true),
GetPageContextFromFocusedTab(), //
ScrollToWithDocumentId(ExactTextSelector("Some text")),
WaitForJsResult(kActiveTabId, "() => did_scroll"));
}
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerUiTest, WithUnknownDocumentId) {
DocumentIdGetter unknown_document_id = base::BindLambdaForTesting(
[]() { return base::UnguessableToken().Create().ToString(); });
RunTestSequence(InstrumentTab(kActiveTabId),
NavigateWebContents(
kActiveTabId, embedded_test_server()->GetURL(
"/scrollable_page_with_content.html")),
OpenGlicWindow(GlicWindowMode::kDetached), //
SetTabContextPermission(true),
GetPageContextFromFocusedTab(), //
ScrollToWithDocumentIdExpectingError(
ExactTextSelector("Some text"),
mojom::ScrollToErrorReason::kNoMatchingDocument,
std::move(unknown_document_id)));
}
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerUiTest, WithIframeDocumentId) {
DocumentIdGetter iframe_document_id = base::BindLambdaForTesting([&]() {
content::RenderFrameHost* iframe_rfh = content::ChildFrameAt(
browser()->tab_strip_model()->GetActiveWebContents(), /*index=*/0u);
return optimization_guide::DocumentIdentifierUserData::
GetForCurrentDocument(iframe_rfh)
->serialized_token();
});
RunTestSequence(InstrumentTab(kActiveTabId),
NavigateWebContents(kActiveTabId,
embedded_test_server()->GetURL(
"/scrollable_page_with_iframe.html")),
OpenGlicWindow(GlicWindowMode::kDetached), //
SetTabContextPermission(true),
GetPageContextFromFocusedTab(), //
ScrollToWithDocumentIdExpectingError(
ExactTextSelector("Some text"),
mojom::ScrollToErrorReason::kNoMatchingDocument,
std::move(iframe_document_id)));
}
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerUiTest,
WithPreviousDocumentIdAfterNavigation) {
RunTestSequence(
InstrumentTab(kActiveTabId),
NavigateWebContents(
kActiveTabId,
embedded_test_server()->GetURL("/scrollable_page_with_content.html")),
OpenGlicWindow(GlicWindowMode::kDetached), //
SetTabContextPermission(true),
GetPageContextFromFocusedTab(), //
NavigateWebContents(kActiveTabId,
embedded_test_server()->GetURL("/title1.html")),
ScrollToWithDocumentIdExpectingError(
ExactTextSelector("Some text"),
mojom::ScrollToErrorReason::kNoMatchingDocument));
}
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerUiTest, TextFocusedAfterScroll) {
RunTestSequence(
InstrumentTab(kActiveTabId),
NavigateWebContents(
kActiveTabId,
embedded_test_server()->GetURL("/scrollable_page_with_content.html")),
OpenGlicWindow(GlicWindowMode::kDetached), //
SetTabContextPermission(true),
ExecuteJs(kActiveTabId,
"() => { document.getElementById('text').tabIndex = 0; }"),
ScrollTo(ExactTextSelector("Some text")),
WaitForJsResult(kActiveTabId, "() => did_scroll"),
CheckJsResult(kActiveTabId, "() => { return document.activeElement.id; }",
::testing::Eq("text")));
}
// Search the exact text from the range with the start node id which is
// extracted from `annotated_page_content_`.
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerUiTest,
ScrollToExactTextWithStartDomNodeId) {
NodeIdCallback range_start_id_cb = base::BindOnce(
&GlicAnnotationManagerUiTest::GetRootDomNodeIdFromAnnotatedPageContent,
base::Unretained(this));
RunTestSequence(InstrumentTab(kActiveTabId),
NavigateWebContents(
kActiveTabId, embedded_test_server()->GetURL(
"/scrollable_page_with_content.html")),
OpenGlicWindow(GlicWindowMode::kDetached), //
SetTabContextPermission(true),
GetPageContextFromFocusedTab(), //
ScrollToWithDocumentId(ExactTextSelector(
"Some text", std::move(range_start_id_cb))),
WaitForJsResult(kActiveTabId, "() => did_scroll"));
}
// Search the text fragment from the range with the start node id which is
// extracted from `annotated_page_content_`.
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerUiTest,
ScrollToTextFragmentWithStartDomNodeId) {
NodeIdCallback range_start_id_cb = base::BindOnce(
&GlicAnnotationManagerUiTest::GetRootDomNodeIdFromAnnotatedPageContent,
base::Unretained(this));
RunTestSequence(InstrumentTab(kActiveTabId),
NavigateWebContents(
kActiveTabId, embedded_test_server()->GetURL(
"/scrollable_page_with_content.html")),
OpenGlicWindow(GlicWindowMode::kDetached), //
SetTabContextPermission(true),
GetPageContextFromFocusedTab(), //
ScrollToWithDocumentId(TextFragmentSelector(
"Some", "text", std::move(range_start_id_cb))),
WaitForJsResult(kActiveTabId, "() => did_scroll"));
}
// If the start node id is not from `annotated_page_content_`, throw an invalid
// range error.
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerUiTest,
NoMatchFoundWithStartDomNodeId) {
NodeIdCallback invalid_id_cb = base::BindOnce(
&GlicAnnotationManagerUiTest::GetInvalidDomNodeIdFromAnnotatedPageContent,
base::Unretained(this));
RunTestSequence(InstrumentTab(kActiveTabId),
NavigateWebContents(
kActiveTabId, embedded_test_server()->GetURL(
"/scrollable_page_with_content.html")),
OpenGlicWindow(GlicWindowMode::kDetached), //
SetTabContextPermission(true),
GetPageContextFromFocusedTab(), //
ScrollToWithDocumentIdExpectingError(
ExactTextSelector("Some text", std::move(invalid_id_cb)),
mojom::ScrollToErrorReason::kSearchRangeInvalid));
}
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerUiTest, NodeIdSelector) {
NodeIdCallback text_node = base::BindLambdaForTesting([&]() {
return content::GetDOMNodeId(*browser()
->tab_strip_model()
->GetActiveWebContents()
->GetPrimaryMainFrame(),
"p#text")
.value();
});
RunTestSequence(InstrumentTab(kActiveTabId),
NavigateWebContents(
kActiveTabId, embedded_test_server()->GetURL(
"/scrollable_page_with_content.html")),
OpenGlicWindow(GlicWindowMode::kDetached), //
SetTabContextPermission(true),
GetPageContextFromFocusedTab(), //
ScrollToWithDocumentId(NodeIdSelector(std::move(text_node))));
}
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerUiTest,
NodeIdSelectorWithInvalidNode) {
RunTestSequence(InstrumentTab(kActiveTabId),
NavigateWebContents(
kActiveTabId, embedded_test_server()->GetURL(
"/scrollable_page_with_content.html")),
OpenGlicWindow(GlicWindowMode::kDetached), //
SetTabContextPermission(true),
GetPageContextFromFocusedTab(), //
ScrollToWithDocumentIdExpectingError(
NodeIdSelector(base::BindOnce([]() { return -1; })),
mojom::ScrollToErrorReason::kNoMatchFound));
}
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerUiTest,
HighlightIsDroppedWhenPanelIsClosed) {
RunTestSequence(
InstrumentTab(kActiveTabId), //
NavigateWebContents(
kActiveTabId,
embedded_test_server()->GetURL("/scrollable_page_with_content.html")),
OpenGlicWindow(GlicWindowMode::kDetached), //
SetTabContextPermission(true),
InsertFakeAnnotationService(), //
ScrollToAsync(ExactTextSelector("does not matter")),
WaitForEvent(kBrowserViewElementId, kScrollToRequestReceived), //
Do([&]() {
fake_service()->NotifyAttachment(
gfx::Rect(20, 20), blink::mojom::AttachmentResult::kSuccess);
}),
CloseGlicWindow(),
Check([&]() { return !fake_service()->HighlightIsActive(); },
"Annotations should be dropped"));
}
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerUiTest,
ScrollToFailsWhenPanelIsClosedBeforeAttachment) {
RunTestSequence(
InstrumentTab(kActiveTabId), //
NavigateWebContents(
kActiveTabId,
embedded_test_server()->GetURL("/scrollable_page_with_content.html")),
OpenGlicWindow(GlicWindowMode::kDetached), //
SetTabContextPermission(true),
InsertFakeAnnotationService(), //
ScrollToAsync(ExactTextSelector("does not matter")),
WaitForEvent(kBrowserViewElementId, kScrollToRequestReceived), //
CloseGlicWindow(), //
// We cannot use `WaitForScrollError()` here as `kGlicContentsElementId`
// is already hidden and `CheckJsResult` doesn't work when the provided
// contents isn't visible.
CheckResult(
[&]() {
return content::EvalJs(glic_service()
->host()
.webui_contents()
->GetInnerWebContents()[0],
R"js(
new Promise(resolve => {
window.scrollToPromise.catch(e => {
resolve(e.reason);
});
});
)js")
.ExtractInt();
},
static_cast<int>(
mojom::ScrollToErrorReason::kFocusedTabChangedOrNavigated)),
ExpectErrorRecorded(
mojom::ScrollToErrorReason::kFocusedTabChangedOrNavigated));
}
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerUiTest,
HighlightIsDroppedWhenWebClientClosed) {
RunTestSequence(
InstrumentTab(kActiveTabId), //
NavigateWebContents(
kActiveTabId,
embedded_test_server()->GetURL("/scrollable_page_with_content.html")),
OpenGlicWindow(GlicWindowMode::kDetached), //
SetTabContextPermission(true),
InsertFakeAnnotationService(), //
ScrollToAsync(ExactTextSelector("does not matter")),
WaitForEvent(kBrowserViewElementId, kScrollToRequestReceived), //
Do([&]() {
fake_service()->NotifyAttachment(
gfx::Rect(20, 20), blink::mojom::AttachmentResult::kSuccess);
}),
Do([&]() { glic_service()->CloseUI(); }), //
WaitForHide(kGlicViewElementId), //
Check([&]() { return !fake_service()->HighlightIsActive(); },
"Annotations should be dropped"));
}
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerUiTest,
TabContextPermissionDisabledBeforeRequest) {
RunTestSequence(
InstrumentTab(kActiveTabId),
NavigateWebContents(
kActiveTabId,
embedded_test_server()->GetURL("/scrollable_page_with_content.html")),
OpenGlicWindow(GlicWindowMode::kDetached),
ScrollToExpectingError(
ExactTextSelector("Text does not exist"),
mojom::ScrollToErrorReason::kTabContextPermissionDisabled));
}
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerUiTest,
TabContextPermissionDisabledDuringScrollToRequest) {
RunTestSequence(
InstrumentTab(kActiveTabId), //
NavigateWebContents(
kActiveTabId,
embedded_test_server()->GetURL("/scrollable_page_with_content.html")),
OpenGlicWindow(GlicWindowMode::kDetached), //
SetTabContextPermission(true),
InsertFakeAnnotationService(), //
ScrollToAsync(ExactTextSelector("does not matter")),
WaitForEvent(kBrowserViewElementId, kScrollToRequestReceived), //
SetTabContextPermission(false),
WaitForScrollToError(
mojom::ScrollToErrorReason::kTabContextPermissionDisabled));
}
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerUiTest,
HighlightIsDroppedWhenTabContextPermissionIsDisabled) {
RunTestSequence(
InstrumentTab(kActiveTabId), //
NavigateWebContents(
kActiveTabId,
embedded_test_server()->GetURL("/scrollable_page_with_content.html")),
OpenGlicWindow(GlicWindowMode::kDetached), //
SetTabContextPermission(true),
InsertFakeAnnotationService(), //
ScrollToAsync(ExactTextSelector("does not matter")),
WaitForEvent(kBrowserViewElementId, kScrollToRequestReceived), //
Do([&]() {
fake_service()->NotifyAttachment(
gfx::Rect(20, 20), blink::mojom::AttachmentResult::kSuccess);
}),
SetTabContextPermission(false),
WaitForEvent(kBrowserViewElementId, kAnnotationAgentDisconnectedByRemote),
Check([&]() { return !fake_service()->HighlightIsActive(); },
"Annotations should be dropped"));
}
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerUiTest,
HighlightIsDroppedWhenActiveConversationChanged) {
RunTestSequence(
InstrumentTab(kActiveTabId), //
NavigateWebContents(
kActiveTabId,
embedded_test_server()->GetURL("/scrollable_page_with_content.html")),
OpenGlicWindow(GlicWindowMode::kDetached), //
SetTabContextPermission(true),
InsertFakeAnnotationService(), //
ScrollToAsync(ExactTextSelector("does not matter")),
WaitForEvent(kBrowserViewElementId, kScrollToRequestReceived), //
Do([&]() {
fake_service()->NotifyAttachment(
gfx::Rect(20, 20), blink::mojom::AttachmentResult::kSuccess);
}),
UserSwitchesConversation(), //
WaitForEvent(kBrowserViewElementId, kAnnotationAgentDisconnectedByRemote),
Check([&]() { return !fake_service()->HighlightIsActive(); },
"Annotations should be dropped"));
}
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerUiTest,
ActiveConversationChangedDuringScrollToRequest) {
RunTestSequence(
InstrumentTab(kActiveTabId), //
NavigateWebContents(
kActiveTabId,
embedded_test_server()->GetURL("/scrollable_page_with_content.html")),
OpenGlicWindow(GlicWindowMode::kDetached), //
SetTabContextPermission(true),
InsertFakeAnnotationService(), //
ScrollToAsync(ExactTextSelector("does not matter")),
WaitForEvent(kBrowserViewElementId, kScrollToRequestReceived), //
UserSwitchesConversation(), //
WaitForScrollToError(mojom::ScrollToErrorReason::kDroppedByWebClient) //
);
}
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerUiTest, RecordsSessionCount) {
RunTestSequence(
InstrumentTab(kActiveTabId), //
NavigateWebContents(
kActiveTabId,
embedded_test_server()->GetURL("/scrollable_page_with_content.html")),
OpenGlicWindow(GlicWindowMode::kDetached), //
SetTabContextPermission(true),
ScrollToExpectingError(ExactTextSelector("missing text"),
mojom::ScrollToErrorReason::kNoMatchFound),
ScrollTo(ExactTextSelector("Some text")), //
Do([&]() {
histogram_tester()->ExpectTotalCount("Glic.ScrollTo.SessionCount",
/*expected_count=*/0);
}),
CloseGlicWindow(), //
Do([&]() {
histogram_tester()->ExpectUniqueSample("Glic.ScrollTo.SessionCount",
/*sample=*/2,
/*expected_bucket_count=*/1);
}));
}
// Tests that "Glic.ScrollTo.UserPromptToScrollTime" is:
// - not recorded if scrolling fails
// - recorded after scrolling starts
//
// This test manually calls `GlicMetrics` methods like `OnUserInputSubmitted`,
// `OnResponseStarted` and `OnResponseStopped` instead of doing it through
// the test client for convenience and better control of timing. The order of
// the method calls reflect the order of expected calls in practice.
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerUiTest,
RecordsUserPromptToScrollTime) {
GlicMetrics* glic_metrics;
RunTestSequence(
InstrumentTab(kActiveTabId), //
NavigateWebContents(
kActiveTabId,
embedded_test_server()->GetURL("/scrollable_page_with_content.html")),
OpenGlicWindow(GlicWindowMode::kDetached), //
SetTabContextPermission(true), //
InsertFakeAnnotationService(), //
Do([&]() {
glic_metrics = GlicKeyedServiceFactory::GetGlicKeyedService(
browser()->GetProfile())
->metrics();
glic_metrics->OnUserInputSubmitted(mojom::WebClientMode::kAudio);
}),
ScrollToAsync(ExactTextSelector("does not matter")), //
WaitForEvent(kBrowserViewElementId, kScrollToRequestReceived), //
Do([&]() {
glic_metrics->OnResponseStarted();
glic_metrics->OnResponseStopped();
}),
Do([&]() {
fake_service()->NotifyAttachment(
gfx::Rect(), blink::mojom::AttachmentResult::kSelectorNotMatched);
}),
WaitForScrollToError(mojom::ScrollToErrorReason::kNoMatchFound),
Do([&]() {
// Metric shouldn't be recorded if scrolling wasn't triggered.
histogram_tester()->ExpectTotalCount(
"Glic.ScrollTo.UserPromptToScrollTime.Audio",
/*expected_count=*/0);
}),
Do([&]() {
glic_metrics->OnUserInputSubmitted(mojom::WebClientMode::kAudio);
}),
ScrollToAsync(ExactTextSelector("does not matter")), //
WaitForEvent(kBrowserViewElementId, kScrollToRequestReceived), //
Do([&]() {
glic_metrics->OnResponseStarted();
glic_metrics->OnResponseStopped();
}),
Do([&]() {
fake_service()->NotifyAttachment(
gfx::Rect(20, 20), blink::mojom::AttachmentResult::kSuccess);
}),
WaitForEvent(kBrowserViewElementId, kScrollStarted), //
Do([&]() {
histogram_tester()->ExpectTotalCount(
"Glic.ScrollTo.UserPromptToScrollTime.Audio",
/*expected_count=*/1);
}));
}
class GlicAnnotationManagerWithScrollToDisabledUiTest
: public InteractiveGlicTest {
public:
GlicAnnotationManagerWithScrollToDisabledUiTest() {
scoped_feature_list_.InitAndDisableFeature(features::kGlicScrollTo);
}
~GlicAnnotationManagerWithScrollToDisabledUiTest() override = default;
private:
base::test::ScopedFeatureList scoped_feature_list_;
};
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerWithScrollToDisabledUiTest,
ScrollToNotAvailable) {
RunTestSequence(OpenGlicWindow(GlicWindowMode::kDetached),
InAnyContext(CheckJsResult(
kGlicContentsElementId,
"() => { return !(client.browser.scrollTo); }")));
}
class GlicAnnotationManagerWithEnforceDocumentIdUiTest
: public GlicAnnotationManagerUiTest {
public:
GlicAnnotationManagerWithEnforceDocumentIdUiTest() {
scoped_feature_list_.InitAndEnableFeatureWithParameters(
features::kGlicScrollTo,
{{"glic-scroll-to-enforce-document-id", "true"}});
}
~GlicAnnotationManagerWithEnforceDocumentIdUiTest() override = default;
private:
base::test::ScopedFeatureList scoped_feature_list_;
};
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerWithEnforceDocumentIdUiTest,
FailsWithNoDocumentId) {
RunTestSequence(
InstrumentTab(kActiveTabId),
NavigateWebContents(
kActiveTabId,
embedded_test_server()->GetURL("/scrollable_page_with_content.html")),
OpenGlicWindow(GlicWindowMode::kDetached), //
SetTabContextPermission(true), //
ScrollToExpectingError(ExactTextSelector("Some text"),
mojom::ScrollToErrorReason::kNotSupported));
}
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerWithEnforceDocumentIdUiTest,
SucceedsWithDocumentId) {
RunTestSequence(InstrumentTab(kActiveTabId),
NavigateWebContents(
kActiveTabId, embedded_test_server()->GetURL(
"/scrollable_page_with_content.html")),
OpenGlicWindow(GlicWindowMode::kDetached), //
SetTabContextPermission(true), //
GetPageContextFromFocusedTab(),
ScrollToWithDocumentId(ExactTextSelector("Some text")));
}
} // namespace glic::test
|