/* KWin - the KDE window manager This file is part of the KDE project. SPDX-FileCopyrightText: 2017 Martin Flöser SPDX-License-Identifier: GPL-2.0-or-later */ #include "kwin_wayland_test.h" #include "platform.h" #include "wayland_server.h" #include "window.h" #include "workspace.h" #include #include using namespace KWin; using namespace KWayland::Client; static const QString s_socketName = QStringLiteral("wayland_test_kwin_showing_desktop-0"); class ShowingDesktopTest : public QObject { Q_OBJECT private Q_SLOTS: void initTestCase(); void init(); void cleanup(); void testRestoreFocus(); void testRestoreFocusWithDesktopWindow(); }; void ShowingDesktopTest::initTestCase() { qRegisterMetaType(); QSignalSpy applicationStartedSpy(kwinApp(), &Application::started); QVERIFY(applicationStartedSpy.isValid()); kwinApp()->platform()->setInitialWindowSize(QSize(1280, 1024)); QVERIFY(waylandServer()->init(s_socketName)); kwinApp()->start(); QVERIFY(applicationStartedSpy.wait()); } void ShowingDesktopTest::init() { QVERIFY(Test::setupWaylandConnection(Test::AdditionalWaylandInterface::PlasmaShell)); } void ShowingDesktopTest::cleanup() { Test::destroyWaylandConnection(); } void ShowingDesktopTest::testRestoreFocus() { std::unique_ptr surface1(Test::createSurface()); std::unique_ptr shellSurface1(Test::createXdgToplevelSurface(surface1.get())); auto window1 = Test::renderAndWaitForShown(surface1.get(), QSize(100, 50), Qt::blue); std::unique_ptr surface2(Test::createSurface()); std::unique_ptr shellSurface2(Test::createXdgToplevelSurface(surface2.get())); auto window2 = Test::renderAndWaitForShown(surface2.get(), QSize(100, 50), Qt::blue); QVERIFY(window1 != window2); QCOMPARE(workspace()->activeWindow(), window2); workspace()->slotToggleShowDesktop(); QVERIFY(workspace()->showingDesktop()); workspace()->slotToggleShowDesktop(); QVERIFY(!workspace()->showingDesktop()); QVERIFY(workspace()->activeWindow()); QCOMPARE(workspace()->activeWindow(), window2); } void ShowingDesktopTest::testRestoreFocusWithDesktopWindow() { // first create a desktop window std::unique_ptr desktopSurface(Test::createSurface()); QVERIFY(desktopSurface != nullptr); std::unique_ptr desktopShellSurface(Test::createXdgToplevelSurface(desktopSurface.get())); QVERIFY(desktopSurface != nullptr); std::unique_ptr plasmaSurface(Test::waylandPlasmaShell()->createSurface(desktopSurface.get())); QVERIFY(plasmaSurface != nullptr); plasmaSurface->setRole(PlasmaShellSurface::Role::Desktop); auto desktop = Test::renderAndWaitForShown(desktopSurface.get(), QSize(100, 50), Qt::blue); QVERIFY(desktop); QVERIFY(desktop->isDesktop()); // now create some windows std::unique_ptr surface1(Test::createSurface()); std::unique_ptr shellSurface1(Test::createXdgToplevelSurface(surface1.get())); auto window1 = Test::renderAndWaitForShown(surface1.get(), QSize(100, 50), Qt::blue); std::unique_ptr surface2(Test::createSurface()); std::unique_ptr shellSurface2(Test::createXdgToplevelSurface(surface2.get())); auto window2 = Test::renderAndWaitForShown(surface2.get(), QSize(100, 50), Qt::blue); QVERIFY(window1 != window2); QCOMPARE(workspace()->activeWindow(), window2); workspace()->slotToggleShowDesktop(); QVERIFY(workspace()->showingDesktop()); QCOMPARE(workspace()->activeWindow(), desktop); workspace()->slotToggleShowDesktop(); QVERIFY(!workspace()->showingDesktop()); QVERIFY(workspace()->activeWindow()); QCOMPARE(workspace()->activeWindow(), window2); } WAYLANDTEST_MAIN(ShowingDesktopTest) #include "showing_desktop_test.moc"