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
|
// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/exo/display.h"
#include "ash/public/cpp/shell_window_ids.h"
#include "ash/wm/desks/desks_util.h"
#include "base/memory/raw_ptr.h"
#include "chromeos/ui/base/window_pin_type.h"
#include "components/exo/buffer.h"
#include "components/exo/client_controlled_shell_surface.h"
#include "components/exo/data_device.h"
#include "components/exo/data_device_delegate.h"
#include "components/exo/data_exchange_delegate.h"
#include "components/exo/input_method_surface_manager.h"
#include "components/exo/notification_surface_manager.h"
#include "components/exo/shared_memory.h"
#include "components/exo/shell_surface.h"
#include "components/exo/shell_surface_util.h"
#include "components/exo/sub_surface.h"
#include "components/exo/surface.h"
#include "components/exo/test/exo_test_base.h"
#include "components/exo/test/exo_test_data_exchange_delegate.h"
#include "components/exo/test/shell_surface_builder.h"
#include "components/exo/toast_surface_manager.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/gfx/native_pixmap.h"
#include "ui/ozone/public/ozone_platform.h"
#include "ui/ozone/public/surface_factory_ozone.h"
namespace exo {
namespace {
class DisplayTest : public test::ExoTestBase {
public:
DisplayTest()
: test::ExoTestBase(base::test::TaskEnvironment::TimeSource::MOCK_TIME) {}
DisplayTest(const DisplayTest&) = delete;
DisplayTest& operator=(const DisplayTest&) = delete;
~DisplayTest() override = default;
protected:
// A property resolver for provide external shell surface source.
class TestPropertyResolver : public exo::WMHelper::AppPropertyResolver {
public:
TestPropertyResolver() = default;
~TestPropertyResolver() override = default;
void PopulateProperties(
const Params& params,
ui::PropertyHandler& out_properties_container) override {
if (params.window_session_id <= 0)
return;
auto it = shell_surface_map_.find(params.window_session_id);
if (it != shell_surface_map_.end()) {
SetShellClientControlledShellSurface(&out_properties_container,
it->second.release());
shell_surface_map_.erase(it);
}
}
void PutClientControlledShellSurface(
int window_session_id,
std::unique_ptr<exo::ClientControlledShellSurface> shell_surface) {
shell_surface_map_.emplace(window_session_id, std::move(shell_surface));
}
private:
std::map<int, std::unique_ptr<exo::ClientControlledShellSurface>>
shell_surface_map_;
};
TestPropertyResolver* property_resolver() { return resolver_; }
// test::ExoTestBase:
void SetUp() override {
test::ExoTestBase::SetUp();
auto resolver = std::make_unique<TestPropertyResolver>();
resolver_ = resolver.get();
WMHelper::GetInstance()->RegisterAppPropertyResolver(std::move(resolver));
}
private:
raw_ptr<TestPropertyResolver, DanglingUntriaged | ExperimentalAsh> resolver_;
};
TEST_F(DisplayTest, CreateSurface) {
Display display;
// Creating a surface should succeed.
std::unique_ptr<Surface> surface = display.CreateSurface();
EXPECT_TRUE(surface);
}
TEST_F(DisplayTest, CreateSharedMemory) {
Display display;
int shm_size = 8192;
base::UnsafeSharedMemoryRegion shared_memory =
base::UnsafeSharedMemoryRegion::Create(shm_size);
ASSERT_TRUE(shared_memory.IsValid());
// Creating a shared memory instance from a valid region should succeed.
std::unique_ptr<SharedMemory> shm1 =
display.CreateSharedMemory(std::move(shared_memory));
EXPECT_TRUE(shm1);
// Creating a shared memory instance from a invalid region should fail.
std::unique_ptr<SharedMemory> shm2 =
display.CreateSharedMemory(base::UnsafeSharedMemoryRegion());
EXPECT_FALSE(shm2);
}
// The test crashes: crbug.com/622724
TEST_F(DisplayTest, DISABLED_CreateLinuxDMABufBuffer) {
const gfx::Size buffer_size(256, 256);
Display display;
// Creating a prime buffer from a native pixmap handle should succeed.
scoped_refptr<gfx::NativePixmap> pixmap =
ui::OzonePlatform::GetInstance()
->GetSurfaceFactoryOzone()
->CreateNativePixmap(gfx::kNullAcceleratedWidget, VK_NULL_HANDLE,
buffer_size, gfx::BufferFormat::RGBA_8888,
gfx::BufferUsage::GPU_READ);
gfx::NativePixmapHandle native_pixmap_handle = pixmap->ExportHandle();
std::unique_ptr<Buffer> buffer1 =
display.CreateLinuxDMABufBuffer(buffer_size, gfx::BufferFormat::RGBA_8888,
std::move(native_pixmap_handle), false);
EXPECT_TRUE(buffer1);
// Create a handle without a file descriptor.
native_pixmap_handle = pixmap->ExportHandle();
native_pixmap_handle.planes[0].fd.reset();
// Creating a prime buffer using an invalid fd should fail.
std::unique_ptr<Buffer> buffer2 =
display.CreateLinuxDMABufBuffer(buffer_size, gfx::BufferFormat::RGBA_8888,
std::move(native_pixmap_handle), false);
EXPECT_FALSE(buffer2);
}
// TODO(dcastagna): Add YV12 unittest once we can allocate the buffer
// via Ozone. crbug.com/618516
TEST_F(DisplayTest, CreateShellSurface) {
Display display;
// Create two surfaces.
std::unique_ptr<Surface> surface1 = display.CreateSurface();
ASSERT_TRUE(surface1);
std::unique_ptr<Surface> surface2 = display.CreateSurface();
ASSERT_TRUE(surface2);
// Create a shell surface for surface1.
std::unique_ptr<ShellSurface> shell_surface1 =
display.CreateShellSurface(surface1.get());
EXPECT_TRUE(shell_surface1);
// Create a shell surface for surface2.
std::unique_ptr<ShellSurface> shell_surface2 =
display.CreateShellSurface(surface2.get());
EXPECT_TRUE(shell_surface2);
}
TEST_F(DisplayTest, CreateClientControlledShellSurface) {
Display display;
// Create two surfaces.
std::unique_ptr<Surface> surface1 = display.CreateSurface();
ASSERT_TRUE(surface1);
std::unique_ptr<Surface> surface2 = display.CreateSurface();
ASSERT_TRUE(surface2);
// Create a remote shell surface for surface1.
std::unique_ptr<ClientControlledShellSurface> shell_surface1 =
display.CreateOrGetClientControlledShellSurface(
surface1.get(), ash::kShellWindowId_SystemModalContainer,
/*default_scale_cancellation=*/true,
/*supports_floated_state=*/true);
ASSERT_TRUE(shell_surface1);
// Create a remote shell surface for surface2.
std::unique_ptr<ShellSurfaceBase> shell_surface2 =
display.CreateOrGetClientControlledShellSurface(
surface2.get(), ash::desks_util::GetActiveDeskContainerId(),
/*default_scale_cancellation=*/true,
/*supports_floated_state=*/true);
EXPECT_TRUE(shell_surface2);
}
TEST_F(DisplayTest, GetClientControlledShellSurface) {
Display display;
constexpr int kSessionId = 10001;
// Create a external surface, bind with a window id.
auto external_shell_surface = test::ShellSurfaceBuilder({20, 20})
.SetOrigin({10, 10})
.BuildClientControlledShellSurface();
auto* external_shell_surface_observer = external_shell_surface.get();
// Set external shell surface focus.
external_shell_surface->GetWidget()->GetNativeWindow()->Focus();
property_resolver()->PutClientControlledShellSurface(
kSessionId, std::move(external_shell_surface));
// Create surface with specific window id.
std::unique_ptr<Surface> surface_with_id = display.CreateSurface();
ASSERT_TRUE(surface_with_id);
surface_with_id->SetWindowSessionId(kSessionId);
// Get a remote shell surface by external source.
std::unique_ptr<ClientControlledShellSurface> shell_surface =
display.CreateOrGetClientControlledShellSurface(
surface_with_id.get(), ash::desks_util::GetActiveDeskContainerId(),
/*default_scale_cancellation=*/true,
/*supports_floated_state=*/true);
EXPECT_EQ(shell_surface.get(), external_shell_surface_observer);
EXPECT_EQ(surface_with_id.get(), shell_surface->root_surface());
// Focus state transferred to new root surface.
EXPECT_TRUE(shell_surface->root_surface()->window()->HasFocus());
}
TEST_F(DisplayTest, CreateSubSurface) {
Display display;
// Create child, parent and toplevel surfaces.
std::unique_ptr<Surface> child = display.CreateSurface();
ASSERT_TRUE(child);
std::unique_ptr<Surface> parent = display.CreateSurface();
ASSERT_TRUE(parent);
std::unique_ptr<Surface> toplevel = display.CreateSurface();
ASSERT_TRUE(toplevel);
// Attempting to create a sub surface for child with child as its parent
// should fail.
EXPECT_FALSE(display.CreateSubSurface(child.get(), child.get()));
// Create a sub surface for child.
std::unique_ptr<SubSurface> child_sub_surface =
display.CreateSubSurface(child.get(), toplevel.get());
EXPECT_TRUE(child_sub_surface);
// Attempting to create another sub surface when already assigned the role of
// sub surface should fail.
EXPECT_FALSE(display.CreateSubSurface(child.get(), parent.get()));
// Deleting the sub surface should allow a new sub surface to be created.
child_sub_surface.reset();
child_sub_surface = display.CreateSubSurface(child.get(), parent.get());
EXPECT_TRUE(child_sub_surface);
std::unique_ptr<Surface> sibling = display.CreateSurface();
ASSERT_TRUE(sibling);
// Create a sub surface for sibiling.
std::unique_ptr<SubSurface> sibling_sub_surface =
display.CreateSubSurface(sibling.get(), parent.get());
EXPECT_TRUE(sibling_sub_surface);
// Create a shell surface for toplevel surface.
std::unique_ptr<ShellSurface> shell_surface =
display.CreateShellSurface(toplevel.get());
EXPECT_TRUE(shell_surface);
// Attempting to create a sub surface when already assigned the role of
// shell surface should fail.
EXPECT_FALSE(display.CreateSubSurface(toplevel.get(), parent.get()));
std::unique_ptr<Surface> grandchild = display.CreateSurface();
ASSERT_TRUE(grandchild);
// Create a sub surface for grandchild.
std::unique_ptr<SubSurface> grandchild_sub_surface =
display.CreateSubSurface(grandchild.get(), child.get());
EXPECT_TRUE(grandchild_sub_surface);
// Attempting to create a sub surface for parent with child as its parent
// should fail.
EXPECT_FALSE(display.CreateSubSurface(parent.get(), child.get()));
// Attempting to create a sub surface for parent with grandchild as its parent
// should fail.
EXPECT_FALSE(display.CreateSubSurface(parent.get(), grandchild.get()));
// Create a sub surface for parent.
EXPECT_TRUE(display.CreateSubSurface(parent.get(), toplevel.get()));
}
class TestDataDeviceDelegate : public DataDeviceDelegate {
public:
// Overriden from DataDeviceDelegate:
void OnDataDeviceDestroying(DataDevice* data_device) override {}
DataOffer* OnDataOffer() override { return nullptr; }
void OnEnter(Surface* surface,
const gfx::PointF& location,
const DataOffer& data_offer) override {}
void OnLeave() override {}
void OnMotion(base::TimeTicks time_stamp,
const gfx::PointF& location) override {}
void OnDrop() override {}
void OnSelection(const DataOffer& data_offer) override {}
bool CanAcceptDataEventsForSurface(Surface* surface) const override {
return false;
}
};
TEST_F(DisplayTest, CreateDataDevice) {
TestDataDeviceDelegate device_delegate;
Display display(nullptr, nullptr, nullptr,
std::make_unique<TestDataExchangeDelegate>());
std::unique_ptr<DataDevice> device =
display.CreateDataDevice(&device_delegate);
EXPECT_TRUE(device.get());
}
TEST_F(DisplayTest, PinnedAlwaysOnTopWindow) {
Display display;
std::unique_ptr<Surface> surface = display.CreateSurface();
ASSERT_TRUE(surface);
std::unique_ptr<ClientControlledShellSurface> shell_surface =
display.CreateOrGetClientControlledShellSurface(
surface.get(), ash::desks_util::GetActiveDeskContainerId(),
/*default_scale_cancellation=*/true,
/*supports_floated_state=*/true);
ASSERT_TRUE(shell_surface);
// This should not crash
shell_surface->SetAlwaysOnTop(true);
shell_surface->SetPinned(chromeos::WindowPinType::kPinned);
}
} // namespace
} // namespace exo
|