You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
116 lines
3.9 KiB
116 lines
3.9 KiB
/******************************************************************** |
|
KWin - the KDE window manager |
|
This file is part of the KDE project. |
|
|
|
Copyright (C) 2015 Martin Gräßlin <mgraesslin@kde.org> |
|
|
|
This program is free software; you can redistribute it and/or modify |
|
it under the terms of the GNU General Public License as published by |
|
the Free Software Foundation; either version 2 of the License, or |
|
(at your option) any later version. |
|
|
|
This program is distributed in the hope that it will be useful, |
|
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
GNU General Public License for more details. |
|
|
|
You should have received a copy of the GNU General Public License |
|
along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
*********************************************************************/ |
|
#include "kwin_wayland_test.h" |
|
#include "platform.h" |
|
#include "abstract_client.h" |
|
#include "screens.h" |
|
#include "wayland_server.h" |
|
#include "workspace.h" |
|
#include "shell_client.h" |
|
|
|
#include <KWayland/Client/connection_thread.h> |
|
#include <KWayland/Client/compositor.h> |
|
#include <KWayland/Client/shell.h> |
|
#include <KWayland/Client/surface.h> |
|
|
|
namespace KWin |
|
{ |
|
|
|
static const QString s_socketName = QStringLiteral("wayland_test_kwin_transient_no_input-0"); |
|
|
|
class TransientNoInputTest : public QObject |
|
{ |
|
Q_OBJECT |
|
private Q_SLOTS: |
|
void initTestCase(); |
|
void init(); |
|
void cleanup(); |
|
void testTransientNoFocus(); |
|
}; |
|
|
|
void TransientNoInputTest::initTestCase() |
|
{ |
|
qRegisterMetaType<KWin::ShellClient*>(); |
|
QSignalSpy workspaceCreatedSpy(kwinApp(), &Application::workspaceCreated); |
|
QVERIFY(workspaceCreatedSpy.isValid()); |
|
kwinApp()->platform()->setInitialWindowSize(QSize(1280, 1024)); |
|
QVERIFY(waylandServer()->init(s_socketName.toLocal8Bit())); |
|
kwinApp()->start(); |
|
QVERIFY(workspaceCreatedSpy.wait()); |
|
} |
|
|
|
void TransientNoInputTest::init() |
|
{ |
|
QVERIFY(Test::setupWaylandConnection(s_socketName)); |
|
} |
|
|
|
void TransientNoInputTest::cleanup() |
|
{ |
|
Test::destroyWaylandConnection(); |
|
} |
|
|
|
void TransientNoInputTest::testTransientNoFocus() |
|
{ |
|
using namespace KWayland::Client; |
|
|
|
QSignalSpy clientAddedSpy(waylandServer(), &WaylandServer::shellClientAdded); |
|
QVERIFY(clientAddedSpy.isValid()); |
|
|
|
QScopedPointer<Surface> surface(Test::createSurface()); |
|
QVERIFY(!surface.isNull()); |
|
|
|
QScopedPointer<ShellSurface> shellSurface(Test::createShellSurface(surface.data())); |
|
QVERIFY(!shellSurface.isNull()); |
|
// let's render |
|
Test::render(surface.data(), QSize(100, 50), Qt::blue); |
|
|
|
Test::flushWaylandConnection(); |
|
QVERIFY(clientAddedSpy.wait()); |
|
AbstractClient *c = workspace()->activeClient(); |
|
QVERIFY(c); |
|
QCOMPARE(clientAddedSpy.first().first().value<ShellClient*>(), c); |
|
|
|
// let's create a transient with no input |
|
QScopedPointer<Surface> transientSurface(Test::createSurface()); |
|
QVERIFY(!transientSurface.isNull()); |
|
QScopedPointer<ShellSurface> transientShellSurface(Test::createShellSurface(transientSurface.data())); |
|
QVERIFY(!transientShellSurface.isNull()); |
|
transientShellSurface->setTransient(surface.data(), QPoint(10, 20), ShellSurface::TransientFlag::NoFocus); |
|
Test::flushWaylandConnection(); |
|
// let's render |
|
Test::render(transientSurface.data(), QSize(200, 20), Qt::red); |
|
Test::flushWaylandConnection(); |
|
QVERIFY(clientAddedSpy.wait()); |
|
// get the latest ShellClient |
|
auto transientClient = clientAddedSpy.last().first().value<ShellClient*>(); |
|
QVERIFY(transientClient != c); |
|
QCOMPARE(transientClient->geometry(), QRect(c->x() + 10, c->y() + 20, 200, 20)); |
|
QVERIFY(transientClient->isTransient()); |
|
QCOMPARE(transientClient->transientPlacementHint(), QPoint(10, 20)); |
|
QVERIFY(!transientClient->wantsInput()); |
|
|
|
// workspace's active window should not have changed |
|
QCOMPARE(workspace()->activeClient(), c); |
|
} |
|
|
|
} |
|
|
|
WAYLANDTEST_MAIN(KWin::TransientNoInputTest) |
|
#include "transient_no_input_test.moc"
|
|
|