[kwin_wayland] Test that Seat gets destroyed when Display terminates
This commit is contained in:
parent
d080ce7356
commit
1574c47d27
1 changed files with 13 additions and 0 deletions
|
@ -34,6 +34,7 @@ private Q_SLOTS:
|
|||
void testName();
|
||||
void testPointerButton();
|
||||
void testPointerPos();
|
||||
void testDestroyThroughTerminate();
|
||||
};
|
||||
|
||||
static const QString s_socketName = QStringLiteral("kwin-wayland-server-seat-test-0");
|
||||
|
@ -157,5 +158,17 @@ void TestWaylandServerSeat::testPointerPos()
|
|||
QCOMPARE(posSpy.count(), 1);
|
||||
}
|
||||
|
||||
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());
|
||||
}
|
||||
|
||||
QTEST_MAIN(TestWaylandServerSeat)
|
||||
#include "test_seat.moc"
|
||||
|
|
Loading…
Reference in a new issue