1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
|
/********************************************************************
Copyright 2016 Eike Hein <hein@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) version 3, or any
later version accepted by the membership of KDE e.V. (or its
successor approved by the membership of KDE e.V.), which shall
act as a proxy defined in Section 6 of version 3 of the license.
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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library. If not, see <http://www.gnu.org/licenses/>.
*********************************************************************/
#include <QObject>
#include <KConfigGroup>
#include <KDesktopFile>
#include <KIconTheme>
#include <KService>
#include <KSharedConfig>
#include <KSycoca>
#include <QDir>
#include <QIcon>
#include <QStandardPaths>
#include <QTemporaryDir>
#include <QTest>
#include "tasktools.h"
// Taken from tst_qstandardpaths.
#if defined(Q_OS_UNIX) && !defined(Q_OS_MAC) && !defined(Q_OS_BLACKBERRY) && !defined(Q_OS_ANDROID)
#define Q_XDG_PLATFORM
#endif
using namespace TaskManager;
class TaskToolsTest : public QObject
{
Q_OBJECT
private Q_SLOTS:
void initTestCase();
void cleanupTestCase();
void shouldFindApp();
void shouldFindDefaultApp();
void shouldCompareLauncherUrls();
private:
QString appLinkPath();
void fillReferenceAppData();
void createAppLink();
void createIcon();
AppData m_referenceAppData;
QTemporaryDir m_tempDir;
};
void TaskToolsTest::initTestCase()
{
QStandardPaths::enableTestMode(true);
QVERIFY(m_tempDir.isValid());
QVERIFY(QDir().mkpath(m_tempDir.path() + QLatin1String("/config")));
QVERIFY(QDir().mkpath(m_tempDir.path() + QLatin1String("/cache")));
QVERIFY(QDir().mkpath(m_tempDir.path() + QLatin1String("/data/applications")));
#ifdef Q_XDG_PLATFORM
qputenv("XDG_CONFIG_HOME", QFile::encodeName(m_tempDir.path() + QLatin1String("/config")));
qputenv("XDG_CACHE_HOME", QFile::encodeName(m_tempDir.path() + QLatin1String("/cache")));
qputenv("XDG_DATA_DIRS", QFile::encodeName(m_tempDir.path() + QLatin1String("/data")));
#else
QSKIP("This test requires XDG.");
#endif
createIcon();
fillReferenceAppData();
createAppLink();
QFile::remove(KSycoca::absoluteFilePath());
KSycoca::self()->ensureCacheValid();
QVERIFY(QFile::exists(KSycoca::absoluteFilePath()));
}
void TaskToolsTest::cleanupTestCase()
{
QFile::remove(KSycoca::absoluteFilePath());
}
void TaskToolsTest::shouldFindApp()
{
// FIXME Test icon.
const AppData &data = appDataFromUrl(QUrl::fromLocalFile(appLinkPath()));
QCOMPARE(data.id, m_referenceAppData.id);
QCOMPARE(data.name, m_referenceAppData.name);
QCOMPARE(data.genericName, m_referenceAppData.genericName);
QCOMPARE(data.url, m_referenceAppData.url);
}
void TaskToolsTest::shouldFindDefaultApp()
{
// FIXME Test other recognized default app types.
KConfigGroup config(KSharedConfig::openConfig(), "General");
config.writePathEntry("BrowserApplication", QLatin1String("konqueror"));
QVERIFY(defaultApplication(QUrl("wrong://url")).isEmpty());
QCOMPARE(defaultApplication(QUrl("preferred://browser")), QLatin1String("konqueror"));
}
void TaskToolsTest::shouldCompareLauncherUrls()
{
QUrl a(QLatin1String("file:///usr/share/applications/org.kde.dolphin.desktop"));
QUrl b(QLatin1String("file:///usr/share/applications/org.kde.konsole.desktop"));
QUrl c(QLatin1String("file:///usr/share/applications/org.kde.dolphin.desktop?iconData=foo"));
QUrl d(QLatin1String("file:///usr/share/applications/org.kde.konsole.desktop?iconData=bar"));
QVERIFY(launcherUrlsMatch(QUrl(a), QUrl(a)));
QVERIFY(launcherUrlsMatch(QUrl(a), QUrl(a), Strict));
QVERIFY(launcherUrlsMatch(QUrl(a), QUrl(a), IgnoreQueryItems));;
QVERIFY(!launcherUrlsMatch(QUrl(a), QUrl(b)));
QVERIFY(!launcherUrlsMatch(QUrl(a), QUrl(b), Strict));
QVERIFY(!launcherUrlsMatch(QUrl(a), QUrl(b), IgnoreQueryItems));
QVERIFY(!launcherUrlsMatch(QUrl(b), QUrl(c), Strict));
QVERIFY(!launcherUrlsMatch(QUrl(c), QUrl(d), Strict));
QVERIFY(launcherUrlsMatch(QUrl(a), QUrl(c), IgnoreQueryItems));
QVERIFY(!launcherUrlsMatch(QUrl(c), QUrl(d), IgnoreQueryItems));
}
QString TaskToolsTest::appLinkPath()
{
return QString(m_tempDir.path() + QLatin1String("/data/applications/org.kde.konversation.desktop"));
}
void TaskToolsTest::fillReferenceAppData()
{
// FIXME Add icon.
m_referenceAppData.id = QLatin1String("org.kde.konversation");
m_referenceAppData.name = QLatin1String("Konversation");
m_referenceAppData.genericName = QLatin1String("IRC Client");
m_referenceAppData.url = QUrl::fromLocalFile(appLinkPath());
}
void TaskToolsTest::createAppLink()
{
KDesktopFile file(appLinkPath());
KConfigGroup group = file.desktopGroup();
group.writeEntry(QLatin1String("Type"), QString("Application"));
group.writeEntry(QLatin1String("Name"), m_referenceAppData.name);
group.writeEntry(QLatin1String("GenericName"), m_referenceAppData.genericName);
group.writeEntry(QLatin1String("Icon"), QString("konversation"));
group.writeEntry(QLatin1String("Exec"), QString("konversation"));
file.sync();
QVERIFY(file.hasApplicationType());
QVERIFY(QFile::exists(appLinkPath()));
QVERIFY(KDesktopFile::isDesktopFile(appLinkPath()));
}
void TaskToolsTest::createIcon()
{
// FIXME KIconLoaderPrivate::initIconThemes: Error: standard icon theme "oxygen" not found!
QString iconDir = m_tempDir.path() + QLatin1String("/data/icons/");
QVERIFY(QDir().mkpath(iconDir));
QIcon::setThemeSearchPaths(QStringList() << m_tempDir.path() + QLatin1String("/data/icons/"));
QCOMPARE(QIcon::themeSearchPaths(), QStringList() << iconDir);
iconDir = iconDir + QLatin1String("/") + KIconTheme::defaultThemeName();
QVERIFY(QDir().mkpath(iconDir));
const QString &themeFile = iconDir + QLatin1String("/index.theme");
KConfig config(themeFile);
KConfigGroup group(config.group(QLatin1String("Icon Theme")));
group.writeEntry(QLatin1String("Name"), KIconTheme::defaultThemeName());
group.writeEntry(QLatin1String("Inherits"), QString("hicolor"));
config.sync();
QVERIFY(QFile::exists(themeFile));
iconDir = iconDir + QLatin1String("/64x64/apps");
QVERIFY(QDir().mkpath(iconDir));
const QString &iconPath = iconDir + QLatin1String("/konversation.png");
QImage image(64, 64, QImage::Format_Mono);
image.save(iconPath);
QVERIFY(QFile::exists(iconPath));
}
QTEST_MAIN(TaskToolsTest)
#include "tasktoolstest.moc"
|