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 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678
|
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <stddef.h>
#include <limits>
#include <memory>
#include "base/functional/bind.h"
#include "base/location.h"
#include "base/memory/raw_ptr.h"
#include "base/run_loop.h"
#include "base/strings/stringprintf.h"
#include "base/strings/utf_string_conversions.h"
#include "base/task/single_thread_task_runner.h"
#include "base/test/run_until.h"
#include "base/test/test_timeouts.h"
#include "build/build_config.h"
#include "chrome/app/chrome_command_ids.h"
#include "chrome/browser/apps/platform_apps/app_browsertest_util.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/renderer_context_menu/render_view_context_menu_browsertest_util.h"
#include "chrome/browser/renderer_context_menu/render_view_context_menu_test_util.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/test/base/interactive_test_utils.h"
#include "chrome/test/base/test_launcher_utils.h"
#include "chrome/test/base/ui_test_utils.h"
#include "components/guest_view/browser/guest_view_base.h"
#include "components/guest_view/browser/guest_view_manager.h"
#include "components/guest_view/browser/guest_view_manager_delegate.h"
#include "components/guest_view/browser/guest_view_manager_factory.h"
#include "components/guest_view/browser/test_guest_view_manager.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/render_process_host.h"
#include "content/public/browser/render_view_host.h"
#include "content/public/browser/render_widget_host.h"
#include "content/public/browser/render_widget_host_iterator.h"
#include "content/public/browser/render_widget_host_view.h"
#include "content/public/browser/web_contents.h"
#include "content/public/common/content_client.h"
#include "content/public/common/content_features.h"
#include "content/public/common/content_switches.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/browser_test_utils.h"
#include "content/public/test/content_browser_test_utils.h"
#include "content/public/test/hit_test_region_observer.h"
#include "content/public/test/test_frame_navigation_observer.h"
#include "content/public/test/test_navigation_observer.h"
#include "content/public/test/text_input_test_utils.h"
#include "extensions/browser/api/extensions_api_client.h"
#include "extensions/browser/app_window/app_window.h"
#include "extensions/browser/app_window/app_window_registry.h"
#include "extensions/test/extension_test_message_listener.h"
#include "net/dns/mock_host_resolver.h"
#include "net/test/embedded_test_server/embedded_test_server.h"
#include "third_party/blink/public/common/switches.h"
#include "ui/base/buildflags.h"
#include "ui/base/ime/composition_text.h"
#include "ui/base/ime/ime_text_span.h"
#include "ui/base/ime/text_input_client.h"
#include "ui/base/ozone_buildflags.h"
#include "ui/base/test/ui_controls.h"
#include "ui/events/keycodes/keyboard_codes.h"
#include "ui/gfx/geometry/rect.h"
#include "ui/gfx/range/range.h"
#include "ui/touch_selection/touch_selection_menu_runner.h"
#if BUILDFLAG(IS_MAC)
#include "ui/base/test/scoped_fake_nswindow_fullscreen.h"
#endif
using extensions::AppWindow;
using extensions::ExtensionsAPIClient;
using guest_view::GuestViewBase;
using guest_view::GuestViewManager;
using guest_view::TestGuestViewManager;
using guest_view::TestGuestViewManagerFactory;
#if !BUILDFLAG(IS_OZONE_WAYLAND)
// Some test helpers, like ui_test_utils::SendMouseMoveSync, don't work properly
// on some platforms. Tests that require these helpers need to be skipped for
// these cases.
#define SUPPORTS_SYNC_MOUSE_UTILS
#endif
#if BUILDFLAG(IS_MAC)
class PopupShowAttemptObserver : content::RenderWidgetHostViewCocoaObserver {
public:
explicit PopupShowAttemptObserver(content::WebContents* web_contents)
: content::RenderWidgetHostViewCocoaObserver(web_contents) {}
PopupShowAttemptObserver(const PopupShowAttemptObserver&) = delete;
PopupShowAttemptObserver& operator=(const PopupShowAttemptObserver&) = delete;
~PopupShowAttemptObserver() override = default;
void WaitForPopup() {
if (did_receive_rect_)
return;
run_loop_ = std::make_unique<base::RunLoop>();
run_loop_->Run();
}
const gfx::Rect& view_bounds_in_screen() const { return bounds_; }
private:
void DidAttemptToShowPopup(const gfx::Rect& bounds,
int selected_item) override {
did_receive_rect_ = true;
bounds_ = bounds;
if (run_loop_) {
run_loop_->Quit();
}
}
bool did_receive_rect_ = false;
gfx::Rect bounds_;
std::unique_ptr<base::RunLoop> run_loop_;
};
#endif // BUILDFLAG(IS_MAC)
class WebViewInteractiveTest : public extensions::PlatformAppBrowserTest {
public:
WebViewInteractiveTest()
: guest_view_(nullptr), embedder_web_contents_(nullptr) {}
void SetUpCommandLine(base::CommandLine* command_line) override {
extensions::PlatformAppBrowserTest::SetUpCommandLine(command_line);
// Some bots are flaky due to slower loading interacting with
// deferred commits.
command_line->AppendSwitch(blink::switches::kAllowPreCommitInput);
}
void SetUpOnMainThread() override {
host_resolver()->AddRule("*", "127.0.0.1");
extensions::PlatformAppBrowserTest::SetUpOnMainThread();
}
TestGuestViewManager* GetGuestViewManager() {
return factory_.GetOrCreateTestGuestViewManager(
browser()->profile(),
ExtensionsAPIClient::Get()->CreateGuestViewManagerDelegate());
}
void MoveMouseInsideWindowWithListener(gfx::Point point,
const std::string& message) {
ExtensionTestMessageListener move_listener(message);
ASSERT_TRUE(ui_test_utils::SendMouseMoveSync(
gfx::Point(corner_.x() + point.x(), corner_.y() + point.y())));
ASSERT_TRUE(move_listener.WaitUntilSatisfied());
}
void SendMouseClickWithListener(ui_controls::MouseButton button,
const std::string& message) {
ExtensionTestMessageListener listener(message);
SendMouseClick(button);
ASSERT_TRUE(listener.WaitUntilSatisfied());
}
void SendMouseClick(ui_controls::MouseButton button) {
SendMouseEvent(button, ui_controls::DOWN);
SendMouseEvent(button, ui_controls::UP);
}
void MoveMouseInsideWindow(const gfx::Point& point) {
ASSERT_TRUE(ui_test_utils::SendMouseMoveSync(
gfx::Point(corner_.x() + point.x(), corner_.y() + point.y())));
}
gfx::NativeWindow GetPlatformAppWindow() {
const extensions::AppWindowRegistry::AppWindowList& app_windows =
extensions::AppWindowRegistry::Get(browser()->profile())->app_windows();
return (*app_windows.begin())->GetNativeWindow();
}
void SendKeyPressToPlatformApp(ui::KeyboardCode key) {
ASSERT_EQ(1U, GetAppWindowCount());
ASSERT_TRUE(ui_test_utils::SendKeyPressToWindowSync(
GetPlatformAppWindow(), key, false, false, false, false));
}
void SendCopyKeyPressToPlatformApp() {
ASSERT_EQ(1U, GetAppWindowCount());
#if BUILDFLAG(IS_MAC)
// Send Cmd+C on MacOSX.
ASSERT_TRUE(ui_test_utils::SendKeyPressToWindowSync(
GetPlatformAppWindow(), ui::VKEY_C, false, false, false, true));
#else
// Send Ctrl+C on Windows and Linux/ChromeOS.
ASSERT_TRUE(ui_test_utils::SendKeyPressToWindowSync(
GetPlatformAppWindow(), ui::VKEY_C, true, false, false, false));
#endif
}
void SendStartOfLineKeyPressToPlatformApp() {
#if BUILDFLAG(IS_MAC)
// Send Cmd+Left on MacOSX.
ASSERT_TRUE(ui_test_utils::SendKeyPressToWindowSync(
GetPlatformAppWindow(), ui::VKEY_LEFT, false, false, false, true));
#else
// Send Ctrl+Left on Windows and Linux/ChromeOS.
ASSERT_TRUE(ui_test_utils::SendKeyPressToWindowSync(
GetPlatformAppWindow(), ui::VKEY_LEFT, true, false, false, false));
#endif
}
void SendBackShortcutToPlatformApp() {
#if BUILDFLAG(IS_MAC)
// Send Cmd+[ on MacOSX.
ASSERT_TRUE(ui_test_utils::SendKeyPressToWindowSync(
GetPlatformAppWindow(), ui::VKEY_OEM_4, false, false, false, true));
#else
// Send browser back key on Linux/Windows.
ASSERT_TRUE(ui_test_utils::SendKeyPressToWindowSync(
GetPlatformAppWindow(), ui::VKEY_BROWSER_BACK, false, false, false,
false));
#endif
}
void SendForwardShortcutToPlatformApp() {
#if BUILDFLAG(IS_MAC)
// Send Cmd+] on MacOSX.
ASSERT_TRUE(ui_test_utils::SendKeyPressToWindowSync(
GetPlatformAppWindow(), ui::VKEY_OEM_6, false, false, false, true));
#else
// Send browser back key on Linux/Windows.
ASSERT_TRUE(ui_test_utils::SendKeyPressToWindowSync(
GetPlatformAppWindow(), ui::VKEY_BROWSER_FORWARD, false, false, false,
false));
#endif
}
void SendMouseEvent(ui_controls::MouseButton button,
ui_controls::MouseButtonState state) {
if (first_click_) {
mouse_click_result_ = ui_test_utils::SendMouseEventsSync(button, state);
first_click_ = false;
} else {
ASSERT_EQ(mouse_click_result_,
ui_test_utils::SendMouseEventsSync(button, state));
}
}
enum TestServer { NEEDS_TEST_SERVER, NO_TEST_SERVER };
std::unique_ptr<ExtensionTestMessageListener> RunAppHelper(
const std::string& test_name,
const std::string& app_location,
TestServer test_server,
content::WebContents** embedder_web_contents) {
// For serving guest pages.
if ((test_server == NEEDS_TEST_SERVER) && !StartEmbeddedTestServer()) {
LOG(ERROR) << "FAILED TO START TEST SERVER.";
return nullptr;
}
LoadAndLaunchPlatformApp(app_location.c_str(), "Launched");
if (!ui_test_utils::ShowAndFocusNativeWindow(GetPlatformAppWindow())) {
LOG(ERROR) << "UNABLE TO FOCUS TEST WINDOW.";
return nullptr;
}
// Flush any pending events to make sure we start with a clean slate.
content::RunAllPendingInMessageLoop();
*embedder_web_contents = GetFirstAppWindowWebContents();
auto done_listener =
std::make_unique<ExtensionTestMessageListener>("TEST_PASSED");
done_listener->set_failure_message("TEST_FAILED");
if (!content::ExecJs(
*embedder_web_contents,
base::StringPrintf("runTest('%s')", test_name.c_str()))) {
LOG(ERROR) << "UNABLE TO START TEST";
return nullptr;
}
return done_listener;
}
void TestHelper(const std::string& test_name,
const std::string& app_location,
TestServer test_server) {
content::WebContents* embedder_web_contents = nullptr;
std::unique_ptr<ExtensionTestMessageListener> done_listener(RunAppHelper(
test_name, app_location, test_server, &embedder_web_contents));
ASSERT_TRUE(done_listener);
ASSERT_TRUE(done_listener->WaitUntilSatisfied());
embedder_web_contents_ = embedder_web_contents;
guest_view_ = GetGuestViewManager()->WaitForSingleGuestViewCreated();
}
void SendMessageToEmbedder(const std::string& message) {
ASSERT_TRUE(content::ExecJs(
GetFirstAppWindowWebContents(),
base::StringPrintf("onAppMessage('%s');", message.c_str())));
}
void SetupTest(const std::string& app_name,
const std::string& guest_url_spec) {
ASSERT_TRUE(StartEmbeddedTestServer());
LoadAndLaunchPlatformApp(app_name.c_str(), "connected");
guest_view_ = GetGuestViewManager()->WaitForSingleGuestViewCreated();
ASSERT_TRUE(
guest_view_->GetGuestMainFrame()->GetProcess()->IsForGuestsOnly());
embedder_web_contents_ = guest_view_->embedder_web_contents();
gfx::Rect offset = embedder_web_contents_->GetContainerBounds();
corner_ = offset.origin();
}
content::WebContents* DeprecatedGuestWebContents() {
return guest_view_->web_contents();
}
guest_view::GuestViewBase* GetGuestView() { return guest_view_; }
content::RenderFrameHost* GetGuestRenderFrameHost() {
return guest_view_->GetGuestMainFrame();
}
content::WebContents* embedder_web_contents() {
return embedder_web_contents_;
}
gfx::Point corner() { return corner_; }
void SimulateRWHMouseClick(content::RenderWidgetHost* rwh,
blink::WebMouseEvent::Button button,
int x,
int y) {
blink::WebMouseEvent mouse_event(
blink::WebInputEvent::Type::kMouseDown,
blink::WebInputEvent::kNoModifiers,
blink::WebInputEvent::GetStaticTimeStampForTests());
mouse_event.button = button;
mouse_event.SetPositionInWidget(x, y);
// Needed for the WebViewTest.ContextMenuPositionAfterCSSTransforms
gfx::Rect rect = rwh->GetView()->GetViewBounds();
mouse_event.SetPositionInScreen(x + rect.x(), y + rect.y());
rwh->ForwardMouseEvent(mouse_event);
mouse_event.SetType(blink::WebInputEvent::Type::kMouseUp);
rwh->ForwardMouseEvent(mouse_event);
}
class PopupCreatedObserver {
public:
PopupCreatedObserver() = default;
PopupCreatedObserver(const PopupCreatedObserver&) = delete;
PopupCreatedObserver& operator=(const PopupCreatedObserver&) = delete;
~PopupCreatedObserver() = default;
void Wait(int wait_retry_left = 10) {
if (wait_retry_left <= 0) {
LOG(ERROR) << "Wait failed";
return;
}
if (CountWidgets() == initial_widget_count_ + 1 &&
last_render_widget_host_->GetView()->GetNativeView()) {
gfx::Rect popup_bounds =
last_render_widget_host_->GetView()->GetViewBounds();
if (!popup_bounds.size().IsEmpty()) {
if (run_loop_)
run_loop_->Quit();
return;
}
}
// If we haven't seen any new widget or we get 0 size widget, we need to
// schedule waiting.
ScheduleWait(wait_retry_left - 1);
if (!run_loop_) {
run_loop_ = std::make_unique<base::RunLoop>();
run_loop_->Run();
}
}
void Init() { initial_widget_count_ = CountWidgets(); }
// Returns the last widget created.
content::RenderWidgetHost* last_render_widget_host() {
return last_render_widget_host_;
}
private:
void ScheduleWait(int wait_retry_left) {
base::SingleThreadTaskRunner::GetCurrentDefault()->PostDelayedTask(
FROM_HERE,
base::BindOnce(&PopupCreatedObserver::Wait, base::Unretained(this),
wait_retry_left),
base::Milliseconds(200));
}
size_t CountWidgets() {
std::unique_ptr<content::RenderWidgetHostIterator> widgets(
content::RenderWidgetHost::GetRenderWidgetHosts());
size_t num_widgets = 0;
while (content::RenderWidgetHost* widget = widgets->GetNextHost()) {
if (content::RenderViewHost::From(widget))
continue;
++num_widgets;
last_render_widget_host_ = widget;
}
return num_widgets;
}
size_t initial_widget_count_ = 0;
raw_ptr<content::RenderWidgetHost> last_render_widget_host_ = nullptr;
std::unique_ptr<base::RunLoop> run_loop_;
};
void PopupTestHelper(const gfx::Point& padding) {
PopupCreatedObserver popup_observer;
popup_observer.Init();
ASSERT_TRUE(embedder_web_contents());
// Press alt+DOWN to open popup.
bool alt = true;
content::SimulateKeyPress(embedder_web_contents(), ui::DomKey::ARROW_DOWN,
ui::DomCode::ARROW_DOWN, ui::VKEY_DOWN, false,
false, alt, false);
popup_observer.Wait();
content::RenderWidgetHost* popup_rwh =
popup_observer.last_render_widget_host();
gfx::Rect popup_bounds = popup_rwh->GetView()->GetViewBounds();
gfx::Rect embedder_bounds =
embedder_web_contents()->GetRenderWidgetHostView()->GetViewBounds();
gfx::Vector2d diff = popup_bounds.origin() - embedder_bounds.origin();
LOG(INFO) << "DIFF: x = " << diff.x() << ", y = " << diff.y();
const int left_spacing = 40 + padding.x(); // div.style.paddingLeft = 40px.
// div.style.paddingTop = 60px + (input box height = 26px).
const int top_spacing = 60 + 26 + padding.y();
// If the popup is placed within |threshold_px| of the expected position,
// then we consider the test as a pass.
const int threshold_px = 10;
EXPECT_LE(std::abs(diff.x() - left_spacing), threshold_px);
EXPECT_LE(std::abs(diff.y() - top_spacing), threshold_px);
// Close the popup.
content::SimulateKeyPress(embedder_web_contents(), ui::DomKey::ESCAPE,
ui::DomCode::ESCAPE, ui::VKEY_ESCAPE, false,
false, false, false);
}
void FullscreenTestHelper(const std::string& test_name,
const std::string& test_dir) {
TestHelper(test_name, test_dir, NO_TEST_SERVER);
content::WebContents* embedder_web_contents =
GetFirstAppWindowWebContents();
ASSERT_TRUE(embedder_web_contents);
ASSERT_TRUE(GetGuestView());
// Click the guest to request fullscreen.
ExtensionTestMessageListener passed_listener("FULLSCREEN_STEP_PASSED");
passed_listener.set_failure_message("TEST_FAILED");
WaitForHitTestData(GetGuestRenderFrameHost());
content::SimulateMouseClickAt(
embedder_web_contents, 0, blink::WebMouseEvent::Button::kLeft,
GetGuestRenderFrameHost()->GetView()->TransformPointToRootCoordSpace(
gfx::Point(20, 20)));
ASSERT_TRUE(passed_listener.WaitUntilSatisfied());
}
protected:
TestGuestViewManagerFactory factory_;
// Only set if `SetupTest` or `TestHelper` are called.
raw_ptr<guest_view::GuestViewBase, AcrossTasksDanglingUntriaged> guest_view_;
raw_ptr<content::WebContents, AcrossTasksDanglingUntriaged>
embedder_web_contents_;
gfx::Point corner_;
bool mouse_click_result_ = false;
bool first_click_ = true;
};
class WebViewImeInteractiveTest : public WebViewInteractiveTest {
protected:
// This class observes all the composition range updates associated with the
// TextInputManager of the provided WebContents. The WebContents should be an
// outer most WebContents.
class CompositionRangeUpdateObserver {
public:
explicit CompositionRangeUpdateObserver(content::WebContents* web_contents)
: tester_(web_contents) {
tester_.SetOnImeCompositionRangeChangedCallback(base::BindRepeating(
&CompositionRangeUpdateObserver::OnCompositionRangeUpdated,
base::Unretained(this)));
}
CompositionRangeUpdateObserver(const CompositionRangeUpdateObserver&) =
delete;
CompositionRangeUpdateObserver& operator=(
const CompositionRangeUpdateObserver&) = delete;
~CompositionRangeUpdateObserver() = default;
// Wait until a composition range update with a range length equal to
// |length| is received.
void WaitForCompositionRangeLength(uint32_t length) {
if (last_composition_range_length_.has_value() &&
last_composition_range_length_.value() == length)
return;
expected_length_ = length;
run_loop_ = std::make_unique<base::RunLoop>();
run_loop_->Run();
}
private:
void OnCompositionRangeUpdated() {
uint32_t length = std::numeric_limits<uint32_t>::max();
if (tester_.GetLastCompositionRangeLength(&length)) {
last_composition_range_length_ = length;
}
if (last_composition_range_length_.value() == expected_length_)
run_loop_->Quit();
}
content::TextInputManagerTester tester_;
std::unique_ptr<base::RunLoop> run_loop_;
std::optional<uint32_t> last_composition_range_length_;
uint32_t expected_length_ = 0;
};
};
class WebViewNewWindowInteractiveTest : public WebViewInteractiveTest {};
class WebViewFocusInteractiveTest : public WebViewInteractiveTest {};
class WebViewPointerLockInteractiveTest : public WebViewInteractiveTest {};
// The following class of tests do not work for OOPIF <webview>.
// TODO(ekaramad): Make this tests work with OOPIF and replace the test classes
// with WebViewInteractiveTest (see crbug.com/582562).
class DISABLED_WebViewPopupInteractiveTest : public WebViewInteractiveTest {};
// Timeouts flakily: crbug.com/1003345
#if defined(SUPPORTS_SYNC_MOUSE_UTILS) && !BUILDFLAG(IS_CHROMEOS) && \
!BUILDFLAG(IS_MAC) && !BUILDFLAG(IS_WIN) && defined(NDEBUG)
#define MAYBE_PointerLock PointerLock
#else
#define MAYBE_PointerLock DISABLED_PointerLock
#endif
IN_PROC_BROWSER_TEST_F(WebViewPointerLockInteractiveTest, MAYBE_PointerLock) {
SetupTest("web_view/pointer_lock",
"/extensions/platform_apps/web_view/pointer_lock/guest.html");
// Move the mouse over the Lock Pointer button.
ASSERT_TRUE(ui_test_utils::SendMouseMoveSync(
gfx::Point(corner().x() + 75, corner().y() + 25)));
// Click the Lock Pointer button. The first two times the button is clicked
// the permission API will deny the request (intentional).
ExtensionTestMessageListener exception_listener("request exception");
SendMouseClickWithListener(ui_controls::LEFT, "lock error");
ASSERT_TRUE(exception_listener.WaitUntilSatisfied());
SendMouseClickWithListener(ui_controls::LEFT, "lock error");
// Click the Lock Pointer button, locking the mouse to lockTarget1.
SendMouseClickWithListener(ui_controls::LEFT, "locked");
// Attempt to move the mouse off of the lock target, and onto lockTarget2,
// (which would trigger a test failure).
ASSERT_TRUE(ui_test_utils::SendMouseMoveSync(
gfx::Point(corner().x() + 74, corner().y() + 74)));
MoveMouseInsideWindowWithListener(gfx::Point(75, 75), "mouse-move");
ExtensionTestMessageListener unlocked_listener("unlocked");
// Send a key press to unlock the mouse.
SendKeyPressToPlatformApp(ui::VKEY_ESCAPE);
// Wait for page to receive (successful) mouse unlock response.
ASSERT_TRUE(unlocked_listener.WaitUntilSatisfied());
// After the second lock, guest.js sends a message to main.js to remove the
// webview object. main.js then removes the div containing the webview, which
// should unlock, and leave the mouse over the mousemove-capture-container
// div. We then move the mouse over that div to ensure the mouse was properly
// unlocked and that the div receives the message.
ExtensionTestMessageListener move_captured_listener("move-captured");
move_captured_listener.set_failure_message("timeout");
// Mouse should already be over lock button (since we just unlocked), so send
// click to re-lock the mouse.
SendMouseClickWithListener(ui_controls::LEFT, "deleted");
// A mousemove event is triggered on the mousemove-capture-container element
// when we delete the webview container (since the mouse moves onto the
// element), but just in case, send an explicit mouse movement to be safe.
ASSERT_TRUE(ui_test_utils::SendMouseMoveSync(
gfx::Point(corner().x() + 50, corner().y() + 10)));
// Wait for page to receive second (successful) mouselock response.
bool success = move_captured_listener.WaitUntilSatisfied();
if (!success) {
fprintf(stderr, "TIMEOUT - retrying\n");
// About 1 in 40 tests fail to detect mouse moves at this point (why?).
// Sending a right click seems to fix this (why?).
ExtensionTestMessageListener move_listener2("move-captured");
SendMouseClick(ui_controls::RIGHT);
ASSERT_TRUE(ui_test_utils::SendMouseMoveSync(
gfx::Point(corner().x() + 51, corner().y() + 11)));
ASSERT_TRUE(move_listener2.WaitUntilSatisfied());
}
}
// flaky http://crbug.com/412086
#if defined(SUPPORTS_SYNC_MOUSE_UTILS) && !BUILDFLAG(IS_CHROMEOS) && \
!BUILDFLAG(IS_MAC) && defined(NDEBUG)
#define MAYBE_PointerLockFocus PointerLockFocus
#else
#define MAYBE_PointerLockFocus DISABLED_PointerLockFocus
#endif
IN_PROC_BROWSER_TEST_F(WebViewPointerLockInteractiveTest,
MAYBE_PointerLockFocus) {
SetupTest("web_view/pointer_lock_focus",
"/extensions/platform_apps/web_view/pointer_lock_focus/guest.html");
// Move the mouse over the Lock Pointer button.
ASSERT_TRUE(ui_test_utils::SendMouseMoveSync(
gfx::Point(corner().x() + 75, corner().y() + 25)));
// Click the Lock Pointer button, locking the mouse to lockTarget.
// This will also change focus to another element
SendMouseClickWithListener(ui_controls::LEFT, "locked");
// Try to unlock the mouse now that the focus is outside of the BrowserPlugin
ExtensionTestMessageListener unlocked_listener("unlocked");
// Send a key press to unlock the mouse.
SendKeyPressToPlatformApp(ui::VKEY_ESCAPE);
// Wait for page to receive (successful) mouse unlock response.
ASSERT_TRUE(unlocked_listener.WaitUntilSatisfied());
}
// Tests that if a <webview> is focused before navigation then the guest starts
// off focused.
// TODO(crbug.com/346863842): Flaky on linux-rel.
#if BUILDFLAG(IS_LINUX) && defined(NDEBUG)
#define MAYBE_Focus_FocusBeforeNavigation DISABLED_Focus_FocusBeforeNavigation
#else
#define MAYBE_Focus_FocusBeforeNavigation Focus_FocusBeforeNavigation
#endif
IN_PROC_BROWSER_TEST_F(WebViewFocusInteractiveTest,
MAYBE_Focus_FocusBeforeNavigation) {
TestHelper("testFocusBeforeNavigation", "web_view/focus", NO_TEST_SERVER);
}
// Tests that setting focus on the <webview> sets focus on the guest.
IN_PROC_BROWSER_TEST_F(WebViewFocusInteractiveTest, Focus_FocusEvent) {
TestHelper("testFocusEvent", "web_view/focus", NO_TEST_SERVER);
}
// TODO(crbug.com/334045674): Flaky timeouts on Mac.
#if BUILDFLAG(IS_MAC)
#define MAYBE_Focus_FocusTakeFocus DISABLED_Focus_FocusTakeFocus
#else
#define MAYBE_Focus_FocusTakeFocus Focus_FocusTakeFocus
#endif
IN_PROC_BROWSER_TEST_F(WebViewFocusInteractiveTest,
MAYBE_Focus_FocusTakeFocus) {
TestHelper("testFocusTakeFocus", "web_view/focus", NO_TEST_SERVER);
ASSERT_TRUE(GetGuestRenderFrameHost());
// Compute where to click in the window to focus the guest input box.
int clickX =
content::EvalJs(embedder_web_contents(), "Math.floor(window.clickX);")
.ExtractInt();
int clickY =
content::EvalJs(embedder_web_contents(), "Math.floor(window.clickY);")
.ExtractInt();
ExtensionTestMessageListener next_step_listener("TEST_STEP_PASSED");
next_step_listener.set_failure_message("TEST_STEP_FAILED");
WaitForHitTestData(GetGuestRenderFrameHost());
content::SimulateMouseClickAt(
embedder_web_contents(), 0, blink::WebMouseEvent::Button::kLeft,
GetGuestRenderFrameHost()->GetView()->TransformPointToRootCoordSpace(
gfx::Point(clickX, clickY)));
ASSERT_TRUE(next_step_listener.WaitUntilSatisfied());
// TAB back out to the embedder's input.
next_step_listener.Reset();
content::SimulateKeyPress(embedder_web_contents(), ui::DomKey::TAB,
ui::DomCode::TAB, ui::VKEY_TAB, false, false, false,
false);
ASSERT_TRUE(next_step_listener.WaitUntilSatisfied());
}
// Flaky on Mac and Linux - https://crbug.com/707648
#if BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
#define MAYBE_Focus_FocusTracksEmbedder DISABLED_Focus_FocusTracksEmbedder
#else
#define MAYBE_Focus_FocusTracksEmbedder Focus_FocusTracksEmbedder
#endif
IN_PROC_BROWSER_TEST_F(WebViewFocusInteractiveTest,
MAYBE_Focus_FocusTracksEmbedder) {
content::WebContents* embedder_web_contents = nullptr;
std::unique_ptr<ExtensionTestMessageListener> done_listener(
RunAppHelper("testFocusTracksEmbedder", "web_view/focus", NO_TEST_SERVER,
&embedder_web_contents));
EXPECT_TRUE(done_listener->WaitUntilSatisfied());
ExtensionTestMessageListener next_step_listener("TEST_STEP_PASSED");
next_step_listener.set_failure_message("TEST_STEP_FAILED");
EXPECT_TRUE(content::ExecJs(
embedder_web_contents,
"window.runCommand('testFocusTracksEmbedderRunNextStep');"));
// Blur the embedder.
embedder_web_contents->GetPrimaryMainFrame()
->GetRenderViewHost()
->GetWidget()
->Blur();
// Ensure that the guest is also blurred.
ASSERT_TRUE(next_step_listener.WaitUntilSatisfied());
}
IN_PROC_BROWSER_TEST_F(WebViewFocusInteractiveTest, Focus_AdvanceFocus) {
content::WebContents* embedder_web_contents = nullptr;
{
std::unique_ptr<ExtensionTestMessageListener> done_listener(
RunAppHelper("testAdvanceFocus", "web_view/focus", NO_TEST_SERVER,
&embedder_web_contents));
EXPECT_TRUE(done_listener->WaitUntilSatisfied());
}
{
ExtensionTestMessageListener listener("button1-focused");
listener.set_failure_message("TEST_FAILED");
// In oopif-webview, the click it directly routed to the guest.
content::RenderFrameHost* guest_rfh =
GetGuestViewManager()->WaitForSingleGuestRenderFrameHostCreated();
SimulateRWHMouseClick(guest_rfh->GetRenderWidgetHost(),
blink::WebMouseEvent::Button::kLeft, 200, 20);
content::SimulateKeyPress(embedder_web_contents, ui::DomKey::TAB,
ui::DomCode::TAB, ui::VKEY_TAB, false, false,
false, false);
ASSERT_TRUE(listener.WaitUntilSatisfied());
}
{
// Wait for button1 to be focused again, this means we were asked to
// move the focus to the next focusable element.
ExtensionTestMessageListener listener("button1-advance-focus");
listener.set_failure_message("TEST_FAILED");
content::SimulateKeyPress(embedder_web_contents, ui::DomKey::TAB,
ui::DomCode::TAB, ui::VKEY_TAB, false, false,
false, false);
content::SimulateKeyPress(embedder_web_contents, ui::DomKey::TAB,
ui::DomCode::TAB, ui::VKEY_TAB, false, false,
false, false);
ASSERT_TRUE(listener.WaitUntilSatisfied());
}
}
// Tests that blurring <webview> also blurs the guest.
IN_PROC_BROWSER_TEST_F(WebViewFocusInteractiveTest, Focus_BlurEvent) {
TestHelper("testBlurEvent", "web_view/focus", NO_TEST_SERVER);
}
// Tests that a <webview> can't steal focus from the embedder.
// TODO(crbug.com/349299938): Flaky on mac14-arm64-rel
#if BUILDFLAG(IS_MAC) && defined(NDEBUG)
#define MAYBE_FrameInGuestWontStealFocus DISABLED_FrameInGuestWontStealFocus
#else
#define MAYBE_FrameInGuestWontStealFocus FrameInGuestWontStealFocus
#endif
IN_PROC_BROWSER_TEST_F(WebViewFocusInteractiveTest,
MAYBE_FrameInGuestWontStealFocus) {
LoadAndLaunchPlatformApp("web_view/simple", "WebViewTest.LAUNCHED");
content::WebContents* embedder_web_contents = GetFirstAppWindowWebContents();
content::RenderFrameHost* guest_rfh =
GetGuestViewManager()->WaitForSingleGuestRenderFrameHostCreated();
content::RenderWidgetHost* guest_rwh = guest_rfh->GetRenderWidgetHost();
content::RenderFrameHost* embedder_rfh =
embedder_web_contents->GetPrimaryMainFrame();
content::RenderWidgetHost* embedder_rwh = embedder_rfh->GetRenderWidgetHost();
// Embedder should be focused initially.
EXPECT_TRUE(content::IsRenderWidgetHostFocused(embedder_rwh));
EXPECT_FALSE(content::IsRenderWidgetHostFocused(guest_rwh));
EXPECT_NE(guest_rfh, embedder_rfh);
// Try to focus an iframe in the guest.
content::MainThreadFrameObserver embedder_observer(embedder_rwh);
content::MainThreadFrameObserver guest_observer(guest_rwh);
EXPECT_TRUE(content::ExecJs(
guest_rfh,
"document.body.appendChild(document.createElement('iframe')); "
"document.querySelector('iframe').focus()"));
embedder_observer.Wait();
guest_observer.Wait();
// Embedder should still be focused.
EXPECT_TRUE(content::IsRenderWidgetHostFocused(embedder_rwh));
EXPECT_FALSE(content::IsRenderWidgetHostFocused(guest_rwh));
EXPECT_NE(guest_rfh, embedder_web_contents->GetFocusedFrame());
// Try to focus the guest from the embedder.
EXPECT_TRUE(content::ExecJs(embedder_web_contents,
"document.querySelector('webview').focus()"));
embedder_observer.Wait();
guest_observer.Wait();
// Guest should be focused.
EXPECT_FALSE(content::IsRenderWidgetHostFocused(embedder_rwh));
EXPECT_TRUE(content::IsRenderWidgetHostFocused(guest_rwh));
content::RenderFrameHost* iframe_inside_guest = ChildFrameAt(guest_rfh, 0);
ASSERT_TRUE(
(guest_rfh == embedder_web_contents->GetFocusedFrame()) ||
(iframe_inside_guest == embedder_web_contents->GetFocusedFrame()));
// Try to focus an iframe in the embedder.
EXPECT_TRUE(content::ExecJs(
embedder_web_contents,
"document.body.appendChild(document.createElement('iframe'))"));
content::RenderFrameHost* iframe_rfh = ChildFrameAt(embedder_rfh, 1);
content::FrameFocusedObserver iframe_focus_observer(iframe_rfh);
EXPECT_TRUE(content::ExecJs(embedder_web_contents,
"document.querySelector('iframe').focus()"));
// Embedder is allowed to steal focus from guest.
iframe_focus_observer.Wait();
EXPECT_TRUE(content::IsRenderWidgetHostFocused(embedder_rwh));
EXPECT_FALSE(content::IsRenderWidgetHostFocused(guest_rwh));
EXPECT_EQ(iframe_rfh, embedder_web_contents->GetFocusedFrame());
}
// Tests that guests receive edit commands and respond appropriately.
IN_PROC_BROWSER_TEST_F(WebViewInteractiveTest, EditCommands) {
LoadAndLaunchPlatformApp("web_view/edit_commands", "connected");
ASSERT_TRUE(ui_test_utils::ShowAndFocusNativeWindow(GetPlatformAppWindow()));
// Flush any pending events to make sure we start with a clean slate.
content::RunAllPendingInMessageLoop();
ExtensionTestMessageListener copy_listener("copy");
SendCopyKeyPressToPlatformApp();
// Wait for the guest to receive a 'copy' edit command.
ASSERT_TRUE(copy_listener.WaitUntilSatisfied());
}
// Tests that guests receive edit commands and respond appropriately.
IN_PROC_BROWSER_TEST_F(WebViewInteractiveTest, EditCommandsNoMenu) {
ExtensionTestMessageListener focus_listener("Focused");
SetupTest("web_view/edit_commands_no_menu",
"/extensions/platform_apps/web_view/edit_commands_no_menu/"
"guest.html");
ASSERT_TRUE(ui_test_utils::ShowAndFocusNativeWindow(GetPlatformAppWindow()));
// Ensure that an input gets focused before sending a key event.
ASSERT_TRUE(focus_listener.WaitUntilSatisfied());
// Flush any pending events to make sure we start with a clean slate.
content::RunAllPendingInMessageLoop();
ExtensionTestMessageListener start_of_line_listener("StartOfLine");
SendStartOfLineKeyPressToPlatformApp();
#if BUILDFLAG(IS_MAC)
// On macOS, sending an accelerator [key-down] will also cause the subsequent
// key-up to be swallowed. The implementation of guest.html is waiting for a
// key-up to send the caret-position message. So we send a key-down/key-up of
// a character that otherwise has no effect.
ASSERT_TRUE(ui_test_utils::SendKeyPressToWindowSync(
GetPlatformAppWindow(), ui::VKEY_UP, false, false, false, false));
#endif
// Wait for the guest to receive a 'copy' edit command.
ASSERT_TRUE(start_of_line_listener.WaitUntilSatisfied());
}
// There is a problem of missing keyup events with the command key after
// the NSEvent is sent to NSApplication in ui/base/test/ui_controls_mac.mm .
// This test is disabled on only the Mac until the problem is resolved.
// See http://crbug.com/425859 for more information.
#if BUILDFLAG(IS_MAC)
#define MAYBE_NewWindow_OpenInNewTab DISABLED_NewWindow_OpenInNewTab
#else
#define MAYBE_NewWindow_OpenInNewTab NewWindow_OpenInNewTab
#endif
// Tests that Ctrl+Click/Cmd+Click on a link fires up the newwindow API.
IN_PROC_BROWSER_TEST_F(WebViewInteractiveTest, MAYBE_NewWindow_OpenInNewTab) {
content::WebContents* embedder_web_contents = nullptr;
ExtensionTestMessageListener loaded_listener("Loaded");
std::unique_ptr<ExtensionTestMessageListener> done_listener(
RunAppHelper("testNewWindowOpenInNewTab", "web_view/newwindow",
NEEDS_TEST_SERVER, &embedder_web_contents));
EXPECT_TRUE(loaded_listener.WaitUntilSatisfied());
#if BUILDFLAG(IS_MAC)
ASSERT_TRUE(ui_test_utils::SendKeyPressToWindowSync(
GetPlatformAppWindow(), ui::VKEY_RETURN, false, false, false,
true /* cmd */));
#else
ASSERT_TRUE(ui_test_utils::SendKeyPressToWindowSync(
GetPlatformAppWindow(), ui::VKEY_RETURN, true /* ctrl */, false, false,
false));
#endif
// Wait for the embedder to receive a 'newwindow' event.
ASSERT_TRUE(done_listener->WaitUntilSatisfied());
}
IN_PROC_BROWSER_TEST_F(DISABLED_WebViewPopupInteractiveTest,
PopupPositioningBasic) {
TestHelper("testBasic", "web_view/popup_positioning", NO_TEST_SERVER);
ASSERT_TRUE(GetGuestView());
PopupTestHelper(gfx::Point());
// TODO(lazyboy): Move the embedder window to a random location and
// make sure we keep rendering popups correct in webview.
}
// Flaky on ChromeOS and Linux: http://crbug.com/526886
// TODO(crbug.com/40560638): Flaky on Mac.
// TODO(crbug.com/41369000): Flaky on Windows.
// Tests that moving browser plugin (without resize/UpdateRects) correctly
// repositions popup.
IN_PROC_BROWSER_TEST_F(DISABLED_WebViewPopupInteractiveTest,
PopupPositioningMoved) {
TestHelper("testMoved", "web_view/popup_positioning", NO_TEST_SERVER);
ASSERT_TRUE(GetGuestView());
PopupTestHelper(gfx::Point(20, 0));
}
IN_PROC_BROWSER_TEST_F(WebViewInteractiveTest, Navigation) {
TestHelper("testNavigation", "web_view/navigation", NO_TEST_SERVER);
}
IN_PROC_BROWSER_TEST_F(WebViewInteractiveTest, Navigation_BackForwardKeys) {
LoadAndLaunchPlatformApp("web_view/navigation", "Launched");
ASSERT_TRUE(ui_test_utils::ShowAndFocusNativeWindow(GetPlatformAppWindow()));
// Flush any pending events to make sure we start with a clean slate.
content::RunAllPendingInMessageLoop();
content::WebContents* embedder_web_contents = GetFirstAppWindowWebContents();
ASSERT_TRUE(embedder_web_contents);
ExtensionTestMessageListener done_listener("TEST_PASSED");
done_listener.set_failure_message("TEST_FAILED");
ExtensionTestMessageListener ready_back_key_listener("ReadyForBackKey");
ExtensionTestMessageListener ready_forward_key_listener("ReadyForForwardKey");
EXPECT_TRUE(
content::ExecJs(embedder_web_contents, "runTest('testBackForwardKeys')"));
ASSERT_TRUE(ready_back_key_listener.WaitUntilSatisfied());
SendBackShortcutToPlatformApp();
ASSERT_TRUE(ready_forward_key_listener.WaitUntilSatisfied());
SendForwardShortcutToPlatformApp();
ASSERT_TRUE(done_listener.WaitUntilSatisfied());
}
IN_PROC_BROWSER_TEST_F(WebViewPointerLockInteractiveTest,
PointerLock_PointerLockLostWithFocus) {
TestHelper("testPointerLockLostWithFocus", "web_view/pointerlock",
NO_TEST_SERVER);
}
IN_PROC_BROWSER_TEST_F(WebViewInteractiveTest,
FullscreenAllow_EmbedderHasPermission) {
#if BUILDFLAG(IS_MAC)
ui::test::ScopedFakeNSWindowFullscreen fake_fullscreen;
#endif
FullscreenTestHelper("testFullscreenAllow",
"web_view/fullscreen/embedder_has_permission");
}
IN_PROC_BROWSER_TEST_F(WebViewInteractiveTest,
FullscreenDeny_EmbedderHasPermission) {
FullscreenTestHelper("testFullscreenDeny",
"web_view/fullscreen/embedder_has_permission");
}
IN_PROC_BROWSER_TEST_F(WebViewInteractiveTest,
FullscreenAllow_EmbedderHasNoPermission) {
FullscreenTestHelper("testFullscreenAllow",
"web_view/fullscreen/embedder_has_no_permission");
}
IN_PROC_BROWSER_TEST_F(WebViewInteractiveTest,
FullscreenDeny_EmbedderHasNoPermission) {
FullscreenTestHelper("testFullscreenDeny",
"web_view/fullscreen/embedder_has_no_permission");
}
// This test exercies the following scenario:
// 1. An <input> in guest has focus.
// 2. User takes focus to embedder by clicking e.g. an <input> in embedder.
// 3. User brings back the focus directly to the <input> in #1.
//
// Now we need to make sure TextInputTypeChanged fires properly for the guest's
// view upon step #3. We simply read the input type's state after #3 to
// make sure it's not TEXT_INPUT_TYPE_NONE.
IN_PROC_BROWSER_TEST_F(WebViewFocusInteractiveTest, Focus_FocusRestored) {
TestHelper("testFocusRestored", "web_view/focus", NO_TEST_SERVER);
content::WebContents* embedder_web_contents = GetFirstAppWindowWebContents();
ASSERT_TRUE(embedder_web_contents);
content::RenderFrameHost* guest_rfh = GetGuestRenderFrameHost();
ASSERT_TRUE(guest_rfh);
// 1) We click on the guest so that we get a focus event.
ExtensionTestMessageListener next_step_listener("TEST_STEP_PASSED");
next_step_listener.set_failure_message("TEST_STEP_FAILED");
{
WaitForHitTestData(guest_rfh);
content::SimulateMouseClickAt(
embedder_web_contents, 0, blink::WebMouseEvent::Button::kLeft,
guest_rfh->GetView()->TransformPointToRootCoordSpace(
gfx::Point(10, 10)));
EXPECT_TRUE(content::ExecJs(
embedder_web_contents,
"window.runCommand('testFocusRestoredRunNextStep', 1);"));
}
// Wait for the next step to complete.
ASSERT_TRUE(next_step_listener.WaitUntilSatisfied());
// 2) We click on the embedder so the guest's focus goes away and it observes
// a blur event.
next_step_listener.Reset();
{
content::SimulateMouseClickAt(embedder_web_contents, 0,
blink::WebMouseEvent::Button::kLeft,
gfx::Point(200, 20));
EXPECT_TRUE(content::ExecJs(
embedder_web_contents,
"window.runCommand('testFocusRestoredRunNextStep', 2);"));
}
// Wait for the next step to complete.
ASSERT_TRUE(next_step_listener.WaitUntilSatisfied());
// 3) We click on the guest again to bring back focus directly to the previous
// input element, then we ensure text_input_type is properly set.
next_step_listener.Reset();
{
WaitForHitTestData(guest_rfh);
content::SimulateMouseClickAt(
embedder_web_contents, 0, blink::WebMouseEvent::Button::kLeft,
guest_rfh->GetView()->TransformPointToRootCoordSpace(
gfx::Point(10, 10)));
EXPECT_TRUE(content::ExecJs(
embedder_web_contents,
"window.runCommand('testFocusRestoredRunNextStep', 3)"));
}
// Wait for the next step to complete.
ASSERT_TRUE(next_step_listener.WaitUntilSatisfied());
// |text_input_client| is not available for mac and android.
#if !BUILDFLAG(IS_MAC) && !BUILDFLAG(IS_ANDROID)
ui::TextInputClient* text_input_client =
embedder_web_contents->GetPrimaryMainFrame()
->GetRenderViewHost()
->GetWidget()
->GetView()
->GetTextInputClient();
ASSERT_TRUE(text_input_client);
ASSERT_TRUE(text_input_client->GetTextInputType() !=
ui::TEXT_INPUT_TYPE_NONE);
#endif
}
// ui::TextInputClient is NULL for mac and android.
#if !BUILDFLAG(IS_MAC) && !BUILDFLAG(IS_ANDROID)
#if defined(ADDRESS_SANITIZER) || BUILDFLAG(IS_WIN)
#define MAYBE_Focus_InputMethod DISABLED_Focus_InputMethod
#else
#define MAYBE_Focus_InputMethod Focus_InputMethod
#endif
IN_PROC_BROWSER_TEST_F(WebViewInteractiveTest, MAYBE_Focus_InputMethod) {
content::WebContents* embedder_web_contents = nullptr;
std::unique_ptr<ExtensionTestMessageListener> done_listener(
RunAppHelper("testInputMethod", "web_view/focus", NO_TEST_SERVER,
&embedder_web_contents));
ASSERT_TRUE(done_listener->WaitUntilSatisfied());
ui::TextInputClient* text_input_client =
embedder_web_contents->GetPrimaryMainFrame()
->GetRenderViewHost()
->GetWidget()
->GetView()
->GetTextInputClient();
ASSERT_TRUE(text_input_client);
ExtensionTestMessageListener next_step_listener("TEST_STEP_PASSED");
next_step_listener.set_failure_message("TEST_STEP_FAILED");
// An input element inside the <webview> gets focus and is given some
// user input via IME.
{
ui::CompositionText composition;
composition.text = u"InputTest123";
text_input_client->SetCompositionText(composition);
EXPECT_TRUE(
content::ExecJs(embedder_web_contents,
"window.runCommand('testInputMethodRunNextStep', 1);"));
// Wait for the next step to complete.
ASSERT_TRUE(next_step_listener.WaitUntilSatisfied());
}
// A composition is committed via IME.
{
next_step_listener.Reset();
ui::CompositionText composition;
composition.text = u"InputTest456";
text_input_client->SetCompositionText(composition);
text_input_client->ConfirmCompositionText(/* keep_selection */ false);
EXPECT_TRUE(
content::ExecJs(embedder_web_contents,
"window.runCommand('testInputMethodRunNextStep', 2);"));
// Wait for the next step to complete.
ASSERT_TRUE(next_step_listener.WaitUntilSatisfied());
}
// TODO(lazyboy): http://crbug.com/457007, Add a step or a separate test to
// check the following, currently it turns this test to be flaky:
// If we move the focus from the first <input> to the second one after we
// have some composition text set but *not* committed (by calling
// text_input_client->SetCompositionText()), then it would cause IME cancel
// and the onging composition is committed in the first <input> in the
// <webview>, not the second one.
// Tests ExtendSelectionAndDelete message works in <webview>.
// https://crbug.com/971985
{
next_step_listener.Reset();
// At this point we have set focus on first <input> in the <webview>,
// and the value it contains is 'InputTest456' with caret set after 'T'.
// Now we delete 'Test' in 'InputTest456', as the caret is after 'T':
// delete before 1 character ('T') and after 3 characters ('est').
text_input_client->ExtendSelectionAndDelete(1, 3);
EXPECT_TRUE(
content::ExecJs(embedder_web_contents,
"window.runCommand('testInputMethodRunNextStep', 3);"));
// Wait for the next step to complete.
ASSERT_TRUE(next_step_listener.WaitUntilSatisfied());
}
}
#endif
#if BUILDFLAG(IS_LINUX) || \
BUILDFLAG(IS_CHROMEOS) // TODO(crbug.com/41364503): Flaky.
#define MAYBE_LongPressSelection DISABLED_LongPressSelection
#else
#define MAYBE_LongPressSelection LongPressSelection
#endif
#if !BUILDFLAG(IS_MAC)
IN_PROC_BROWSER_TEST_F(WebViewInteractiveTest, MAYBE_LongPressSelection) {
SetupTest("web_view/text_selection",
"/extensions/platform_apps/web_view/text_selection/guest.html");
ASSERT_TRUE(GetGuestView());
ASSERT_TRUE(embedder_web_contents());
ASSERT_TRUE(ui_test_utils::ShowAndFocusNativeWindow(GetPlatformAppWindow()));
blink::WebInputEvent::Type context_menu_gesture_event_type =
blink::WebInputEvent::Type::kGestureLongPress;
#if BUILDFLAG(IS_WIN)
context_menu_gesture_event_type = blink::WebInputEvent::Type::kGestureLongTap;
#endif
auto filter = std::make_unique<content::InputMsgWatcher>(
GetGuestRenderFrameHost()->GetRenderWidgetHost(),
context_menu_gesture_event_type);
// Wait for guest to load (without this the events never reach the guest).
std::unique_ptr<base::RunLoop> run_loop = std::make_unique<base::RunLoop>();
base::SingleThreadTaskRunner::GetCurrentDefault()->PostDelayedTask(
FROM_HERE, run_loop->QuitClosure(), base::Milliseconds(200));
run_loop->Run();
gfx::Rect guest_rect = GetGuestRenderFrameHost()->GetView()->GetViewBounds();
gfx::Point embedder_origin =
embedder_web_contents()->GetContainerBounds().origin();
guest_rect.Offset(-embedder_origin.x(), -embedder_origin.y());
// Mouse click is necessary for focus.
content::SimulateMouseClickAt(embedder_web_contents(), 0,
blink::WebMouseEvent::Button::kLeft,
guest_rect.CenterPoint());
content::SimulateLongTapAt(embedder_web_contents(), guest_rect.CenterPoint());
EXPECT_EQ(blink::mojom::InputEventResultState::kConsumed,
filter->GetAckStateWaitIfNecessary());
// Give enough time for the quick menu to fire.
run_loop = std::make_unique<base::RunLoop>();
base::SingleThreadTaskRunner::GetCurrentDefault()->PostDelayedTask(
FROM_HERE, run_loop->QuitClosure(), base::Milliseconds(200));
run_loop->Run();
// TODO: Fix quick menu opening on Windows.
#if !BUILDFLAG(IS_WIN)
EXPECT_TRUE(ui::TouchSelectionMenuRunner::GetInstance()->IsRunning());
#endif
EXPECT_FALSE(GetGuestView()->web_contents()->IsShowingContextMenu());
}
#endif
#if BUILDFLAG(IS_MAC)
IN_PROC_BROWSER_TEST_F(WebViewInteractiveTest, TextSelection) {
SetupTest("web_view/text_selection",
"/extensions/platform_apps/web_view/text_selection/guest.html");
ASSERT_TRUE(GetGuestView());
ASSERT_TRUE(ui_test_utils::ShowAndFocusNativeWindow(
GetPlatformAppWindow()));
// Wait until guest sees a context menu.
ExtensionTestMessageListener ctx_listener("MSG_CONTEXTMENU");
ContextMenuWaiter menu_observer;
SimulateRWHMouseClick(GetGuestRenderFrameHost()->GetRenderWidgetHost(),
blink::WebMouseEvent::Button::kRight, 20, 20);
menu_observer.WaitForMenuOpenAndClose();
ASSERT_TRUE(ctx_listener.WaitUntilSatisfied());
// Now verify that the selection text propagates properly to RWHV.
content::RenderWidgetHostView* guest_rwhv =
GetGuestRenderFrameHost()->GetView();
ASSERT_TRUE(guest_rwhv);
std::string selected_text = base::UTF16ToUTF8(guest_rwhv->GetSelectedText());
ASSERT_GE(selected_text.size(), 10u);
ASSERT_EQ("AAAAAAAAAA", selected_text.substr(0, 10));
}
// Verifies that asking for a word lookup from a guest will lead to a returned
// mojo callback from the renderer containing the right selected word.
IN_PROC_BROWSER_TEST_F(WebViewInteractiveTest, WordLookup) {
SetupTest("web_view/text_selection",
"/extensions/platform_apps/web_view/text_selection/guest.html");
ASSERT_TRUE(GetGuestView());
ASSERT_TRUE(ui_test_utils::ShowAndFocusNativeWindow(GetPlatformAppWindow()));
content::TextInputTestLocalFrame text_input_local_frame;
text_input_local_frame.SetUp(GetGuestRenderFrameHost());
// Lookup some string through context menu.
ContextMenuNotificationObserver menu_observer(IDC_CONTENT_CONTEXT_LOOK_UP);
// Simulating a mouse click at a position to highlight text in guest and
// showing the context menu.
SimulateRWHMouseClick(GetGuestRenderFrameHost()->GetRenderWidgetHost(),
blink::WebMouseEvent::Button::kRight, 20, 20);
// Wait for the response form the guest renderer.
text_input_local_frame.WaitForGetStringForRange();
// Sanity check.
ASSERT_EQ("AAAA", text_input_local_frame.GetStringFromRange().substr(0, 4));
}
#endif
// Flaky on Mac: http://crbug.com/811893
// Flaky on Linux/ChromeOS/Windows: http://crbug.com/845638
#if BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || \
BUILDFLAG(IS_WIN)
#define MAYBE_FocusAndVisibility DISABLED_FocusAndVisibility
#else
#define MAYBE_FocusAndVisibility FocusAndVisibility
#endif
IN_PROC_BROWSER_TEST_F(WebViewFocusInteractiveTest, MAYBE_FocusAndVisibility) {
ASSERT_TRUE(StartEmbeddedTestServer());
LoadAndLaunchPlatformApp("web_view/focus_visibility",
"WebViewInteractiveTest.LOADED");
ExtensionTestMessageListener test_init_listener(
"WebViewInteractiveTest.WebViewInitialized");
SendMessageToEmbedder("init-oopif");
EXPECT_TRUE(test_init_listener.WaitUntilSatisfied());
// Send several tab-keys. The button inside webview should receive focus at
// least once.
ExtensionTestMessageListener key_processed_listener(
"WebViewInteractiveTest.KeyUp");
#if BUILDFLAG(IS_MAC)
// On mac, the event listener seems one key event behind and deadlocks. Send
// an extra tab to get things unblocked. See http://crbug.com/685281 when
// fixed, this can be removed.
SendKeyPressToPlatformApp(ui::VKEY_TAB);
#endif
for (size_t i = 0; i < 4; ++i) {
key_processed_listener.Reset();
SendKeyPressToPlatformApp(ui::VKEY_TAB);
EXPECT_TRUE(key_processed_listener.WaitUntilSatisfied());
}
// Verify that the button in the guest receives focus.
ExtensionTestMessageListener webview_button_focused_listener(
"WebViewInteractiveTest.WebViewButtonWasFocused");
webview_button_focused_listener.set_failure_message(
"WebViewInteractiveTest.WebViewButtonWasNotFocused");
SendMessageToEmbedder("verify");
EXPECT_TRUE(webview_button_focused_listener.WaitUntilSatisfied());
// Reset the test and now make the <webview> invisible.
ExtensionTestMessageListener reset_listener(
"WebViewInteractiveTest.DidReset");
SendMessageToEmbedder("reset");
EXPECT_TRUE(reset_listener.WaitUntilSatisfied());
ExtensionTestMessageListener did_hide_webview_listener(
"WebViewInteractiveTest.DidHideWebView");
SendMessageToEmbedder("hide-webview");
EXPECT_TRUE(did_hide_webview_listener.WaitUntilSatisfied());
// Send the same number of keys and verify that the webview button was not
// this time.
for (size_t i = 0; i < 4; ++i) {
key_processed_listener.Reset();
SendKeyPressToPlatformApp(ui::VKEY_TAB);
EXPECT_TRUE(key_processed_listener.WaitUntilSatisfied());
}
ExtensionTestMessageListener webview_button_not_focused_listener(
"WebViewInteractiveTest.WebViewButtonWasNotFocused");
webview_button_not_focused_listener.set_failure_message(
"WebViewInteractiveTest.WebViewButtonWasFocused");
SendMessageToEmbedder("verify");
EXPECT_TRUE(webview_button_not_focused_listener.WaitUntilSatisfied());
}
// Flaky timeouts on Linux. https://crbug.com/709202
// Flaky timeouts on Win. https://crbug.com/846695
// Flaky timeouts on Mac. https://crbug.com/1520415
IN_PROC_BROWSER_TEST_F(WebViewInteractiveTest, DISABLED_KeyboardFocusSimple) {
TestHelper("testKeyboardFocusSimple", "web_view/focus", NO_TEST_SERVER);
EXPECT_EQ(embedder_web_contents()->GetFocusedFrame(),
embedder_web_contents()->GetPrimaryMainFrame());
ExtensionTestMessageListener next_step_listener("TEST_STEP_PASSED");
next_step_listener.set_failure_message("TEST_STEP_FAILED");
{
gfx::Rect offset = embedder_web_contents()->GetContainerBounds();
// Click the <input> element inside the <webview>.
// If we wanted, we could ask the embedder to compute an appropriate point.
MoveMouseInsideWindow(gfx::Point(offset.x() + 40, offset.y() + 40));
SendMouseClick(ui_controls::LEFT);
}
// Waits for the renderer to know the input has focus.
ASSERT_TRUE(next_step_listener.WaitUntilSatisfied());
ASSERT_TRUE(ui_test_utils::SendKeyPressToWindowSync(
GetPlatformAppWindow(), ui::VKEY_A, false, false, false, false));
ASSERT_TRUE(ui_test_utils::SendKeyPressToWindowSync(
GetPlatformAppWindow(), ui::VKEY_B, false, true, false, false));
ASSERT_TRUE(ui_test_utils::SendKeyPressToWindowSync(
GetPlatformAppWindow(), ui::VKEY_C, false, false, false, false));
next_step_listener.Reset();
EXPECT_TRUE(content::ExecJs(
embedder_web_contents(),
"window.runCommand('testKeyboardFocusRunNextStep', 'aBc');"));
ASSERT_TRUE(next_step_listener.WaitUntilSatisfied());
}
// Ensures that input is routed to the webview after the containing window loses
// and regains focus. Additionally, the webview does not process keypresses sent
// while another window is focused.
// http://crbug.com/660044.
// Flaky on MacOSX, crbug.com/817067.
// Flaky on linux, crbug.com/706830.
// Flaky on Windows, crbug.com/847201.
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_MAC) || \
BUILDFLAG(IS_WIN)
#define MAYBE_KeyboardFocusWindowCycle DISABLED_KeyboardFocusWindowCycle
#else
#define MAYBE_KeyboardFocusWindowCycle KeyboardFocusWindowCycle
#endif
IN_PROC_BROWSER_TEST_F(WebViewInteractiveTest, MAYBE_KeyboardFocusWindowCycle) {
TestHelper("testKeyboardFocusWindowFocusCycle", "web_view/focus",
NO_TEST_SERVER);
EXPECT_EQ(embedder_web_contents()->GetFocusedFrame(),
embedder_web_contents()->GetPrimaryMainFrame());
ExtensionTestMessageListener next_step_listener("TEST_STEP_PASSED");
next_step_listener.set_failure_message("TEST_STEP_FAILED");
{
gfx::Rect offset = embedder_web_contents()->GetContainerBounds();
// Click the <input> element inside the <webview>.
// If we wanted, we could ask the embedder to compute an appropriate point.
MoveMouseInsideWindow(gfx::Point(offset.x() + 40, offset.y() + 40));
SendMouseClick(ui_controls::LEFT);
}
// Waits for the renderer to know the input has focus.
ASSERT_TRUE(next_step_listener.WaitUntilSatisfied());
ASSERT_TRUE(ui_test_utils::SendKeyPressToWindowSync(
GetPlatformAppWindow(), ui::VKEY_A, false, false, false, false));
ASSERT_TRUE(ui_test_utils::SendKeyPressToWindowSync(
GetPlatformAppWindow(), ui::VKEY_B, false, true, false, false));
ASSERT_TRUE(ui_test_utils::SendKeyPressToWindowSync(
GetPlatformAppWindow(), ui::VKEY_C, false, false, false, false));
const extensions::Extension* extension =
LoadAndLaunchPlatformApp("minimal", "Launched");
extensions::AppWindow* window = GetFirstAppWindowForApp(extension->id());
EXPECT_TRUE(
content::ExecJs(embedder_web_contents(),
"window.runCommand('monitorGuestEvent', 'focus');"));
ASSERT_TRUE(ui_test_utils::SendKeyPressToWindowSync(
GetPlatformAppWindow(), ui::VKEY_F, false, false, false, false));
ASSERT_TRUE(ui_test_utils::SendKeyPressToWindowSync(
GetPlatformAppWindow(), ui::VKEY_O, false, true, false, false));
ASSERT_TRUE(ui_test_utils::SendKeyPressToWindowSync(
GetPlatformAppWindow(), ui::VKEY_O, false, true, false, false));
// Close the other window and wait for the webview to regain focus.
CloseAppWindow(window);
ASSERT_TRUE(ui_test_utils::ShowAndFocusNativeWindow(GetPlatformAppWindow()));
next_step_listener.Reset();
EXPECT_TRUE(content::ExecJs(embedder_web_contents(),
"window.runCommand('waitGuestEvent', 'focus');"));
ASSERT_TRUE(next_step_listener.WaitUntilSatisfied());
ASSERT_TRUE(ui_test_utils::SendKeyPressToWindowSync(
GetPlatformAppWindow(), ui::VKEY_X, false, false, false, false));
ASSERT_TRUE(ui_test_utils::SendKeyPressToWindowSync(
GetPlatformAppWindow(), ui::VKEY_Y, false, true, false, false));
ASSERT_TRUE(ui_test_utils::SendKeyPressToWindowSync(
GetPlatformAppWindow(), ui::VKEY_Z, false, false, false, false));
next_step_listener.Reset();
EXPECT_TRUE(content::ExecJs(
embedder_web_contents(),
"window.runCommand('testKeyboardFocusRunNextStep', 'aBcxYz');"));
ASSERT_TRUE(next_step_listener.WaitUntilSatisfied());
}
// Ensure that destroying a <webview> with a pending mouse lock request doesn't
// leave a stale mouse lock widget pointer in the embedder WebContents. See
// https://crbug.com/1346245.
// Flaky: crbug.com/1424552
IN_PROC_BROWSER_TEST_F(WebViewInteractiveTest,
DISABLED_DestroyGuestWithPendingPointerLock) {
LoadAndLaunchPlatformApp("web_view/pointer_lock_pending",
"WebViewTest.LAUNCHED");
content::WebContents* embedder_web_contents = GetFirstAppWindowWebContents();
content::RenderFrameHost* guest_rfh =
GetGuestViewManager()->WaitForSingleGuestRenderFrameHostCreated();
// The embedder is configured to remove the <webview> as soon as it receives
// the pointer lock permission request from the guest, without responding to
// it. Hence, have the guest request pointer lock and wait for its
// destruction.
content::RenderFrameDeletedObserver observer(guest_rfh);
EXPECT_TRUE(content::ExecJs(
guest_rfh, "document.querySelector('div').requestPointerLock()"));
observer.WaitUntilDeleted();
// The embedder WebContents shouldn't have a mouse lock widget.
EXPECT_FALSE(GetMouseLockWidget(embedder_web_contents));
// Close the embedder app and ensure that this doesn't crash, which used to
// be the case if the mouse lock widget (now destroyed) hadn't been cleared
// in the embedder.
content::WebContentsDestroyedWatcher destroyed_watcher(embedder_web_contents);
CloseAppWindow(GetFirstAppWindow());
destroyed_watcher.Wait();
}
#if BUILDFLAG(IS_MAC)
// This test verifies that replacement range for IME works with <webview>s. To
// verify this, a <webview> with an <input> inside is loaded. Then the <input>
// is focused and populated with some text. The test then sends an IPC to
// commit some text which will replace part of the previous text some new text.
IN_PROC_BROWSER_TEST_F(WebViewImeInteractiveTest,
CommitTextWithReplacementRange) {
ASSERT_TRUE(StartEmbeddedTestServer()); // For serving guest pages.
LoadAndLaunchPlatformApp("web_view/ime", "WebViewImeTest.Launched");
ASSERT_TRUE(ui_test_utils::ShowAndFocusNativeWindow(GetPlatformAppWindow()));
// Flush any pending events to make sure we start with a clean slate.
content::RunAllPendingInMessageLoop();
auto* guest_rfh = GetGuestViewManager()->GetLastGuestRenderFrameHostCreated();
// Click the <input> element inside the <webview>. In its focus handle, the
// <input> inside the <webview> initializes its value to "A B X D".
ExtensionTestMessageListener focus_listener("WebViewImeTest.InputFocused");
WaitForHitTestData(guest_rfh);
// The guest page has a large input box and (50, 50) lies inside the box.
content::SimulateMouseClickAt(
GetGuestViewManager()->GetLastGuestViewCreated()->embedder_web_contents(),
0, blink::WebMouseEvent::Button::kLeft,
guest_rfh->GetView()->TransformPointToRootCoordSpace(gfx::Point(50, 50)));
EXPECT_TRUE(focus_listener.WaitUntilSatisfied());
// Verify the text inside the <input> is "A B X D".
EXPECT_EQ("A B X D", content::EvalJs(guest_rfh,
"document.querySelector('"
"input').value"));
// Now commit "C" to to replace the range (4, 5).
// For OOPIF guests, the target for IME is the RWH for the guest's main frame.
// For BrowserPlugin-based guests, input always goes to the embedder.
ExtensionTestMessageListener input_listener("WebViewImetest.InputReceived");
content::SendImeCommitTextToWidget(guest_rfh->GetRenderWidgetHost(), u"C",
std::vector<ui::ImeTextSpan>(),
gfx::Range(4, 5), 0);
EXPECT_TRUE(input_listener.WaitUntilSatisfied());
// Get the input value from the guest.
EXPECT_EQ("A B C D", content::EvalJs(guest_rfh,
"document.querySelector('"
"input').value"));
}
#endif // BUILDFLAG(IS_MAC)
// This test verifies that focusing an input inside a <webview> will put the
// guest process's render widget into a monitoring mode for composition range
// changes.
IN_PROC_BROWSER_TEST_F(WebViewImeInteractiveTest, CompositionRangeUpdates) {
ASSERT_TRUE(StartEmbeddedTestServer()); // For serving guest pages.
LoadAndLaunchPlatformApp("web_view/ime", "WebViewImeTest.Launched");
ASSERT_TRUE(ui_test_utils::ShowAndFocusNativeWindow(GetPlatformAppWindow()));
// Flush any pending events to make sure we start with a clean slate.
content::RunAllPendingInMessageLoop();
guest_view::GuestViewBase* guest_view =
GetGuestViewManager()->GetLastGuestViewCreated();
// Click the <input> element inside the <webview>. In its focus handle, the
// <input> inside the <webview> initializes its value to "A B X D".
ExtensionTestMessageListener focus_listener("WebViewImeTest.InputFocused");
content::WebContents* embedder_web_contents =
guest_view->embedder_web_contents();
WaitForHitTestData(guest_view->GetGuestMainFrame());
// The guest page has a large input box and (50, 50) lies inside the box.
content::SimulateMouseClickAt(
embedder_web_contents, 0, blink::WebMouseEvent::Button::kLeft,
guest_view->GetGuestMainFrame()
->GetView()
->TransformPointToRootCoordSpace(gfx::Point(50, 50)));
EXPECT_TRUE(focus_listener.WaitUntilSatisfied());
// Clear the string as it already contains some text. Then verify the text in
// the <input> is empty.
EXPECT_EQ("", content::EvalJs(guest_view->GetGuestMainFrame(),
"var input = document.querySelector('input');"
"input.value = '';"
"document.querySelector('input').value"));
// Now set some composition text which should lead to an update in composition
// range information.
CompositionRangeUpdateObserver observer(embedder_web_contents);
content::SendImeSetCompositionTextToWidget(
guest_view->GetGuestMainFrame()->GetRenderWidgetHost(), u"ABC",
std::vector<ui::ImeTextSpan>(), gfx::Range::InvalidRange(), 0, 3);
observer.WaitForCompositionRangeLength(3U);
}
#if BUILDFLAG(IS_MAC)
// This test verifies that drop-down lists appear correctly inside OOPIF-based
// webviews which have offset inside embedder. This is a test for all guest
// views as the logic for showing such popups is inside content/ layer. For more
// context see https://crbug.com/41348804.
IN_PROC_BROWSER_TEST_F(WebViewFocusInteractiveTest,
DropDownPopupInCorrectPosition) {
TestHelper("testSelectPopupPositionInMac", "web_view/shim", NO_TEST_SERVER);
ASSERT_TRUE(GetGuestRenderFrameHost());
// This is set in javascript.
const float distance_from_root_view_origin = 250.0;
// Verify that the view is offset inside root view as expected.
content::RenderWidgetHostView* guest_rwhv =
GetGuestRenderFrameHost()->GetView();
EXPECT_TRUE(base::test::RunUntil([&]() {
return guest_rwhv->TransformPointToRootCoordSpace(gfx::Point())
.OffsetFromOrigin()
.Length() >= distance_from_root_view_origin;
}));
// Now trigger the popup and wait for the callback that indicates that it
// would have been displayed.
PopupShowAttemptObserver popup_observer(embedder_web_contents_);
// Now send a mouse click and wait until the <select> tag is focused.
SimulateRWHMouseClick(guest_rwhv->GetRenderWidgetHost(),
blink::WebMouseEvent::Button::kLeft, 5, 5);
popup_observer.WaitForPopup();
// Verify that the popup bounds (where it would have been displayed) intersect
// with the bounds of the guest. Since the popup is relatively small (the
// width is determined by the <select> element's width and the height is a
// factor of font-size and number of items), the intersection alone is a good
// indication the popup is shown properly inside the screen.
gfx::Rect guest_bounds_in_embedder(
guest_rwhv->TransformPointToRootCoordSpace(gfx::Point()),
guest_rwhv->GetViewBounds().size());
EXPECT_TRUE(guest_bounds_in_embedder.Intersects(
popup_observer.view_bounds_in_screen()))
<< "Guest bounds:" << guest_bounds_in_embedder.ToString()
<< " do not intersect with popup bounds:"
<< popup_observer.view_bounds_in_screen().ToString();
}
#endif
// Check that when a focused <webview> navigates cross-process, the focus
// is preserved in the new page. See https://crbug.com/1358210.
IN_PROC_BROWSER_TEST_F(WebViewInteractiveTest,
FocusPreservedAfterCrossProcessNavigation) {
// Load and show a platform app with a <webview> on a data: URL.
ASSERT_TRUE(StartEmbeddedTestServer());
LoadAndLaunchPlatformApp("web_view/simple", "WebViewTest.LAUNCHED");
ASSERT_TRUE(ui_test_utils::ShowAndFocusNativeWindow(GetPlatformAppWindow()));
content::WebContents* embedder_web_contents = GetFirstAppWindowWebContents();
embedder_web_contents->Focus();
// Ensure that the guest is focused before the next navigation. To do so,
// have the embedder focus the <webview> element.
content::RenderFrameHost* guest_rfh =
GetGuestViewManager()->WaitForSingleGuestRenderFrameHostCreated();
content::FrameFocusedObserver focus_observer(guest_rfh);
EXPECT_TRUE(content::ExecJs(embedder_web_contents,
"document.querySelector('webview').focus()"));
focus_observer.Wait();
ASSERT_TRUE(
content::IsRenderWidgetHostFocused(guest_rfh->GetRenderWidgetHost()));
EXPECT_EQ(guest_rfh, embedder_web_contents->GetFocusedFrame());
// Wait for guest's document to consider itself focused. This avoids
// flakiness on some platforms.
// TODO(crbug.com/41492111): `base::test::RunUntil` times out on mac.
while (!content::EvalJs(guest_rfh, "document.hasFocus()").ExtractBool()) {
base::RunLoop run_loop;
base::SingleThreadTaskRunner::GetCurrentDefault()->PostDelayedTask(
FROM_HERE, run_loop.QuitClosure(), TestTimeouts::tiny_timeout());
run_loop.Run();
}
// Perform a cross-process navigation in the <webview> and verify that the
// new RenderFrameHost's RenderWidgetHost remains focused.
const GURL guest_url =
embedded_test_server()->GetURL("a.test", "/title1.html");
content::TestFrameNavigationObserver observer(guest_rfh);
EXPECT_TRUE(ExecJs(guest_rfh, "location.href = '" + guest_url.spec() + "';"));
observer.Wait();
EXPECT_TRUE(observer.last_navigation_succeeded());
content::RenderFrameHost* guest_rfh2 =
GetGuestViewManager()->GetLastGuestRenderFrameHostCreated();
EXPECT_NE(guest_rfh, guest_rfh2);
EXPECT_EQ(guest_url, guest_rfh2->GetLastCommittedURL());
EXPECT_TRUE(
content::IsRenderWidgetHostFocused(guest_rfh2->GetRenderWidgetHost()));
EXPECT_EQ(true, content::EvalJs(guest_rfh2, "document.hasFocus()"));
EXPECT_EQ(guest_rfh2, embedder_web_contents->GetFocusedFrame());
}
IN_PROC_BROWSER_TEST_F(WebViewInteractiveTest, CannotLockKeyboard) {
TestHelper("testCannotLockKeyboard", "web_view/shim", NEEDS_TEST_SERVER);
}
|