summaryrefslogtreecommitdiffstats
path: root/tests/auto/qhelpprojectdata
diff options
context:
space:
mode:
authorQt by Nokia <qt-info@nokia.com>2011-04-27 12:05:43 +0200
committeraxis <qt-info@nokia.com>2011-04-27 12:05:43 +0200
commit50123887ba0f33cf47520bee7c419d68742af2d1 (patch)
tree0eb8679b9e4e4370e59b44bfdcae616816e39aca /tests/auto/qhelpprojectdata
Initial import from the monolithic Qt.
This is the beginning of revision history for this module. If you want to look at revision history older than this, please refer to the Qt Git wiki for how to use Git history grafting. At the time of writing, this wiki is located here: http://qt.gitorious.org/qt/pages/GitIntroductionWithQt If you have already performed the grafting and you don't see any history beyond this commit, try running "git log" with the "--follow" argument. Branched from the monolithic repo, Qt master branch, at commit 896db169ea224deb96c59ce8af800d019de63f12
Diffstat (limited to 'tests/auto/qhelpprojectdata')
-rw-r--r--tests/auto/qhelpprojectdata/.gitignore1
-rw-r--r--tests/auto/qhelpprojectdata/data/test.qhp72
-rw-r--r--tests/auto/qhelpprojectdata/qhelpprojectdata.pro9
-rw-r--r--tests/auto/qhelpprojectdata/tst_qhelpprojectdata.cpp193
4 files changed, 275 insertions, 0 deletions
diff --git a/tests/auto/qhelpprojectdata/.gitignore b/tests/auto/qhelpprojectdata/.gitignore
new file mode 100644
index 000000000..5296fc660
--- /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 000000000..1e9074a15
--- /dev/null
+++ b/tests/auto/qhelpprojectdata/data/test.qhp
@@ -0,0 +1,72 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<QtHelpProject version="1.0">
+ <metaData name="author" value="Nokia Corporation and/or its subsidiary(-ies)" />
+ <metaData name="language" value="en" />
+ <virtualFolder>testFolder</virtualFolder>
+ <namespace>trolltech.com.1.0.0.test</namespace>
+ <customFilter name="Custom Filter 1">
+ <filterAttribute>test</filterAttribute>
+ <filterAttribute>filter1</filterAttribute>
+ </customFilter>
+ <customFilter name="Custom Filter 2">
+ <filterAttribute>test</filterAttribute>
+ <filterAttribute>filter2</filterAttribute>
+ </customFilter>
+ <filterSection>
+ <filterAttribute>test</filterAttribute>
+ <filterAttribute>filter1</filterAttribute>
+ <toc>
+ <section title="Test Manual" ref="test.html">
+ <section title="Section 1" ref="test.html#section1">
+ </section>
+ <section title="Section 2" ref="test.html#section2">
+ </section>
+ <section title="Section 3" ref="test.html#section3">
+ </section>
+ <section title="People" ref="people.html">
+ </section>
+ <section title="About" ref="./sub/about.html">
+ </section>
+ </section>
+ </toc>
+ <keywords>
+ <keyword name="foo" id="Test::foo" ref="test.html#foo"/>
+ <keyword name="bar" id="Test::bar" ref="test.html#bar"/>
+ <keyword name="bla" id="Test::bla" ref="test.html#bla"/>
+ <keyword name="einstein" id="People::einstein" ref="people.html#einstein"/>
+ <keyword name="newton" id="People::newton" ref="people.html#newton"/>
+ </keywords>
+ <files>
+ <file>classic.css</file>
+ <file>test.html</file>
+ <file>people.html</file>
+ <file>./sub/about.html</file>
+ </files>
+ </filterSection>
+ <filterSection>
+ <filterAttribute>test</filterAttribute>
+ <filterAttribute>filter2</filterAttribute>
+ <toc>
+ <section title="Fancy Manual" ref="fancy.html">
+ <section title="Section 1" ref="fancy.html#section1">
+ </section>
+ <section title="Section 2" ref="fancy.html#section2">
+ </section>
+ <section title="Section 3" ref="fancy.html#section3">
+ </section>
+ <section title="Cars" ref="cars.html">
+ </section>
+ </section>
+ </toc>
+ <keywords>
+ <keyword name="foo" id="Fancy::foo" ref="fancy.html#foo"/>
+ <keyword name="foobar" id="Fancy::foobar" ref="fancy.html#foobar"/>
+ <keyword name="audi" id="Cars::newton" ref="cars.html#audi"/>
+ </keywords>
+ <files>
+ <file>classic.css</file>
+ <file>fancy.html</file>
+ <file>cars.html</file>
+ </files>
+ </filterSection>
+</QtHelpProject>
diff --git a/tests/auto/qhelpprojectdata/qhelpprojectdata.pro b/tests/auto/qhelpprojectdata/qhelpprojectdata.pro
new file mode 100644
index 000000000..92dc620e1
--- /dev/null
+++ b/tests/auto/qhelpprojectdata/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
+
diff --git a/tests/auto/qhelpprojectdata/tst_qhelpprojectdata.cpp b/tests/auto/qhelpprojectdata/tst_qhelpprojectdata.cpp
new file mode 100644
index 000000000..03d1842fb
--- /dev/null
+++ b/tests/auto/qhelpprojectdata/tst_qhelpprojectdata.cpp
@@ -0,0 +1,193 @@
+/****************************************************************************
+**
+** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (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 Technology Preview License Agreement accompanying
+** this package.
+**
+** 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.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at qt-info@nokia.com.
+**
+**
+**
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+#include <QtTest/QtTest>
+
+#ifndef QT_NO_BUILD_TOOLS
+
+#include <QtCore/QFileInfo>
+
+#include <QtHelp/private/qhelpprojectdata_p.h>
+
+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<QHelpDataCustomFilter> 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<QHelpDataFilterSection> 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