kdelibs/kdecore/tests/kautostarttest.cpp
Ivailo Monev fbfb374b9c generic: drop scripting and tray support
after changes to multiple sub-projects (Katie, kdelibs, kde-workspace
and kde-extraapps) that finally happened, can write lots about it but I
will keep it short - by rewriting parts that were using js/qml (e.g. the
plasma applets) the desktop startup was reduced to half, also the legacy
tray thing shall be no more (anything that needs tray icon shall be a
plasma applet now) thus some applications and features will be dropped
aswell. see all repositories for the changes done

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2023-10-21 08:06:58 +03:00

160 lines
5.6 KiB
C++

/* This file is part of the KDE libraries
Copyright (c) 2005 David Faure <faure@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2 as published by the Free Software Foundation.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include "kautostarttest.h"
#include "kstandarddirs.h"
#include "kdebug.h"
#include "kautostart.h"
#include "qtest_kde.h"
#include "moc_kautostarttest.cpp"
#include <QFile>
QTEST_KDEMAIN_CORE( KAutostartTest )
void KAutostartTest::testStartDetection_data()
{
QTest::addColumn<QString>("service");
QTest::addColumn<bool>("doesAutostart");
if ( KAutostart::isServiceRegistered("plasma-desktop") )
QTest::newRow("plasma-desktop") << "plasma-desktop" << true;
QTest::newRow("does not exist") << "doesnotexist" << false;
}
void KAutostartTest::testStartDetection()
{
QFETCH(QString, service);
QFETCH(bool, doesAutostart);
KAutostart autostart(service);
QCOMPARE(autostart.autostarts(), doesAutostart);
}
void KAutostartTest::testStartInEnvDetection_data()
{
QTest::addColumn<QString>("env");
QTest::addColumn<bool>("doesAutostart");
QTest::newRow("kde") << "KDE" << true;
QTest::newRow("xfce") << "XFCE" << false;
}
void KAutostartTest::testStartInEnvDetection()
{
QFETCH(QString, env);
QFETCH(bool, doesAutostart);
KAutostart autostart("plasma-desktop");
// Let's see if plasma.desktop actually exists
if ( KStandardDirs::locate("autostart", "plasma-desktop.desktop").isEmpty() )
QSKIP( "plasma-desktop.desktop not found, kdebase not installed", SkipSingle );
else
QCOMPARE(autostart.autostarts(env), doesAutostart);
}
void KAutostartTest::testStartphase_data()
{
QTest::addColumn<QString>("service");
QTest::addColumn<int>("startPhase");
if ( KAutostart::isServiceRegistered("plasma-desktop") )
QTest::newRow("plasma-desktop") << "plasma-desktop" << (int)KAutostart::BaseDesktop;
QTest::newRow("does not exist") << "doesnotexist"
<< (int)KAutostart::Applications;
}
void KAutostartTest::testStartphase()
{
QFETCH(QString, service);
QFETCH(int, startPhase);
KAutostart autostart(service);
QCOMPARE((int)autostart.startPhase(), startPhase);
}
void KAutostartTest::testStartName()
{
if ( !KAutostart::isServiceRegistered("plasma-desktop") )
QSKIP( "plasma-desktop.desktop not found, kdebase not installed", SkipSingle );
KAutostart autostart("plasma-desktop");
QCOMPARE(autostart.visibleName(), QString("Plasma Desktop Workspace"));
}
void KAutostartTest::testServiceRegistered()
{
KAutostart autostart;
QCOMPARE(KAutostart::isServiceRegistered("doesnotexist"), false);
if ( KStandardDirs::locate("autostart", "plasma-desktop.desktop").isEmpty() )
QSKIP( "plasma-desktop.desktop not found, kdebase not installed", SkipSingle );
QCOMPARE(KAutostart::isServiceRegistered("plasma-desktop"), true);
}
void KAutostartTest::testRegisteringAndManipulatingANewService()
{
QFile::remove(KStandardDirs::locateLocal("autostart", "doesnotexist.desktop"));
{
// need to clean up the KAutostart object before QFile can remove it
KAutostart autostart("doesnotexist");
QCOMPARE(autostart.autostarts(), false);
autostart.setCommand("aseigo");
autostart.setCommandToCheck("/bin/ls");
autostart.setVisibleName("doesnotexisttest");
autostart.setStartPhase(KAutostart::BaseDesktop);
autostart.setAllowedEnvironments(QStringList("KDE"));
autostart.addToAllowedEnvironments("XFCE");
autostart.addToAllowedEnvironments("GNOME");
autostart.removeFromAllowedEnvironments("GNOME");
autostart.setExcludedEnvironments(QStringList("GNOME"));
autostart.addToExcludedEnvironments("XFCE");
autostart.addToExcludedEnvironments("KDE");
autostart.removeFromExcludedEnvironments("KDE");
}
{
QStringList allowedEnvs;
allowedEnvs << "KDE" << "XFCE";
QStringList excludedEnvs;
excludedEnvs << "GNOME" << "XFCE";
KAutostart autostart("doesnotexist");
QCOMPARE(autostart.command(), QString("aseigo"));
QCOMPARE(autostart.autostarts(), true);
QCOMPARE(autostart.autostarts("KDE"), true);
QCOMPARE(autostart.autostarts("GNOME"), false);
QCOMPARE(autostart.autostarts("XFCE"), true);
QCOMPARE(autostart.autostarts("XFCE", KAutostart::CheckCommand), true);
QCOMPARE(autostart.visibleName(), QString("doesnotexisttest"));
QCOMPARE(autostart.commandToCheck(), QString("/bin/ls"));
QCOMPARE((int)autostart.startPhase(), (int)KAutostart::BaseDesktop);
QCOMPARE(autostart.allowedEnvironments(), allowedEnvs);
QCOMPARE(autostart.excludedEnvironments(), excludedEnvs);
autostart.setCommandToCheck("/bin/whozitwhat");
}
{
KAutostart autostart("doesnotexist");
QCOMPARE(autostart.autostarts("KDE", KAutostart::CheckCommand), false);
}
}
void KAutostartTest::testRemovalOfNewServiceFile()
{
QCOMPARE(QFile::remove(KStandardDirs::locateLocal("autostart", "doesnotexist.desktop")), true);
}