diff --git a/kdecore/tests/kautostarttest.cpp b/kdecore/tests/kautostarttest.cpp index 38170c51b9..f6811e0271 100644 --- a/kdecore/tests/kautostarttest.cpp +++ b/kdecore/tests/kautostarttest.cpp @@ -1,168 +1,168 @@ /* This file is part of the KDE libraries Copyright (c) 2005 David Faure 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 "kstandarddirs.h" #include #include #include "kautostarttest.h" #include "kautostarttest.moc" #include QTEST_KDEMAIN_CORE( KAutostartTest ) #include void KAutostartTest::testStartDetection_data() { QTest::addColumn("service"); QTest::addColumn("doesAutostart"); - if ( KAutostart::isServiceRegistered("panel") ) - QTest::newRow("kicker") << "panel" << true; + if ( KAutostart::isServiceRegistered("plasma") ) + QTest::newRow("plasma") << "plasma" << true; if ( KAutostart::isServiceRegistered("khotkeys") ) QTest::newRow("khotkeys") << "khotkeys" << false; 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("env"); QTest::addColumn("doesAutostart"); QTest::newRow("kde") << "KDE" << true; QTest::newRow("xfce") << "XFCE" << false; } void KAutostartTest::testStartInEnvDetection() { QFETCH(QString, env); QFETCH(bool, doesAutostart); - KAutostart autostart("panel"); - // Let's see if panel.desktop actually exists - if ( KStandardDirs::locate("panel", "autostart").isEmpty() ) - QSKIP( "panel.desktop not found, kdebase not installed", SkipSingle ); + KAutostart autostart("plasma"); + // Let's see if plasma.desktop actually exists + if ( KStandardDirs::locate("autostart", "plasma.desktop").isEmpty() ) + QSKIP( "plasma.desktop not found, kdebase not installed", SkipSingle ); else QCOMPARE(autostart.autostarts(env), doesAutostart); } void KAutostartTest::testStartphase_data() { QTest::addColumn("service"); QTest::addColumn("startPhase"); - if ( KAutostart::isServiceRegistered("kicker") ) - QTest::newRow("kicker") << "panel" << (int)KAutostart::BaseDesktop; + if ( KAutostart::isServiceRegistered("plasma") ) + QTest::newRow("plasma") << "plasma" << (int)KAutostart::BaseDesktop; if ( KAutostart::isServiceRegistered("klipper") ) QTest::newRow("klipper") << "klipper" << (int)KAutostart::Applications; if ( KAutostart::isServiceRegistered("khotkeys") ) QTest::newRow("khotkeys") << "ktip" << (int)KAutostart::Applications; 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("panel") ) - QSKIP( "panel.desktop not found, kdebase not installed", SkipSingle ); - KAutostart autostart("panel"); - QCOMPARE(autostart.visibleName(), QString("KDE Panel")); + if ( !KAutostart::isServiceRegistered("plasma") ) + QSKIP( "plasma.desktop not found, kdebase not installed", SkipSingle ); + KAutostart autostart("plasma"); + QCOMPARE(autostart.visibleName(), QString("Plasma")); } void KAutostartTest::testServiceRegistered() { KAutostart autostart; QCOMPARE(KAutostart::isServiceRegistered("doesnotexist"), false); - if ( KStandardDirs::locate("autostart", "panel.desktop").isEmpty() ) - QSKIP( "panel.desktop not found, kdebase not installed", SkipSingle ); - QCOMPARE(KAutostart::isServiceRegistered("panel"), true); + if ( KStandardDirs::locate("autostart", "plasma.desktop").isEmpty() ) + QSKIP( "plasma.desktop not found, kdebase not installed", SkipSingle ); + QCOMPARE(KAutostart::isServiceRegistered("plasma"), 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); }