2015-10-07 17:06:34 +00:00
|
|
|
/********************************************************************
|
|
|
|
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"
|
2016-04-07 07:24:17 +00:00
|
|
|
#include "platform.h"
|
2015-10-07 17:06:34 +00:00
|
|
|
#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());
|
2016-04-07 06:28:35 +00:00
|
|
|
kwinApp()->platform()->setInitialWindowSize(QSize(1280, 1024));
|
2016-07-04 07:09:03 +00:00
|
|
|
QVERIFY(waylandServer()->init(s_socketName.toLocal8Bit()));
|
2015-10-07 17:06:34 +00:00
|
|
|
kwinApp()->start();
|
|
|
|
QVERIFY(workspaceCreatedSpy.wait());
|
|
|
|
}
|
|
|
|
|
|
|
|
void TransientNoInputTest::init()
|
|
|
|
{
|
2016-06-30 11:32:54 +00:00
|
|
|
QVERIFY(Test::setupWaylandConnection(s_socketName));
|
2015-10-07 17:06:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TransientNoInputTest::cleanup()
|
|
|
|
{
|
2016-06-30 11:32:54 +00:00
|
|
|
Test::destroyWaylandConnection();
|
2015-10-07 17:06:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TransientNoInputTest::testTransientNoFocus()
|
|
|
|
{
|
|
|
|
using namespace KWayland::Client;
|
|
|
|
|
|
|
|
QSignalSpy clientAddedSpy(waylandServer(), &WaylandServer::shellClientAdded);
|
|
|
|
QVERIFY(clientAddedSpy.isValid());
|
|
|
|
|
2016-06-30 11:32:54 +00:00
|
|
|
QScopedPointer<Surface> surface(Test::createSurface());
|
2015-10-07 17:06:34 +00:00
|
|
|
QVERIFY(!surface.isNull());
|
|
|
|
|
2016-06-30 11:32:54 +00:00
|
|
|
QScopedPointer<ShellSurface> shellSurface(Test::createShellSurface(surface.data()));
|
2015-10-07 17:06:34 +00:00
|
|
|
QVERIFY(!shellSurface.isNull());
|
|
|
|
// let's render
|
2016-06-30 11:32:54 +00:00
|
|
|
Test::render(surface.data(), QSize(100, 50), Qt::blue);
|
2015-10-07 17:06:34 +00:00
|
|
|
|
2016-06-30 11:32:54 +00:00
|
|
|
Test::flushWaylandConnection();
|
2015-10-07 17:06:34 +00:00
|
|
|
QVERIFY(clientAddedSpy.wait());
|
|
|
|
AbstractClient *c = workspace()->activeClient();
|
|
|
|
QVERIFY(c);
|
|
|
|
QCOMPARE(clientAddedSpy.first().first().value<ShellClient*>(), c);
|
|
|
|
|
|
|
|
// let's create a transient with no input
|
2016-06-30 11:32:54 +00:00
|
|
|
QScopedPointer<Surface> transientSurface(Test::createSurface());
|
2015-10-07 17:06:34 +00:00
|
|
|
QVERIFY(!transientSurface.isNull());
|
2016-06-30 11:32:54 +00:00
|
|
|
QScopedPointer<ShellSurface> transientShellSurface(Test::createShellSurface(transientSurface.data()));
|
2015-10-07 17:06:34 +00:00
|
|
|
QVERIFY(!transientShellSurface.isNull());
|
|
|
|
transientShellSurface->setTransient(surface.data(), QPoint(10, 20), ShellSurface::TransientFlag::NoFocus);
|
2016-06-30 11:32:54 +00:00
|
|
|
Test::flushWaylandConnection();
|
2015-10-07 17:06:34 +00:00
|
|
|
// let's render
|
2016-06-30 11:32:54 +00:00
|
|
|
Test::render(transientSurface.data(), QSize(200, 20), Qt::red);
|
|
|
|
Test::flushWaylandConnection();
|
2015-10-07 17:06:34 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-02-11 08:34:19 +00:00
|
|
|
WAYLANDTEST_MAIN(KWin::TransientNoInputTest)
|
2015-10-07 17:06:34 +00:00
|
|
|
#include "transient_no_input_test.moc"
|