| 1 | /**************************************************************************** |
|---|---|
| 2 | ** |
| 3 | ** Copyright (C) 2017 The Qt Company Ltd. |
| 4 | ** Contact: http://www.qt.io/licensing/ |
| 5 | ** |
| 6 | ** This file is part of the test suite of the Qt Toolkit. |
| 7 | ** |
| 8 | ** $QT_BEGIN_LICENSE:LGPL3$ |
| 9 | ** Commercial License Usage |
| 10 | ** Licensees holding valid commercial Qt licenses may use this file in |
| 11 | ** accordance with the commercial license agreement provided with the |
| 12 | ** Software or, alternatively, in accordance with the terms contained in |
| 13 | ** a written agreement between you and The Qt Company. For licensing terms |
| 14 | ** and conditions see http://www.qt.io/terms-conditions. For further |
| 15 | ** information use the contact form at http://www.qt.io/contact-us. |
| 16 | ** |
| 17 | ** GNU Lesser General Public License Usage |
| 18 | ** Alternatively, this file may be used under the terms of the GNU Lesser |
| 19 | ** General Public License version 3 as published by the Free Software |
| 20 | ** Foundation and appearing in the file LICENSE.LGPLv3 included in the |
| 21 | ** packaging of this file. Please review the following information to |
| 22 | ** ensure the GNU Lesser General Public License version 3 requirements |
| 23 | ** will be met: https://www.gnu.org/licenses/lgpl.html. |
| 24 | ** |
| 25 | ** GNU General Public License Usage |
| 26 | ** Alternatively, this file may be used under the terms of the GNU |
| 27 | ** General Public License version 2.0 or later as published by the Free |
| 28 | ** Software Foundation and appearing in the file LICENSE.GPL included in |
| 29 | ** the packaging of this file. Please review the following information to |
| 30 | ** ensure the GNU General Public License version 2.0 requirements will be |
| 31 | ** met: http://www.gnu.org/licenses/gpl-2.0.html. |
| 32 | ** |
| 33 | ** $QT_END_LICENSE$ |
| 34 | ** |
| 35 | ****************************************************************************/ |
| 36 | |
| 37 | #ifndef QQMLTESTUTILS_H |
| 38 | #define QQMLTESTUTILS_H |
| 39 | |
| 40 | #include <QtCore/QDir> |
| 41 | #include <QtCore/QUrl> |
| 42 | #include <QtCore/QCoreApplication> |
| 43 | #include <QtCore/QStringList> |
| 44 | #include <QtTest/QTest> |
| 45 | |
| 46 | QT_FORWARD_DECLARE_CLASS(QQmlComponent) |
| 47 | QT_FORWARD_DECLARE_CLASS(QQmlEngine) |
| 48 | |
| 49 | /* Base class for tests with data that are located in a "data" subfolder. */ |
| 50 | |
| 51 | class QQmlDataTest : public QObject |
| 52 | { |
| 53 | Q_OBJECT |
| 54 | public: |
| 55 | QQmlDataTest(); |
| 56 | virtual ~QQmlDataTest(); |
| 57 | |
| 58 | QString testFile(const QString &fileName) const; |
| 59 | inline QString testFile(const char *fileName) const |
| 60 | { return testFile(fileName: QLatin1String(fileName)); } |
| 61 | inline QUrl testFileUrl(const QString &fileName) const |
| 62 | { return QUrl::fromLocalFile(localfile: testFile(fileName)); } |
| 63 | inline QUrl testFileUrl(const char *fileName) const |
| 64 | { return testFileUrl(fileName: QLatin1String(fileName)); } |
| 65 | |
| 66 | inline QString dataDirectory() const { return m_dataDirectory; } |
| 67 | inline QUrl dataDirectoryUrl() const { return m_dataDirectoryUrl; } |
| 68 | inline QString directory() const { return m_directory; } |
| 69 | |
| 70 | static inline QQmlDataTest *instance() { return m_instance; } |
| 71 | |
| 72 | static QByteArray msgComponentError(const QQmlComponent &, |
| 73 | const QQmlEngine *engine = 0); |
| 74 | |
| 75 | public slots: |
| 76 | virtual void initTestCase(); |
| 77 | |
| 78 | private: |
| 79 | static QQmlDataTest *m_instance; |
| 80 | |
| 81 | const QString m_dataDirectory; |
| 82 | const QUrl m_dataDirectoryUrl; |
| 83 | QString m_directory; |
| 84 | }; |
| 85 | |
| 86 | class QQmlTestMessageHandler |
| 87 | { |
| 88 | Q_DISABLE_COPY(QQmlTestMessageHandler) |
| 89 | public: |
| 90 | QQmlTestMessageHandler(); |
| 91 | ~QQmlTestMessageHandler(); |
| 92 | |
| 93 | const QStringList &messages() const { return m_messages; } |
| 94 | const QString messageString() const { return m_messages.join(sep: QLatin1Char('\n')); } |
| 95 | |
| 96 | void clear() { m_messages.clear(); } |
| 97 | |
| 98 | private: |
| 99 | static void messageHandler(QtMsgType, const QMessageLogContext &, const QString &message); |
| 100 | |
| 101 | static QQmlTestMessageHandler *m_instance; |
| 102 | QStringList m_messages; |
| 103 | QtMessageHandler m_oldHandler; |
| 104 | }; |
| 105 | |
| 106 | #endif // QQMLTESTUTILS_H |
| 107 |
