2014-09-02 07:34:31 +00:00
|
|
|
/********************************************************************
|
2014-09-17 13:57:56 +00:00
|
|
|
Copyright 2014 Martin Gräßlin <mgraesslin@kde.org>
|
2014-09-02 07:34:31 +00:00
|
|
|
|
2014-09-17 13:57:56 +00:00
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) version 3, or any
|
|
|
|
later version accepted by the membership of KDE e.V. (or its
|
|
|
|
successor approved by the membership of KDE e.V.), which shall
|
|
|
|
act as a proxy defined in Section 6 of version 3 of the license.
|
2014-09-02 07:34:31 +00:00
|
|
|
|
2014-09-17 13:57:56 +00:00
|
|
|
This library is distributed in the hope that it will be useful,
|
2014-09-02 07:34:31 +00:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2014-09-17 13:57:56 +00:00
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
2014-09-02 07:34:31 +00:00
|
|
|
|
2014-09-17 13:57:56 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2014-09-02 07:34:31 +00:00
|
|
|
*********************************************************************/
|
|
|
|
// Qt
|
|
|
|
#include <QtTest/QtTest>
|
|
|
|
// WaylandServer
|
2014-09-17 12:35:33 +00:00
|
|
|
#include "../../src/server/display.h"
|
2014-11-25 12:52:40 +00:00
|
|
|
#include "../../src/server/pointer_interface.h"
|
2014-09-17 12:35:33 +00:00
|
|
|
#include "../../src/server/seat_interface.h"
|
2014-09-02 07:34:31 +00:00
|
|
|
|
2014-09-17 14:10:38 +00:00
|
|
|
using namespace KWayland::Server;
|
2014-09-02 07:34:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
class TestWaylandServerSeat : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
private Q_SLOTS:
|
|
|
|
void testCapabilities();
|
|
|
|
void testName();
|
|
|
|
void testPointerButton();
|
|
|
|
void testPointerPos();
|
2014-09-03 18:02:42 +00:00
|
|
|
void testDestroyThroughTerminate();
|
2014-09-02 07:34:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const QString s_socketName = QStringLiteral("kwin-wayland-server-seat-test-0");
|
|
|
|
|
|
|
|
void TestWaylandServerSeat::testCapabilities()
|
|
|
|
{
|
|
|
|
Display display;
|
|
|
|
display.setSocketName(s_socketName);
|
|
|
|
display.start();
|
|
|
|
SeatInterface *seat = display.createSeat();
|
|
|
|
QVERIFY(!seat->hasKeyboard());
|
|
|
|
QVERIFY(!seat->hasPointer());
|
|
|
|
QVERIFY(!seat->hasTouch());
|
|
|
|
|
|
|
|
QSignalSpy keyboardSpy(seat, SIGNAL(hasKeyboardChanged(bool)));
|
|
|
|
QVERIFY(keyboardSpy.isValid());
|
|
|
|
seat->setHasKeyboard(true);
|
|
|
|
QCOMPARE(keyboardSpy.count(), 1);
|
|
|
|
QVERIFY(keyboardSpy.last().first().toBool());
|
|
|
|
QVERIFY(seat->hasKeyboard());
|
|
|
|
seat->setHasKeyboard(false);
|
|
|
|
QCOMPARE(keyboardSpy.count(), 2);
|
|
|
|
QVERIFY(!keyboardSpy.last().first().toBool());
|
|
|
|
QVERIFY(!seat->hasKeyboard());
|
|
|
|
seat->setHasKeyboard(false);
|
|
|
|
QCOMPARE(keyboardSpy.count(), 2);
|
|
|
|
|
|
|
|
QSignalSpy pointerSpy(seat, SIGNAL(hasPointerChanged(bool)));
|
|
|
|
QVERIFY(pointerSpy.isValid());
|
|
|
|
seat->setHasPointer(true);
|
|
|
|
QCOMPARE(pointerSpy.count(), 1);
|
|
|
|
QVERIFY(pointerSpy.last().first().toBool());
|
|
|
|
QVERIFY(seat->hasPointer());
|
|
|
|
seat->setHasPointer(false);
|
|
|
|
QCOMPARE(pointerSpy.count(), 2);
|
|
|
|
QVERIFY(!pointerSpy.last().first().toBool());
|
|
|
|
QVERIFY(!seat->hasPointer());
|
|
|
|
seat->setHasPointer(false);
|
|
|
|
QCOMPARE(pointerSpy.count(), 2);
|
|
|
|
|
|
|
|
QSignalSpy touchSpy(seat, SIGNAL(hasTouchChanged(bool)));
|
|
|
|
QVERIFY(touchSpy.isValid());
|
|
|
|
seat->setHasTouch(true);
|
|
|
|
QCOMPARE(touchSpy.count(), 1);
|
|
|
|
QVERIFY(touchSpy.last().first().toBool());
|
|
|
|
QVERIFY(seat->hasTouch());
|
|
|
|
seat->setHasTouch(false);
|
|
|
|
QCOMPARE(touchSpy.count(), 2);
|
|
|
|
QVERIFY(!touchSpy.last().first().toBool());
|
|
|
|
QVERIFY(!seat->hasTouch());
|
|
|
|
seat->setHasTouch(false);
|
|
|
|
QCOMPARE(touchSpy.count(), 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestWaylandServerSeat::testName()
|
|
|
|
{
|
|
|
|
Display display;
|
|
|
|
display.setSocketName(s_socketName);
|
|
|
|
display.start();
|
|
|
|
SeatInterface *seat = display.createSeat();
|
|
|
|
QCOMPARE(seat->name(), QString());
|
|
|
|
|
|
|
|
QSignalSpy nameSpy(seat, SIGNAL(nameChanged(QString)));
|
|
|
|
QVERIFY(nameSpy.isValid());
|
|
|
|
const QString name = QStringLiteral("foobar");
|
|
|
|
seat->setName(name);
|
|
|
|
QCOMPARE(seat->name(), name);
|
|
|
|
QCOMPARE(nameSpy.count(), 1);
|
|
|
|
QCOMPARE(nameSpy.first().first().toString(), name);
|
|
|
|
seat->setName(name);
|
|
|
|
QCOMPARE(nameSpy.count(), 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestWaylandServerSeat::testPointerButton()
|
|
|
|
{
|
|
|
|
Display display;
|
|
|
|
display.setSocketName(s_socketName);
|
|
|
|
display.start();
|
|
|
|
SeatInterface *seat = display.createSeat();
|
2014-11-25 15:04:07 +00:00
|
|
|
PointerInterface *pointer = seat->focusedPointer();
|
2014-11-26 09:34:23 +00:00
|
|
|
QVERIFY(!pointer);
|
2014-09-02 07:34:31 +00:00
|
|
|
|
|
|
|
// no button pressed yet, should be released and no serial
|
2014-11-26 10:50:52 +00:00
|
|
|
QVERIFY(!seat->isPointerButtonPressed(0));
|
|
|
|
QVERIFY(!seat->isPointerButtonPressed(1));
|
|
|
|
QCOMPARE(seat->pointerButtonSerial(0), quint32(0));
|
|
|
|
QCOMPARE(seat->pointerButtonSerial(1), quint32(0));
|
2014-09-02 07:34:31 +00:00
|
|
|
|
|
|
|
// mark the button as pressed
|
2014-11-26 10:50:52 +00:00
|
|
|
seat->pointerButtonPressed(0);
|
|
|
|
QVERIFY(seat->isPointerButtonPressed(0));
|
|
|
|
QCOMPARE(seat->pointerButtonSerial(0), display.serial());
|
2014-09-02 07:34:31 +00:00
|
|
|
|
|
|
|
// other button should still be unpressed
|
2014-11-26 10:50:52 +00:00
|
|
|
QVERIFY(!seat->isPointerButtonPressed(1));
|
|
|
|
QCOMPARE(seat->pointerButtonSerial(1), quint32(0));
|
2014-09-02 07:34:31 +00:00
|
|
|
|
|
|
|
// release it again
|
2014-11-26 10:50:52 +00:00
|
|
|
seat->pointerButtonReleased(0);
|
|
|
|
QVERIFY(!seat->isPointerButtonPressed(0));
|
|
|
|
QCOMPARE(seat->pointerButtonSerial(0), display.serial());
|
2014-09-02 07:34:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TestWaylandServerSeat::testPointerPos()
|
|
|
|
{
|
|
|
|
Display display;
|
|
|
|
display.setSocketName(s_socketName);
|
|
|
|
display.start();
|
|
|
|
SeatInterface *seat = display.createSeat();
|
2014-11-25 13:24:52 +00:00
|
|
|
QSignalSpy seatPosSpy(seat, SIGNAL(pointerPosChanged(QPointF)));
|
|
|
|
QVERIFY(seatPosSpy.isValid());
|
2014-11-25 15:04:07 +00:00
|
|
|
PointerInterface *pointer = seat->focusedPointer();
|
2014-11-26 09:34:23 +00:00
|
|
|
QVERIFY(!pointer);
|
2014-09-02 07:34:31 +00:00
|
|
|
|
2014-11-25 13:24:52 +00:00
|
|
|
QCOMPARE(seat->pointerPos(), QPointF());
|
2014-09-02 07:34:31 +00:00
|
|
|
|
2014-11-26 10:50:52 +00:00
|
|
|
seat->setPointerPos(QPointF(10, 15));
|
2014-11-25 13:24:52 +00:00
|
|
|
QCOMPARE(seat->pointerPos(), QPointF(10, 15));
|
|
|
|
QCOMPARE(seatPosSpy.count(), 1);
|
|
|
|
QCOMPARE(seatPosSpy.first().first().toPointF(), QPointF(10, 15));
|
2014-09-02 07:34:31 +00:00
|
|
|
|
2014-11-26 10:50:52 +00:00
|
|
|
seat->setPointerPos(QPointF(10, 15));
|
2014-11-25 13:24:52 +00:00
|
|
|
QCOMPARE(seatPosSpy.count(), 1);
|
|
|
|
|
|
|
|
seat->setPointerPos(QPointF(5, 7));
|
|
|
|
QCOMPARE(seat->pointerPos(), QPointF(5, 7));
|
|
|
|
QCOMPARE(seatPosSpy.count(), 2);
|
|
|
|
QCOMPARE(seatPosSpy.first().first().toPointF(), QPointF(10, 15));
|
|
|
|
QCOMPARE(seatPosSpy.last().first().toPointF(), QPointF(5, 7));
|
2014-09-02 07:34:31 +00:00
|
|
|
}
|
|
|
|
|
2014-09-03 18:02:42 +00:00
|
|
|
void TestWaylandServerSeat::testDestroyThroughTerminate()
|
|
|
|
{
|
|
|
|
Display display;
|
|
|
|
display.setSocketName(s_socketName);
|
|
|
|
display.start();
|
|
|
|
SeatInterface *seat = display.createSeat();
|
|
|
|
QSignalSpy destroyedSpy(seat, SIGNAL(destroyed(QObject*)));
|
|
|
|
QVERIFY(destroyedSpy.isValid());
|
|
|
|
display.terminate();
|
|
|
|
QVERIFY(!destroyedSpy.isEmpty());
|
|
|
|
}
|
|
|
|
|
2014-09-23 10:00:17 +00:00
|
|
|
QTEST_GUILESS_MAIN(TestWaylandServerSeat)
|
2014-09-02 07:34:31 +00:00
|
|
|
#include "test_seat.moc"
|