diff options
author | Jenkins CI <null@kde.org> | 2013-12-18 00:45:18 +0000 |
---|---|---|
committer | Jenkins CI <null@kde.org> | 2013-12-18 00:45:18 +0000 |
commit | c38b88497a833e482e6892b72c8f52adec6de857 (patch) | |
tree | 8c2d4b788cf54ab2179ffe53515d276feaeba2d1 /tier1/kconfig/autotests/kdesktopfiletest.cpp | |
download | kconfig-c38b88497a833e482e6892b72c8f52adec6de857.tar.gz kconfig-c38b88497a833e482e6892b72c8f52adec6de857.tar.bz2 |
Initial import from the monolithic kdelibs.
This is the beginning of revision history for this module. If you
want to look at revision history older than this, please refer to the
techbase wiki for how to use Git history grafting. At the time of
writing, this wiki is located here:
http://community.kde.org/Frameworks/GitOldHistory
If you have already performed the grafting and you don't see any
history beyond this commit, try running "git log" with the "--follow"
argument.
Branched from the monolithic repo, kdelibs frameworks branch, at commit
162066dbbecde401a7347a1cff4fe72a9c919f58
Diffstat (limited to 'tier1/kconfig/autotests/kdesktopfiletest.cpp')
-rw-r--r-- | tier1/kconfig/autotests/kdesktopfiletest.cpp | 138 |
1 files changed, 138 insertions, 0 deletions
diff --git a/tier1/kconfig/autotests/kdesktopfiletest.cpp b/tier1/kconfig/autotests/kdesktopfiletest.cpp new file mode 100644 index 00000000..d77e3a50 --- /dev/null +++ b/tier1/kconfig/autotests/kdesktopfiletest.cpp @@ -0,0 +1,138 @@ +/* + * Copyright (C) 2006 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 "kdesktopfiletest.h" +#include <kconfiggroup.h> +#include <qtemporaryfile.h> + +#include "kdesktopfile.h" + +#include <QtTest> + +QTEST_MAIN( KDesktopFileTest ) + +void KDesktopFileTest::testRead() +{ + QTemporaryFile file("testReadXXXXXX.desktop"); + QVERIFY( file.open() ); + const QString fileName = file.fileName(); + QTextStream ts( &file ); + ts << + "[Desktop Entry]\n" + "Type=Application\n" + "Name=My Application\n" + "Icon=foo\n" + "\n"; + file.close(); + QVERIFY(QFile::exists(fileName)); + QVERIFY(KDesktopFile::isDesktopFile(fileName)); + KDesktopFile df(fileName); + QCOMPARE(df.readType(), QString::fromLatin1("Application")); + QVERIFY(df.hasApplicationType()); + QCOMPARE(df.readName(), QString::fromLatin1("My Application")); + QCOMPARE(df.readIcon(), QString::fromLatin1("foo")); + QVERIFY(!df.hasLinkType()); + QCOMPARE(df.fileName(), QFileInfo(fileName).canonicalFilePath()); +} + +void KDesktopFileTest::testSuccessfulTryExec() +{ + QTemporaryFile file; + QVERIFY( file.open() ); + const QString fileName = file.fileName(); + QTextStream ts( &file ); + ts << + "[Desktop Entry]\n" + "TryExec=whoami\n" + "\n"; + file.close(); + QVERIFY(QFile::exists(fileName)); + KDesktopFile df(fileName); + QCOMPARE(df.tryExec(), true); +} + +void KDesktopFileTest::testUnsuccessfulTryExec() +{ + QTemporaryFile file; + QVERIFY( file.open() ); + const QString fileName = file.fileName(); + QTextStream ts( &file ); + ts << + "[Desktop Entry]\n" + "TryExec=/does/not/exist\n" + "\n"; + file.close(); + QVERIFY(QFile::exists(fileName)); + KDesktopFile df(fileName); + QCOMPARE(df.tryExec(), false); +} + +void KDesktopFileTest::testActionGroup() +{ + QTemporaryFile file; + QVERIFY( file.open() ); + const QString fileName = file.fileName(); + QTextStream ts( &file ); + ts << + "[Desktop Entry]\n" + "Actions=encrypt;\n" + "[Desktop Action encrypt]\n" + "Name=Encrypt file\n" + "\n"; + file.close(); + QVERIFY(QFile::exists(fileName)); + KDesktopFile df(fileName); + QCOMPARE(df.readType(), QString()); + QCOMPARE(df.fileName(), fileName); + QCOMPARE(df.readActions(), QStringList() << "encrypt"); + QCOMPARE(df.hasActionGroup("encrypt"), true); + QCOMPARE(df.hasActionGroup("doesnotexist"), false); + KConfigGroup cg = df.actionGroup("encrypt"); + QVERIFY(cg.hasKey("Name")); + QCOMPARE(cg.readEntry("Name"), QString("Encrypt file")); +} + +void KDesktopFileTest::testIsAuthorizedDesktopFile() +{ + QTemporaryFile file("testAuthXXXXXX.desktop"); + QVERIFY( file.open() ); + const QString fileName = file.fileName(); + QTextStream ts( &file ); + ts << + "[Desktop Entry]\n" + "Type=Application\n" + "Name=My Application\n" + "Exec=kfoo\n" + "\n"; + file.close(); + QVERIFY(QFile::exists(fileName)); + QVERIFY(!KDesktopFile::isAuthorizedDesktopFile(fileName)); + + const QString installedFile = QStandardPaths::locate(QStandardPaths::GenericDataLocation, QLatin1String("/kde5/services/") + "http_cache_cleaner.desktop"); + if (!installedFile.isEmpty()) { + QVERIFY(KDesktopFile::isAuthorizedDesktopFile(installedFile)); + } else { + qWarning("Skipping test for http_cache_cleaner.desktop, not found. kio not installed?"); + } + + const QString autostartFile = QStandardPaths::locate(QStandardPaths::GenericConfigLocation, QLatin1String("autostart/") + "plasma-desktop.desktop"); + if (!autostartFile.isEmpty()) { + QVERIFY(KDesktopFile::isAuthorizedDesktopFile(autostartFile)); + } else { + qWarning("Skipping test for plasma-desktop.desktop, not found. kde-workspace not installed?"); + } +} |