/******************************************************************** KSld - the KDE Screenlocker Daemon This file is part of the KDE project. Copyright (C) 2014 Martin Gräßlin 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 . *********************************************************************/ // own #include "../ksldapp.h" // Qt #include #include // xcb #include class KSldTest : public QObject { Q_OBJECT private Q_SLOTS: void initTestCase(); void testEstablishGrab(); }; void KSldTest::initTestCase() { QCoreApplication::setAttribute(Qt::AA_ForceRasterWidgets); } void KSldTest::testEstablishGrab() { ScreenLocker::KSldApp ksld; QVERIFY(ksld.establishGrab()); // grab is established, trying again should succeed as well QVERIFY(ksld.establishGrab()); // let's ungrab ksld.doUnlock(); // to get the grab to fail we need another X client // we start another process to perform our grab QProcess keyboardGrabber; keyboardGrabber.start(QStringLiteral("./keyboardGrabber")); QVERIFY(keyboardGrabber.waitForStarted()); // let's add some delay to be sure that keyboardGrabber has it's X stuff done QTest::qWait(100); // now grabbing should fail QVERIFY(!ksld.establishGrab()); // let's terminate again keyboardGrabber.terminate(); QVERIFY(keyboardGrabber.waitForFinished()); // now grabbing should succeed again QVERIFY(ksld.establishGrab()); ksld.doUnlock(); // now the same with pointer QProcess pointerGrabber; pointerGrabber.start(QStringLiteral("./pointerGrabber")); QVERIFY(pointerGrabber.waitForStarted()); // let's add some delay to be sure that pointerGrabber has it's X stuff done QTest::qWait(100); // now grabbing should fail QVERIFY(!ksld.establishGrab()); // let's terminate again pointerGrabber.terminate(); QVERIFY(pointerGrabber.waitForFinished()); // now grabbing should succeed again QVERIFY(ksld.establishGrab()); } QTEST_MAIN(KSldTest) #include "ksldtest.moc"