Advance Wayland and KDE package bring-up
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
@@ -0,0 +1,142 @@
|
||||
/*
|
||||
This file is part of the KDE project
|
||||
SPDX-FileCopyrightText: 2017 Renato Araujo Oliveira Filho <renato.araujo@kdab.com>
|
||||
|
||||
SPDX-License-Identifier: GPL-2.0-only
|
||||
*/
|
||||
|
||||
#include <QFile>
|
||||
#include <QObject>
|
||||
#include <QStandardPaths>
|
||||
#include <QTemporaryDir>
|
||||
|
||||
#include <KConfig>
|
||||
#include <KConfigGroup>
|
||||
#include <KProtocolInfo>
|
||||
#include <kfileplacesmodel.h>
|
||||
#include <kfileplacesview.h>
|
||||
|
||||
#include <QSignalSpy>
|
||||
#include <QTest>
|
||||
|
||||
static QString bookmarksFile()
|
||||
{
|
||||
return QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + "/user-places.xbel";
|
||||
}
|
||||
|
||||
class KFilePlacesViewTest : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
private Q_SLOTS:
|
||||
void initTestCase();
|
||||
void cleanupTestCase();
|
||||
|
||||
void testUrlChanged_data();
|
||||
void testUrlChanged();
|
||||
void testSetUrl_data();
|
||||
void testSetUrl();
|
||||
|
||||
private:
|
||||
QTemporaryDir m_tmpHome;
|
||||
};
|
||||
|
||||
void KFilePlacesViewTest::initTestCase()
|
||||
{
|
||||
QVERIFY(m_tmpHome.isValid());
|
||||
qputenv("HOME", m_tmpHome.path().toUtf8());
|
||||
qputenv("KDE_FULL_SESSION", "1"); // attempt to enable recentlyused:/ if present, so we only need to test for isKnownProtocol below
|
||||
QStandardPaths::setTestModeEnabled(true);
|
||||
|
||||
cleanupTestCase();
|
||||
|
||||
KConfig config(QStringLiteral("baloofilerc"));
|
||||
KConfigGroup basicSettings = config.group(QStringLiteral("Basic Settings"));
|
||||
basicSettings.writeEntry("Indexing-Enabled", true);
|
||||
config.sync();
|
||||
|
||||
qRegisterMetaType<QModelIndex>();
|
||||
|
||||
// Debug code, to help understanding the actual test
|
||||
KFilePlacesModel model;
|
||||
for (int row = 0; row < model.rowCount(); ++row) {
|
||||
const QModelIndex index = model.index(row, 0);
|
||||
qDebug() << model.url(index);
|
||||
}
|
||||
}
|
||||
|
||||
void KFilePlacesViewTest::cleanupTestCase()
|
||||
{
|
||||
QFile::remove(bookmarksFile());
|
||||
}
|
||||
|
||||
void KFilePlacesViewTest::testUrlChanged_data()
|
||||
{
|
||||
QTest::addColumn<int>("row");
|
||||
QTest::addColumn<QString>("expectedUrl");
|
||||
|
||||
int idx = 3; // skip home, trash, remote
|
||||
if (KProtocolInfo::isKnownProtocol(QStringLiteral("recentlyused"))) {
|
||||
QTest::newRow("Recent Files") << idx++ << QStringLiteral("recentlyused:/files");
|
||||
QTest::newRow("Recent Locations") << idx++ << QStringLiteral("recentlyused:/locations");
|
||||
} else {
|
||||
QTest::newRow("Modified Today") << idx++ << QStringLiteral("timeline:/today");
|
||||
++idx; // Modified Yesterday gets turned into "timeline:/2020-06/2020-06-05"
|
||||
}
|
||||
}
|
||||
|
||||
void KFilePlacesViewTest::testUrlChanged()
|
||||
{
|
||||
QFETCH(int, row);
|
||||
QFETCH(QString, expectedUrl);
|
||||
|
||||
KFilePlacesView pv;
|
||||
pv.setModel(new KFilePlacesModel());
|
||||
|
||||
QSignalSpy urlChangedSpy(&pv, &KFilePlacesView::urlChanged);
|
||||
const QModelIndex targetIndex = pv.model()->index(row, 0);
|
||||
pv.scrollTo(targetIndex);
|
||||
Q_EMIT pv.clicked(targetIndex);
|
||||
QTRY_COMPARE(urlChangedSpy.count(), 1);
|
||||
const QList<QVariant> args = urlChangedSpy.takeFirst();
|
||||
QCOMPARE(args.at(0).toUrl().toString(), expectedUrl);
|
||||
}
|
||||
|
||||
void KFilePlacesViewTest::testSetUrl_data()
|
||||
{
|
||||
QTest::addColumn<QUrl>("place");
|
||||
QTest::addColumn<QUrl>("url");
|
||||
|
||||
QString testPath = QString("file://%1/testSetUrl").arg(m_tmpHome.path());
|
||||
QUrl bareUrl = QUrl(testPath);
|
||||
QUrl trailingUrl = QUrl(testPath.append("/"));
|
||||
|
||||
QTest::newRow("place-bare-url-bare") << bareUrl << bareUrl;
|
||||
QTest::newRow("place-bare-url-trailing") << bareUrl << trailingUrl;
|
||||
QTest::newRow("place-trailing-url-bare") << trailingUrl << bareUrl;
|
||||
QTest::newRow("place-trailing-url-trailing") << trailingUrl << trailingUrl;
|
||||
}
|
||||
|
||||
void KFilePlacesViewTest::testSetUrl()
|
||||
{
|
||||
QFETCH(QUrl, place);
|
||||
QFETCH(QUrl, url);
|
||||
|
||||
KFilePlacesView pv;
|
||||
KFilePlacesModel pm;
|
||||
pv.setModel(&pm);
|
||||
|
||||
pm.addPlace("testSetUrl", place);
|
||||
QModelIndex added = pm.closestItem(place);
|
||||
|
||||
QSignalSpy selectionChangedSpy(pv.selectionModel(), &QItemSelectionModel::selectionChanged);
|
||||
pv.setUrl(url);
|
||||
|
||||
QVERIFY(!selectionChangedSpy.isEmpty());
|
||||
const QList<QVariant> args = selectionChangedSpy.takeFirst();
|
||||
QVERIFY(args.at(0).value<QItemSelection>().indexes().contains(added));
|
||||
}
|
||||
|
||||
QTEST_MAIN(KFilePlacesViewTest)
|
||||
|
||||
#include "kfileplacesviewtest.moc"
|
||||
Reference in New Issue
Block a user