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
|
/*
SPDX-FileCopyrightText: 2016 Volker Krause <vkrause@kde.org>
SPDX-License-Identifier: MIT
*/
#include <model/schemamodel.h>
#include <core/schemaentrytemplates.h>
#include <QDebug>
#include <QtTest/qtest.h>
#include <QObject>
#include <QSignalSpy>
#include <QStandardPaths>
#if QT_VERSION >= QT_VERSION_CHECK(5, 11, 0)
#include <QAbstractItemModelTester>
#endif
using namespace KUserFeedback::Console;
class SchemaModelTest : public QObject
{
Q_OBJECT
private slots:
void initTestCase()
{
Q_INIT_RESOURCE(schematemplates);
QStandardPaths::setTestModeEnabled(true);
}
void testSchemaModel()
{
SchemaModel model;
#if QT_VERSION >= QT_VERSION_CHECK(5, 11, 0)
QAbstractItemModelTester modelTest(&model);
#endif
model.setProduct(Product());
QCOMPARE(model.rowCount(), 0);
Product p;
p.setName(QStringLiteral("org.kde.UserFeedback.UnitTest"));
model.setProduct(p);
QCOMPARE(model.rowCount(), 0);
QVector<SchemaEntry> schema;
SchemaEntry entry;
entry.setName(QStringLiteral("entry1"));
schema.push_back(entry);
p.setSchema(schema);
model.setProduct(p);
QCOMPARE(model.rowCount(), schema.size());
for (const auto &tpl : SchemaEntryTemplates::availableTemplates())
p.addTemplate(tpl);
model.setProduct(p);
QVERIFY(model.rowCount() > 0);
}
};
QTEST_MAIN(SchemaModelTest)
#include "schemamodeltest.moc"
|