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
|
/*
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();
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("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);
}
QTEST_MAIN(KFilePlacesViewTest)
#include "kfileplacesviewtest.moc"
|