forked from qt-creator/qt-creator
UnitTest: Cleanup
Improve naming and introduce googletest.h. Change-Id: I445c13db4c23d6dd5682ce0db3b83055cc6b8a89 Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
195
tests/unit/unittest/activationsequenceprocessor-test.cpp
Normal file
195
tests/unit/unittest/activationsequenceprocessor-test.cpp
Normal file
@@ -0,0 +1,195 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2016 The Qt Company Ltd.
|
||||
** Contact: https://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of Qt Creator.
|
||||
**
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see https://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at https://www.qt.io/contact-us.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 3 as published by the Free Software
|
||||
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
||||
** included in the packaging of this file. Please review the following
|
||||
** information to ensure the GNU General Public License requirements will
|
||||
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
#include "googletest.h"
|
||||
|
||||
#include <clangactivationsequenceprocessor.h>
|
||||
|
||||
#include <cplusplus/Token.h>
|
||||
|
||||
namespace {
|
||||
|
||||
using testing::PrintToString;
|
||||
using namespace CPlusPlus;
|
||||
using ClangCodeModel::Internal::ActivationSequenceProcessor;
|
||||
|
||||
MATCHER_P3(HasResult, completionKind, offset, newPosition,
|
||||
std::string(negation ? "hasn't" : "has")
|
||||
+ " result of completion kind " + PrintToString(Token::name(completionKind))
|
||||
+ ", offset " + PrintToString(offset)
|
||||
+ " and new operator start position" + PrintToString(newPosition))
|
||||
{
|
||||
if (arg.completionKind() != completionKind
|
||||
|| arg.offset() != offset
|
||||
|| arg.operatorStartPosition() != newPosition) {
|
||||
*result_listener << "completion kind is " << PrintToString(Token::name(arg.completionKind()))
|
||||
<< ", offset is " << PrintToString(arg.offset())
|
||||
<< " and new operator start position is " << PrintToString(arg.operatorStartPosition());
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
TEST(ActivationSequenceProcessor, CouldNotProcesseRandomCharacters)
|
||||
{
|
||||
ActivationSequenceProcessor processor(QStringLiteral("xxx"), 3, false);
|
||||
|
||||
ASSERT_THAT(processor, HasResult(T_EOF_SYMBOL, 0, 3));
|
||||
}
|
||||
|
||||
TEST(ActivationSequenceProcessor, CouldNotProcesseEmptyString)
|
||||
{
|
||||
ActivationSequenceProcessor processor(QStringLiteral(""), 0, true);
|
||||
|
||||
ASSERT_THAT(processor, HasResult(T_EOF_SYMBOL, 0, 0));
|
||||
}
|
||||
|
||||
TEST(ActivationSequenceProcessor, Dot)
|
||||
{
|
||||
ActivationSequenceProcessor processor(QStringLiteral("."), 1, true);
|
||||
|
||||
ASSERT_THAT(processor, HasResult(T_DOT, 1, 0));
|
||||
}
|
||||
|
||||
TEST(ActivationSequenceProcessor, Comma)
|
||||
{
|
||||
ActivationSequenceProcessor processor(QStringLiteral(","), 2, false);
|
||||
|
||||
ASSERT_THAT(processor, HasResult(T_COMMA, 1, 1));
|
||||
}
|
||||
|
||||
TEST(ActivationSequenceProcessor, LeftParenAsFunctionCall)
|
||||
{
|
||||
ActivationSequenceProcessor processor(QStringLiteral("("), 3, true);
|
||||
|
||||
ASSERT_THAT(processor, HasResult(T_LPAREN, 1, 2));
|
||||
}
|
||||
|
||||
TEST(ActivationSequenceProcessor, LeftParenNotAsFunctionCall)
|
||||
{
|
||||
ActivationSequenceProcessor processor(QStringLiteral("("), 3, false);
|
||||
|
||||
ASSERT_THAT(processor, HasResult(T_EOF_SYMBOL, 0, 3));
|
||||
}
|
||||
|
||||
TEST(ActivationSequenceProcessor, ColonColon)
|
||||
{
|
||||
ActivationSequenceProcessor processor(QStringLiteral("::"), 20, true);
|
||||
|
||||
ASSERT_THAT(processor, HasResult(T_COLON_COLON, 2, 18));
|
||||
}
|
||||
|
||||
TEST(ActivationSequenceProcessor, Arrow)
|
||||
{
|
||||
ActivationSequenceProcessor processor(QStringLiteral("->"), 2, true);
|
||||
|
||||
ASSERT_THAT(processor, HasResult(T_ARROW, 2, 0));
|
||||
}
|
||||
|
||||
TEST(ActivationSequenceProcessor, DotStar)
|
||||
{
|
||||
ActivationSequenceProcessor processor(QStringLiteral(".*"), 3, true);
|
||||
|
||||
ASSERT_THAT(processor, HasResult(T_DOT_STAR, 2, 1));
|
||||
}
|
||||
|
||||
TEST(ActivationSequenceProcessor, ArrowStar)
|
||||
{
|
||||
ActivationSequenceProcessor processor(QStringLiteral("->*"), 3, true);
|
||||
|
||||
ASSERT_THAT(processor, HasResult(T_ARROW_STAR, 3, 0));
|
||||
}
|
||||
|
||||
TEST(ActivationSequenceProcessor, DoxyGenCommentBackSlash)
|
||||
{
|
||||
ActivationSequenceProcessor processor(QStringLiteral(" \\"), 3, true);
|
||||
|
||||
ASSERT_THAT(processor, HasResult(T_DOXY_COMMENT, 1, 2));
|
||||
}
|
||||
|
||||
TEST(ActivationSequenceProcessor, DoxyGenCommentAt)
|
||||
{
|
||||
ActivationSequenceProcessor processor(QStringLiteral(" @"), 2, true);
|
||||
|
||||
ASSERT_THAT(processor, HasResult(T_DOXY_COMMENT, 1, 1));
|
||||
}
|
||||
|
||||
TEST(ActivationSequenceProcessor, AngleStringLiteral)
|
||||
{
|
||||
ActivationSequenceProcessor processor(QStringLiteral("<"), 1, true);
|
||||
|
||||
ASSERT_THAT(processor, HasResult(T_ANGLE_STRING_LITERAL, 1, 0));
|
||||
}
|
||||
|
||||
TEST(ActivationSequenceProcessor, StringLiteral)
|
||||
{
|
||||
ActivationSequenceProcessor processor(QStringLiteral("\""), 1, true);
|
||||
|
||||
ASSERT_THAT(processor, HasResult(T_STRING_LITERAL, 1, 0));
|
||||
}
|
||||
|
||||
TEST(ActivationSequenceProcessor, Slash)
|
||||
{
|
||||
ActivationSequenceProcessor processor(QStringLiteral("/"), 1, true);
|
||||
|
||||
ASSERT_THAT(processor, HasResult(T_SLASH, 1, 0));
|
||||
}
|
||||
|
||||
TEST(ActivationSequenceProcessor, Pound)
|
||||
{
|
||||
ActivationSequenceProcessor processor(QStringLiteral("#"), 1, true);
|
||||
|
||||
ASSERT_THAT(processor, HasResult(T_POUND, 1, 0));
|
||||
}
|
||||
|
||||
TEST(ActivationSequenceProcessor, PositionIsOne)
|
||||
{
|
||||
ActivationSequenceProcessor processor(QStringLiteral("<xx"), 1, false);
|
||||
|
||||
ASSERT_THAT(processor, HasResult(T_ANGLE_STRING_LITERAL, 1, 0));
|
||||
}
|
||||
|
||||
TEST(ActivationSequenceProcessor, PositionIsTwo)
|
||||
{
|
||||
ActivationSequenceProcessor processor(QStringLiteral(" @x"), 2, true);
|
||||
|
||||
ASSERT_THAT(processor, HasResult(T_DOXY_COMMENT, 1, 1));
|
||||
}
|
||||
|
||||
TEST(ActivationSequenceProcessor, PositionIsTwoWithASingleSign)
|
||||
{
|
||||
ActivationSequenceProcessor processor(QStringLiteral("x<x"), 2, false);
|
||||
|
||||
ASSERT_THAT(processor, HasResult(T_ANGLE_STRING_LITERAL, 1, 1));
|
||||
}
|
||||
|
||||
TEST(ActivationSequenceProcessor, PositionIsThree)
|
||||
{
|
||||
ActivationSequenceProcessor processor(QStringLiteral("xx<"), 3, false);
|
||||
|
||||
ASSERT_THAT(processor, HasResult(T_ANGLE_STRING_LITERAL, 1, 2));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user