mirror of
https://github.com/arcan1s/awesome-widgets.git
synced 2025-04-24 15:37:23 +00:00
118 lines
3.4 KiB
C++
118 lines
3.4 KiB
C++
/***************************************************************************
|
|
* This file is part of awesome-widgets *
|
|
* *
|
|
* awesome-widgets 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 3 of the *
|
|
* License, or (at your option) any later version. *
|
|
* *
|
|
* awesome-widgets 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 awesome-widgets. If not, see http://www.gnu.org/licenses/ *
|
|
***************************************************************************/
|
|
|
|
#include "testdpplugin.h"
|
|
|
|
#include <KWindowSystem>
|
|
#include <QtTest>
|
|
|
|
#include "awtestlibrary.h"
|
|
#include "dpadds.h"
|
|
|
|
|
|
void TestDPPlugin::initTestCase()
|
|
{
|
|
AWTestLibrary::init();
|
|
plugin = new DPAdds(this);
|
|
m_isKwinActive = AWTestLibrary::isKWinActive();
|
|
}
|
|
|
|
|
|
void TestDPPlugin::cleanupTestCase()
|
|
{
|
|
delete plugin;
|
|
}
|
|
|
|
|
|
void TestDPPlugin::test_desktops()
|
|
{
|
|
if (!m_isKwinActive)
|
|
QSKIP("KWin inactive, skip Destkop panel tests");
|
|
|
|
auto current = plugin->currentDesktop();
|
|
auto total = plugin->numberOfDesktops();
|
|
QVERIFY(total != 0);
|
|
QVERIFY(current <= total);
|
|
|
|
int number;
|
|
if (total == 1)
|
|
number = current;
|
|
else
|
|
number = current == (total - 1) ? current - 1 : current + 1;
|
|
QSignalSpy spy(KWindowSystem::self(), SIGNAL(currentDesktopChanged(int)));
|
|
plugin->setCurrentDesktop(number);
|
|
QVERIFY(spy.wait(5000));
|
|
QCOMPARE(plugin->currentDesktop(), number);
|
|
|
|
plugin->setCurrentDesktop(current);
|
|
QVERIFY(spy.wait(5000));
|
|
QCOMPARE(plugin->currentDesktop(), current);
|
|
}
|
|
|
|
|
|
void TestDPPlugin::test_dictKeys()
|
|
{
|
|
if (!m_isKwinActive)
|
|
QSKIP("KWin inactive, skip Destkop panel tests");
|
|
|
|
QCOMPARE(plugin->dictKeys().count(), 4);
|
|
pattern += plugin->dictKeys().join(" $");
|
|
}
|
|
|
|
|
|
void TestDPPlugin::test_infoByKey()
|
|
{
|
|
if (!m_isKwinActive)
|
|
QSKIP("KWin inactive, skip Destkop panel tests");
|
|
|
|
// nothing to test here yet
|
|
QVERIFY(true);
|
|
}
|
|
|
|
|
|
void TestDPPlugin::test_parsePattern()
|
|
{
|
|
if (!m_isKwinActive)
|
|
QSKIP("KWin inactive, skip Destkop panel tests");
|
|
|
|
auto result = plugin->parsePattern(pattern, plugin->currentDesktop());
|
|
QVERIFY(!result.isEmpty());
|
|
QVERIFY(result != pattern);
|
|
for (auto &key : plugin->dictKeys())
|
|
QVERIFY(!result.contains(key));
|
|
}
|
|
|
|
|
|
void TestDPPlugin::test_tooltipImage()
|
|
{
|
|
if (!m_isKwinActive)
|
|
QSKIP("KWin inactive, skip Destkop panel tests");
|
|
|
|
QVariantMap data;
|
|
data["tooltipColor"] = "#000000";
|
|
data["tooltipType"] = "windows";
|
|
data["tooltipWidth"] = 300;
|
|
plugin->setToolTipData(data);
|
|
|
|
auto image = plugin->toolTipImage(plugin->currentDesktop());
|
|
QVERIFY(image.startsWith("<img src=\""));
|
|
QVERIFY(image.endsWith("\"/>"));
|
|
}
|
|
|
|
|
|
QTEST_MAIN(TestDPPlugin);
|