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 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543
|
// 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/base/ui_test_utils.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 "pdf/buildflags.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"
#if BUILDFLAG(ENABLE_PDF)
#include "chrome/browser/pdf/pdf_extension_test_util.h"
#include "components/pdf/browser/pdf_document_helper.h"
#include "pdf/pdf_features.h"
#endif // BUILDFLAG(ENABLE_PDF)
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,
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();
}
}));
}
using Selector = base::OnceCallback<base::Value::Dict()>;
using DocumentIdGetter = base::OnceCallback<std::string()>;
using NodeIdCallback = base::OnceCallback<int()>;
using URLGetter = base::OnceCallback<GURL()>;
// Calls scrollTo() and waits until the promise resolves and succeeds.
auto ScrollTo(Selector selector) {
return ScrollToImpl(std::move(selector), /*document_id=*/std::nullopt,
/*url=*/std::nullopt);
}
// Similar to ScrollTo(), but also includes documentId in the params.
// If `document_id` is not set, it uses a value retrieved from
// `annotated_page_content_`.
auto ScrollToWithDocumentId(
Selector selector,
std::optional<DocumentIdGetter> document_id = std::nullopt) {
return ScrollToImpl(std::move(selector),
DocumentIdOrDefault(std::move(document_id)),
/*url=*/std::nullopt);
}
// Similar to ScrollTo(), but also includes url in the params. If `url` is
// not set, it uses the active tab's primary main frame's URL.
auto ScrollToWithURL(Selector selector,
std::optional<URLGetter> url = std::nullopt) {
return ScrollToImpl(std::move(selector), /*document_id=*/std::nullopt,
URLOrDefault(std::move(url)));
}
// Similar to ScrollTo(), but also includes both documentId and url. Uses
// defaults for `document_id`/`url` if not set, see above methods for what the
// default values used are.
auto ScrollToWithDocumentIdAndURL(
Selector selector,
std::optional<DocumentIdGetter> document_id = std::nullopt,
std::optional<URLGetter> url = std::nullopt) {
return ScrollToImpl(std::move(selector),
DocumentIdOrDefault(std::move(document_id)),
URLOrDefault(std::move(url)));
}
// 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) {
return ScrollToExpectingErrorImpl(std::move(selector),
/*document_id=*/std::nullopt,
/*url=*/std::nullopt, error_reason);
}
// Similar to ScrollToExpectingError(), but also includes documentId 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) {
return ScrollToExpectingErrorImpl(
std::move(selector), DocumentIdOrDefault(std::move(document_id)),
/*url=*/std::nullopt, error_reason);
}
// Similar to ScrollToExpectingError(), but also includes url in the params.
// If `url` is not set, it uses the active tab's primary main frame's URL.
auto ScrollToWithURLExpectingError(
Selector selector,
mojom::ScrollToErrorReason error_reason,
std::optional<URLGetter> url = std::nullopt) {
return ScrollToExpectingErrorImpl(
std::move(selector), /*document_id=*/std::nullopt,
URLOrDefault(std::move(url)), error_reason);
}
// Similar to ScrollToExpectingError(), but also includes both documentId and
// url. Uses defaults for `document_id`/`url` if not set, see above methods
// for what the default values used are.
auto ScrollToWithDocumentIdAndURLExpectingError(
Selector selector,
mojom::ScrollToErrorReason error_reason,
std::optional<DocumentIdGetter> document_id = std::nullopt,
std::optional<URLGetter> url = std::nullopt) {
return ScrollToExpectingErrorImpl(
std::move(selector), DocumentIdOrDefault(std::move(document_id)),
URLOrDefault(std::move(url)), error_reason);
}
// Calls scrollTo() and returns immediately.
auto ScrollToAsync(Selector selector) {
return ScrollToAsyncImpl(std::move(selector), /*document_id=*/std::nullopt,
/*url=*/std::nullopt);
}
// Similar to ScrollToAsync(), but also includes documentId in the params. If
// `document_id` is not set, it uses a value retrieved from
// `annotated_page_content_`.
auto ScrollToAsyncWithDocumentId(
Selector selector,
std::optional<DocumentIdGetter> document_id = std::nullopt) {
return ScrollToAsyncImpl(std::move(selector),
DocumentIdOrDefault(std::move(document_id)),
/*url=*/std::nullopt);
}
// Similar to ScrollToAsync(), but also includes url in the params.
// If `url` is not set, it uses the active tab's primary main frame's URL.
auto ScrollToAsyncWithURL(Selector selector,
std::optional<URLGetter> url = std::nullopt) {
return ScrollToAsyncImpl(std::move(selector), /*document_id=*/std::nullopt,
URLOrDefault(std::move(url)));
}
// 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::Value::Dict CreateScrollToParams(
Selector selector,
std::optional<DocumentIdGetter> document_id,
std::optional<URLGetter> url) {
base::Value::Dict scroll_to_params;
scroll_to_params.Set("selector", std::move(selector).Run());
if (document_id) {
scroll_to_params.Set("documentId", std::move(*document_id).Run());
}
if (url) {
scroll_to_params.Set("url", content::JsLiteralHelper<GURL>::Convert(
std::move(*url).Run()));
}
return scroll_to_params;
}
DocumentIdGetter DocumentIdOrDefault(
std::optional<DocumentIdGetter> document_id) {
return base::BindLambdaForTesting(
[&, document_id_getter = std::move(document_id)]() mutable {
if (!document_id_getter.has_value()) {
return GetDocumentIdFromAnnotatedPageContent();
}
return std::move(*document_id_getter).Run();
});
}
URLGetter URLOrDefault(std::optional<URLGetter> url) {
return base::BindLambdaForTesting(
[&, url_getter = std::move(url)]() mutable {
if (!url_getter) {
return browser()
->tab_strip_model()
->GetActiveWebContents()
->GetPrimaryMainFrame()
->GetLastCommittedURL();
}
return std::move(*url_getter).Run();
});
}
InteractiveGlicTest::MultiStep ScrollToImpl(
Selector selector,
std::optional<DocumentIdGetter> document_id,
std::optional<URLGetter> url) {
return Steps(
Do([&]() {
histogram_tester_ = std::make_unique<base::HistogramTester>();
}),
InAnyContext(WithElement(
kGlicContentsElementId,
[&, selector = std::move(selector),
document_id = std::move(document_id),
url = std::move(url)](ui::TrackedElement* el) mutable {
content::WebContents* glic_contents =
AsInstrumentedWebContents(el)->web_contents();
base::Value::Dict scroll_to_params = CreateScrollToParams(
std::move(selector), std::move(document_id), std::move(url));
std::string script = content::JsReplace(
R"js(
(() => {
return client.browser.scrollTo($1);
})();
)js",
std::move(scroll_to_params));
ASSERT_TRUE(content::ExecJs(glic_contents, std::move(script)));
})),
Do([&]() {
histogram_tester_->ExpectTotalCount(
"Glic.ScrollTo.MatchDuration.Success", 1);
}));
}
InteractiveGlicTest::MultiStep ScrollToExpectingErrorImpl(
Selector selector,
std::optional<DocumentIdGetter> document_id,
std::optional<URLGetter> url,
mojom::ScrollToErrorReason error_reason) {
return Steps(
Do([&]() {
histogram_tester_ = std::make_unique<base::HistogramTester>();
}),
InAnyContext(WithElement(
kGlicContentsElementId,
[&, selector = std::move(selector),
document_id = std::move(document_id), url = std::move(url),
error_reason](ui::TrackedElement* el) mutable {
content::WebContents* glic_contents =
AsInstrumentedWebContents(el)->web_contents();
base::Value::Dict scroll_to_params = CreateScrollToParams(
std::move(selector), std::move(document_id), std::move(url));
std::string script = content::JsReplace(
R"js(
(async () => {
try {
await client.browser.scrollTo($1);
} catch (err) {
return err.reason;
}
})();
)js",
std::move(scroll_to_params));
EXPECT_EQ(content::EvalJs(glic_contents, std::move(script)),
static_cast<int>(error_reason));
})),
ExpectErrorRecorded(error_reason));
}
InteractiveGlicTest::MultiStep ScrollToAsyncImpl(
Selector selector,
std::optional<DocumentIdGetter> document_id,
std::optional<URLGetter> url) {
return Steps(InAnyContext(WithElement(
kGlicContentsElementId,
[&, selector = std::move(selector),
document_id = std::move(document_id),
url = std::move(url)](ui::TrackedElement* el) mutable {
content::WebContents* glic_contents =
AsInstrumentedWebContents(el)->web_contents();
auto scroll_to_params = CreateScrollToParams(
std::move(selector), std::move(document_id), std::move(url));
std::string script = content::JsReplace(
R"js(
(() => {
window.scrollToPromise = client.browser.scrollTo($1);
})();
)js",
std::move(scroll_to_params));
ASSERT_TRUE(content::ExecJs(glic_contents, script));
})));
}
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), GetPageContextFromFocusedTab(),
ScrollToWithDocumentId(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), GetPageContextFromFocusedTab(),
ScrollToWithDocumentId(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), GetPageContextFromFocusedTab(),
ScrollToWithDocumentIdExpectingError(
ExactTextSelector("Text does not exist"),
mojom::ScrollToErrorReason::kNoMatchFound));
}
IN_PROC_BROWSER_TEST_F(GlicAnnotationManagerUiTest,
FailsWhenNoDocumentIdIsProvided) {
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));
}
// 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),
GetPageContextFromFocusedTab(), InsertFakeAnnotationService(),
ScrollToAsyncWithDocumentId(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),
GetPageContextFromFocusedTab(), InsertFakeAnnotationService(),
ScrollToAsyncWithDocumentId(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(),
ScrollToWithDocumentIdExpectingError(
ExactTextSelector("does not matter"),
mojom::ScrollToErrorReason::kNoFocusedTab,
base::BindLambdaForTesting(
[]() { return base::UnguessableToken().Create().ToString(); })));
}
// 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),
GetPageContextFromFocusedTab(), InsertFakeAnnotationService(),
ScrollToAsyncWithDocumentId(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; }"),
ScrollToAsyncWithDocumentId(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),
GetPageContextFromFocusedTab(), InsertFakeAnnotationService(),
ScrollToAsyncWithDocumentId(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),
GetPageContextFromFocusedTab(), FocusWebContents(kGlicContentsElementId),
InsertFakeAnnotationService(),
ScrollToAsyncWithDocumentId(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),
GetPageContextFromFocusedTab(), InsertFakeAnnotationService(),
ScrollToAsyncWithDocumentId(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),
GetPageContextFromFocusedTab(), InsertFakeAnnotationService(),
ScrollToAsyncWithDocumentId(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), GetPageContextFromFocusedTab(),
Check([&]() { return fake_service()->HighlightIsActive(); }),
ScrollToWithDocumentId(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), GetPageContextFromFocusedTab(),
ScrollToWithDocumentId(ExactTextSelector("Some text")),
WaitForJsResult(kActiveTabId, "() => did_scroll"),
ExecuteJs(kActiveTabId, "() => { did_scroll = false; }"),
ScrollToWithDocumentId(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),
GetPageContextFromFocusedTab(), InsertFakeAnnotationService(),
ScrollToAsyncWithDocumentId(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),
GetPageContextFromFocusedTab(),
ExecuteJs(kActiveTabId,
"() => { document.getElementById('text').tabIndex = 0; }"),
ScrollToWithDocumentId(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),
GetPageContextFromFocusedTab(), InsertFakeAnnotationService(),
ScrollToAsyncWithDocumentId(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),
GetPageContextFromFocusedTab(), InsertFakeAnnotationService(),
ScrollToAsyncWithDocumentId(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),
GetPageContextFromFocusedTab(), InsertFakeAnnotationService(),
ScrollToAsyncWithDocumentId(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), SetTabContextPermission(true),
GetPageContextFromFocusedTab(), SetTabContextPermission(false),
ScrollToWithDocumentIdExpectingError(
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),
GetPageContextFromFocusedTab(), InsertFakeAnnotationService(),
ScrollToAsyncWithDocumentId(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),
GetPageContextFromFocusedTab(), InsertFakeAnnotationService(),
ScrollToAsyncWithDocumentId(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),
GetPageContextFromFocusedTab(), InsertFakeAnnotationService(),
ScrollToAsyncWithDocumentId(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),
GetPageContextFromFocusedTab(), InsertFakeAnnotationService(),
ScrollToAsyncWithDocumentId(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),
GetPageContextFromFocusedTab(),
ScrollToWithDocumentIdExpectingError(
ExactTextSelector("missing text"),
mojom::ScrollToErrorReason::kNoMatchFound),
ScrollToWithDocumentId(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),
GetPageContextFromFocusedTab(), InsertFakeAnnotationService(), Do([&]() {
glic_metrics = GlicKeyedServiceFactory::GetGlicKeyedService(
browser()->GetProfile())
->metrics();
glic_metrics->OnUserInputSubmitted(mojom::WebClientMode::kAudio);
}),
ScrollToAsyncWithDocumentId(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);
}),
ScrollToAsyncWithDocumentId(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); }")));
}
#if BUILDFLAG(ENABLE_PDF)
// To test the scrollTo for PDFs, the tests should not use the fake annotation
// service. Instead the test should exercise on a real renderer with a real PDF
// document to make sure the correct frame host is targeted.
class GlicAnnotationManagerTestForPDF
: public GlicAnnotationManagerUiTest,
public ::testing::WithParamInterface<bool> {
public:
GlicAnnotationManagerTestForPDF() {
InitFeatureParams(/*enable_scroll_to_pdf=*/true,
/*enforce_url_for_pdf=*/true);
}
~GlicAnnotationManagerTestForPDF() override = default;
bool UseOopif() const { return GetParam(); }
void InitFeatureParams(bool enable_scroll_to_pdf, bool enforce_url_for_pdf) {
scoped_feature_list_.Reset();
std::vector<base::test::FeatureRefAndParams> enabled_features = {
{features::kGlicScrollTo,
{{"glic-scroll-to-pdf", base::ToString(enable_scroll_to_pdf)},
{"glic-scroll-to-enforce-url-for-pdf",
base::ToString(enforce_url_for_pdf)}}}};
std::vector<base::test::FeatureRef> disabled_features = {};
if (UseOopif()) {
enabled_features.push_back({chrome_pdf::features::kPdfOopif, {}});
} else {
disabled_features.push_back(chrome_pdf::features::kPdfOopif);
}
scoped_feature_list_.InitWithFeaturesAndParameters(enabled_features,
disabled_features);
}
// Note: `EnsurePDFHasLoaded()` uses RunLoop(s) with type kDefault. This
// method is not safe to be embedded inside other RunLoops, for example,
// inside Kombucha's `RunTestSequence()`.
void NavigateToPDF(const GURL& pdf_url) {
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), pdf_url));
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
ASSERT_TRUE(web_contents);
ASSERT_TRUE(pdf_extension_test_util::EnsurePDFHasLoaded(web_contents));
}
auto InjectEmbeddedPDF(const GURL& pdf_url) {
return Do([this, pdf_url = GURL(pdf_url)]() {
constexpr char kAddIFrame[] = R"({
(()=>{
return new Promise((resolve) => {
const frame = document.createElement('embed');
frame.addEventListener('load', resolve);
frame.id = 'embed';
frame.src = $1;
document.body.appendChild(frame);
});
})();
})";
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
ASSERT_TRUE(web_contents);
ASSERT_TRUE(
ExecJs(web_contents, content::JsReplace(kAddIFrame, pdf_url)));
});
}
static std::string PrintTestVariant(
const ::testing::TestParamInfo<bool>& info) {
return info.param ? "OOPIF" : "InnerWebContents";
}
private:
base::test::ScopedFeatureList scoped_feature_list_;
};
IN_PROC_BROWSER_TEST_P(GlicAnnotationManagerTestForPDF, TextFragmentFound) {
NavigateToPDF(embedded_test_server()->GetURL("/find_in_pdf_page.pdf"));
RunTestSequence(
OpenGlicWindow(GlicWindowMode::kDetached), SetTabContextPermission(true),
// At the end of `ScrollTo`, "Glic.ScrollTo.MatchDuration.Success" is
// asserted to have one sample. The histogram is only recorded with a
// successful `DidFinishAttachment()`.
ScrollToWithURL(ExactTextSelector("test")));
}
IN_PROC_BROWSER_TEST_P(GlicAnnotationManagerTestForPDF, TwoScrolls) {
NavigateToPDF(embedded_test_server()->GetURL("/find_in_pdf_page.pdf"));
RunTestSequence(OpenGlicWindow(GlicWindowMode::kDetached),
SetTabContextPermission(true),
ScrollToWithURL(ExactTextSelector("test")),
ScrollToWithURL(ExactTextSelector("Result")));
}
IN_PROC_BROWSER_TEST_P(GlicAnnotationManagerTestForPDF,
FirstFoundSecondNotFound) {
NavigateToPDF(embedded_test_server()->GetURL("/find_in_pdf_page.pdf"));
RunTestSequence(
OpenGlicWindow(GlicWindowMode::kDetached), SetTabContextPermission(true),
ScrollToWithURL(ExactTextSelector("test")),
ScrollToWithURLExpectingError(ExactTextSelector("not_found"),
mojom::ScrollToErrorReason::kNoMatchFound));
}
IN_PROC_BROWSER_TEST_P(GlicAnnotationManagerTestForPDF, TextFragmentNotFound) {
NavigateToPDF(embedded_test_server()->GetURL("/find_in_pdf_page.pdf"));
RunTestSequence(
OpenGlicWindow(GlicWindowMode::kDetached), SetTabContextPermission(true),
ScrollToWithURLExpectingError(ExactTextSelector("not_found"),
mojom::ScrollToErrorReason::kNoMatchFound));
}
IN_PROC_BROWSER_TEST_P(GlicAnnotationManagerTestForPDF,
FirstNotFoundSecondFound) {
NavigateToPDF(embedded_test_server()->GetURL("/find_in_pdf_page.pdf"));
RunTestSequence(
OpenGlicWindow(GlicWindowMode::kDetached), SetTabContextPermission(true),
ScrollToWithURLExpectingError(ExactTextSelector("not_found"),
mojom::ScrollToErrorReason::kNoMatchFound),
ScrollToWithURL(ExactTextSelector("test")));
}
IN_PROC_BROWSER_TEST_P(GlicAnnotationManagerTestForPDF, EmptyTextFragment) {
NavigateToPDF(embedded_test_server()->GetURL("/find_in_pdf_page.pdf"));
RunTestSequence(
OpenGlicWindow(GlicWindowMode::kDetached), SetTabContextPermission(true),
ScrollToWithURLExpectingError(ExactTextSelector(""),
mojom::ScrollToErrorReason::kNotSupported));
}
IN_PROC_BROWSER_TEST_P(GlicAnnotationManagerTestForPDF,
NodeIdSelectorNotSupported) {
NavigateToPDF(embedded_test_server()->GetURL("/find_in_pdf_page.pdf"));
RunTestSequence(OpenGlicWindow(GlicWindowMode::kDetached),
SetTabContextPermission(true),
ScrollToWithDocumentIdAndURLExpectingError(
NodeIdSelector(base::BindOnce([]() { return -1; })),
mojom::ScrollToErrorReason::kNotSupported,
base::BindLambdaForTesting([]() {
return base::UnguessableToken::Create().ToString();
})));
}
// Test that scrollTo works after the page is navigated away from the PDF to a
// regular web page.
IN_PROC_BROWSER_TEST_P(GlicAnnotationManagerTestForPDF,
AnnotationAgentContainerIPCEndPoint) {
NavigateToPDF(embedded_test_server()->GetURL("/find_in_pdf_page.pdf"));
RunTestSequence(
InstrumentTab(kActiveTabId), OpenGlicWindow(GlicWindowMode::kDetached),
SetTabContextPermission(true),
// Blocks until "test" is found.
ScrollToWithURL(ExactTextSelector("test")),
NavigateWebContents(
kActiveTabId,
embedded_test_server()->GetURL("/scrollable_page_with_content.html")),
GetPageContextFromFocusedTab(),
// Blocks until "Some text" is found.
ScrollToWithDocumentId(ExactTextSelector("Some text")));
}
// Asserts that the annotation is not dispatched to embedded PDFs.
IN_PROC_BROWSER_TEST_P(GlicAnnotationManagerTestForPDF,
EmbeddedPDFNotSupported) {
RunTestSequence(InstrumentTab(kActiveTabId),
NavigateWebContents(
kActiveTabId, embedded_test_server()->GetURL(
"/scrollable_page_with_content.html")),
InjectEmbeddedPDF(
embedded_test_server()->GetURL("/find_in_pdf_page.pdf")),
OpenGlicWindow(GlicWindowMode::kDetached),
SetTabContextPermission(true), GetPageContextFromFocusedTab(),
ScrollToWithDocumentIdAndURL(ExactTextSelector("Some text")));
}
IN_PROC_BROWSER_TEST_P(GlicAnnotationManagerTestForPDF, NoURLProvided) {
NavigateToPDF(embedded_test_server()->GetURL("/find_in_pdf_page.pdf"));
RunTestSequence(
InstrumentTab(kActiveTabId), OpenGlicWindow(GlicWindowMode::kDetached),
SetTabContextPermission(true),
ScrollToExpectingError(ExactTextSelector("Some text"),
mojom::ScrollToErrorReason::kNotSupported));
}
IN_PROC_BROWSER_TEST_P(GlicAnnotationManagerTestForPDF,
NonMatchingURLProvided) {
NavigateToPDF(embedded_test_server()->GetURL("/find_in_pdf_page.pdf"));
RunTestSequence(InstrumentTab(kActiveTabId),
OpenGlicWindow(GlicWindowMode::kDetached),
SetTabContextPermission(true),
ScrollToWithURLExpectingError(
ExactTextSelector("Some text"),
mojom::ScrollToErrorReason::kNoMatchingDocument,
base::BindLambdaForTesting(
[] { return GURL("https://www.google.com"); })));
}
INSTANTIATE_TEST_SUITE_P(
/* no prefix */,
GlicAnnotationManagerTestForPDF,
::testing::Bool(),
&GlicAnnotationManagerTestForPDF::PrintTestVariant);
class GlicAnnotationManagerTestForPDFFeatureDisabled
: public GlicAnnotationManagerTestForPDF {
public:
GlicAnnotationManagerTestForPDFFeatureDisabled() {
InitFeatureParams(/*enable_scroll_to_pdf=*/false,
/*enforce_url_for_pdf=*/false);
}
~GlicAnnotationManagerTestForPDFFeatureDisabled() override = default;
};
IN_PROC_BROWSER_TEST_P(GlicAnnotationManagerTestForPDFFeatureDisabled,
NotSupported) {
NavigateToPDF(embedded_test_server()->GetURL("/find_in_pdf_page.pdf"));
RunTestSequence(
OpenGlicWindow(GlicWindowMode::kDetached), SetTabContextPermission(true),
ScrollToWithURLExpectingError(ExactTextSelector("test"),
mojom::ScrollToErrorReason::kNotSupported));
}
INSTANTIATE_TEST_SUITE_P(
/* no prefix */,
GlicAnnotationManagerTestForPDFFeatureDisabled,
::testing::Bool(),
&GlicAnnotationManagerTestForPDF::PrintTestVariant);
class GlicAnnotationManagerTestForPDFWithEnforceURLDisabled
: public GlicAnnotationManagerTestForPDF {
public:
GlicAnnotationManagerTestForPDFWithEnforceURLDisabled() {
InitFeatureParams(/*enable_scroll_to_pdf=*/true,
/*enforce_url_for_pdf=*/false);
}
~GlicAnnotationManagerTestForPDFWithEnforceURLDisabled() override = default;
};
IN_PROC_BROWSER_TEST_P(GlicAnnotationManagerTestForPDFWithEnforceURLDisabled,
ScrollToSucceedsWithoutURL) {
NavigateToPDF(embedded_test_server()->GetURL("/find_in_pdf_page.pdf"));
RunTestSequence(OpenGlicWindow(GlicWindowMode::kDetached), //
SetTabContextPermission(true), //
ScrollTo(ExactTextSelector("test")));
}
INSTANTIATE_TEST_SUITE_P(
/* no prefix */,
GlicAnnotationManagerTestForPDFWithEnforceURLDisabled,
::testing::Bool(),
&GlicAnnotationManagerTestForPDF::PrintTestVariant);
#endif // BUILDFLAG(ENABLE_PDF)
} // namespace glic::test
|