plasma-framework/autotests/configmodeltest.cpp
Marco Martin c318fde313 make packageurlinterceptor as noop as possible
Summary:
minimize file access during url rewrite

we still need it for accessing stuff under code/

Test Plan: plasma still loads, seems to save ~2%

Reviewers: #plasma, davidedmundson

Reviewed By: #plasma, davidedmundson

Subscribers: davidedmundson, ngraham, apol, plasma-devel, #frameworks

Tags: #plasma, #frameworks

Differential Revision: https://phabricator.kde.org/D9124
2017-12-18 13:00:31 +01:00

125 lines
5.8 KiB
C++

/******************************************************************************
* Copyright 2016 David Rosca <nowrep@gmail.com> *
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Library General Public *
* License as published by the Free Software Foundation; either *
* version 2 of the License, or (at your option) any later version. *
* *
* 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 "configmodeltest.h"
#include "plasma/applet.h"
#include "plasma/package.h"
#include "plasmaquick/configmodel.h"
#include "plasmaquick/private/configcategory_p.cpp"
#include <KConfigLoader>
#include <QQmlEngine>
#include <QQmlComponent>
void ConfigModelTest::configSchemeFromPackage()
{
Plasma::Applet *applet = Plasma::Applet::loadPlasmoid(QFINDTESTDATA("data/testconfigpackage"));
QCOMPARE(applet->configScheme()->groupList(), QStringList() << QStringLiteral("General"));
QCOMPARE(applet->configScheme()->findItemByName("testIntEntry")->property().toInt(), 23);
QCOMPARE(applet->configScheme()->findItemByName("testStringEntry")->property().toString(), QStringLiteral("string-value"));
qmlRegisterType<PlasmaQuick::ConfigModel>("org.kde.plasma.configuration", 2, 0, "ConfigModel");
qmlRegisterType<PlasmaQuick::ConfigCategory>("org.kde.plasma.configuration", 2, 0, "ConfigCategory");
QQmlEngine engine;
QQmlComponent *component = new QQmlComponent(&engine, applet->kPackage().fileUrl("configmodel"), this);
QObject *object = component->create(engine.rootContext());
PlasmaQuick::ConfigModel *configModel = qobject_cast<PlasmaQuick::ConfigModel *>(object);
QCOMPARE(configModel->rowCount(), 1);
QCOMPARE(configModel->get(0).toMap().value(QStringLiteral("name")).toString(), QStringLiteral("General"));
QCOMPARE(configModel->get(0).toMap().value(QStringLiteral("icon")).toString(), QStringLiteral("plasma"));
QCOMPARE(configModel->get(0).toMap().value(QStringLiteral("source")).toString(), QStringLiteral("ConfigGeneral.qml"));
QCOMPARE(configModel->get(0).toMap().value(QStringLiteral("pluginName")).toString(), QString());
QVERIFY(!configModel->get(0).toMap().value(QStringLiteral("kcm")).value<void*>());
delete component;
delete applet;
}
void ConfigModelTest::emptySourceWithApplet()
{
Plasma::Applet *applet = Plasma::Applet::loadPlasmoid(QFINDTESTDATA("data/testconfigpackage"));
PlasmaQuick::ConfigModel model;
model.appendCategory(QStringLiteral("plasma"), QStringLiteral("name"), QString(), QString());
QVERIFY(model.hasIndex(0, 0));
QCOMPARE(model.data(model.index(0, 0), PlasmaQuick::ConfigModel::SourceRole).toString(), QString());
QCOMPARE(model.get(0).toMap().value(QStringLiteral("source")).toString(), QString());
model.setApplet(applet);
QCOMPARE(model.data(model.index(0, 0), PlasmaQuick::ConfigModel::SourceRole).toString(), QString());
QCOMPARE(model.get(0).toMap().value(QStringLiteral("source")).toString(), QString());
delete applet;
}
void ConfigModelTest::notEmptySourceWithApplet()
{
const QString pkgPath = QFINDTESTDATA("data/testconfigpackage");
{
Plasma::Applet *applet = Plasma::Applet::loadPlasmoid(pkgPath);
PlasmaQuick::ConfigModel model;
// Relative source
model.appendCategory(QStringLiteral("plasma"), QStringLiteral("name"), QStringLiteral("ConfigGeneral.qml"), QString());
QVERIFY(model.hasIndex(0, 0));
QCOMPARE(model.data(model.index(0, 0), PlasmaQuick::ConfigModel::SourceRole).toString(), QStringLiteral("ConfigGeneral.qml"));
QCOMPARE(model.get(0).toMap().value(QStringLiteral("source")).toString(), QStringLiteral("ConfigGeneral.qml"));
model.setApplet(applet);
const QUrl fullPath = QUrl::fromLocalFile(pkgPath + QStringLiteral("/contents/ui/ConfigGeneral.qml"));
QCOMPARE(model.data(model.index(0, 0), PlasmaQuick::ConfigModel::SourceRole).toUrl(), fullPath);
QCOMPARE(model.get(0).toMap().value(QStringLiteral("source")).toUrl(), fullPath);
delete applet;
}
{
Plasma::Applet *applet = Plasma::Applet::loadPlasmoid(pkgPath);
PlasmaQuick::ConfigModel model;
// Absolute source
const QString source = QStringLiteral("/test/contents/ui/ConfigGeneral.qml");
model.appendCategory(QStringLiteral("plasma"), QStringLiteral("name"), source, QString());
QVERIFY(model.hasIndex(0, 0));
QCOMPARE(model.data(model.index(0, 0), PlasmaQuick::ConfigModel::SourceRole).toString(), source);
QCOMPARE(model.get(0).toMap().value(QStringLiteral("source")).toString(), source);
model.setApplet(applet);
QCOMPARE(model.data(model.index(0, 0), PlasmaQuick::ConfigModel::SourceRole).toString(), source);
QCOMPARE(model.get(0).toMap().value(QStringLiteral("source")).toString(), source);
delete applet;
}
}
QTEST_MAIN(ConfigModelTest)