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
|
/*
SPDX-FileCopyrightText: 2016 Volker Krause <vkrause@kde.org>
SPDX-License-Identifier: MIT
*/
#include <console/core/sample.h>
#include <console/core/schemaentrytemplates.h>
#include <console/model/datamodel.h>
#include <QDebug>
#include <QtTest/qtest.h>
#include <QObject>
#include <QStandardPaths>
#if QT_VERSION >= QT_VERSION_CHECK(5, 11, 0)
#include <QAbstractItemModelTester>
#endif
using namespace KUserFeedback::Console;
class DataModelTest : public QObject
{
Q_OBJECT
private:
int findColumn(QAbstractItemModel *model, const QString &name)
{
for (int i = 0; i < model->columnCount(); ++i) {
if (model->headerData(i, Qt::Horizontal, Qt::DisplayRole).toString() == name)
return i;
}
return -1;
}
private slots:
void initTestCase()
{
Q_INIT_RESOURCE(schematemplates);
QStandardPaths::setTestModeEnabled(true);
}
void testEmptyDataModel()
{
DataModel model;
#if QT_VERSION >= QT_VERSION_CHECK(5, 11, 0)
QAbstractItemModelTester modelTest(&model);
#endif
model.setProduct({});
QCOMPARE(model.rowCount(), 0);
QCOMPARE(model.columnCount(), 1);
Product p;
for (const auto &tpl : SchemaEntryTemplates::availableTemplates())
p.addTemplate(tpl);
p.setName(QStringLiteral("org.kde.UserFeedback.UnitTest"));
model.setProduct(p);
QVERIFY(model.columnCount() > 8);
}
void testDataModelContent()
{
DataModel model;
#if QT_VERSION >= QT_VERSION_CHECK(5, 11, 0)
QAbstractItemModelTester modelTest(&model);
#endif
Product p;
for (const auto &tpl : SchemaEntryTemplates::availableTemplates())
p.addTemplate(tpl);
p.setName(QStringLiteral("org.kde.UserFeedback.UnitTest"));
model.setProduct(p);
auto samples = Sample::fromJson(R"([{
"id": 42,
"timestamp": "2016-11-27 16:09:06",
"platform": { "os": "linux", "version": "suse" },
"applicationVersion": { "value": "1.9.84" },
"screens": [ { "width": 1920, "height": 1200 }, { "width": 640, "height": 480 } ],
"newPropertyRatio": { "value1": { "property": 0.55 }, "value2": { "property": 0.45 } }
}, {
"id": 43,
"timestamp": "2016-12-09 12:00:00",
"platform": { "os": "linux", "version": "suse" },
"applicationVersion": { "value": "1.9.84" },
"screens": [ { "width": 1920, "height": 1200 } ],
"newPropertyRatio": { "value1": { "property": 0.1 }, "value2": { "property": 0.9 } }
}])", p);
QCOMPARE(samples.size(), 2);
model.setSamples(samples);
QCOMPARE(model.rowCount(), 2);
auto colIdx = findColumn(&model, QLatin1String("platform.os"));
QCOMPARE(model.index(0, colIdx).data(Qt::DisplayRole).toString(), QLatin1String("linux"));
colIdx = findColumn(&model, QLatin1String("platform.version"));
QCOMPARE(model.index(0, colIdx).data(Qt::DisplayRole).toString(), QLatin1String("suse"));
colIdx = findColumn(&model, QLatin1String("applicationVersion.value"));
QCOMPARE(model.index(0, colIdx).data(Qt::DisplayRole).toString(), QLatin1String("1.9.84"));
colIdx = findColumn(&model, QLatin1String("screens"));
QCOMPARE(model.index(0, colIdx).data(Qt::DisplayRole).toString(), QLatin1String("[{height: 1200, width: 1920}, {height: 480, width: 640}]"));
colIdx = findColumn(&model, QLatin1String("newPropertyRatio"));
QCOMPARE(model.index(0, colIdx).data(Qt::DisplayRole).toString(), QLatin1String("value1: {property: 0.55}, value2: {property: 0.45}"));
const auto sample = model.index(1, 1).data(DataModel::SampleRole).value<Sample>();
QCOMPARE(sample.timestamp().date(), QDate(2016, 12, 9));
}
};
QTEST_MAIN(DataModelTest)
#include "datamodeltest.moc"
|