cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
54 lines
1.6 KiB
C++
54 lines
1.6 KiB
C++
/*
|
|
This file is part of the KDE libraries
|
|
SPDX-FileCopyrightText: 2015 Christoph Cullmann <cullmann@kde.org>
|
|
|
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
|
*/
|
|
|
|
#include <kiconloader.h>
|
|
|
|
#include <QStandardPaths>
|
|
#include <QTest>
|
|
|
|
#include <KConfigGroup>
|
|
#include <KIconTheme>
|
|
#include <KSharedConfig>
|
|
|
|
class KIconLoader_ResourceThemeTest : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
private Q_SLOTS:
|
|
void initTestCase()
|
|
{
|
|
QStandardPaths::setTestModeEnabled(true);
|
|
|
|
// set our test theme only present in :/icons
|
|
KConfigGroup cg(KSharedConfig::openConfig(), "Icons");
|
|
cg.writeEntry("Theme", "themeinresource");
|
|
cg.sync();
|
|
|
|
// ensure we don't use the breeze icon set from our lib for these tests but the fake we set up below
|
|
KIconTheme::forceThemeForTests(QString());
|
|
|
|
// Remove icon cache
|
|
const QString cacheFile = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + QStringLiteral("/icon-cache.kcache");
|
|
QFile::remove(cacheFile);
|
|
|
|
// Clear SHM cache
|
|
KIconLoader::global()->reconfigure(QString());
|
|
}
|
|
|
|
void testThemeFound()
|
|
{
|
|
// try to load icon that can only be found in resource theme and check we found it in the resource
|
|
QString path;
|
|
KIconLoader::global()->loadIcon(QStringLiteral("someiconintheme"), KIconLoader::Desktop, 22, KIconLoader::DefaultState, QStringList(), &path);
|
|
QCOMPARE(path, QStringLiteral(":/icons/themeinresource/22x22/appsNoContext/someiconintheme.png"));
|
|
}
|
|
};
|
|
|
|
QTEST_MAIN(KIconLoader_ResourceThemeTest)
|
|
|
|
#include "kiconloader_resourcethemetest.moc"
|