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
|
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/test/mock_callback.h"
#include <linux/input.h>
#include <wayland-server.h>
#include <array>
#include <memory>
#include <string>
#include <vector>
#include "base/containers/contains.h"
#include "base/containers/flat_set.h"
#include "base/functional/bind.h"
#include "base/pickle.h"
#include "base/strings/utf_string_conversions.h"
#include "base/task/thread_pool/thread_pool_instance.h"
#include "base/test/bind.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/base/clipboard/clipboard_constants.h"
#include "ui/base/clipboard/clipboard_format_type.h"
#include "ui/base/clipboard/file_info.h"
#include "ui/base/cursor/cursor.h"
#include "ui/base/dragdrop/drag_drop_types.h"
#include "ui/base/dragdrop/mojom/drag_drop_types.mojom.h"
#include "ui/base/dragdrop/os_exchange_data.h"
#include "ui/base/dragdrop/os_exchange_data_provider_factory.h"
#include "ui/events/base_event_utils.h"
#include "ui/gfx/geometry/point.h"
#include "ui/gfx/geometry/vector2d.h"
#include "ui/gfx/native_widget_types.h"
#include "ui/ozone/platform/wayland/host/wayland_connection.h"
#include "ui/ozone/platform/wayland/host/wayland_cursor_position.h"
#include "ui/ozone/platform/wayland/host/wayland_data_device.h"
#include "ui/ozone/platform/wayland/host/wayland_data_device_manager.h"
#include "ui/ozone/platform/wayland/host/wayland_data_drag_controller.h"
#include "ui/ozone/platform/wayland/host/wayland_data_offer.h"
#include "ui/ozone/platform/wayland/host/wayland_data_source.h"
#include "ui/ozone/platform/wayland/host/wayland_serial_tracker.h"
#include "ui/ozone/platform/wayland/host/wayland_window.h"
#include "ui/ozone/platform/wayland/test/mock_pointer.h"
#include "ui/ozone/platform/wayland/test/mock_surface.h"
#include "ui/ozone/platform/wayland/test/scoped_wl_array.h"
#include "ui/ozone/platform/wayland/test/test_data_device.h"
#include "ui/ozone/platform/wayland/test/test_data_device_manager.h"
#include "ui/ozone/platform/wayland/test/test_data_offer.h"
#include "ui/ozone/platform/wayland/test/test_data_source.h"
#include "ui/ozone/platform/wayland/test/test_keyboard.h"
#include "ui/ozone/platform/wayland/test/test_wayland_server_thread.h"
#include "ui/ozone/platform/wayland/test/wayland_drag_drop_test.h"
#include "ui/ozone/platform/wayland/test/wayland_test.h"
#include "ui/ozone/public/platform_clipboard.h"
#include "ui/platform_window/platform_window_init_properties.h"
#include "ui/platform_window/wm/wm_drag_handler.h"
#include "ui/platform_window/wm/wm_drop_handler.h"
#include "url/gurl.h"
using ::testing::_;
using ::testing::AtMost;
using ::testing::Eq;
using ::testing::Mock;
using ::testing::Values;
using ui::mojom::DragEventSource;
using ui::mojom::DragOperation;
namespace ui {
namespace {
constexpr char kSampleTextForDragAndDrop[] =
"This is a sample text for drag-and-drop.";
constexpr char16_t kSampleTextForDragAndDrop16[] =
u"This is a sample text for drag-and-drop.";
constexpr FilenameToURLPolicy kFilenameToURLPolicy =
FilenameToURLPolicy::CONVERT_FILENAMES;
template <typename StringType>
PlatformClipboard::Data ToClipboardData(const StringType& data_string) {
return base::MakeRefCounted<base::RefCountedBytes>(
base::as_byte_span(data_string));
}
} // namespace
class MockDropHandler : public WmDropHandler {
public:
MockDropHandler() = default;
~MockDropHandler() override = default;
MOCK_METHOD3(OnDragEnter,
void(const gfx::PointF& point, int operation, int modifiers));
MOCK_METHOD0(MockOnDragDataAvailable, void());
MOCK_METHOD3(MockDragMotion,
void(const gfx::PointF& point, int operation, int modifiers));
MOCK_METHOD0(MockOnDragDrop, void());
MOCK_METHOD0(OnDragLeave, void());
void SetOnDropClosure(base::RepeatingClosure closure) {
on_drop_closure_ = closure;
}
void SetPreferredOperations(int preferred_operations) {
preferred_operations_ = preferred_operations;
}
OSExchangeData* dropped_data() { return dropped_data_.get(); }
int available_operations() const { return available_operations_; }
protected:
void OnDragDataAvailable(std::unique_ptr<ui::OSExchangeData> data) override {
dropped_data_ = std::move(data);
MockOnDragDataAvailable();
}
void OnDragDrop(int modifiers) override {
MockOnDragDrop();
if (on_drop_closure_) {
on_drop_closure_.Run();
on_drop_closure_.Reset();
}
}
int OnDragMotion(const gfx::PointF& point,
int operation,
int modifiers) override {
available_operations_ = operation;
MockDragMotion(point, operation, modifiers);
return preferred_operations_;
}
private:
base::RepeatingClosure on_drop_closure_;
std::unique_ptr<OSExchangeData> dropped_data_;
int preferred_operations_ = ui::DragDropTypes::DRAG_COPY;
int available_operations_ = ui::DragDropTypes::DRAG_NONE;
};
class WaylandDataDragControllerTest : public WaylandDragDropTest {
public:
WaylandDataDragControllerTest() = default;
~WaylandDataDragControllerTest() override = default;
void SetUp() override {
WaylandDragDropTest::SetUp();
// Set output dimensions at some offset.
PostToServerAndWait([](wl::TestWaylandServerThread* server) {
auto* output = server->output();
output->SetPhysicalAndLogicalBounds({20, 30, 1200, 900});
output->Flush();
});
drop_handler_ = std::make_unique<MockDropHandler>();
SetWmDropHandler(window_.get(), drop_handler_.get());
}
WaylandDataDragController* drag_controller() const {
return connection_->data_drag_controller();
}
WaylandDataDragController::State drag_controller_state() const {
return connection_->data_drag_controller()->state_;
}
WaylandDataDevice* data_device() const {
return connection_->data_device_manager()->GetDevice();
}
MockDropHandler* drop_handler() { return drop_handler_.get(); }
WaylandConnection* connection() { return connection_.get(); }
WaylandWindow* window() { return window_.get(); }
std::u16string sample_text_for_dnd() const {
return kSampleTextForDragAndDrop16;
}
void RunMouseDragWithSampleData(WaylandWindow* origin_window,
int operations) {
ASSERT_TRUE(origin_window);
OSExchangeData os_exchange_data;
os_exchange_data.SetString(sample_text_for_dnd());
EXPECT_CALL(drag_started_callback_, Run()).Times(1);
origin_window->StartDrag(
os_exchange_data, operations, DragEventSource::kMouse, /*cursor=*/{},
/*can_grab_pointer=*/true, drag_started_callback_.Get(),
drag_finished_callback_.Get(),
/*loation delegate=*/nullptr);
}
void RunTouchDragWithSampleData(WaylandWindow* origin_window,
int operations) {
ASSERT_TRUE(origin_window);
OSExchangeData os_exchange_data;
os_exchange_data.SetString(sample_text_for_dnd());
EXPECT_CALL(drag_started_callback_, Run()).Times(1);
origin_window->StartDrag(
os_exchange_data, operations, DragEventSource::kTouch, /*cursor=*/{},
/*can_grab_pointer=*/true, drag_started_callback_.Get(),
drag_finished_callback_.Get(),
/*loation delegate=*/nullptr);
}
std::unique_ptr<WaylandWindow> CreateTestWindow(
PlatformWindowType type,
const gfx::Size& size,
MockPlatformWindowDelegate* delegate,
gfx::AcceleratedWidget context) {
CHECK(delegate);
PlatformWindowInitProperties properties{gfx::Rect(size)};
properties.type = type;
properties.parent_widget = context;
EXPECT_CALL(*delegate, OnAcceleratedWidgetAvailable(_)).Times(1);
auto window = WaylandWindow::Create(delegate, connection_.get(),
std::move(properties));
SetWmDropHandler(window.get(), drop_handler_.get());
EXPECT_NE(gfx::kNullAcceleratedWidget, window->GetWidget());
return window;
}
void ScheduleDragCancel() {
ScheduleTestTask(base::BindOnce(
[](WaylandDataDragControllerTest* self) {
// DnD handlers expect DragLeave to be sent before DragFinished when
// drag sessions end up with no data fetching (cancelled). Otherwise,
// it might lead to issues like https://crbug.com/1109324.
EXPECT_CALL(*self->drop_handler(), OnDragLeave).Times(1);
// If DnD was cancelled, or data was dropped where it was not
// accepted, the operation result must be None (0).
// Regression test for https://crbug.com/1136751.
EXPECT_CALL(self->drag_finished_callback_, Run(DragOperation::kNone))
.Times(1);
self->SendDndCancelled();
},
base::Unretained(this)));
}
void ScheduleDataDeviceAction(uint32_t action) {
ScheduleTestTask(base::BindLambdaForTesting(
[this, action]() { SendDndAction(action); }));
}
void FocusAndPressLeftPointerButton(WaylandWindow* window,
MockPlatformWindowDelegate* delegate) {
SendPointerEnter(window, delegate);
SendPointerButton(window, delegate, BTN_LEFT, /*pressed=*/true);
}
MockPlatformWindowDelegate* delegate() { return &delegate_; }
protected:
void SendMotionEvent(const gfx::Point& motion_point) {
int64_t time =
(EventTimeForNow() - base::TimeTicks()).InMilliseconds() & UINT32_MAX;
PostToServerAndWait(
[motion_point, time](wl::TestWaylandServerThread* server) {
auto* data_device = server->data_device_manager()->data_device();
ASSERT_TRUE(data_device);
data_device->OnMotion(time, wl_fixed_from_int(motion_point.x()),
wl_fixed_from_int(motion_point.y()));
});
}
// Ensure the requests/events are flushed and posted tasks get processed.
// WaylandDataDragController uses base::ThreadPool to fetch drag data offered
// in incoming sessions, so the pool must be explicitly flushed as well.
void WaitForDragDropTasks() {
base::ThreadPoolInstance::Get()->FlushForTesting();
base::RunLoop().RunUntilIdle();
}
std::unique_ptr<MockDropHandler> drop_handler_;
base::MockOnceClosure drag_started_callback_;
base::MockCallback<ui::WmDragHandler::DragFinishedCallback>
drag_finished_callback_;
};
TEST_P(WaylandDataDragControllerTest, StartDrag) {
FocusAndPressLeftPointerButton(window_.get(), &delegate_);
// Post test task to be performed asynchronously once the dnd-related protocol
// objects are ready.
ScheduleTestTask(base::BindLambdaForTesting([&]() {
// Now the server can read the data and give it to our callback.
ReadAndCheckData(kMimeTypeUtf8PlainText, kSampleTextForDragAndDrop);
SendDndCancelled();
}));
RunMouseDragWithSampleData(
window_.get(), DragDropTypes::DRAG_COPY | DragDropTypes::DRAG_MOVE);
// Ensure drag delegate it properly reset when the drag loop quits.
EXPECT_FALSE(data_device()->drag_delegate_);
}
TEST_P(WaylandDataDragControllerTest, StartDragWithWrongMimeType) {
FocusAndPressLeftPointerButton(window_.get(), &delegate_);
// The client starts dragging offering data with |kMimeTypeHtml|
OSExchangeData os_exchange_data;
os_exchange_data.SetHtml(sample_text_for_dnd(), {});
int operations = DragDropTypes::DRAG_COPY | DragDropTypes::DRAG_MOVE;
drag_controller()->StartSession(os_exchange_data, operations,
DragEventSource::kMouse);
// The server should get an empty data buffer in ReadData callback when trying
// to read it with a different mime type.
ReadAndCheckData(kMimeTypePlainText, {});
}
// Ensures data drag controller properly offers dragged data with custom
// formats. Regression test for a bunch of bugs, such as:
// - https://crbug.com/1236708
// - https://crbug.com/1207607
// - https://crbug.com/1247063
TEST_P(WaylandDataDragControllerTest, StartDragWithCustomFormats) {
FocusAndPressLeftPointerButton(window_.get(), &delegate_);
OSExchangeData data(OSExchangeDataProviderFactory::CreateProvider());
ClipboardFormatType kCustomFormats[] = {
ClipboardFormatType::DataTransferCustomType(),
ClipboardFormatType::CustomPlatformType("chromium/x-bookmark-entries"),
ClipboardFormatType::CustomPlatformType("xyz/arbitrary-custom-type")};
for (auto format : kCustomFormats) {
data.SetPickledData(format, {});
}
// The client starts dragging offering pickled data with custom formats.
drag_controller()->StartSession(data, DragDropTypes::DRAG_MOVE,
DragEventSource::kMouse);
PostToServerAndWait([kCustomFormats](wl::TestWaylandServerThread* server) {
auto* data_source = server->data_device_manager()->data_source();
ASSERT_TRUE(data_source);
auto mime_types = data_source->mime_types();
EXPECT_EQ(3u, mime_types.size());
for (auto format : kCustomFormats) {
EXPECT_TRUE(base::Contains(mime_types, format.GetName()))
<< "Format '" << format.GetName() << "' should be offered.";
}
});
}
TEST_P(WaylandDataDragControllerTest, StartDragWithFileContents) {
FocusAndPressLeftPointerButton(window_.get(), &delegate_);
// The client starts dragging offering text mime type.
OSExchangeData os_exchange_data;
os_exchange_data.SetFileContents(
base::FilePath(FILE_PATH_LITERAL("t\\est\".jpg")),
kSampleTextForDragAndDrop);
int operations = DragDropTypes::DRAG_COPY | DragDropTypes::DRAG_MOVE;
drag_controller()->StartSession(os_exchange_data, operations,
DragEventSource::kMouse);
constexpr char kText[] = "application/octet-stream;name=\"t\\\\est\\\".jpg\"";
ReadAndCheckData(kText, kSampleTextForDragAndDrop);
PostToServerAndWait([kText](wl::TestWaylandServerThread* server) {
auto* source = server->data_device_manager()->data_source();
ASSERT_TRUE(source);
EXPECT_EQ(1u, source->mime_types().size());
EXPECT_EQ(kText, source->mime_types().front());
});
}
TEST_P(WaylandDataDragControllerTest, StartDragWithEmptyMimeTypeList) {
FocusAndPressLeftPointerButton(window_.get(), &delegate_);
OSExchangeData os_exchange_data;
bool started = drag_controller()->StartSession(
os_exchange_data, DragDropTypes::DRAG_MOVE, DragEventSource::kMouse);
ASSERT_TRUE(started);
PostToServerAndWait([kExpectedMimeType = "chromium/x-empty-drag-data"](
wl::TestWaylandServerThread* server) {
auto* server_data_source = server->data_device_manager()->data_source();
ASSERT_TRUE(server_data_source);
EXPECT_EQ(server_data_source->mime_types().size(), 1u);
EXPECT_EQ(server_data_source->mime_types().back(), kExpectedMimeType);
server_data_source->OnCancelled();
});
}
// Cancels a DnD session that we initiated while the cursor is over our window.
TEST_P(WaylandDataDragControllerTest, CancelOutgoingDrag) {
FocusAndPressLeftPointerButton(window_.get(), &delegate_);
// Cancel the session once it's been fully initiated. Note that cancelling the
// session in OnDragEnter() would be too early, because when it's called we
// haven't finished our setup yet.
EXPECT_CALL(*drop_handler_, MockOnDragDataAvailable()).WillOnce([&]() {
drag_controller()->CancelSession();
});
RunMouseDragWithSampleData(
window_.get(), DragDropTypes::DRAG_COPY | DragDropTypes::DRAG_MOVE);
}
// Cancels a DnD session that we initiated while the cursor is outside of our
// window.
TEST_P(WaylandDataDragControllerTest, CancelOutgoingDragOutsideWindow) {
FocusAndPressLeftPointerButton(window_.get(), &delegate_);
// Wait for the session to be fully initiated, then send wl_data_device.leave.
EXPECT_CALL(*drop_handler_, MockOnDragDataAvailable()).WillOnce([&]() {
SendDndLeave();
});
EXPECT_CALL(*drop_handler_, OnDragLeave())
// First call happens due to our SendDndLeave() call above, second call
// because OnDragLeave() is always called for unsuccessful DnD sessions
// (see the comment in WaylandDataDragController::Reset()).
.Times(2)
.WillOnce([&]() { drag_controller()->CancelSession(); })
// Silences an extremely verbose GTest warning.
.WillOnce(::testing::Return());
RunMouseDragWithSampleData(
window_.get(), DragDropTypes::DRAG_COPY | DragDropTypes::DRAG_MOVE);
}
// Cancels an incoming DnD session on the client-side.
// Regression test for https://crbug.com/336706549.
TEST_P(WaylandDataDragControllerTest, CancelIncomingDrag) {
ASSERT_TRUE(window_);
EXPECT_CALL(*drop_handler_, OnDragEnter(_, _, _)).Times(1);
EXPECT_CALL(*drop_handler_, MockDragMotion(_, _, _)).Times(1);
EXPECT_CALL(*drop_handler_, OnDragLeave()).Times(1);
gfx::Point pointer_location = {10, 10};
PostToServerAndWait([&](wl::TestWaylandServerThread* server) {
const auto data = ToClipboardData(std::string(kSampleTextForDragAndDrop));
auto* data_device = server->data_device_manager()->data_device();
auto* data_offer = data_device->CreateAndSendDataOffer();
data_offer->OnOffer(
kMimeTypePlainText,
ToClipboardData(std::string(kSampleTextForDragAndDrop)));
const uint32_t surface_id = window_->root_surface()->get_surface_id();
auto* surface = server->GetObject<wl::MockSurface>(surface_id);
data_device->OnEnter(server->GetNextSerial(), surface->resource(),
wl_fixed_from_int(pointer_location.x()),
wl_fixed_from_int(pointer_location.y()), data_offer);
});
WaitForDragDropTasks();
EXPECT_EQ(drag_controller(), data_device()->drag_delegate_);
EXPECT_NE(drag_controller_state(), WaylandDataDragController::State::kIdle);
drag_controller()->CancelSession();
EXPECT_EQ(drag_controller_state(), WaylandDataDragController::State::kIdle);
EXPECT_FALSE(data_device()->drag_delegate_);
Mock::VerifyAndClearExpectations(drop_handler_.get());
// We shouldn't be propagating drag events after cancelling the session.
EXPECT_CALL(*drop_handler_, OnDragEnter(_, _, _)).Times(0);
EXPECT_CALL(*drop_handler_, MockDragMotion(_, _, _)).Times(0);
EXPECT_CALL(*drop_handler_, OnDragLeave()).Times(0);
pointer_location += gfx::Vector2d(10, 10);
PostToServerAndWait([&](wl::TestWaylandServerThread* server) {
server->data_device_manager()->data_device()->OnMotion(
server->GetNextTime(), wl_fixed_from_int(pointer_location.x()),
wl_fixed_from_int(pointer_location.y()));
});
SendDndLeave();
}
MATCHER_P(PointFNear, n, "") {
return arg.IsWithinDistance(n, 0.01f);
}
TEST_P(WaylandDataDragControllerTest, ReceiveDrag) {
const uint32_t surface_id = window_->root_surface()->get_surface_id();
// Consume the move event from pointer enter.
EXPECT_CALL(*drop_handler_,
MockDragMotion(PointFNear(gfx::PointF(10, 10)), _, _));
PostToServerAndWait([surface_id,
mime_type_text = std::string(kMimeTypePlainText),
sample_text = std::string(kSampleTextForDragAndDrop)](
wl::TestWaylandServerThread* server) {
// HiDPI
server->output()->SetScale(2);
server->output()->Flush();
// Place the window onto the output.
wl::MockSurface* surface = server->GetObject<wl::MockSurface>(surface_id);
wl_surface_send_enter(surface->resource(), server->output()->resource());
auto* data_device = server->data_device_manager()->data_device();
auto* data_offer = data_device->CreateAndSendDataOffer();
data_offer->OnOffer(mime_type_text, ToClipboardData(sample_text));
gfx::Point entered_point(10, 10);
// The server sends an enter event.
data_device->OnEnter(server->GetNextSerial(), surface->resource(),
wl_fixed_from_int(entered_point.x()),
wl_fixed_from_int(entered_point.y()), data_offer);
});
WaitForDragDropTasks();
ASSERT_EQ(drag_controller(), data_device()->drag_delegate_);
EXPECT_TRUE(drop_handler_->dropped_data()->HasString());
std::optional<std::u16string> result =
drop_handler_->dropped_data()->GetString();
ASSERT_TRUE(result.has_value());
EXPECT_EQ(kSampleTextForDragAndDrop16, result.value());
// In 2x window scale, we expect received coordinates still be in DIP.
EXPECT_CALL(*drop_handler_,
MockDragMotion(PointFNear(gfx::PointF(30, 30)), _, _));
// The server sends an motion event in DP.
SendMotionEvent(gfx::Point(30, 30));
SendDndLeave();
ASSERT_FALSE(data_device()->drag_delegate_);
}
// Emulating an incoming DnD session, ensures that data drag controller
// fetches all the data for the mime-types offered by the source client.
TEST_P(WaylandDataDragControllerTest, DropSeveralMimeTypes) {
const uint32_t surface_id = window_->root_surface()->get_surface_id();
// As data for each offered mime-type is asynchronously read (eg: using
// wl_display.sync callbacks, etc), a nested run loop is used to ensure
// it is reliably done. Furthermore, WmDropHandler::OnDragEnter() is expected
// to be called only once the data is fully fetched, so it's used here as
// condition to quit the loop and verify the expectations, otherwise some
// flakiness may be observed, see https://crbug.com/1395127.
base::RunLoop loop;
EXPECT_CALL(*drop_handler_, MockOnDragDataAvailable()).WillOnce([&loop]() {
loop.Quit();
});
EXPECT_CALL(*drop_handler_, OnDragEnter(_, _, _)).Times(1);
PostToServerAndWait([surface_id](wl::TestWaylandServerThread* server) {
auto* data_offer =
server->data_device_manager()->data_device()->CreateAndSendDataOffer();
data_offer->OnOffer(
kMimeTypePlainText,
ToClipboardData(std::string(kSampleTextForDragAndDrop)));
data_offer->OnOffer(
kMimeTypeMozillaUrl,
ToClipboardData(std::u16string(u"https://sample.com/\r\nSample")));
data_offer->OnOffer(
kMimeTypeUriList,
ToClipboardData(std::string("file:///home/user/file\r\n")));
gfx::Point entered_point(10, 10);
wl::MockSurface* surface = server->GetObject<wl::MockSurface>(surface_id);
server->data_device_manager()->data_device()->OnEnter(
1002, surface->resource(), wl_fixed_from_int(entered_point.x()),
wl_fixed_from_int(entered_point.y()), data_offer);
});
loop.Run();
Mock::VerifyAndClearExpectations(drop_handler_.get());
EXPECT_CALL(*drop_handler_, MockOnDragDrop()).Times(1);
PostToServerAndWait([](wl::TestWaylandServerThread* server) {
server->data_device_manager()->data_device()->OnDrop();
});
Mock::VerifyAndClearExpectations(drop_handler_.get());
ASSERT_NE(drop_handler_->dropped_data(), nullptr);
EXPECT_TRUE(drop_handler_->dropped_data()->HasString());
EXPECT_TRUE(drop_handler_->dropped_data()->HasFile());
EXPECT_TRUE(drop_handler_->dropped_data()->HasURL(kFilenameToURLPolicy));
PostToServerAndWait([](wl::TestWaylandServerThread* server) {
server->data_device_manager()->data_device()->OnLeave();
});
}
// Tests URI validation for text/uri-list MIME type. Log warnings rendered in
// the console when this test is running are the expected and valid side effect.
TEST_P(WaylandDataDragControllerTest, ValidateDroppedUriList) {
const struct {
std::string content;
base::flat_set<std::string> expected_uris;
} kCases[] = {{{}, {}},
{"file:///home/user/file\r\n", {"/home/user/file"}},
{"# Comment\r\n"
"file:///home/user/file\r\n"
"file:///home/guest/file\r\n"
"not a filename at all\r\n"
"https://valid.url/but/scheme/is/not/file/so/invalid\r\n",
{"/home/user/file", "/home/guest/file"}}};
for (const auto& kCase : kCases) {
EXPECT_CALL(*drop_handler_, OnDragEnter(_, _, _)).Times(1);
EXPECT_CALL(*drop_handler_, MockOnDragDataAvailable()).Times(1);
const uint32_t surface_id = window_->root_surface()->get_surface_id();
PostToServerAndWait([surface_id, content = kCase.content](
wl::TestWaylandServerThread* server) {
auto* data_offer = server->data_device_manager()
->data_device()
->CreateAndSendDataOffer();
data_offer->OnOffer(kMimeTypeUriList, ToClipboardData(content));
gfx::Point entered_point(10, 10);
wl::MockSurface* surface = server->GetObject<wl::MockSurface>(surface_id);
server->data_device_manager()->data_device()->OnEnter(
server->GetNextSerial(), surface->resource(),
wl_fixed_from_int(entered_point.x()),
wl_fixed_from_int(entered_point.y()), data_offer);
});
WaitForDragDropTasks();
EXPECT_CALL(*drop_handler_, MockOnDragDrop()).Times(1);
base::RunLoop loop;
drop_handler_->SetOnDropClosure(loop.QuitClosure());
PostToServerAndWait([](wl::TestWaylandServerThread* server) {
server->data_device_manager()->data_device()->OnDrop();
});
loop.Run();
WaitForDragDropTasks();
Mock::VerifyAndClearExpectations(drop_handler_.get());
if (kCase.expected_uris.empty()) {
EXPECT_FALSE(drop_handler_->dropped_data()->HasFile());
} else {
EXPECT_TRUE(drop_handler_->dropped_data()->HasFile());
std::optional<std::vector<FileInfo>> filenames =
drop_handler_->dropped_data()->GetFilenames();
ASSERT_TRUE(filenames.has_value());
EXPECT_EQ(filenames->size(), kCase.expected_uris.size());
for (const auto& filename : filenames.value()) {
EXPECT_EQ(kCase.expected_uris.count(filename.path.AsUTF8Unsafe()), 1U);
}
}
EXPECT_CALL(*drop_handler_, OnDragLeave()).Times(AtMost(1));
PostToServerAndWait([](wl::TestWaylandServerThread* server) {
server->data_device_manager()->data_device()->OnLeave();
});
WaitForDragDropTasks();
Mock::VerifyAndClearExpectations(drop_handler_.get());
}
}
// Tests URI validation for text/x-moz-url MIME type. Log warnings rendered in
// the console when this test is running are the expected and valid side effect.
TEST_P(WaylandDataDragControllerTest, ValidateDroppedXMozUrl) {
const struct {
std::u16string content;
std::string expected_url;
std::u16string expected_title;
} kCases[] = {
{{}, {}, {}},
{u"http://sample.com/\r\nSample", "http://sample.com/", u"Sample"},
{u"http://title.must.be.set/", {}, {}},
{u"url.must.be.valid/and/have.scheme\r\nInvalid URL", {}, {}},
{u"file:///files/are/ok\r\nThe policy allows that",
"file:///files/are/ok", u"The policy allows that"}};
for (const auto& kCase : kCases) {
EXPECT_CALL(*drop_handler_, OnDragEnter(_, _, _)).Times(1);
EXPECT_CALL(*drop_handler_, MockOnDragDataAvailable()).Times(1);
const uint32_t surface_id = window_->root_surface()->get_surface_id();
PostToServerAndWait([surface_id, content = kCase.content](
wl::TestWaylandServerThread* server) {
auto* data_offer = server->data_device_manager()
->data_device()
->CreateAndSendDataOffer();
data_offer->OnOffer(kMimeTypeMozillaUrl, ToClipboardData(content));
gfx::Point entered_point(10, 10);
wl::MockSurface* surface = server->GetObject<wl::MockSurface>(surface_id);
server->data_device_manager()->data_device()->OnEnter(
server->GetNextSerial(), surface->resource(),
wl_fixed_from_int(entered_point.x()),
wl_fixed_from_int(entered_point.y()), data_offer);
});
WaitForDragDropTasks();
EXPECT_CALL(*drop_handler_, MockOnDragDrop()).Times(1);
base::RunLoop loop;
drop_handler_->SetOnDropClosure(loop.QuitClosure());
PostToServerAndWait([](wl::TestWaylandServerThread* server) {
server->data_device_manager()->data_device()->OnDrop();
});
loop.Run();
Mock::VerifyAndClearExpectations(drop_handler_.get());
const auto* const dropped_data = drop_handler_->dropped_data();
if (kCase.expected_url.empty()) {
EXPECT_FALSE(dropped_data->HasURL(kFilenameToURLPolicy));
} else {
EXPECT_TRUE(dropped_data->HasURL(kFilenameToURLPolicy));
std::optional<ui::OSExchangeData::UrlInfo> url_info =
dropped_data->GetURLAndTitle(kFilenameToURLPolicy);
EXPECT_TRUE(url_info.has_value());
EXPECT_EQ(url_info->url.spec(), kCase.expected_url);
EXPECT_EQ(url_info->title, kCase.expected_title);
}
EXPECT_CALL(*drop_handler_, OnDragLeave()).Times(AtMost(1));
PostToServerAndWait([](wl::TestWaylandServerThread* server) {
server->data_device_manager()->data_device()->OnLeave();
});
WaitForDragDropTasks();
Mock::VerifyAndClearExpectations(drop_handler_.get());
}
}
// Verifies the correct delegate functions are called when a drag session is
// started and cancelled within the same surface.
TEST_P(WaylandDataDragControllerTest, StartAndCancel) {
FocusAndPressLeftPointerButton(window_.get(), &delegate_);
ScheduleDataDeviceAction(WL_DATA_DEVICE_MANAGER_DND_ACTION_MOVE);
// Schedule a wl_data_source::cancelled event to be sent asynchronously
// once the drag session gets started.
ScheduleDragCancel();
RunMouseDragWithSampleData(window_.get(), DragDropTypes::DRAG_COPY);
}
TEST_P(WaylandDataDragControllerTest, ForeignDragHandleAskAction) {
const uint32_t surface_id = window_->root_surface()->get_surface_id();
PostToServerAndWait([surface_id](wl::TestWaylandServerThread* server) {
auto* data_offer =
server->data_device_manager()->data_device()->CreateAndSendDataOffer();
data_offer->OnOffer(
kMimeTypePlainText,
ToClipboardData(std::string(kSampleTextForDragAndDrop)));
data_offer->OnSourceActions(WL_DATA_DEVICE_MANAGER_DND_ACTION_MOVE |
WL_DATA_DEVICE_MANAGER_DND_ACTION_COPY);
data_offer->OnAction(WL_DATA_DEVICE_MANAGER_DND_ACTION_ASK);
gfx::Point entered_point(10, 10);
// The server sends an enter event.
wl::MockSurface* surface = server->GetObject<wl::MockSurface>(surface_id);
server->data_device_manager()->data_device()->OnEnter(
server->GetNextSerial(), surface->resource(),
wl_fixed_from_int(entered_point.x()),
wl_fixed_from_int(entered_point.y()), data_offer);
});
WaitForDragDropTasks();
// Verify ask handling with drop handler preferring "copy" operation.
drop_handler_->SetPreferredOperations(ui::DragDropTypes::DRAG_COPY);
PostToServerAndWait([](wl::TestWaylandServerThread* server) {
const gfx::Point motion_point(11, 11);
server->data_device_manager()->data_device()->OnMotion(
server->GetNextTime(), wl_fixed_from_int(motion_point.x()),
wl_fixed_from_int(motion_point.y()));
});
WaitForDragDropTasks();
auto* client_data_offer = drag_controller()->data_offer_.get();
ASSERT_TRUE(client_data_offer);
const uint32_t client_data_offer_id = client_data_offer->id();
PostToServerAndWait(
[client_data_offer_id](wl::TestWaylandServerThread* server) {
auto* data_offer =
server->GetObject<wl::TestDataOffer>(client_data_offer_id);
ASSERT_TRUE(data_offer);
EXPECT_EQ(WL_DATA_DEVICE_MANAGER_DND_ACTION_COPY,
data_offer->preferred_action());
EXPECT_EQ(WL_DATA_DEVICE_MANAGER_DND_ACTION_COPY,
data_offer->supported_actions());
server->data_device_manager()->data_device()->OnLeave();
});
WaitForDragDropTasks();
}
// Verifies entered surface destruction is properly handled.
// Regression test for https://crbug.com/1143707.
TEST_P(WaylandDataDragControllerTest, DestroyEnteredSurface) {
auto* window_1 = window_.get();
FocusAndPressLeftPointerButton(window_1, &delegate_);
ASSERT_EQ(PlatformWindowType::kWindow, window_1->type());
auto test = [](WaylandDataDragControllerTest* self) {
// Init and open |target_window|.
MockPlatformWindowDelegate delegate_2;
auto window_2 =
self->CreateTestWindow(PlatformWindowType::kWindow, gfx::Size(80, 80),
&delegate_2, gfx::kNullAcceleratedWidget);
// Leave |window_1| and enter |window_2|.
self->SendDndLeave();
self->SendDndEnter(window_2.get(), gfx::Point(20, 20));
// Destroy the entered window at client side and emulates a
// wl_data_device::leave to ensure no UAF happens.
window_2->PrepareForShutdown();
window_2.reset();
self->SendDndLeave();
// Emulate server sending an wl_data_source::cancelled event so the drag
// loop is finished.
self->SendDndCancelled();
};
// Post test task to be performed asynchronously once the drag session gets
// started.
ScheduleTestTask(base::BindOnce(test, base::Unretained(this)));
RunMouseDragWithSampleData(window_.get(), DragDropTypes::DRAG_COPY);
}
// Verifies that early origin surface destruction is properly handled.
// Regression test for https://crbug.com/1143707.
TEST_P(WaylandDataDragControllerTest, DestroyOriginSurface) {
auto* window_1 = window_.get();
SetPointerFocusedWindow(nullptr);
ASSERT_EQ(PlatformWindowType::kWindow, window_1->type());
auto test = [](WaylandDataDragControllerTest* self,
std::unique_ptr<WaylandWindow>* origin) {
// Leave origin surface and enter |window_|.
self->SendDndLeave();
self->SendDndEnter(self->window(), gfx::Point(20, 20));
// Shutdown and destroy the popup window where the drag session was
// initiated, which leads to the drag loop to finish.
(*origin)->PrepareForShutdown();
origin->reset();
};
// Init and open |target_window|.
MockPlatformWindowDelegate delegate_2;
auto window_2 =
CreateTestWindow(PlatformWindowType::kPopup, gfx::Size(80, 80),
&delegate_2, window_1->GetWidget());
FocusAndPressLeftPointerButton(window_2.get(), &delegate_);
// Post test task to be performed asynchronously once the drag session gets
// started.
ScheduleTestTask(base::BindOnce(test, base::Unretained(this),
base::Unretained(&window_2)));
// Request to start the drag session, which spins a nested run loop.
OSExchangeData os_exchange_data;
os_exchange_data.SetString(sample_text_for_dnd());
window_2->StartDrag(os_exchange_data, DragDropTypes::DRAG_COPY,
DragEventSource::kMouse, {}, true,
drag_started_callback_.Get(),
drag_finished_callback_.Get(), nullptr);
// Send wl_data_source::cancelled event. The drag controller is then
// expected to gracefully reset its internal state.
SendDndLeave();
SendDndCancelled();
}
// Ensures drag/drop events are properly propagated to non-toplevel windows.
TEST_P(WaylandDataDragControllerTest, DragToNonToplevelWindows) {
auto* origin_window = window_.get();
FocusAndPressLeftPointerButton(origin_window, &delegate_);
auto test = [](WaylandDataDragControllerTest* self,
PlatformWindowType window_type, gfx::AcceleratedWidget context,
bool should_schedule_cancel) {
// Init and open |target_window|.
MockPlatformWindowDelegate aux_window_delegate;
auto aux_window = self->CreateTestWindow(window_type, gfx::Size(100, 40),
&aux_window_delegate, context);
// Leave |origin_window| and enter non-toplevel |aux_window|.
EXPECT_CALL(*self->drop_handler(), OnDragLeave).Times(1);
self->SendDndLeave();
EXPECT_CALL(*self->drop_handler(), OnDragEnter(_, _, _)).Times(1);
EXPECT_CALL(*self->drop_handler(), MockDragMotion(_, _, _)).Times(1);
self->SendDndEnter(aux_window.get(), {});
// Goes back to |origin_window|, as |aux_window| is going to get destroyed
// once this test task finishes.
EXPECT_CALL(*self->drop_handler(), OnDragLeave).Times(1);
self->SendDndLeave();
EXPECT_CALL(*self->drop_handler(), OnDragEnter(_, _, _)).Times(1);
EXPECT_CALL(*self->drop_handler(), MockDragMotion(_, _, _)).Times(1);
self->SendDndEnter(self->window(), {});
// Post a wl_data_source::cancelled notifying the client to tear down the
// drag session.
if (should_schedule_cancel)
self->ScheduleDragCancel();
};
// Post test tasks, for each non-toplevel window type, to be performed
// asynchronously once the dnd-related protocol objects are ready.
constexpr auto kNonToplevelWindowTypes = std::to_array<PlatformWindowType>({
PlatformWindowType::kPopup,
PlatformWindowType::kMenu,
PlatformWindowType::kTooltip,
PlatformWindowType::kBubble,
});
for (auto window_type : kNonToplevelWindowTypes) {
// Given there is no guarantee how tasks are scheduled are executed, the end
// of the test must only be scheduled once all the test cases run.
const bool should_schedule_end_of_the_test =
kNonToplevelWindowTypes[3] == window_type;
ScheduleTestTask(base::BindOnce(test, base::Unretained(this), window_type,
window_type == PlatformWindowType::kBubble
? gfx::kNullAcceleratedWidget
: origin_window->GetWidget(),
should_schedule_end_of_the_test));
}
// Request to start the drag session, which spins a nested run loop.
RunMouseDragWithSampleData(origin_window, DragDropTypes::DRAG_COPY);
}
// Ensures that requests to create a |PlatformWindowType::kPopup| during drag
// sessions return wl_subsurface-backed windows.
TEST_P(WaylandDataDragControllerTest, PopupRequestCreatesPopupWindow) {
auto* origin_window = window_.get();
FocusAndPressLeftPointerButton(origin_window, &delegate_);
MockPlatformWindowDelegate delegate;
std::unique_ptr<WaylandWindow> popup_window;
ScheduleTestTask(base::BindLambdaForTesting([&]() {
popup_window =
CreateTestWindow(PlatformWindowType::kPopup, gfx::Size(100, 40),
&delegate, origin_window->GetWidget());
popup_window->Show(false);
}));
// Post a wl_data_source::cancelled notifying the client to tear down the drag
// session.
ScheduleDragCancel();
// Request to start the drag session, which spins a nested run loop.
RunMouseDragWithSampleData(origin_window, DragDropTypes::DRAG_MOVE);
ASSERT_TRUE(popup_window.get());
const uint32_t surface_id = popup_window->root_surface()->get_surface_id();
PostToServerAndWait([surface_id](wl::TestWaylandServerThread* server) {
auto* surface = server->GetObject<wl::MockSurface>(surface_id);
ASSERT_TRUE(surface);
EXPECT_EQ(nullptr, surface->xdg_surface());
EXPECT_NE(nullptr, surface->sub_surface());
});
}
// Ensures that requests to create a |PlatformWindowType::kMenu| during drag
// sessions return xdg_popup-backed windows.
TEST_P(WaylandDataDragControllerTest, MenuRequestCreatesPopupWindow) {
auto* origin_window = window_.get();
FocusAndPressLeftPointerButton(origin_window, &delegate_);
auto test = [](WaylandDataDragControllerTest* self,
gfx::AcceleratedWidget context) {
MockPlatformWindowDelegate delegate;
auto menu_window = self->CreateTestWindow(
PlatformWindowType::kMenu, gfx::Size(100, 40), &delegate, context);
menu_window->Show(false);
const uint32_t surface_id = menu_window->root_surface()->get_surface_id();
self->PostToServerAndWait(
[surface_id](wl::TestWaylandServerThread* server) {
auto* surface = server->GetObject<wl::MockSurface>(surface_id);
ASSERT_TRUE(surface);
EXPECT_EQ(nullptr, surface->sub_surface());
EXPECT_NE(nullptr, surface->xdg_surface()->xdg_popup());
});
};
ScheduleTestTask(
base::BindOnce(test, base::Unretained(this), origin_window->GetWidget()));
// Post a wl_data_source::cancelled notifying the client to tear down the drag
// session.
ScheduleDragCancel();
// Request to start the drag session, which spins a nested run loop.
RunMouseDragWithSampleData(origin_window, DragDropTypes::DRAG_COPY);
}
// Regression test for https://crbug.com/1209269.
//
// Emulates "quick" wl_pointer.button release events being sent by the
// compositor, and processed by the ozone/wayland either (1) before or (2) just
// after WaylandWindow::StartDrag is called. The drag start happens in
// response to sequence of input events. Such event processing may take some
// time, for example, when they happen in web contents, which involves async
// browser <=> renderer IPC, etc. In both cases, drag controller is expected to
// gracefully reset state and quit drag loop as if the drag session was
// cancelled as usual.
TEST_P(WaylandDataDragControllerTest, AsyncNoopStartDrag) {
OSExchangeData os_exchange_data;
os_exchange_data.SetString(sample_text_for_dnd());
// 1. Send wl_pointer.button release before drag start.
FocusAndPressLeftPointerButton(window_.get(), &delegate_);
SendPointerButton(window_.get(), &delegate_, BTN_LEFT, /*pressed=*/false);
// Attempt to start drag session and ensure it fails.
ASSERT_FALSE(window_->StartDrag(
os_exchange_data, DragDropTypes::DRAG_COPY, DragEventSource::kMouse,
/*cursor=*/{},
/*can_grab_pointer=*/true, drag_started_callback_.Get(),
drag_finished_callback_.Get(), nullptr));
Mock::VerifyAndClearExpectations(drop_handler_.get());
EXPECT_FALSE(drag_controller()->origin_window_);
EXPECT_FALSE(drag_controller()->nested_dispatcher_);
PostToServerAndWait([](wl::TestWaylandServerThread* server) {
// Drag mustn't be started. Availability of data_source can be used to
// determine if the client has initiated a drag session.
ASSERT_FALSE(server->data_device_manager()->data_source());
ASSERT_TRUE(server->data_device_manager()->data_device());
server->data_device_manager()
->data_device()
->disable_auto_send_start_drag_events();
});
// 2. Send wl_pointer.button release just after drag start.
FocusAndPressLeftPointerButton(window_.get(), &delegate_);
// Schedule a wl_pointer.button up, attempt to start drag session and ensure
// it exits with cancellation status.
ScheduleTestTask(base::BindLambdaForTesting([&]() {
EXPECT_CALL(*drop_handler_, OnDragLeave).Times(1);
EXPECT_CALL(drag_finished_callback_, Run(Eq(DragOperation::kNone)))
.Times(1);
SendPointerButton(window_.get(), &delegate_, BTN_LEFT, /*pressed=*/false);
}));
bool result = window_->StartDrag(
os_exchange_data, DragDropTypes::DRAG_COPY, DragEventSource::kMouse,
/*cursor=*/{},
/*can_grab_pointer=*/true, drag_started_callback_.Get(),
drag_finished_callback_.Get(), nullptr);
PostToServerAndWait([](wl::TestWaylandServerThread* server) {
// Drag must be started. Availability of data_source can be used to
// determine if the client has initiated a drag session.
ASSERT_TRUE(server->data_device_manager()->data_source());
});
// TODO(crbug.com/40050639): Double-check if this should return false instead.
EXPECT_TRUE(result);
EXPECT_FALSE(drag_controller()->origin_window_);
EXPECT_FALSE(drag_controller()->nested_dispatcher_);
}
TEST_P(WaylandDataDragControllerTest, SuppressPointerButtonReleasesAfterEnter) {
OSExchangeData os_exchange_data;
os_exchange_data.SetString(sample_text_for_dnd());
// Press left pointer button and request to start a drag session.
FocusAndPressLeftPointerButton(window_.get(), &delegate_);
drag_controller()->StartSession(os_exchange_data, DragDropTypes::DRAG_COPY,
DragEventSource::kMouse);
// Ensure start_drag request is processed at compositor side and a first enter
// is received by the client. From that point onwards, any pointer button
// event must be no-op.
WaylandTestBase::SyncDisplay();
ASSERT_TRUE(drag_controller()->has_received_enter_);
// Emulates a spurious pointer button release and ensure it is no-op.
EXPECT_CALL(*drop_handler_, OnDragLeave).Times(0);
SendPointerButton(window_.get(), &delegate_, BTN_LEFT, /*pressed=*/false);
Mock::VerifyAndClearExpectations(drop_handler_.get());
Mock::VerifyAndClearExpectations(&drag_finished_callback_);
EXPECT_TRUE(drag_controller()->data_source_);
// Ok, we're done.
SendDndFinished();
EXPECT_FALSE(drag_controller()->data_source_);
EXPECT_FALSE(drag_controller()->origin_window_);
EXPECT_FALSE(drag_controller()->nested_dispatcher_);
}
// Regression test for https://crbug.com/1175083.
TEST_P(WaylandDataDragControllerTest, StartDragWithCorrectSerial) {
FocusAndPressLeftPointerButton(window_.get(), &delegate_);
std::optional<wl::Serial> mouse_press_serial =
connection()->serial_tracker().GetSerial(wl::SerialType::kMousePress);
ASSERT_TRUE(mouse_press_serial.has_value());
// Emulate a wl_keyboard.key press event being processed by the compositor
// before the drag starts. In this case, the client is expected to send the
// correct serial value when starting the drag session (ie: the one received
// with wl_pointer.button).
const uint32_t surface_id = window_->root_surface()->get_surface_id();
PostToServerAndWait([mouse_serial = mouse_press_serial->value,
surface_id](wl::TestWaylandServerThread* server) {
auto* keyboard = server->seat()->keyboard();
ASSERT_TRUE(keyboard);
wl::ScopedWlArray empty({});
auto* surface = server->GetObject<wl::MockSurface>(surface_id);
wl_keyboard_send_enter(keyboard->resource(), 1, surface->resource(),
empty.get());
wl_keyboard_send_key(keyboard->resource(), (mouse_serial + 1), 0,
30 /* a */, WL_KEYBOARD_KEY_STATE_PRESSED);
});
PostToServerAndWait([](wl::TestWaylandServerThread* server) {
// Drag must be started. Availability of data_source can be used to
// determine if the client has initiated a drag session.
ASSERT_FALSE(server->data_device_manager()->data_source());
});
// Post a wl_data_source::cancelled notifying the client to tear down the drag
// session.
ScheduleDragCancel();
// Request to start the drag session, which spins a nested run loop, and
// ensure correct serial (mouse button press) is sent to the server with
// wl_data_device.start_drag request.
RunMouseDragWithSampleData(window_.get(), DragDropTypes::DRAG_COPY);
Mock::VerifyAndClearExpectations(drop_handler_.get());
PostToServerAndWait([serial = mouse_press_serial->value](
wl::TestWaylandServerThread* server) {
// Drag must be started. Availability of data_source can be used to
// determine if the client has initiated a drag session.
EXPECT_EQ(serial,
server->data_device_manager()->data_device()->drag_serial());
ASSERT_TRUE(server->data_device_manager()->data_source());
});
}
// Check drag session is correctly started when there are both mouse button and
// a touch point pressed.
TEST_P(WaylandDataDragControllerTest, StartDragWithCorrectSerialForDragSource) {
OSExchangeData os_exchange_data;
os_exchange_data.SetString(sample_text_for_dnd());
auto* const window_manager = connection_->window_manager();
ASSERT_FALSE(window_manager->GetCurrentPointerFocusedWindow());
ASSERT_FALSE(window_manager->GetCurrentTouchFocusedWindow());
FocusAndPressLeftPointerButton(window_.get(), &delegate_);
std::optional<wl::Serial> mouse_press_serial =
connection()->serial_tracker().GetSerial(wl::SerialType::kMousePress);
ASSERT_TRUE(mouse_press_serial.has_value());
ASSERT_EQ(window_.get(), window_manager->GetCurrentPointerFocusedWindow());
ASSERT_FALSE(window_manager->GetCurrentTouchFocusedWindow());
// Check drag does not start when requested with kTouch drag source, even when
// there is a mouse button pressed (ie: kMousePress serial available).
bool drag_started = window_->StartDrag(
os_exchange_data, DragDropTypes::DRAG_COPY, DragEventSource::kTouch,
/*cursor=*/{}, /*can_grab_pointer=*/true, drag_started_callback_.Get(),
drag_finished_callback_.Get(), nullptr);
PostToServerAndWait([](wl::TestWaylandServerThread* server) {
// Drag must be started. Availability of data_source can be used to
// determine if the client has initiated a drag session.
ASSERT_FALSE(server->data_device_manager()->data_source());
});
EXPECT_FALSE(drag_started);
Mock::VerifyAndClearExpectations(drop_handler_.get());
SendTouchDown(window_.get(), &delegate_, 1, {30, 30});
ASSERT_EQ(window_.get(), window_manager->GetCurrentTouchFocusedWindow());
ASSERT_EQ(window_.get(), window_manager->GetCurrentPointerFocusedWindow());
// Schedule dnd session cancellation so that the drag loop gracefully exits.
ScheduleDragCancel();
// Check drag is started with correct serial value, as per the drag source
// passed in, even when it is not the most recent serial, ie: touch down
// received after mouse button press.
bool success = window_->StartDrag(
os_exchange_data, DragDropTypes::DRAG_COPY, DragEventSource::kMouse,
/*cursor=*/{}, /*can_grab_pointer=*/true, drag_started_callback_.Get(),
drag_finished_callback_.Get(), nullptr);
EXPECT_TRUE(success);
Mock::VerifyAndClearExpectations(drop_handler_.get());
PostToServerAndWait([mouse_serial = mouse_press_serial->value](
wl::TestWaylandServerThread* server) {
// Drag must be started. Availability of data_source can be used to
// determine if the client has initiated a drag session.
EXPECT_EQ(mouse_serial,
server->data_device_manager()->data_device()->drag_serial());
ASSERT_TRUE(server->data_device_manager()->data_source());
});
}
// With an incoming DnD session, this ensures that data drag controller
// gracefully handles drop events received while the data fetching is still
// unfinished. Regression test for https://crbug.com/1400872.
TEST_P(WaylandDataDragControllerTest, DropWhileFetchingData) {
const uint32_t surface_id = window_->root_surface()->get_surface_id();
// TODO(crbug.com/328783999): Use a RunLoop here (like in
// DropSeveralMimeTypes) so we can pass `no_nested_runloops=true` to
// `PostToServerAndWait()`.
// Data for each offered mime-type is asynchronously read (eg: using
// wl_display.sync callbacks, etc), so a single roundtrip - done implicitly
// in PostToServerAndWait() impl - isn't enough to fetch all the data, which
// is exactly the goal in this test case, so that we can send the "early" drop
// and ensure it does not crash in the next step.
EXPECT_CALL(*drop_handler_, OnDragEnter(_, _, _)).Times(1);
EXPECT_CALL(*drop_handler_, MockOnDragDataAvailable()).Times(0);
PostToServerAndWait(
[surface_id](wl::TestWaylandServerThread* server) {
auto* data_device = server->data_device_manager()->data_device();
auto* data_offer = data_device->CreateAndSendDataOffer();
data_offer->OnOffer(
kMimeTypePlainText,
ToClipboardData(std::string(kSampleTextForDragAndDrop)));
auto* surface = server->GetObject<wl::MockSurface>(surface_id);
data_device->OnEnter(server->GetNextSerial(), surface->resource(),
wl_fixed_from_int(0), wl_fixed_from_int(0),
data_offer);
// Sending `drop` right after `enter` here ensures drag controller has
// not yet had the chance to (even) start the data fetching, which helps
// avoiding flakiness (quite common in this kind of test case).
data_device->OnDrop();
},
false);
Mock::VerifyAndClearExpectations(drop_handler_.get());
EXPECT_FALSE(drop_handler_->dropped_data());
PostToServerAndWait([](wl::TestWaylandServerThread* server) {
server->data_device_manager()->data_device()->OnLeave();
});
}
// Regression test for https://crbug.com/1405176.
TEST_P(WaylandDataDragControllerTest, DndActionsToDragOperations) {
const uint32_t surface_id = window_->root_surface()->get_surface_id();
// Consume the move event from pointer enter.
EXPECT_CALL(*drop_handler_, MockDragMotion(_, _, _)).Times(1);
EXPECT_CALL(*drop_handler_, OnDragEnter(_, _, _)).Times(1);
PostToServerAndWait([surface_id](wl::TestWaylandServerThread* server) {
// Place the window onto the output.
wl::MockSurface* surface = server->GetObject<wl::MockSurface>(surface_id);
wl_surface_send_enter(surface->resource(), server->output()->resource());
auto* data_device = server->data_device_manager()->data_device();
auto* data_offer = data_device->CreateAndSendDataOffer();
data_offer->OnSourceActions(WL_DATA_DEVICE_MANAGER_DND_ACTION_MOVE |
WL_DATA_DEVICE_MANAGER_DND_ACTION_COPY |
WL_DATA_DEVICE_MANAGER_DND_ACTION_ASK);
gfx::Point entered_point(10, 10);
// The server sends an enter event.
data_device->OnEnter(server->GetNextSerial(), surface->resource(),
wl_fixed_from_int(entered_point.x()),
wl_fixed_from_int(entered_point.y()), data_offer);
});
WaitForDragDropTasks();
Mock::VerifyAndClearExpectations(drop_handler_.get());
EXPECT_CALL(*drop_handler_, MockDragMotion(_,
DragDropTypes::DRAG_COPY |
DragDropTypes::DRAG_MOVE |
DragDropTypes::DRAG_LINK,
_));
SendMotionEvent(gfx::Point(10, 10));
}
// Emulate an incoming DnD session, testing that data drag controller gracefully
// handles entered window destruction happening while the data fetching is still
// unfinished. Regression test for https://crbug.com/1400872.
// TODO(b/324541578): Fix threading-related flakiness and re-enabled.
TEST_P(WaylandDataDragControllerTest,
DISABLED_DestroyWindowWhileFetchingForeignData) {
auto main_thread_test_task_runnner =
task_environment_.GetMainThreadTaskRunner();
ASSERT_TRUE(main_thread_test_task_runnner);
ASSERT_TRUE(window_);
EXPECT_CALL(*drop_handler_, OnDragEnter(_, _, _)).Times(1);
EXPECT_CALL(*drop_handler_, MockDragMotion(_, _, _)).Times(1);
// None other event expected because the window gets destroyed in the middle
// of the test.
EXPECT_CALL(*drop_handler_, MockOnDragDataAvailable()).Times(0);
EXPECT_CALL(*drop_handler_, OnDragLeave()).Times(0);
EXPECT_CALL(*drop_handler_, MockOnDragDrop()).Times(0);
// 3 mime types are offered, which gives as time to hook partial data fetching
// and destroy the entered window while it's still unfinished, see test
// closure above for more details.
PostToServerAndWait([&](wl::TestWaylandServerThread* server) {
const auto data = ToClipboardData(std::string(kSampleTextForDragAndDrop));
auto* server_device = server->data_device_manager()->data_device();
auto* server_offer = server_device->CreateAndSendDataOffer();
server_offer->OnOffer(kMimeTypePlainText, data);
server_offer->OnOffer(kMimeTypeUtf8PlainText, data);
server_offer->OnOffer(kMimeTypeHtml, data);
const uint32_t surface_id = window_->root_surface()->get_surface_id();
auto* surface = server->GetObject<wl::MockSurface>(surface_id);
server_device->OnEnter(server->GetNextSerial(), surface->resource(),
wl_fixed_from_int(0), wl_fixed_from_int(0),
server_offer);
});
ASSERT_EQ(drag_controller(), data_device()->drag_delegate_);
// Destroy the entered window while the data fetching is ongoing.
window_.reset();
// Wait for the full data fetching flow to finish before checking all
// expectations.
WaitForDragDropTasks();
WaylandTestBase::SyncDisplay();
EXPECT_EQ(drag_controller_state(),
WaylandDataDragController::State::kStarted);
SendDndLeave();
Mock::VerifyAndClearExpectations(drop_handler_.get());
EXPECT_FALSE(drop_handler_->dropped_data());
EXPECT_FALSE(data_device()->drag_delegate_);
EXPECT_EQ(drag_controller_state(), WaylandDataDragController::State::kIdle);
}
// Emulate an incoming DnD session and verifies that data drag controller aborts
// data fetching, if needed, upon wl_data_device.leave.
TEST_P(WaylandDataDragControllerTest, LeaveWindowWhileFetchingData) {
ASSERT_TRUE(window_);
EXPECT_CALL(*drop_handler_, OnDragEnter(_, _, _)).Times(1);
EXPECT_CALL(*drop_handler_, MockDragMotion(_, _, _)).Times(1);
EXPECT_CALL(*drop_handler_, OnDragLeave()).Times(1);
// None other event expected because the window gets destroyed in the middle
// of the test.
EXPECT_CALL(*drop_handler_, MockOnDragDataAvailable()).Times(0);
EXPECT_CALL(*drop_handler_, MockOnDragDrop()).Times(0);
// 3 mime types are offered, which gives as time to hook up partial data
// fetching and process wl_data_device.leave while it's still ongoing.
PostToServerAndWait([&](wl::TestWaylandServerThread* server) {
const auto data = ToClipboardData(std::string(kSampleTextForDragAndDrop));
auto* server_device = server->data_device_manager()->data_device();
auto* server_offer = server_device->CreateAndSendDataOffer();
server_offer->OnOffer(kMimeTypePlainText, data);
server_offer->OnOffer(kMimeTypeUtf8PlainText, data);
server_offer->OnOffer(kMimeTypeHtml, data);
const uint32_t surface_id = window_->root_surface()->get_surface_id();
auto* surface = server->GetObject<wl::MockSurface>(surface_id);
server_device->OnEnter(server->GetNextSerial(), surface->resource(),
wl_fixed_from_int(0), wl_fixed_from_int(0),
server_offer);
// This should trigger data fetching task cancellation at client side,
// assuming it is still in progress.
server_device->OnLeave();
});
// Wait for the full data fetching flow and requests/events to finish before
// checking all expectations.
WaitForDragDropTasks();
WaylandTestBase::SyncDisplay();
Mock::VerifyAndClearExpectations(drop_handler_.get());
EXPECT_FALSE(drop_handler_->dropped_data());
EXPECT_FALSE(data_device()->drag_delegate_);
EXPECT_EQ(drag_controller_state(), WaylandDataDragController::State::kIdle);
}
// Cursor position should be updated during a (outgoing) drag with mouse.
TEST_P(WaylandDataDragControllerTest,
CursorPositionShouldBeUpdatedDuringMouseDrag) {
FocusAndPressLeftPointerButton(window_.get(), &delegate_);
// Post an asynchronously task that runs once the drag session gets started.
ScheduleTestTask(base::BindLambdaForTesting([&]() {
auto* cursor_position = connection()->wayland_cursor_position();
ASSERT_TRUE(cursor_position);
// Forcibly update the cursor position before sending motion event.
cursor_position->OnCursorPositionChanged(gfx::Point(1, 2));
// Send a drag motion and see if cursor position is updated.
SendDndMotion(gfx::Point(10, 11));
WaitForDragDropTasks();
// Cursor position should be updated.
EXPECT_EQ(gfx::Point(10, 11), cursor_position->GetCursorSurfacePoint());
SendDndLeave();
SendDndCancelled();
}));
RunMouseDragWithSampleData(
window_.get(), DragDropTypes::DRAG_COPY | DragDropTypes::DRAG_MOVE);
}
// Cursor position should not be updated during a (outgoing) drag with touch.
TEST_P(WaylandDataDragControllerTest,
CursorPositionShouldNotBeUpdatedDuringTouchDrag) {
SendTouchDown(window_.get(), &delegate_, 1, gfx::Point(0, 0));
// Post an asynchronously task that runs once the drag session gets started.
ScheduleTestTask(base::BindLambdaForTesting([&]() {
auto* cursor_position = connection()->wayland_cursor_position();
ASSERT_TRUE(cursor_position);
// Forcibly update the cursor position before sending drag motion event.
cursor_position->OnCursorPositionChanged(gfx::Point(1, 2));
// Send a drag motion and see if cursor position is updated.
SendDndMotion(gfx::Point(10, 11));
WaitForDragDropTasks();
// Cursor position should be the same as before.
EXPECT_EQ(gfx::Point(1, 2), cursor_position->GetCursorSurfacePoint());
SendDndLeave();
SendDndCancelled();
}));
RunTouchDragWithSampleData(
window_.get(), DragDropTypes::DRAG_COPY | DragDropTypes::DRAG_MOVE);
}
// Regression test for https://crbug.com/336449364.
TEST_P(WaylandDataDragControllerTest, OutgoingSessionWithoutDndFinished) {
FocusAndPressLeftPointerButton(window_.get(), &delegate_);
// Once the drag session effectively starts at server-side, emulate a
// data_source.dnd_drop_performed without its subsequent dnd_finished.
ScheduleTestTask(
base::BindLambdaForTesting([&]() { SendDndDropPerformed(); }));
// Start the drag session, which spins a nested message loop, and ensure it
// quits even without wl_data_source.dnd_finished. In which case, the expected
// side effect is drag controller's internal state left inconsistent, ie: not
// reset to `kIdle`.
RunMouseDragWithSampleData(
window_.get(), DragDropTypes::DRAG_COPY | DragDropTypes::DRAG_MOVE);
EXPECT_NE(drag_controller_state(), WaylandDataDragController::State::kIdle);
// Then ensure that, even after such server-side bogus drag events flow,
// subsequent drags can start successfully.
FocusAndPressLeftPointerButton(window_.get(), &delegate_);
OSExchangeData os_exchange_data;
os_exchange_data.SetHtml(sample_text_for_dnd(), {});
bool started = drag_controller()->StartSession(
os_exchange_data, DragDropTypes::DRAG_COPY | DragDropTypes::DRAG_MOVE,
DragEventSource::kMouse);
WaylandTestBase::SyncDisplay();
ASSERT_TRUE(started);
SendDndFinished();
EXPECT_EQ(drag_controller_state(), WaylandDataDragController::State::kIdle);
}
class PerSurfaceScaleWaylandDataDragControllerTest
: public WaylandDataDragControllerTest {
public:
PerSurfaceScaleWaylandDataDragControllerTest() = default;
~PerSurfaceScaleWaylandDataDragControllerTest() override = default;
PerSurfaceScaleWaylandDataDragControllerTest(
const PerSurfaceScaleWaylandDataDragControllerTest&) = delete;
PerSurfaceScaleWaylandDataDragControllerTest& operator=(
const PerSurfaceScaleWaylandDataDragControllerTest&) = delete;
void SetUp() override {
CHECK(!base::Contains(
enabled_features_,
base::test::FeatureRef(features::kWaylandPerSurfaceScale)));
enabled_features_.push_back(features::kWaylandPerSurfaceScale);
WaylandDataDragControllerTest::SetUp();
}
void TearDown() override {
WaylandDataDragControllerTest::TearDown();
CHECK(enabled_features_.back() == features::kWaylandPerSurfaceScale);
enabled_features_.pop_back();
}
};
TEST_P(PerSurfaceScaleWaylandDataDragControllerTest,
ScaleEnterAndMotionEventsLocation) {
base::test::ScopedFeatureList enable_ui_scaling(features::kWaylandUiScale);
ASSERT_TRUE(connection_->IsUiScaleEnabled());
// Set font scale to 1.25.
EXPECT_CALL(delegate_, OnBoundsChanged(_)).Times(1);
ASSERT_TRUE(connection_->window_manager());
connection_->window_manager()->SetFontScale(1.25f);
Mock::VerifyAndClearExpectations(&delegate_);
EXPECT_EQ(window_->applied_state().ui_scale, 1.25f);
EXPECT_EQ(window_->applied_state().window_scale, 1.0f);
// Emulate a incoming dnd entering `window_` with location (0, 100).
const uint32_t surface_id = window_->root_surface()->get_surface_id();
// As ui_scale is 1.25, the expected first drag motion location is (0, 80).
EXPECT_CALL(*drop_handler_,
MockDragMotion(PointFNear(gfx::PointF(0, 80)), _, _));
PostToServerAndWait([surface_id, location = gfx::Point(0, 100),
mime_type_text = std::string(kMimeTypePlainText),
sample_text = std::string(kSampleTextForDragAndDrop)](
wl::TestWaylandServerThread* server) {
auto* data_device = server->data_device_manager()->data_device();
auto* data_offer = data_device->CreateAndSendDataOffer();
CHECK(data_offer);
// Emulate a new text dnd offer.
data_offer->OnOffer(mime_type_text, ToClipboardData(sample_text));
// Send wl_data_device.enter with dip location (10, 10)
wl::MockSurface* surface = server->GetObject<wl::MockSurface>(surface_id);
data_device->OnEnter(server->GetNextSerial(), surface->resource(),
wl_fixed_from_int(location.x()),
wl_fixed_from_int(location.y()), data_offer);
});
WaitForDragDropTasks();
Mock::VerifyAndClearExpectations(drop_handler_.get());
// Ensure a subsequent motion event location also gets properly scaled.
EXPECT_CALL(*drop_handler_,
MockDragMotion(PointFNear(gfx::PointF(160, 160)), _, _));
SendMotionEvent(gfx::Point(200, 200));
Mock::VerifyAndClearExpectations(drop_handler_.get());
SendDndLeave();
}
INSTANTIATE_TEST_SUITE_P(XdgVersionStableTest,
WaylandDataDragControllerTest,
Values(wl::ServerConfig{}));
INSTANTIATE_TEST_SUITE_P(XdgVersionStableTest,
PerSurfaceScaleWaylandDataDragControllerTest,
Values(wl::ServerConfig{
.supports_viewporter_surface_scaling = true}));
} // namespace ui
|