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
|
/*
* This file is part of KDevelop
* Copyright 2012 Miha Čančula <miha@noughmad.eu>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "test_templatesmodel.h"
#include "codegen_tests_config.h"
#include <language/codegen/templatesmodel.h>
#include <tests/testcore.h>
#include <tests/autotestshell.h>
#include <QStandardPaths>
using namespace KDevelop;
void TestTemplatesModel::initTestCase()
{
// avoid translated desktop entries, tests use untranslated strings
QLocale::setDefault(QLocale::c());
AutoTestShell::init();
TestCore::initialize(Core::NoUi);
model = new TemplatesModel(QStringLiteral("kdevcodegentest"), this);
model->addDataPath(QStringLiteral(CODEGEN_TESTS_DATA_DIR) + "/");
model->refresh();
}
void TestTemplatesModel::cleanupTestCase()
{
delete model;
TestCore::shutdown();
}
void TestTemplatesModel::descriptionExtraction()
{
QCOMPARE(model->rowCount(), 1);
QModelIndex testingCategoryIndex = model->index(0, 0);
QCOMPARE(model->rowCount(testingCategoryIndex), 3);
for (int i = 0; i < 3; ++i) {
QModelIndex languageCategoryIndex = model->index(i, 0, testingCategoryIndex);
QCOMPARE(model->rowCount(languageCategoryIndex), 1);
QModelIndex templateIndex = model->index(0, 0, languageCategoryIndex);
QCOMPARE(model->rowCount(templateIndex), 0);
}
}
void TestTemplatesModel::descriptionParsing()
{
QList<QStandardItem*> items = model->findItems(QStringLiteral("Testing YAML template"), Qt::MatchRecursive);
QCOMPARE(items.size(), 1);
QStandardItem* item = items.first();
QCOMPARE(item->data(TemplatesModel::CommentRole).toString(), QStringLiteral("Describes a class using YAML syntax"));
QString descriptionFile = QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + "/kdevcodegentest/template_descriptions/test_yaml.desktop";
QVERIFY(QFile::exists(descriptionFile));
QCOMPARE(item->data(TemplatesModel::DescriptionFileRole).toString(), descriptionFile);
}
void TestTemplatesModel::templateIndexes()
{
QModelIndexList indexes = model->templateIndexes(QStringLiteral("test_yaml.tar.bz2"));
QCOMPARE(indexes.size(), 3);
QCOMPARE(model->data(indexes[0]).toString(), QStringLiteral("Testing"));
QCOMPARE(model->data(indexes[1]).toString(), QStringLiteral("YAML"));
QCOMPARE(model->data(indexes[2]).toString(), QStringLiteral("Testing YAML template"));
}
QTEST_GUILESS_MAIN(TestTemplatesModel)
|