1 | // Copyright (C) 2022 The Qt Company Ltd. |
---|---|
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
3 | |
4 | #ifndef QTAPTESTLOGGER_P_H |
5 | #define QTAPTESTLOGGER_P_H |
6 | |
7 | // |
8 | // W A R N I N G |
9 | // ------------- |
10 | // |
11 | // This file is not part of the Qt API. It exists purely as an |
12 | // implementation detail. This header file may change from version to |
13 | // version without notice, or even be removed. |
14 | // |
15 | // We mean it. |
16 | // |
17 | |
18 | #include <QtTest/private/qabstracttestlogger_p.h> |
19 | |
20 | QT_BEGIN_NAMESPACE |
21 | |
22 | class QTapTestLogger : public QAbstractTestLogger |
23 | { |
24 | public: |
25 | QTapTestLogger(const char *filename); |
26 | ~QTapTestLogger(); |
27 | |
28 | void startLogging() override; |
29 | void stopLogging() override; |
30 | |
31 | void enterTestFunction(const char *) override; |
32 | void leaveTestFunction() override {} |
33 | |
34 | void enterTestData(QTestData *data) override; |
35 | |
36 | void addIncident(IncidentTypes type, const char *description, |
37 | const char *file = nullptr, int line = 0) override; |
38 | void addMessage(MessageTypes type, const QString &message, |
39 | const char *file = nullptr, int line = 0) override; |
40 | |
41 | void addBenchmarkResult(const QBenchmarkResult &) override {} |
42 | private: |
43 | void outputTestLine(bool ok, int testNumber, const QTestCharBuffer &directive); |
44 | void outputBuffer(const QTestCharBuffer &buffer); |
45 | void flushComments(); |
46 | void flushMessages(); |
47 | void beginYamlish(); |
48 | void endYamlish(); |
49 | QTestCharBuffer m_firstExpectedFail; |
50 | QTestCharBuffer m_comments; |
51 | QTestCharBuffer m_messages; |
52 | bool m_gatherMessages = false; |
53 | }; |
54 | |
55 | QT_END_NAMESPACE |
56 | |
57 | #endif // QTAPTESTLOGGER_P_H |
58 |