aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/shared/util.h
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2011-12-21 09:06:26 +0100
committerQt by Nokia <qt-info@nokia.com>2011-12-21 15:35:22 +0100
commit8249c72213bc7d212c05aa086b3145a5742706a3 (patch)
tree4a34b97b0d57a05707c65b7328d5ab1bf4254920 /tests/auto/shared/util.h
parent3c211558f6b571555558bd1fc59774e36a6da710 (diff)
QDeclarative tests: Introduce base class for data tests.
In tests/auto/shared/util.* replace macros/find functions by a base class QDeclarativeDataTest with accessors for the data directory helper functions to create URLs from it. The class relies on QFINDTESTDATA, which is the standard way of locating test data. Using the class should reduce the number of calls to QFileInfo.exists(), etc significantly. In addition, provide utility functions for messages. Reviewed-by: Michael Brasser <michael.brasser@nokia.com> Change-Id: Id2beacb157922ee9412f9e45cf9695cec1f8379a Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
Diffstat (limited to 'tests/auto/shared/util.h')
-rw-r--r--tests/auto/shared/util.h67
1 files changed, 36 insertions, 31 deletions
diff --git a/tests/auto/shared/util.h b/tests/auto/shared/util.h
index eac2c4ec12..3d710cd6c3 100644
--- a/tests/auto/shared/util.h
+++ b/tests/auto/shared/util.h
@@ -42,44 +42,49 @@
#ifndef QDECLARATIVETESTUTILS_H
#define QDECLARATIVETESTUTILS_H
-#include <QtCore/qdir.h>
-#include <QtCore/qcoreapplication.h>
+#include <QtCore/QDir>
+#include <QtCore/QUrl>
+#include <QtCore/QCoreApplication>
+#include <QtTest/QTest>
-namespace QDeclarativeTestUtils
+QT_FORWARD_DECLARE_CLASS(QDeclarativeComponent)
+QT_FORWARD_DECLARE_CLASS(QDeclarativeEngine)
+
+/* Base class for tests with data that are located in a "data" subfolder. */
+
+class QDeclarativeDataTest : public QObject
{
- /*
- Returns the path to some testdata file.
+ Q_OBJECT
+public:
+ QDeclarativeDataTest();
+ virtual ~QDeclarativeDataTest();
+
+ QString testFile(const QString &fileName) const;
+ inline QString testFile(const char *fileName) const
+ { return testFile(QLatin1String(fileName)); }
+ inline QUrl testFileUrl(const QString &fileName) const
+ { return QUrl::fromLocalFile(testFile(fileName)); }
+ inline QUrl testFileUrl(const char *fileName) const
+ { return testFileUrl(QLatin1String(fileName)); }
- We first check relative to the binary, and then look in the source tree.
+ inline QString dataDirectory() const { return m_dataDirectory; }
+ inline QUrl dataDirectoryUrl() const { return m_dataDirectoryUrl; }
+ inline QString directory() const { return m_directory; }
- Note we are looking for a _directory_ which exists, but the _file_ itself need not exist,
- to support the case of finding a path to a testdata file which doesn't exist yet (i.e.
- a file we are about to create).
- */
- QString testdata(QString const& name, const char *sourceFile)
- {
- // Try to find it relative to the binary.
- QFileInfo relative = QDir(QCoreApplication::applicationDirPath()).filePath(QLatin1String("data/") + name);
- if (relative.dir().exists()) {
- return relative.absoluteFilePath();
- }
+ static inline QDeclarativeDataTest *instance() { return m_instance; }
- // Else try to find it in the source tree
- QFileInfo from_source = QFileInfo(sourceFile).absoluteDir().filePath(QLatin1String("data/") + name);
- if (from_source.dir().exists()) {
- return from_source.absoluteFilePath();
- }
+ static QByteArray msgComponentError(const QDeclarativeComponent &,
+ const QDeclarativeEngine *engine = 0);
- qWarning("requested testdata %s could not be found (looked at: %s, %s)",
- qPrintable(name),
- qPrintable(relative.filePath()),
- qPrintable(from_source.filePath())
- );
+public slots:
+ virtual void initTestCase();
- return QString();
- }
-}
+private:
+ static QDeclarativeDataTest *m_instance;
-#define TESTDATA(name) QDeclarativeTestUtils::testdata(name, __FILE__)
+ const QString m_dataDirectory;
+ const QUrl m_dataDirectoryUrl;
+ QString m_directory;
+};
#endif // QDECLARATIVETESTUTILS_H