2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2022 The Qt Company Ltd.
|
2022-12-21 10:12:09 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2022-01-14 15:08:11 +01:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
class QString;
|
|
|
|
|
class QTextCursor;
|
|
|
|
|
class QTextDocument;
|
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
|
|
|
|
namespace ClangFormat {
|
|
|
|
|
class ClangFormatBaseIndenter;
|
|
|
|
|
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
class ClangFormatTest : public QObject
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
ClangFormatTest();
|
|
|
|
|
~ClangFormatTest();
|
|
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void testIndentBasicFile();
|
|
|
|
|
void testIndentEmptyLine();
|
|
|
|
|
void testIndentLambda();
|
|
|
|
|
void testIndentNestedIfElse();
|
|
|
|
|
void testIndentInitializerListInArguments();
|
|
|
|
|
void testIndentLambdaWithReturnType();
|
|
|
|
|
void testIndentFunctionArgumentLambdaWithNextLineScope();
|
|
|
|
|
void testIndentScopeAsFunctionArgument();
|
|
|
|
|
void testIndentInsideStructuredBinding();
|
|
|
|
|
void testIndentMacrosWithoutSemicolon();
|
|
|
|
|
void testIndentAfterSquareBracesInsideBraceInitialization();
|
|
|
|
|
void testIndentStringLiteralContinuation();
|
|
|
|
|
void testIndentTemplateparameters();
|
|
|
|
|
void testNoExtraIndentAfterStatementInsideSquareBraces();
|
|
|
|
|
void testNoExtraIndentAfterBraceInitialization();
|
|
|
|
|
void testIndentMultipleEmptyLines();
|
|
|
|
|
void testIndentEmptyLineAndKeepPreviousEmptyLines();
|
|
|
|
|
void testIndentOnElectricCharacterButNotRemoveEmptyLinesBefore();
|
|
|
|
|
void testIndentAfterExtraSpaceInpreviousLine();
|
|
|
|
|
void testIndentEmptyLineInsideParentheses();
|
|
|
|
|
void testIndentInsideIf();
|
|
|
|
|
void testIndentInsideIf2();
|
|
|
|
|
void testIndentInsideIf3();
|
|
|
|
|
void testEmptyLineInInitializerList();
|
|
|
|
|
void testIndentClosingBraceAfterComma();
|
|
|
|
|
void testDoNotIndentClosingBraceAfterSemicolon();
|
|
|
|
|
void testIndentAfterIf();
|
|
|
|
|
void testIndentAfterElse();
|
|
|
|
|
void testSameIndentAfterSecondNewLineAfterIf();
|
|
|
|
|
void testIndentAfterNewLineInsideIfWithFunctionCall();
|
|
|
|
|
void testSameIndentAfterSecondNewLineInsideIfWithFunctionCall();
|
|
|
|
|
void testSameIndentAfterSecondNonEmptyNewLineInsideIfWithFunctionCall();
|
|
|
|
|
void testSameIndentsOnNewLinesAfterComments();
|
|
|
|
|
void testIndentAfterEmptyLineAfterAngledIncludeDirective();
|
|
|
|
|
void testIndentAfterEmptyLineAfterQuotedIncludeDirective();
|
|
|
|
|
void testIndentAfterLineComment();
|
|
|
|
|
void testIndentAfterBlockComment();
|
|
|
|
|
void testIndentAfterIfdef();
|
|
|
|
|
void testIndentAfterEmptyLineInTheFileBeginning();
|
|
|
|
|
void testIndentFunctionBodyButNotFormatBeforeIt();
|
|
|
|
|
void testIndentAfterFunctionBodyAndNotFormatBefore();
|
|
|
|
|
void testReformatToEmptyFunction();
|
|
|
|
|
void testReformatToNonEmptyFunction();
|
2022-06-29 09:59:58 +00:00
|
|
|
void testIndentClosingScopeAndFormatBeforeIt();
|
2022-01-14 15:08:11 +01:00
|
|
|
void testDoNotFormatAfterTheFirstColon();
|
|
|
|
|
void testOnlyIndentIncompleteStatementOnElectricalCharacter();
|
2022-06-29 09:59:58 +00:00
|
|
|
void testIndentAndFormatCompleteStatementOnSemicolon();
|
2022-01-14 15:08:11 +01:00
|
|
|
void testIndentAndFormatCompleteStatementOnClosingScope();
|
|
|
|
|
void testOnlyIndentClosingParenthesis();
|
|
|
|
|
void testEquallyIndentInsideParenthesis();
|
|
|
|
|
void testFormatBasicFile();
|
|
|
|
|
void testFormatEmptyLine();
|
|
|
|
|
void testFormatLambda();
|
|
|
|
|
void testFormatInitializerListInArguments();
|
|
|
|
|
void testFormatFunctionArgumentLambdaWithScope();
|
|
|
|
|
void testFormatScopeAsFunctionArgument();
|
|
|
|
|
void testFormatStructuredBinding();
|
|
|
|
|
void testFormatStringLiteralContinuation();
|
|
|
|
|
void testFormatTemplateparameters();
|
|
|
|
|
void testSortIncludes();
|
|
|
|
|
void testChainedMemberFunctionCalls();
|
|
|
|
|
void testCommentBlock();
|
2022-01-11 13:18:29 +01:00
|
|
|
void testClassIndentStructure();
|
2022-07-05 16:38:51 +02:00
|
|
|
void testIndentInitializeVector();
|
|
|
|
|
void testIndentFunctionArgumentOnNewLine();
|
2022-10-24 16:39:20 +02:00
|
|
|
void testIndentCommentOnNewLine();
|
2023-12-08 11:49:01 +01:00
|
|
|
void testUtf8SymbolLine();
|
2022-01-14 15:08:11 +01:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
void insertLines(const std::vector<QString> &lines);
|
|
|
|
|
std::vector<QString> documentLines() const;
|
|
|
|
|
|
|
|
|
|
QTextDocument * const m_doc;
|
|
|
|
|
QTextCursor * const m_cursor;
|
|
|
|
|
ClangFormatBaseIndenter * const m_indenter;
|
|
|
|
|
ClangFormatBaseIndenter * const m_extendedIndenter;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace ClangFormat
|