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
|
// 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 <wayland-server-protocol.h>
#include <wayland-server.h>
#include <memory>
#include "base/memory/raw_ptr.h"
#include "base/strings/stringprintf.h"
#include "base/test/bind.h"
#include "base/test/scoped_command_line.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/display/display.h"
#include "ui/display/display_observer.h"
#include "ui/display/display_switches.h"
#include "ui/gfx/geometry/point.h"
#include "ui/gfx/geometry/rect.h"
#include "ui/gfx/native_widget_types.h"
#include "ui/ozone/platform/wayland/host/wayland_connection.h"
#include "ui/ozone/platform/wayland/host/wayland_output.h"
#include "ui/ozone/platform/wayland/host/wayland_output_manager.h"
#include "ui/ozone/platform/wayland/host/wayland_screen.h"
#include "ui/ozone/platform/wayland/host/wayland_seat.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/mock_wayland_platform_window_delegate.h"
#include "ui/ozone/platform/wayland/test/test_output.h"
#include "ui/ozone/platform/wayland/test/test_wayland_server_thread.h"
#include "ui/ozone/platform/wayland/test/wayland_test.h"
#include "ui/platform_window/platform_window_init_properties.h"
using ::testing::Values;
namespace ui {
namespace {
constexpr uint32_t kNumberOfDisplays = 1;
constexpr uint32_t kOutputWidth = 1024;
constexpr uint32_t kOutputHeight = 768;
// Helper that gets the rightmost x coordinate for the given `output`.
int GetRightX(const wl::TestOutput* output) {
const auto& size = output->GetPhysicalSize();
const auto& origin = output->GetOrigin();
return origin.x() + size.width();
}
class TestDisplayObserver : public display::DisplayObserver {
public:
TestDisplayObserver() {}
TestDisplayObserver(const TestDisplayObserver&) = delete;
TestDisplayObserver& operator=(const TestDisplayObserver&) = delete;
~TestDisplayObserver() override {}
display::Display GetDisplay() { return std::move(display_); }
display::Display GetRemovedDisplay() { return std::move(removed_display_); }
uint32_t GetAndClearChangedMetrics() {
uint32_t changed_metrics = changed_metrics_;
changed_metrics_ = 0;
return changed_metrics;
}
// display::DisplayObserver:
void OnDisplayAdded(const display::Display& new_display) override {
display_ = new_display;
}
void OnDisplaysRemoved(const display::Displays& removed_displays) override {
removed_display_ = removed_displays.back();
if (displays_removed_closure_) {
displays_removed_closure_.Run();
}
}
void OnDisplayMetricsChanged(const display::Display& display,
uint32_t changed_metrics) override {
changed_metrics_ = changed_metrics;
display_ = display;
if (display_metrics_changed_closure_) {
display_metrics_changed_closure_.Run();
}
}
void set_displays_removed_closure(base::RepeatingClosure closure) {
displays_removed_closure_ = std::move(closure);
}
void set_display_metrics_changed_closure(base::RepeatingClosure closure) {
display_metrics_changed_closure_ = std::move(closure);
}
private:
uint32_t changed_metrics_ = 0;
display::Display display_;
display::Display removed_display_;
base::RepeatingClosure displays_removed_closure_;
base::RepeatingClosure display_metrics_changed_closure_;
};
} // namespace
class WaylandScreenTest : public WaylandTest {
public:
WaylandScreenTest() = default;
WaylandScreenTest(const WaylandScreenTest&) = delete;
WaylandScreenTest& operator=(const WaylandScreenTest&) = delete;
~WaylandScreenTest() override = default;
void SetUp() override {
WaylandTest::SetUp();
PostToServerAndWait([](wl::TestWaylandServerThread* server) {
auto* output = server->output();
output->SetPhysicalAndLogicalBounds({kOutputWidth, kOutputHeight});
output->Flush();
});
output_manager_ = connection_->wayland_output_manager();
ASSERT_TRUE(output_manager_);
EXPECT_TRUE(output_manager_->IsOutputReady());
platform_screen_ = output_manager_->CreateWaylandScreen();
output_manager_->InitWaylandScreen(platform_screen_.get());
}
protected:
std::unique_ptr<WaylandWindow> CreateWaylandWindowWithProperties(
const gfx::Rect& bounds,
PlatformWindowType window_type,
gfx::AcceleratedWidget parent_widget,
MockWaylandPlatformWindowDelegate* delegate) {
PlatformWindowInitProperties properties;
properties.bounds = bounds;
properties.type = window_type;
properties.parent_widget = parent_widget;
return delegate->CreateWaylandWindow(connection_.get(),
std::move(properties));
}
void ValidateTheDisplayForWidget(gfx::AcceleratedWidget widget,
int64_t expected_display_id) {
display::Display display_for_widget =
platform_screen_->GetDisplayForAcceleratedWidget(widget);
EXPECT_EQ(display_for_widget.id(), expected_display_id);
}
WaylandOutput::Metrics MakeMetrics(const display::Display& display) const {
return WaylandOutput::Metrics{
WaylandOutput::Id(display.id()),
display.id(),
display.bounds().origin(),
display.size(),
display.GetSizeInPixel(),
display.GetWorkAreaInsets(),
/*physical_overscan_insets=*/gfx::Insets(),
display.device_scale_factor(),
// Display rotation and output transform go opposite directions.
(4 - display.panel_rotation()) % 4,
(4 - display.rotation()) % 4,
/*description=*/"",
};
}
raw_ptr<wl::TestOutput> output_ = nullptr;
raw_ptr<WaylandOutputManager> output_manager_ = nullptr;
std::unique_ptr<WaylandScreen> platform_screen_;
};
// Tests whether a primary output has been initialized before PlatformScreen is
// created.
TEST_P(WaylandScreenTest, OutputBaseTest) {
// IsPrimaryOutputReady and PlatformScreen creation is done in the
// initialization part of the tests.
// Ensure there is only one display, which is the primary one.
auto& all_displays = platform_screen_->GetAllDisplays();
EXPECT_EQ(all_displays.size(), kNumberOfDisplays);
// Ensure the size property of the primary display.
EXPECT_EQ(platform_screen_->GetPrimaryDisplay().bounds(),
gfx::Rect(0, 0, kOutputWidth, kOutputHeight));
}
// In multi-monitor setup, the `entered_outputs_` list should be updated when
// the display is unplugged or switched off.
TEST_P(WaylandScreenTest, EnteredOutputListAfterDisplayRemoval) {
// These have to be stored on the client thread, but must be used only on the
// server thread.
wl::TestOutput* output1 = nullptr;
wl::TestOutput* output2 = nullptr;
wl::TestOutput* output3 = nullptr;
PostToServerAndWait([&output1](wl::TestWaylandServerThread* server) {
output1 = server->output();
ASSERT_TRUE(output1);
});
// Add a second display. The second display is located to the right of first
// display.
PostToServerAndWait(
[&output2, &output1](wl::TestWaylandServerThread* server) {
output2 = server->CreateAndInitializeOutput(
wl::TestOutputMetrics({GetRightX(output1), 0, 800, 600}));
ASSERT_TRUE(output2);
});
// Add a third display. The third display is located to the right of second
// display.
PostToServerAndWait(
[&output3, &output2](wl::TestWaylandServerThread* server) {
output3 = server->CreateAndInitializeOutput(
wl::TestOutputMetrics({GetRightX(output2), 0, 800, 600}));
ASSERT_TRUE(output3);
});
WaitForAllDisplaysReady();
EXPECT_EQ(3u, platform_screen_->GetAllDisplays().size());
const uint32_t surface_id = window_->root_surface()->get_surface_id();
PostToServerAndWait(
[output1, output2, surface_id](wl::TestWaylandServerThread* server) {
auto* surface = server->GetObject<wl::MockSurface>(surface_id);
wl_surface_send_enter(surface->resource(), output1->resource());
wl_surface_send_enter(surface->resource(), output2->resource());
});
// The window entered two outputs
auto entered_outputs = window_->root_surface()->entered_outputs();
EXPECT_EQ(2u, entered_outputs.size());
PostToServerAndWait(
[output3, surface_id](wl::TestWaylandServerThread* server) {
auto* surface = server->GetObject<wl::MockSurface>(surface_id);
wl_surface_send_enter(surface->resource(), output3->resource());
});
// The window entered three outputs
entered_outputs = window_->root_surface()->entered_outputs();
EXPECT_EQ(3u, entered_outputs.size());
// Destroy third display
PostToServerAndWait([&output3](wl::TestWaylandServerThread* server) {
output3->DestroyGlobal();
output3 = nullptr;
});
entered_outputs = window_->root_surface()->entered_outputs();
EXPECT_EQ(2u, entered_outputs.size());
// Destroy second display
PostToServerAndWait([&output2](wl::TestWaylandServerThread* server) {
output2->DestroyGlobal();
output2 = nullptr;
});
entered_outputs = window_->root_surface()->entered_outputs();
EXPECT_EQ(1u, entered_outputs.size());
// Add a second display. The second display is located to the right of first
// display.
PostToServerAndWait(
[&output2, &output1](wl::TestWaylandServerThread* server) {
ASSERT_FALSE(output2);
output2 = server->CreateAndInitializeOutput(
wl::TestOutputMetrics({GetRightX(output1), 0, 800, 600}));
ASSERT_TRUE(output2);
});
PostToServerAndWait(
[output2, surface_id](wl::TestWaylandServerThread* server) {
auto* surface = server->GetObject<wl::MockSurface>(surface_id);
wl_surface_send_enter(surface->resource(), output2->resource());
});
// The window entered two outputs
entered_outputs = window_->root_surface()->entered_outputs();
EXPECT_EQ(2u, entered_outputs.size());
}
TEST_P(WaylandScreenTest, MultipleOutputsAddedAndRemoved) {
// This has to be stored on the client thread, but must be used only on the
// server thread.
wl::TestOutput* output1 = nullptr;
wl::TestOutput* output2 = nullptr;
TestDisplayObserver observer;
platform_screen_->AddObserver(&observer);
const int64_t old_primary_display_id =
platform_screen_->GetPrimaryDisplay().id();
PostToServerAndWait([&output1](wl::TestWaylandServerThread* server) {
output1 = server->output();
});
ASSERT_FALSE(output1->GetPhysicalSize().IsEmpty());
// Add a second display. The second display is located to the right of first
// display like | || |.
PostToServerAndWait(
[&output2, &output1](wl::TestWaylandServerThread* server) {
output2 = server->CreateAndInitializeOutput(
wl::TestOutputMetrics({GetRightX(output1), 0, 800, 600}));
ASSERT_TRUE(output2);
});
WaitForAllDisplaysReady();
// Ensure that second display is not a primary one and have a different id.
int64_t added_display_id = observer.GetDisplay().id();
EXPECT_NE(platform_screen_->GetPrimaryDisplay().id(), added_display_id);
PostToServerAndWait([&output2](wl::TestWaylandServerThread* server) {
output2->DestroyGlobal();
output2 = nullptr;
});
ASSERT_FALSE(output2);
// Ensure that removed display has correct id.
int64_t removed_display_id = observer.GetRemovedDisplay().id();
EXPECT_EQ(added_display_id, removed_display_id);
// Ensure that |WaylandScreen| has forgotten about the removed display.
EXPECT_EQ(platform_screen_->GetOutputIdForDisplayId(removed_display_id),
WaylandOutput::Id(0));
// Create another display again. Updates rect again.
PostToServerAndWait(
[&output2, &output1](wl::TestWaylandServerThread* server) {
ASSERT_FALSE(output2);
output2 = server->CreateAndInitializeOutput(
wl::TestOutputMetrics({GetRightX(output1), 0, 800, 600}));
ASSERT_TRUE(output2);
});
WaitForAllDisplaysReady();
// The newly added display is not a primary yet.
added_display_id = observer.GetDisplay().id();
EXPECT_NE(platform_screen_->GetPrimaryDisplay().id(), added_display_id);
// Now, rearrange displays so that second display becomes the primary one.
constexpr auto output1_bounds = gfx::Rect(1024, 0, 1024, 768);
constexpr auto output2_bounds = gfx::Rect(0, 0, 1024, 768);
PostToServerAndWait([&](wl::TestWaylandServerThread* server) {
auto* output = server->output();
output->SetPhysicalAndLogicalBounds(output1_bounds);
output->Flush();
output2->SetPhysicalAndLogicalBounds(output2_bounds);
output2->Flush();
});
// Ensure that output2 is now the primary one.
EXPECT_EQ(platform_screen_->GetPrimaryDisplay().id(), added_display_id);
// Remove the primary display now.
PostToServerAndWait([&output2](wl::TestWaylandServerThread* server) {
output2->DestroyGlobal();
output2 = nullptr;
});
ASSERT_FALSE(output2);
// Ensure that output1 is a primary display now.
EXPECT_EQ(platform_screen_->GetPrimaryDisplay().id(), old_primary_display_id);
// Ensure that the removed display was the one, which was a primary display.
EXPECT_EQ(observer.GetRemovedDisplay().id(), added_display_id);
platform_screen_->RemoveObserver(&observer);
}
TEST_P(WaylandScreenTest, OutputPropertyChangesMissingLogicalSize) {
TestDisplayObserver observer;
platform_screen_->AddObserver(&observer);
const uint32_t output_id = 7;
const int64_t display_id = 1ll << 34;
const gfx::Point origin(50, 70);
const gfx::Size physical_size(1200, 1600);
const wl_output_transform panel_transform = WL_OUTPUT_TRANSFORM_90;
const wl_output_transform logical_transform = WL_OUTPUT_TRANSFORM_NORMAL;
const gfx::Insets insets = gfx::Insets::TLBR(10, 20, 30, 40);
const gfx::Insets overscan_insets = gfx::Insets();
const float scale = 2;
// Test with missing logical size. Should fall back to calculating from
// physical size.
platform_screen_->OnOutputAddedOrUpdated(
{output_id, display_id, origin, gfx::Size(), physical_size, insets,
overscan_insets, scale, panel_transform, logical_transform, "display"});
const display::Display new_display(observer.GetDisplay());
EXPECT_EQ(output_id, platform_screen_->GetOutputIdForDisplayId(display_id));
EXPECT_EQ(new_display.id(), display_id);
EXPECT_EQ(new_display.bounds(), gfx::Rect(origin, gfx::Size(800, 600)));
EXPECT_EQ(new_display.GetSizeInPixel(), gfx::Size(1600, 1200));
gfx::Rect expected_work_area(new_display.bounds());
expected_work_area.Inset(insets);
EXPECT_EQ(new_display.work_area(), expected_work_area);
EXPECT_EQ(new_display.panel_rotation(), display::Display::ROTATE_270);
EXPECT_EQ(new_display.rotation(), display::Display::ROTATE_0);
EXPECT_EQ(new_display.device_scale_factor(), scale);
EXPECT_EQ(new_display.label(), "display");
platform_screen_->RemoveObserver(&observer);
}
TEST_P(WaylandScreenTest, OutputPropertyChangesPrimaryDisplayChanged) {
TestDisplayObserver observer;
platform_screen_->AddObserver(&observer);
display::Display display1(1, gfx::Rect(0, 0, 800, 600));
display::Display display2(2, gfx::Rect(800, 0, 700, 500));
platform_screen_->OnOutputAddedOrUpdated(MakeMetrics(display1));
platform_screen_->OnOutputAddedOrUpdated(MakeMetrics(display2));
EXPECT_EQ(platform_screen_->GetPrimaryDisplay(), display1);
// Simulate setting display2 as primary by moving its origin to (0,0) and
// shifting display1 to its left.
display1.set_bounds(gfx::Rect(-800, 0, 800, 600));
display2.set_bounds(gfx::Rect(0, 0, 700, 500));
display2.set_native_origin(gfx::Point(0, 0));
// Purposely send the output metrics out of order.
platform_screen_->OnOutputAddedOrUpdated(MakeMetrics(display2));
platform_screen_->OnOutputAddedOrUpdated(MakeMetrics(display1));
EXPECT_EQ(platform_screen_->GetPrimaryDisplay(), display2);
platform_screen_->RemoveObserver(&observer);
}
TEST_P(WaylandScreenTest, OutputPropertyChangesOverscanInsets) {
TestDisplayObserver observer;
platform_screen_->AddObserver(&observer);
{
display::Display display(123, gfx::Rect(0, 0, 800, 600));
auto metrics = MakeMetrics(display);
metrics.physical_overscan_insets = gfx::Insets::TLBR(10, 20, 30, 40);
platform_screen_->OnOutputAddedOrUpdated(metrics);
display::Display expected_display = display;
expected_display.set_size_in_pixels(gfx::Size(740, 560));
EXPECT_EQ(platform_screen_->GetPrimaryDisplay(), expected_display);
}
{
// Display with scaling
display::Display display(123, gfx::Rect(0, 0, 800, 600));
display.set_device_scale_factor(2.0);
auto metrics = MakeMetrics(display);
metrics.physical_overscan_insets = gfx::Insets::TLBR(10, 20, 30, 40);
platform_screen_->OnOutputAddedOrUpdated(metrics);
display::Display expected_display = display;
// Overscan inset is in pixels, so should not scale with scale factor.
expected_display.set_size_in_pixels(gfx::Size(740, 560));
EXPECT_EQ(platform_screen_->GetPrimaryDisplay(), expected_display);
}
{
// Display with rotations.
display::Display display(123, gfx::Rect(0, 0, 800, 600));
display.set_panel_rotation(display::Display::Rotation::ROTATE_90);
display.set_rotation(display::Display::Rotation::ROTATE_180);
auto metrics = MakeMetrics(display);
metrics.physical_overscan_insets = gfx::Insets::TLBR(10, 20, 30, 40);
platform_screen_->OnOutputAddedOrUpdated(metrics);
display::Display expected_display = display;
// Overscan inset is applied after accounting for panel rotation.
expected_display.set_size_in_pixels(gfx::Size(540, 760));
EXPECT_EQ(platform_screen_->GetPrimaryDisplay(), expected_display);
}
platform_screen_->RemoveObserver(&observer);
}
TEST_P(WaylandScreenTest, GetAcceleratedWidgetAtScreenPoint) {
const uint32_t surface_id = window_->root_surface()->get_surface_id();
PostToServerAndWait([surface_id](wl::TestWaylandServerThread* server) {
// Now, send enter event for the surface, which was created before.
wl::MockSurface* surface = server->GetObject<wl::MockSurface>(surface_id);
ASSERT_TRUE(surface);
wl_surface_send_enter(surface->resource(), server->output()->resource());
});
// If there is no focused window (focus is set whenever a pointer enters any
// of the windows), there must be kNullAcceleratedWidget returned. There is no
// real way to determine what window is located on a certain screen point in
// Wayland.
gfx::AcceleratedWidget widget_at_screen_point =
platform_screen_->GetAcceleratedWidgetAtScreenPoint(gfx::Point(10, 10));
EXPECT_EQ(widget_at_screen_point, gfx::kNullAcceleratedWidget);
// Set a focus to the main window. Now, that focused window must be returned.
SetPointerFocusedWindow(window_.get());
widget_at_screen_point =
platform_screen_->GetAcceleratedWidgetAtScreenPoint(gfx::Point(10, 10));
EXPECT_EQ(widget_at_screen_point, window_->GetWidget());
// Getting a widget at a screen point outside its bounds, must result in a
// null widget.
const gfx::Rect window_bounds = window_->GetBoundsInDIP();
widget_at_screen_point = platform_screen_->GetAcceleratedWidgetAtScreenPoint(
gfx::Point(window_bounds.width() + 1, window_bounds.height() + 1));
EXPECT_EQ(widget_at_screen_point, gfx::kNullAcceleratedWidget);
MockWaylandPlatformWindowDelegate delegate;
auto menu_window_bounds =
gfx::Rect(window_->GetBoundsInDIP().width() - 10,
window_->GetBoundsInDIP().height() - 10, 100, 100);
std::unique_ptr<WaylandWindow> menu_window =
CreateWaylandWindowWithProperties(menu_window_bounds,
PlatformWindowType::kMenu,
window_->GetWidget(), &delegate);
// Imagine the mouse enters a menu window, which is located on top of the main
// window, and gathers focus.
SetPointerFocusedWindow(menu_window.get());
widget_at_screen_point = platform_screen_->GetAcceleratedWidgetAtScreenPoint(
gfx::Point(menu_window->GetBoundsInDIP().x() + 1,
menu_window->GetBoundsInDIP().y() + 1));
EXPECT_EQ(widget_at_screen_point, menu_window->GetWidget());
// Whenever a mouse pointer leaves the menu window, the accelerated widget
// of that focused window must be returned.
SetPointerFocusedWindow(window_.get());
widget_at_screen_point =
platform_screen_->GetAcceleratedWidgetAtScreenPoint(gfx::Point(0, 0));
EXPECT_EQ(widget_at_screen_point, window_->GetWidget());
// Reset the focus to avoid crash on dtor as long as there is no real pointer
// object.
SetPointerFocusedWindow(nullptr);
// Part 2: test that the window is found when display's scale changes.
// Update scale.
PostToServerAndWait([](wl::TestWaylandServerThread* server) {
server->output()->SetScale(2);
server->output()->Flush();
});
auto menu_bounds = menu_window->GetBoundsInDIP();
auto point_in_screen = menu_bounds.origin();
SetPointerFocusedWindow(menu_window.get());
widget_at_screen_point =
platform_screen_->GetAcceleratedWidgetAtScreenPoint(point_in_screen);
EXPECT_EQ(widget_at_screen_point, menu_window->GetWidget());
}
TEST_P(WaylandScreenTest, GetLocalProcessWidgetAtPoint) {
gfx::Point point(10, 10);
EXPECT_EQ(platform_screen_->GetLocalProcessWidgetAtPoint(point, {}),
gfx::kNullAcceleratedWidget);
// Set a focus to the main window. Now, that focused window must be returned.
SetPointerFocusedWindow(window_.get());
EXPECT_EQ(platform_screen_->GetLocalProcessWidgetAtPoint(point, {}),
window_->GetWidget());
// Null widget must be returned when the focused window is part of the
// |ignore| list.
gfx::AcceleratedWidget w = window_->GetWidget();
EXPECT_EQ(
platform_screen_->GetLocalProcessWidgetAtPoint(point, {w - 1, w, w + 1}),
gfx::kNullAcceleratedWidget);
}
TEST_P(WaylandScreenTest, GetDisplayMatching) {
TestDisplayObserver observer;
platform_screen_->AddObserver(&observer);
const display::Display primary_display =
platform_screen_->GetPrimaryDisplay();
// This has to be stored on the client thread, but must be used only on the
// server thread. Place it on the right side of the primary display.
const auto outout2_bounds =
gfx::Rect(primary_display.bounds().width(), 0, 1024, 768);
wl::TestOutput* output2 = nullptr;
PostToServerAndWait(
[&output2, &outout2_bounds](wl::TestWaylandServerThread* server) {
output2 = server->CreateAndInitializeOutput(
wl::TestOutputMetrics(outout2_bounds));
ASSERT_TRUE(output2);
});
WaitForAllDisplaysReady();
const display::Display second_display = observer.GetDisplay();
EXPECT_EQ(second_display.bounds(), outout2_bounds);
// We have two displays: display1(0:0,1024x768) and display2(1024:0,1024x768).
EXPECT_EQ(
primary_display.id(),
platform_screen_->GetDisplayMatching(gfx::Rect(0, 0, 100, 100)).id());
EXPECT_EQ(
second_display.id(),
platform_screen_->GetDisplayMatching(gfx::Rect(1024, 0, 10, 10)).id());
// More pixels on second display.
EXPECT_EQ(
second_display.id(),
platform_screen_->GetDisplayMatching(gfx::Rect(1020, 0, 10, 10)).id());
// More pixels on first display.
EXPECT_EQ(
primary_display.id(),
platform_screen_->GetDisplayMatching(gfx::Rect(1018, 0, 10, 10)).id());
// Half pixels on second and half on primary.
EXPECT_EQ(
primary_display.id(),
platform_screen_->GetDisplayMatching(gfx::Rect(1019, 0, 10, 10)).id());
// Place second display 700 pixels below along y axis (1024:700,1024x768)
PostToServerAndWait(
[&output2, &outout2_bounds](wl::TestWaylandServerThread* server) {
output2->SetOrigin(
gfx::Point(outout2_bounds.x(), outout2_bounds.y() + 700));
output2->SetLogicalOrigin(
gfx::Point(outout2_bounds.x(), outout2_bounds.y() + 700));
output2->Flush();
});
// The match rect is located outside the displays. Primary display must be
// returned.
EXPECT_EQ(
primary_display.id(),
platform_screen_->GetDisplayMatching(gfx::Rect(1024, 0, 10, 10)).id());
// At least some of the pixels are located on the display.
EXPECT_EQ(
primary_display.id(),
platform_screen_->GetDisplayMatching(gfx::Rect(1023, 0, 10, 10)).id());
// Most of pixels are located on second display.
EXPECT_EQ(
second_display.id(),
platform_screen_->GetDisplayMatching(gfx::Rect(1023, 695, 10, 10)).id());
// Empty rect results in primary display.
EXPECT_EQ(primary_display.id(),
platform_screen_->GetDisplayMatching(gfx::Rect(0, 0, 0, 0)).id());
platform_screen_->RemoveObserver(&observer);
PostToServerAndWait([&output2](wl::TestWaylandServerThread* server) {
output2->DestroyGlobal();
output2 = nullptr;
});
}
// Regression test for https://crbug.com/1362872.
TEST_P(WaylandScreenTest, GetPrimaryDisplayAfterRemoval) {
TestDisplayObserver observer;
platform_screen_->AddObserver(&observer);
const display::Display primary_display =
platform_screen_->GetPrimaryDisplay();
ASSERT_NE(primary_display.id(), display::kInvalidDisplayId);
ASSERT_EQ(1u, platform_screen_->GetAllDisplays().size());
// This results in an ASAN error unless GetPrimaryDisplay() is correctly
// implemented for empty display list. More details in the crbug above.
observer.set_displays_removed_closure(base::BindLambdaForTesting([&]() {
ASSERT_EQ(0u, platform_screen_->GetAllDisplays().size());
auto display = platform_screen_->GetPrimaryDisplay();
EXPECT_EQ(display::kDefaultDisplayId, display.id());
}));
PostToServerAndWait([](wl::TestWaylandServerThread* server) {
server->output()->DestroyGlobal();
});
platform_screen_->RemoveObserver(&observer);
}
TEST_P(WaylandScreenTest, GetDisplayForAcceleratedWidget) {
TestDisplayObserver observer;
platform_screen_->AddObserver(&observer);
const display::Display primary_display =
platform_screen_->GetPrimaryDisplay();
// Create an additional display. This has to be stored on the client thread,
// but must be used only on the server thread. Place it on the right side of
// the primary display.
const gfx::Rect output2_bounds =
gfx::Rect(primary_display.bounds().width(), 0, 1024, 768);
wl::TestOutput* output2 = nullptr;
PostToServerAndWait(
[&output2, &output2_bounds](wl::TestWaylandServerThread* server) {
output2 = server->CreateAndInitializeOutput(
wl::TestOutputMetrics(output2_bounds));
ASSERT_TRUE(output2);
});
WaitForAllDisplaysReady();
const display::Display secondary_display = observer.GetDisplay();
EXPECT_EQ(secondary_display.bounds(), output2_bounds);
const gfx::AcceleratedWidget widget = window_->GetWidget();
// There must be a primary display used if the window has not received an
// enter event yet.
ValidateTheDisplayForWidget(widget, primary_display.id());
const uint32_t surface_id = window_->root_surface()->get_surface_id();
// Now, send enter event for the surface, which was created before.
PostToServerAndWait([surface_id](wl::TestWaylandServerThread* server) {
wl::MockSurface* surface = server->GetObject<wl::MockSurface>(surface_id);
ASSERT_TRUE(surface);
wl_surface_send_enter(surface->resource(), server->output()->resource());
});
// The id of the entered display must correspond to the primary output.
ValidateTheDisplayForWidget(widget, primary_display.id());
// Enter the second output now.
PostToServerAndWait(
[output2, surface_id](wl::TestWaylandServerThread* server) {
wl_surface_send_enter(
server->GetObject<wl::MockSurface>(surface_id)->resource(),
output2->resource());
});
// The id of the entered display must still correspond to the primary output.
ValidateTheDisplayForWidget(widget, primary_display.id());
// Leave the first output.
PostToServerAndWait([surface_id](wl::TestWaylandServerThread* server) {
wl_surface_send_leave(
server->GetObject<wl::MockSurface>(surface_id)->resource(),
server->output()->resource());
});
// The id of the entered display must correspond to the second output.
ValidateTheDisplayForWidget(widget, secondary_display.id());
// Leaving the same output twice (check comment in
// WaylandWindow::OnEnteredOutputIdRemoved), must be ok and nothing must
// change.
PostToServerAndWait([surface_id](wl::TestWaylandServerThread* server) {
wl_surface_send_leave(
server->GetObject<wl::MockSurface>(surface_id)->resource(),
server->output()->resource());
});
// The id of the entered display must correspond to the second output.
ValidateTheDisplayForWidget(widget, secondary_display.id());
PostToServerAndWait([&output2](wl::TestWaylandServerThread* server) {
output2->DestroyGlobal();
output2 = nullptr;
});
}
TEST_P(WaylandScreenTest, GetCursorScreenPoint) {
MockWaylandPlatformWindowDelegate delegate;
std::unique_ptr<WaylandWindow> second_window =
CreateWaylandWindowWithProperties(gfx::Rect(0, 0, 1920, 1080),
PlatformWindowType::kWindow,
gfx::kNullAcceleratedWidget, &delegate);
const uint32_t surface_id = window_->root_surface()->get_surface_id();
PostToServerAndWait([surface_id](wl::TestWaylandServerThread* server) {
auto* surface = server->GetObject<wl::MockSurface>(surface_id);
ASSERT_TRUE(surface);
// Announce pointer capability so that WaylandPointer is created on the
// client side.
wl_seat_send_capabilities(server->seat()->resource(),
WL_SEAT_CAPABILITY_POINTER);
});
ASSERT_TRUE(connection_->seat()->pointer());
PostToServerAndWait([surface_id](wl::TestWaylandServerThread* server) {
wl::MockPointer* pointer = server->seat()->pointer();
auto* surface = server->GetObject<wl::MockSurface>(surface_id);
wl_pointer_send_enter(pointer->resource(), server->GetNextSerial(),
surface->resource(), 0, 0);
wl_pointer_send_frame(pointer->resource());
wl_pointer_send_motion(pointer->resource(), server->GetNextTime(),
wl_fixed_from_int(10), wl_fixed_from_int(20));
wl_pointer_send_frame(pointer->resource());
});
// WaylandScreen must return the last pointer location.
EXPECT_EQ(gfx::Point(10, 20), platform_screen_->GetCursorScreenPoint());
const uint32_t second_surface_id =
second_window->root_surface()->get_surface_id();
PostToServerAndWait(
[surface_id, second_surface_id](wl::TestWaylandServerThread* server) {
wl::MockPointer* pointer = server->seat()->pointer();
auto* surface = server->GetObject<wl::MockSurface>(surface_id);
auto* second_surface =
server->GetObject<wl::MockSurface>(second_surface_id);
ASSERT_TRUE(second_surface);
// Now, leave the first surface and enter second one.
wl_pointer_send_leave(pointer->resource(), server->GetNextSerial(),
surface->resource());
wl_pointer_send_frame(pointer->resource());
wl_pointer_send_enter(pointer->resource(), server->GetNextSerial(),
second_surface->resource(), 0, 0);
wl_pointer_send_frame(pointer->resource());
wl_pointer_send_motion(pointer->resource(), server->GetNextTime(),
wl_fixed_from_int(20), wl_fixed_from_int(10));
wl_pointer_send_frame(pointer->resource());
});
// WaylandScreen must return the last pointer location.
EXPECT_EQ(gfx::Point(20, 10), platform_screen_->GetCursorScreenPoint());
// Clear pointer focus.
PostToServerAndWait([second_surface_id](wl::TestWaylandServerThread* server) {
wl::MockPointer* pointer = server->seat()->pointer();
auto* second_surface =
server->GetObject<wl::MockSurface>(second_surface_id);
wl_pointer_send_leave(pointer->resource(), server->GetNextSerial(),
second_surface->resource());
wl_pointer_send_frame(pointer->resource());
});
// WaylandScreen must return a point, which is located outside of bounds of
// any window. Basically, it means that it takes the largest window and adds
// 10 pixels to its width and height, and returns the value.
const gfx::Rect second_window_bounds = second_window->GetBoundsInDIP();
// A second window has largest bounds. Thus, these bounds must be taken as a
// ground for the point outside any of the surfaces.
ASSERT_TRUE(window_->GetBoundsInDIP() < second_window_bounds);
EXPECT_EQ(gfx::Point(second_window_bounds.width() + 10,
second_window_bounds.height() + 10),
platform_screen_->GetCursorScreenPoint());
// Create a menu window now and ensure cursor position is always sent in
// regards to that window bounds.
std::unique_ptr<WaylandWindow> menu_window =
CreateWaylandWindowWithProperties(
gfx::Rect(second_window_bounds.width() - 10,
second_window_bounds.height() - 10, 10, 20),
PlatformWindowType::kMenu, second_window->GetWidget(), &delegate);
const uint32_t menu_surface_id =
menu_window->root_surface()->get_surface_id();
PostToServerAndWait([menu_surface_id](wl::TestWaylandServerThread* server) {
auto* menu_surface = server->GetObject<wl::MockSurface>(menu_surface_id);
ASSERT_TRUE(menu_surface);
wl::MockPointer* pointer = server->seat()->pointer();
wl_pointer_send_enter(pointer->resource(), server->GetNextSerial(),
menu_surface->resource(), 0, 0);
wl_pointer_send_frame(pointer->resource());
wl_pointer_send_motion(pointer->resource(), server->GetNextTime(),
wl_fixed_from_int(2), wl_fixed_from_int(1));
wl_pointer_send_frame(pointer->resource());
});
// The cursor screen point must be converted to the top-level window
// coordinates as long as Wayland doesn't provide global coordinates of
// surfaces and Chromium assumes those windows are always located at origin
// (0,0). For more information, check the comment in
// WaylandWindow::UpdateCursorPositionFromEvent.
EXPECT_EQ(gfx::Point(1912, 1071), platform_screen_->GetCursorScreenPoint());
// Leave the menu window and enter the top level window.
PostToServerAndWait([menu_surface_id,
second_surface_id](wl::TestWaylandServerThread* server) {
auto* menu_surface = server->GetObject<wl::MockSurface>(menu_surface_id);
ASSERT_TRUE(menu_surface);
auto* second_surface =
server->GetObject<wl::MockSurface>(second_surface_id);
wl::MockPointer* pointer = server->seat()->pointer();
wl_pointer_send_leave(pointer->resource(), server->GetNextSerial(),
menu_surface->resource());
wl_pointer_send_frame(pointer->resource());
wl_pointer_send_enter(pointer->resource(), server->GetNextSerial(),
second_surface->resource(), 0, 0);
wl_pointer_send_frame(pointer->resource());
wl_pointer_send_motion(pointer->resource(), server->GetNextTime(),
wl_fixed_from_int(1912), wl_fixed_from_int(1071));
wl_pointer_send_frame(pointer->resource());
});
// WaylandWindow::UpdateCursorPositionFromEvent mustn't convert this point,
// because it has already been located on the top-level window.
EXPECT_EQ(gfx::Point(1912, 1071), platform_screen_->GetCursorScreenPoint());
PostToServerAndWait([second_surface_id](wl::TestWaylandServerThread* server) {
wl::MockPointer* pointer = server->seat()->pointer();
auto* second_surface =
server->GetObject<wl::MockSurface>(second_surface_id);
wl_pointer_send_leave(pointer->resource(), server->GetNextSerial(),
second_surface->resource());
wl_pointer_send_frame(pointer->resource());
});
// Now, create a nested menu window and make sure that the cursor screen point
// still has been correct. The location of the window is on the right side of
// the main menu window.
const gfx::Rect menu_window_bounds = menu_window->GetBoundsInDIP();
std::unique_ptr<WaylandWindow> nested_menu_window =
CreateWaylandWindowWithProperties(
gfx::Rect(menu_window_bounds.x() + menu_window_bounds.width(),
menu_window_bounds.y() + 2, 10, 20),
PlatformWindowType::kMenu, second_window->GetWidget(), &delegate);
const uint32_t nested_menu_surface_id =
nested_menu_window->root_surface()->get_surface_id();
PostToServerAndWait(
[nested_menu_surface_id](wl::TestWaylandServerThread* server) {
wl::MockPointer* pointer = server->seat()->pointer();
auto* nested_menu_surface =
server->GetObject<wl::MockSurface>(nested_menu_surface_id);
ASSERT_TRUE(nested_menu_surface);
wl_pointer_send_enter(pointer->resource(), server->GetNextSerial(),
nested_menu_surface->resource(), 0, 0);
wl_pointer_send_frame(pointer->resource());
wl_pointer_send_motion(pointer->resource(), server->GetNextTime(),
wl_fixed_from_int(2), wl_fixed_from_int(3));
wl_pointer_send_frame(pointer->resource());
});
EXPECT_EQ(gfx::Point(1922, 1075), platform_screen_->GetCursorScreenPoint());
// Leave the nested surface and enter main menu surface. The cursor screen
// point still must be reported correctly.
PostToServerAndWait([nested_menu_surface_id,
menu_surface_id](wl::TestWaylandServerThread* server) {
wl::MockPointer* pointer = server->seat()->pointer();
auto* nested_menu_surface =
server->GetObject<wl::MockSurface>(nested_menu_surface_id);
auto* menu_surface = server->GetObject<wl::MockSurface>(menu_surface_id);
wl_pointer_send_leave(pointer->resource(), server->GetNextSerial(),
nested_menu_surface->resource());
wl_pointer_send_frame(pointer->resource());
wl_pointer_send_enter(pointer->resource(), server->GetNextSerial(),
menu_surface->resource(), 0, 0);
wl_pointer_send_frame(pointer->resource());
wl_pointer_send_motion(pointer->resource(), server->GetNextTime(),
wl_fixed_from_int(2), wl_fixed_from_int(1));
wl_pointer_send_frame(pointer->resource());
});
EXPECT_EQ(gfx::Point(1912, 1071), platform_screen_->GetCursorScreenPoint());
}
// Checks that the surface that backs the window receives new scale of the
// output that it is in.
TEST_P(WaylandScreenTest, SetWindowScale) {
constexpr int32_t kTripleScale = 3;
const uint32_t surface_id = window_->root_surface()->get_surface_id();
PostToServerAndWait([surface_id](wl::TestWaylandServerThread* server) {
auto* output = server->output();
// Place the window onto the output.
wl_surface_send_enter(
server->GetObject<wl::MockSurface>(surface_id)->resource(),
output->resource());
// Change the scale of the output. Windows looking into that output must
// get the new scale and update scale of their buffers. The default UI
// scale equals the output scale.
output->SetScale(kTripleScale);
output->Flush();
});
EXPECT_EQ(window_->applied_state().window_scale, kTripleScale);
// Now simulate the --force-device-scale-factor=1.5
const float kForcedUIScale = 1.5;
base::test::ScopedCommandLine command_line;
command_line.GetProcessCommandLine()->AppendSwitchASCII(
switches::kForceDeviceScaleFactor,
base::StringPrintf("%.1f", kForcedUIScale));
display::Display::ResetForceDeviceScaleFactorForTesting();
// Change the scale of the output again. Windows must update scale of
// their buffers but the UI scale must get the forced value.
constexpr int32_t kDoubleScale = 2;
// Question ourselves before questioning others!
EXPECT_NE(kForcedUIScale, kDoubleScale);
PostToServerAndWait([](wl::TestWaylandServerThread* server) {
server->output()->SetScale(kDoubleScale);
server->output()->Flush();
});
EXPECT_EQ(window_->applied_state().window_scale, kDoubleScale);
display::Display::ResetForceDeviceScaleFactorForTesting();
}
// Regression test for https://crbug.com/1346534.
//
// Scenario: With (at least) one output connected and a surface, with no output
// associated yet, ie: wl_surface.enter event not received yet for that surface,
// which implies in its scale being set to the primary output's scale at its
// initialization, any primary output scale update (or other properties that
// lead to scale change) must be propagated to the window.
TEST_P(WaylandScreenTest, SetWindowScaleWithoutEnteredOutput) {
// Test pre-conditions: single output setup whereas |output_| is the primary
// output managed by |output_manager_|, with initial scale == 1.
ASSERT_EQ(1u, output_manager_->GetAllOutputs().size());
// Ensure |surface_| has not entered any wl_output. Assuming |window_| has
// been already initialized with |output_|'s scale.
const uint32_t surface_id = window_->root_surface()->get_surface_id();
PostToServerAndWait([surface_id](wl::TestWaylandServerThread* server) {
auto* output = server->output();
ASSERT_TRUE(output);
ASSERT_EQ(1, output->GetScale());
wl_surface_send_leave(
server->GetObject<wl::MockSurface>(surface_id)->resource(),
server->output()->resource());
});
EXPECT_FALSE(window_->GetPreferredEnteredOutputId());
// Change |output_|'s scale and make sure |window_|'s scale is update
// accordingly.
PostToServerAndWait([](wl::TestWaylandServerThread* server) {
server->output()->SetScale(2);
server->output()->Flush();
});
EXPECT_EQ(window_->applied_state().window_scale, 2);
}
// Checks that output transform is properly translated into Display orientation.
// The first one is counter-clockwise, while the latter is clockwise.
TEST_P(WaylandScreenTest, Transform) {
constexpr std::pair<wl_output_transform, display::Display::Rotation>
kTestData[] = {
{WL_OUTPUT_TRANSFORM_NORMAL, display::Display::ROTATE_0},
{WL_OUTPUT_TRANSFORM_90, display::Display::ROTATE_270},
{WL_OUTPUT_TRANSFORM_180, display::Display::ROTATE_180},
{WL_OUTPUT_TRANSFORM_270, display::Display::ROTATE_90},
// Flipped transforms are not supported.
{WL_OUTPUT_TRANSFORM_FLIPPED, display::Display::ROTATE_0},
{WL_OUTPUT_TRANSFORM_FLIPPED_90, display::Display::ROTATE_0},
{WL_OUTPUT_TRANSFORM_FLIPPED_180, display::Display::ROTATE_0},
{WL_OUTPUT_TRANSFORM_FLIPPED_270, display::Display::ROTATE_0},
};
for (const auto& [transform, expected_rotation] : kTestData) {
PostToServerAndWait(
[new_transform = transform](wl::TestWaylandServerThread* server) {
auto* output = server->output();
output->SetPanelTransform(new_transform);
output->Flush();
});
auto main_display = platform_screen_->GetPrimaryDisplay();
EXPECT_EQ(main_display.panel_rotation(), expected_rotation);
EXPECT_EQ(main_display.rotation(), expected_rotation);
}
}
// Ensures WaylandOutputManager and WaylandScreen properly handle scenarios
// where multiple wl_output objects are announced but not "configured" (ie:
// size, position, mode, etc sent to client) at bind time.
TEST_P(WaylandScreenTest, DualOutput) {
// Create two new outputs which will announce the output globals to clients
// but will suppress sending the metrics events when the clients bind to
// these.
wl::TestOutput* output_1 = nullptr;
wl::TestOutput* output_2 = nullptr;
PostToServerAndWait([&](wl::TestWaylandServerThread* server) {
output_1 = server_.CreateAndInitializeOutput(
wl::TestOutputMetrics({800, 0, 800, 600}));
output_2 = server_.CreateAndInitializeOutput(
wl::TestOutputMetrics({1600, 0, 800, 600}));
output_1->set_suppress_implicit_flush(true);
output_2->set_suppress_implicit_flush(true);
});
// The client should only register the single (primary) display.
EXPECT_EQ(1u, platform_screen_->GetAllDisplays().size());
// Propagate the events for output_2 first. output_2 was advertised to clients
// after output_1.
PostToServerAndWait(
[&](wl::TestWaylandServerThread* server) { output_2->Flush(); });
// The client should now have a view of output_2.
EXPECT_EQ(2u, platform_screen_->GetAllDisplays().size());
// Propagate the events for output_1 last. output_1 was advertised to clients
// before output_2.
PostToServerAndWait(
[&](wl::TestWaylandServerThread* server) { output_1->Flush(); });
// The client should now have a view of all three displays.
EXPECT_EQ(3u, platform_screen_->GetAllDisplays().size());
}
// Regression test for crbug.com/1408304. Ensures that the WaylandScreen's
// internal output state is consistent when propagating change notifications to
// clients.
TEST_P(WaylandScreenTest, OutputStateIsConsistentWhenNotifyingObservers) {
// This has to be stored on the client thread, but must be used only on the
// server thread.
wl::TestOutput* output1 = nullptr;
wl::TestOutput* output2 = nullptr;
// Test to ensure that WaylandScreen output state remains consistent as
// metrics changed notifications are propagated.
TestDisplayObserver observer;
observer.set_display_metrics_changed_closure(
base::BindLambdaForTesting([&]() {
EXPECT_TRUE(platform_screen_->VerifyOutputStateConsistentForTesting());
}));
platform_screen_->AddObserver(&observer);
PostToServerAndWait([&output1](wl::TestWaylandServerThread* server) {
output1 = server->output();
});
ASSERT_FALSE(output1->GetPhysicalSize().IsEmpty());
// Add a second display. The second display is located to the right of first
// display like | || |.
PostToServerAndWait(
[&output2, &output1](wl::TestWaylandServerThread* server) {
output2 = server->CreateAndInitializeOutput(
wl::TestOutputMetrics({GetRightX(output1), 0, 800, 600}));
ASSERT_TRUE(output2);
});
WaitForAllDisplaysReady();
// Destroy primary display.
PostToServerAndWait([&output1](wl::TestWaylandServerThread* server) {
output1->DestroyGlobal();
output1 = nullptr;
});
}
INSTANTIATE_TEST_SUITE_P(XdgVersionStableTest,
WaylandScreenTest,
Values(wl::ServerConfig{}));
} // namespace ui
|