2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2019-01-10 11:04:28 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2019 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
|
2019-01-10 11:04:28 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2019-01-10 11:04:28 +00:00
|
|
|
|
|
|
|
#include "kwin_wayland_test.h"
|
|
|
|
|
2023-11-20 14:53:25 +00:00
|
|
|
#include "effect/effecthandler.h"
|
2023-11-17 08:59:08 +00:00
|
|
|
#include "effect/effectloader.h"
|
2021-08-12 14:16:08 +00:00
|
|
|
#include "virtualdesktops.h"
|
2019-01-10 11:04:28 +00:00
|
|
|
#include "wayland_server.h"
|
2022-04-22 17:39:12 +00:00
|
|
|
#include "window.h"
|
2019-01-10 11:04:28 +00:00
|
|
|
#include "workspace.h"
|
|
|
|
|
|
|
|
#include <KWayland/Client/surface.h>
|
|
|
|
|
|
|
|
using namespace KWin;
|
|
|
|
|
|
|
|
static const QString s_socketName = QStringLiteral("wayland_test_effects_desktop_switching_animation-0");
|
|
|
|
|
|
|
|
class DesktopSwitchingAnimationTest : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
private Q_SLOTS:
|
|
|
|
void initTestCase();
|
|
|
|
void init();
|
|
|
|
void cleanup();
|
|
|
|
|
|
|
|
void testSwitchDesktops_data();
|
|
|
|
void testSwitchDesktops();
|
|
|
|
};
|
|
|
|
|
|
|
|
void DesktopSwitchingAnimationTest::initTestCase()
|
|
|
|
{
|
2023-04-15 19:28:12 +00:00
|
|
|
if (!Test::renderNodeAvailable()) {
|
|
|
|
QSKIP("no render node available");
|
|
|
|
return;
|
|
|
|
}
|
2019-01-10 11:04:28 +00:00
|
|
|
qputenv("XDG_DATA_DIRS", QCoreApplication::applicationDirPath().toUtf8());
|
|
|
|
|
2022-04-22 17:39:12 +00:00
|
|
|
qRegisterMetaType<KWin::Window *>();
|
2020-07-07 09:32:29 +00:00
|
|
|
QSignalSpy applicationStartedSpy(kwinApp(), &Application::started);
|
2020-12-09 13:06:15 +00:00
|
|
|
QVERIFY(waylandServer()->init(s_socketName));
|
2023-05-08 10:16:00 +00:00
|
|
|
Test::setOutputConfig({
|
|
|
|
QRect(0, 0, 1280, 1024),
|
|
|
|
QRect(1280, 0, 1280, 1024),
|
|
|
|
});
|
2019-01-10 11:04:28 +00:00
|
|
|
|
|
|
|
auto config = KSharedConfig::openConfig(QString(), KConfig::SimpleConfig);
|
|
|
|
KConfigGroup plugins(config, QStringLiteral("Plugins"));
|
2021-10-09 15:38:14 +00:00
|
|
|
const auto builtinNames = EffectLoader().listOfKnownEffects();
|
2019-01-10 11:04:28 +00:00
|
|
|
for (const QString &name : builtinNames) {
|
|
|
|
plugins.writeEntry(name + QStringLiteral("Enabled"), false);
|
|
|
|
}
|
|
|
|
config->sync();
|
|
|
|
kwinApp()->setConfig(config);
|
|
|
|
|
|
|
|
qputenv("KWIN_COMPOSE", QByteArrayLiteral("O2"));
|
|
|
|
qputenv("KWIN_EFFECTS_FORCE_ANIMATIONS", QByteArrayLiteral("1"));
|
|
|
|
|
|
|
|
kwinApp()->start();
|
2020-07-07 09:32:29 +00:00
|
|
|
QVERIFY(applicationStartedSpy.wait());
|
2019-01-10 11:04:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DesktopSwitchingAnimationTest::init()
|
|
|
|
{
|
|
|
|
QVERIFY(Test::setupWaylandConnection());
|
|
|
|
}
|
|
|
|
|
|
|
|
void DesktopSwitchingAnimationTest::cleanup()
|
|
|
|
{
|
2023-11-15 09:51:56 +00:00
|
|
|
QVERIFY(effects);
|
|
|
|
effects->unloadAllEffects();
|
|
|
|
QVERIFY(effects->loadedEffects().isEmpty());
|
2019-01-10 11:04:28 +00:00
|
|
|
|
|
|
|
VirtualDesktopManager::self()->setCount(1);
|
|
|
|
|
|
|
|
Test::destroyWaylandConnection();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DesktopSwitchingAnimationTest::testSwitchDesktops_data()
|
|
|
|
{
|
|
|
|
QTest::addColumn<QString>("effectName");
|
|
|
|
|
2023-03-17 19:51:32 +00:00
|
|
|
QTest::newRow("Fade Desktop") << QStringLiteral("fadedesktop");
|
2022-03-23 10:13:38 +00:00
|
|
|
QTest::newRow("Slide") << QStringLiteral("slide");
|
2019-01-10 11:04:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DesktopSwitchingAnimationTest::testSwitchDesktops()
|
|
|
|
{
|
|
|
|
// This test verifies that virtual desktop switching animation effects actually
|
|
|
|
// try to animate switching between desktops.
|
|
|
|
|
|
|
|
// We need at least 2 virtual desktops for the test.
|
|
|
|
VirtualDesktopManager::self()->setCount(2);
|
|
|
|
QCOMPARE(VirtualDesktopManager::self()->current(), 1u);
|
|
|
|
QCOMPARE(VirtualDesktopManager::self()->count(), 2u);
|
|
|
|
|
2022-04-23 19:51:16 +00:00
|
|
|
// The Fade Desktop effect will do nothing if there are no windows to fade,
|
|
|
|
// so we have to create a dummy test window.
|
2022-08-01 21:29:02 +00:00
|
|
|
std::unique_ptr<KWayland::Client::Surface> surface(Test::createSurface());
|
|
|
|
QVERIFY(surface != nullptr);
|
|
|
|
std::unique_ptr<Test::XdgToplevel> shellSurface(Test::createXdgToplevelSurface(surface.get()));
|
|
|
|
QVERIFY(shellSurface != nullptr);
|
|
|
|
Window *window = Test::renderAndWaitForShown(surface.get(), QSize(100, 50), Qt::blue);
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(window);
|
|
|
|
QCOMPARE(window->desktops().count(), 1);
|
|
|
|
QCOMPARE(window->desktops().first(), VirtualDesktopManager::self()->desktops().first());
|
2019-01-10 11:04:28 +00:00
|
|
|
|
|
|
|
// Load effect that will be tested.
|
|
|
|
QFETCH(QString, effectName);
|
2023-11-15 09:51:56 +00:00
|
|
|
QVERIFY(effects);
|
|
|
|
QVERIFY(effects->loadEffect(effectName));
|
|
|
|
QCOMPARE(effects->loadedEffects().count(), 1);
|
|
|
|
QCOMPARE(effects->loadedEffects().first(), effectName);
|
|
|
|
Effect *effect = effects->findEffect(effectName);
|
2019-01-10 11:04:28 +00:00
|
|
|
QVERIFY(effect);
|
|
|
|
QVERIFY(!effect->isActive());
|
|
|
|
|
|
|
|
// Switch to the second virtual desktop.
|
|
|
|
VirtualDesktopManager::self()->setCurrent(2u);
|
|
|
|
QCOMPARE(VirtualDesktopManager::self()->current(), 2u);
|
|
|
|
QVERIFY(effect->isActive());
|
|
|
|
QCOMPARE(effects->activeFullScreenEffect(), effect);
|
|
|
|
|
|
|
|
// Eventually, the animation will be complete.
|
|
|
|
QTRY_VERIFY(!effect->isActive());
|
|
|
|
QTRY_COMPARE(effects->activeFullScreenEffect(), nullptr);
|
|
|
|
|
2022-04-23 19:51:16 +00:00
|
|
|
// Destroy the test window.
|
2019-01-10 11:04:28 +00:00
|
|
|
surface.reset();
|
2023-04-21 20:28:48 +00:00
|
|
|
QVERIFY(Test::waitForWindowClosed(window));
|
2019-01-10 11:04:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
WAYLANDTEST_MAIN(DesktopSwitchingAnimationTest)
|
|
|
|
#include "desktop_switching_animation_test.moc"
|