File: schematemplatetest.cpp

package info (click to toggle)
kuserfeedback 1.3.0-9
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 3,496 kB
  • sloc: cpp: 13,251; php: 2,192; xml: 224; yacc: 90; lex: 82; sh: 17; makefile: 8
file content (60 lines) | stat: -rw-r--r-- 1,753 bytes parent folder | download | duplicates (2)
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
/*
    SPDX-FileCopyrightText: 2016 Volker Krause <vkrause@kde.org>

    SPDX-License-Identifier: MIT
*/

#include <core/aggregation.h>
#include <core/product.h>
#include <core/schemaentry.h>
#include <core/schemaentryelement.h>
#include <core/schemaentrytemplates.h>

#include <QDebug>
#include <QtTest/qtest.h>
#include <QObject>
#include <QStandardPaths>

using namespace KUserFeedback::Console;

class SchemaTemplateTest : public QObject
{
    Q_OBJECT
private slots:
    void initTestCase()
    {
        Q_INIT_RESOURCE(schematemplates);
        QStandardPaths::setTestModeEnabled(true);
    }

    void testTemplateLoading()
    {
        QVERIFY(SchemaEntryTemplates::availableTemplates().size() > 5);

        for (const auto &t : SchemaEntryTemplates::availableTemplates()) {
            qDebug() << t.name();
            QVERIFY(!t.name().isEmpty());
            QVERIFY(!t.schema().isEmpty());
            for (const auto &entry : t.schema()) {
                QVERIFY(!entry.name().isEmpty());
                QVERIFY(!entry.elements().isEmpty());
                for (const auto &elem : entry.elements()) {
                    QVERIFY(!elem.name().isEmpty());
                }
            }
            QVERIFY(!t.aggregations().isEmpty());
            for (const auto &aggr : t.aggregations()) {
                QVERIFY(!aggr.elements().isEmpty());
                for (const auto &elem : aggr.elements()) {
                    QVERIFY(!elem.schemaEntry().name().isEmpty());
                    if (elem.type() == AggregationElement::Value)
                        QVERIFY(!elem.schemaEntryElement().name().isEmpty());
                }
            }
        }
    }
};

QTEST_MAIN(SchemaTemplateTest)

#include "schematemplatetest.moc"