From e5fcad302d86d316390c6b0f62759a067313e8a9 Mon Sep 17 00:00:00 2001 From: Lars Knoll Date: Mon, 23 Mar 2009 10:18:55 +0100 Subject: Long live Qt 4.5! --- tests/auto/qhelpprojectdata/.gitignore | 1 + tests/auto/qhelpprojectdata/data/test.qhp | 72 ++++++++ tests/auto/qhelpprojectdata/qhelpprojectdata.pro | 10 ++ .../auto/qhelpprojectdata/tst_qhelpprojectdata.cpp | 193 +++++++++++++++++++++ .../auto/qhelpprojectdata/tst_qhelpprojectdata.pro | 9 + 5 files changed, 285 insertions(+) create mode 100644 tests/auto/qhelpprojectdata/.gitignore create mode 100644 tests/auto/qhelpprojectdata/data/test.qhp create mode 100644 tests/auto/qhelpprojectdata/qhelpprojectdata.pro create mode 100644 tests/auto/qhelpprojectdata/tst_qhelpprojectdata.cpp create mode 100644 tests/auto/qhelpprojectdata/tst_qhelpprojectdata.pro (limited to 'tests/auto/qhelpprojectdata') diff --git a/tests/auto/qhelpprojectdata/.gitignore b/tests/auto/qhelpprojectdata/.gitignore new file mode 100644 index 0000000000..5296fc660d --- /dev/null +++ b/tests/auto/qhelpprojectdata/.gitignore @@ -0,0 +1 @@ +tst_qhelpprojectdata diff --git a/tests/auto/qhelpprojectdata/data/test.qhp b/tests/auto/qhelpprojectdata/data/test.qhp new file mode 100644 index 0000000000..e9ac7f2134 --- /dev/null +++ b/tests/auto/qhelpprojectdata/data/test.qhp @@ -0,0 +1,72 @@ + + + + + testFolder + trolltech.com.1_0_0.test + + test + filter1 + + + test + filter2 + + + test + filter1 + +
+
+
+
+
+
+
+
+
+
+
+
+
+ + + + + + + + + classic.css + test.html + people.html + ./sub/about.html + +
+ + test + filter2 + +
+
+
+
+
+
+
+
+
+
+
+ + + + + + + classic.css + fancy.html + cars.html + +
+
\ No newline at end of file diff --git a/tests/auto/qhelpprojectdata/qhelpprojectdata.pro b/tests/auto/qhelpprojectdata/qhelpprojectdata.pro new file mode 100644 index 0000000000..9617416155 --- /dev/null +++ b/tests/auto/qhelpprojectdata/qhelpprojectdata.pro @@ -0,0 +1,10 @@ +TEMPLATE = subdirs +CONFIG += ordered + +contains(QT_BUILD_PARTS, tools): { + SUBDIRS += ../../../tools/assistant/lib/fulltextsearch \ + ../../../tools/assistant/lib +} + +SUBDIRS += tst_qhelpprojectdata.pro + diff --git a/tests/auto/qhelpprojectdata/tst_qhelpprojectdata.cpp b/tests/auto/qhelpprojectdata/tst_qhelpprojectdata.cpp new file mode 100644 index 0000000000..e7db5aa5c0 --- /dev/null +++ b/tests/auto/qhelpprojectdata/tst_qhelpprojectdata.cpp @@ -0,0 +1,193 @@ +/**************************************************************************** +** +** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). +** Contact: Qt Software Information (qt-info@nokia.com) +** +** This file is part of the test suite of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the either Technology Preview License Agreement or the +** Beta Release License Agreement. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU General Public License version 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. +** +** If you are unsure which license is appropriate for your use, please +** contact the sales department at qt-sales@nokia.com. +** $QT_END_LICENSE$ +** +****************************************************************************/ +#include + +#ifndef QT_NO_BUILD_TOOLS + +#include + +#include + +class tst_QHelpProjectData : public QObject +{ + Q_OBJECT + +private slots: + void initTestCase(); + + void readData(); + void namespaceName(); + void virtualFolder(); + void customFilters(); + void filterSections(); + void metaData(); + void rootPath(); + +private: + QString m_inputFile; +}; + +void tst_QHelpProjectData::initTestCase() +{ + const QString path = QLatin1String(SRCDIR); + m_inputFile = path + QLatin1String("/data/test.qhp"); +} + +void tst_QHelpProjectData::readData() +{ + QHelpProjectData data; + if (!data.readData(m_inputFile)) + QFAIL("Cannot parse qhp file!"); +} + +void tst_QHelpProjectData::namespaceName() +{ + QHelpProjectData data; + if (!data.readData(m_inputFile)) + QFAIL("Cannot read qhp file!"); + QCOMPARE(data.namespaceName(), QString("trolltech.com.1_0_0.test")); +} + +void tst_QHelpProjectData::virtualFolder() +{ + QHelpProjectData data; + if (!data.readData(m_inputFile)) + QFAIL("Cannot read qhp file!"); + QCOMPARE(data.virtualFolder(), QString("testFolder")); +} + +void tst_QHelpProjectData::customFilters() +{ + QHelpProjectData data; + if (!data.readData(m_inputFile)) + QFAIL("Cannot read qhp file!"); + + QList filters = data.customFilters(); + QCOMPARE(filters.count(), 2); + + foreach (QHelpDataCustomFilter f, filters) { + if (f.name == QLatin1String("Custom Filter 1")) { + foreach (QString id, f.filterAttributes) { + if (id != QLatin1String("test") + && id != QLatin1String("filter1")) + QFAIL("Wrong filter attribute!"); + } + } else if (f.name == QLatin1String("Custom Filter 2")) { + foreach (QString id, f.filterAttributes) { + if (id != QLatin1String("test") + && id != QLatin1String("filter2")) + QFAIL("Wrong filter attribute!"); + } + } else { + QFAIL("Unexpected filter name!"); + } + } +} + +void tst_QHelpProjectData::filterSections() +{ + QHelpProjectData data; + if (!data.readData(m_inputFile)) + QFAIL("Cannot read qhp file!"); + + QList sections = data.filterSections(); + QCOMPARE(sections.count(), 2); + + foreach (QHelpDataFilterSection s, sections) { + if (s.filterAttributes().contains("filter1")) { + QCOMPARE(s.indices().count(), 5); + foreach (QHelpDataIndexItem idx, s.indices()) { + if (idx.name == QLatin1String("foo")) { + QCOMPARE(idx.identifier, QString("Test::foo")); + } else if (idx.name == QLatin1String("bar")) { + QCOMPARE(idx.reference, QString("test.html#bar")); + } else if (idx.name == QLatin1String("bla")) { + QCOMPARE(idx.identifier, QString("Test::bla")); + } else if (idx.name == QLatin1String("einstein")) { + QCOMPARE(idx.reference, QString("people.html#einstein")); + } else if (idx.name == QLatin1String("newton")) { + QCOMPARE(idx.identifier, QString("People::newton")); + } else { + QFAIL("Unexpected index!"); + } + } + QCOMPARE(s.contents().count(), 1); + QCOMPARE(s.contents().first()->children().count(), 5); + } else if (s.filterAttributes().contains("filter2")) { + QCOMPARE(s.contents().count(), 1); + QStringList lst; + lst << "classic.css" << "fancy.html" << "cars.html"; + foreach (QString f, s.files()) + lst.removeAll(f); + QCOMPARE(lst.count(), 0); + } else { + QFAIL("Unexpected filter attribute!"); + } + } +} + +void tst_QHelpProjectData::metaData() +{ + QHelpProjectData data; + if (!data.readData(m_inputFile)) + QFAIL("Cannot read qhp file!"); + + QCOMPARE(data.metaData().count(), 2); + QCOMPARE(data.metaData().value("author").toString(), + QString("Nokia Corporation and/or its subsidiary(-ies)")); +} + +void tst_QHelpProjectData::rootPath() +{ + QHelpProjectData data; + if (!data.readData(m_inputFile)) + QFAIL("Cannot read qhp file!"); + + QFileInfo fi(m_inputFile); + QCOMPARE(data.rootPath(), fi.absolutePath()); +} + +QTEST_MAIN(tst_QHelpProjectData) +#include "tst_qhelpprojectdata.moc" + +#else // QT_NO_BUILD_TOOLS +QTEST_NOOP_MAIN +#endif diff --git a/tests/auto/qhelpprojectdata/tst_qhelpprojectdata.pro b/tests/auto/qhelpprojectdata/tst_qhelpprojectdata.pro new file mode 100644 index 0000000000..92dc620e13 --- /dev/null +++ b/tests/auto/qhelpprojectdata/tst_qhelpprojectdata.pro @@ -0,0 +1,9 @@ +load(qttest_p4) + +SOURCES += tst_qhelpprojectdata.cpp +CONFIG += help + +DEFINES += SRCDIR=\\\"$$PWD\\\" +DEFINES += QT_USE_USING_NAMESPACE +!contains(QT_BUILD_PARTS, tools): DEFINES += QT_NO_BUILD_TOOLS + -- cgit v1.2.3