forked from qt-creator/qt-creator
Replace the current license disclaimer in files by a SPDX-License-Identifier. Task-number: QTBUG-67283 Change-Id: I708fd1f9f2b73d60f57cc3568646929117825813 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
69 lines
2.0 KiB
C++
69 lines
2.0 KiB
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
|
|
|
#pragma once
|
|
|
|
#include "quicktesttreeitem.h"
|
|
|
|
#include <cplusplus/ASTVisitor.h>
|
|
#include <cplusplus/CppDocument.h>
|
|
#include <qmljs/parser/qmljsastvisitor_p.h>
|
|
#include <qmljs/qmljsdocument.h>
|
|
|
|
#include <QStack>
|
|
|
|
namespace Autotest {
|
|
namespace Internal {
|
|
|
|
class QuickTestCaseSpec
|
|
{
|
|
public:
|
|
QString m_caseName;
|
|
TestCodeLocationAndType m_locationAndType;
|
|
TestCodeLocationList m_functions;
|
|
};
|
|
|
|
class TestQmlVisitor : public QmlJS::AST::Visitor
|
|
{
|
|
public:
|
|
explicit TestQmlVisitor(QmlJS::Document::Ptr doc, const QmlJS::Snapshot &snapshot);
|
|
|
|
bool visit(QmlJS::AST::UiObjectDefinition *ast) override;
|
|
void endVisit(QmlJS::AST::UiObjectDefinition *ast) override;
|
|
bool visit(QmlJS::AST::ExpressionStatement *ast) override;
|
|
bool visit(QmlJS::AST::UiScriptBinding *ast) override;
|
|
void endVisit(QmlJS::AST::UiScriptBinding *ast) override;
|
|
bool visit(QmlJS::AST::FunctionDeclaration *ast) override;
|
|
bool visit(QmlJS::AST::StringLiteral *ast) override;
|
|
|
|
void throwRecursionDepthError() override;
|
|
|
|
QVector<QuickTestCaseSpec> testCases() const { return m_testCases; }
|
|
bool isValid() const { return !m_testCases.isEmpty(); }
|
|
|
|
private:
|
|
QmlJS::Document::Ptr m_currentDoc;
|
|
QmlJS::Snapshot m_snapshot;
|
|
QStack<QuickTestCaseSpec> m_caseParseStack;
|
|
QVector<QuickTestCaseSpec> m_testCases;
|
|
QStack<bool> m_objectIsTestStack;
|
|
bool m_expectTestCaseName = false;
|
|
};
|
|
|
|
class QuickTestAstVisitor : public CPlusPlus::ASTVisitor
|
|
{
|
|
public:
|
|
QuickTestAstVisitor(CPlusPlus::Document::Ptr doc, const CPlusPlus::Snapshot &snapshot);
|
|
|
|
bool visit(CPlusPlus::CallAST *ast) override;
|
|
|
|
QString testBaseName() const { return m_testBaseName; }
|
|
private:
|
|
QString m_testBaseName;
|
|
CPlusPlus::Document::Ptr m_currentDoc;
|
|
CPlusPlus::Snapshot m_snapshot;
|
|
};
|
|
|
|
} // namespace Internal
|
|
} // namespace Autotest
|