forked from qt-creator/qt-creator
Task-number: QTCREATORBUG-7964 Change-Id: Icc7d87bb4f2d1ab0560a6c06187d9c23da9fe3e9 Reviewed-by: David Schulz <david.schulz@digia.com>
864 lines
24 KiB
C++
864 lines
24 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
|
|
** Contact: http://www.qt-project.org/legal
|
|
**
|
|
** 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 Digia. For licensing terms and
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
|
**
|
|
** GNU Lesser General Public License Usage
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
** General Public License version 2.1 as published by the Free Software
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
** packaging of this file. Please review the following information to
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
**
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
**
|
|
****************************************************************************/
|
|
|
|
#include "cpptoolsplugin.h"
|
|
|
|
#include <AST.h>
|
|
#include <Control.h>
|
|
#include <CppDocument.h>
|
|
#include <DiagnosticClient.h>
|
|
#include <Scope.h>
|
|
#include <TranslationUnit.h>
|
|
#include <Literals.h>
|
|
#include <Bind.h>
|
|
#include <Symbols.h>
|
|
#include <utils/changeset.h>
|
|
#include <texteditor/basetextdocument.h>
|
|
#include <texteditor/plaintexteditor.h>
|
|
#include <texteditor/codeassist/iassistproposal.h>
|
|
#include <texteditor/codeassist/iassistproposalmodel.h>
|
|
#include <texteditor/codeassist/basicproposalitemlistmodel.h>
|
|
#include <cpptools/cpptoolsplugin.h>
|
|
#include <cpptools/cppcompletionassist.h>
|
|
#include <extensionsystem/pluginmanager.h>
|
|
#include <utils/fileutils.h>
|
|
|
|
#include <QtTest>
|
|
#include <QDebug>
|
|
#include <QTextDocument>
|
|
#include <QDir>
|
|
|
|
/*!
|
|
Tests for code completion.
|
|
*/
|
|
using namespace CPlusPlus;
|
|
using namespace CppTools;
|
|
using namespace CppTools::Internal;
|
|
using namespace TextEditor;
|
|
using namespace Core;
|
|
|
|
struct TestData
|
|
{
|
|
QByteArray srcText;
|
|
int pos;
|
|
Snapshot snapshot;
|
|
BaseTextEditorWidget *editor;
|
|
QTextDocument *doc;
|
|
};
|
|
|
|
static QStringList getCompletions(TestData &data)
|
|
{
|
|
QStringList completions;
|
|
|
|
CppCompletionAssistInterface *ai = new CppCompletionAssistInterface(data.editor->document(), data.pos,
|
|
data.editor->editorDocument(), ExplicitlyInvoked,
|
|
data.snapshot, QStringList(), QStringList());
|
|
CppCompletionAssistProcessor processor;
|
|
IAssistProposal *proposal = processor.perform(ai);
|
|
if (!proposal)
|
|
return completions;
|
|
IAssistProposalModel *model = proposal->model();
|
|
if (!model)
|
|
return completions;
|
|
BasicProposalItemListModel *listmodel = dynamic_cast<BasicProposalItemListModel *>(model);
|
|
if (!listmodel)
|
|
return completions;
|
|
|
|
for (int i = 0; i < listmodel->size(); ++i)
|
|
completions << listmodel->text(i);
|
|
|
|
return completions;
|
|
}
|
|
|
|
static void setup(TestData *data)
|
|
{
|
|
data->pos = data->srcText.indexOf('@');
|
|
QVERIFY(data->pos != -1);
|
|
data->srcText[data->pos] = ' ';
|
|
Document::Ptr src = Document::create(QDir::tempPath() + QLatin1String("/file.h"));
|
|
Utils::FileSaver srcSaver(src->fileName());
|
|
srcSaver.write(data->srcText);
|
|
srcSaver.finalize();
|
|
src->setUtf8Source(data->srcText);
|
|
src->parse();
|
|
src->check();
|
|
|
|
data->snapshot.insert(src);
|
|
|
|
data->editor = new PlainTextEditorWidget(0);
|
|
QString error;
|
|
data->editor->open(&error, src->fileName(), src->fileName());
|
|
|
|
data->doc = data->editor->document();
|
|
}
|
|
|
|
void CppToolsPlugin::test_completion_forward_declarations_present()
|
|
{
|
|
TestData data;
|
|
data.srcText = "\n"
|
|
"class Foo\n"
|
|
"{\n"
|
|
" struct Bar;\n"
|
|
" int i;\n"
|
|
"};\n"
|
|
"\n"
|
|
"struct Foo::Bar \n"
|
|
"{\n"
|
|
" Bar() {}\n"
|
|
"};\n"
|
|
"\n"
|
|
"@\n"
|
|
"// padding so we get the scope right\n";
|
|
|
|
setup(&data);
|
|
|
|
Utils::ChangeSet change;
|
|
change.insert(data.pos, "Foo::Bar::");
|
|
QTextCursor cursor(data.doc);
|
|
change.apply(&cursor);
|
|
data.pos += 10;
|
|
|
|
QStringList expected;
|
|
expected.append("Bar");
|
|
|
|
QStringList completions = getCompletions(data);
|
|
|
|
QCOMPARE(completions, expected);
|
|
}
|
|
|
|
void CppToolsPlugin::test_completion_basic_1()
|
|
{
|
|
TestData data;
|
|
data.srcText = "\n"
|
|
"class Foo\n"
|
|
"{\n"
|
|
" void foo();\n"
|
|
" int m;\n"
|
|
"};\n"
|
|
"\n"
|
|
"void func() {\n"
|
|
" Foo f;\n"
|
|
" @\n"
|
|
" // padding so we get the scope right\n"
|
|
"}";
|
|
|
|
setup(&data);
|
|
|
|
QStringList basicCompletions = getCompletions(data);
|
|
|
|
QVERIFY(!basicCompletions.contains("foo"));
|
|
QVERIFY(!basicCompletions.contains("m"));
|
|
QVERIFY(basicCompletions.contains("Foo"));
|
|
QVERIFY(basicCompletions.contains("func"));
|
|
QVERIFY(basicCompletions.contains("f"));
|
|
|
|
Utils::ChangeSet change;
|
|
change.insert(data.pos, "f.");
|
|
QTextCursor cursor(data.doc);
|
|
change.apply(&cursor);
|
|
data.pos += 2;
|
|
|
|
QStringList memberCompletions = getCompletions(data);
|
|
|
|
QVERIFY(memberCompletions.contains("foo"));
|
|
QVERIFY(memberCompletions.contains("m"));
|
|
QVERIFY(!memberCompletions.contains("func"));
|
|
QVERIFY(!memberCompletions.contains("f"));
|
|
}
|
|
|
|
void CppToolsPlugin::test_completion_template_1()
|
|
{
|
|
TestData data;
|
|
data.srcText = "\n"
|
|
"template <class T>\n"
|
|
"class Foo\n"
|
|
"{\n"
|
|
" typedef T Type;\n"
|
|
" T foo();\n"
|
|
" T m;\n"
|
|
"};\n"
|
|
"\n"
|
|
"void func() {\n"
|
|
" Foo f;\n"
|
|
" @\n"
|
|
" // padding so we get the scope right\n"
|
|
"}";
|
|
|
|
setup(&data);
|
|
|
|
Utils::ChangeSet change;
|
|
change.insert(data.pos, "Foo::");
|
|
QTextCursor cursor(data.doc);
|
|
change.apply(&cursor);
|
|
data.pos += 5;
|
|
|
|
QStringList completions = getCompletions(data);
|
|
|
|
QVERIFY(completions.contains("Type"));
|
|
QVERIFY(completions.contains("foo"));
|
|
QVERIFY(completions.contains("m"));
|
|
QVERIFY(!completions.contains("T"));
|
|
QVERIFY(!completions.contains("f"));
|
|
QVERIFY(!completions.contains("func"));
|
|
}
|
|
|
|
void CppToolsPlugin::test_completion_template_2()
|
|
{
|
|
TestData data;
|
|
data.srcText = "\n"
|
|
"template <class T>\n"
|
|
"struct List\n"
|
|
"{\n"
|
|
" T &at(int);\n"
|
|
"};\n"
|
|
"\n"
|
|
"struct Tupple { int a; int b; };\n"
|
|
"\n"
|
|
"void func() {\n"
|
|
" List<Tupple> l;\n"
|
|
" @\n"
|
|
" // padding so we get the scope right\n"
|
|
"}";
|
|
|
|
setup(&data);
|
|
|
|
Utils::ChangeSet change;
|
|
QString txt = QLatin1String("l.at(0).");
|
|
change.insert(data.pos, txt);
|
|
QTextCursor cursor(data.doc);
|
|
change.apply(&cursor);
|
|
data.pos += txt.length();
|
|
|
|
QStringList completions = getCompletions(data);
|
|
|
|
QCOMPARE(completions.size(), 3);
|
|
QVERIFY(completions.contains("Tupple"));
|
|
QVERIFY(completions.contains("a"));
|
|
QVERIFY(completions.contains("b"));
|
|
}
|
|
|
|
void CppToolsPlugin::test_completion_template_3()
|
|
{
|
|
TestData data;
|
|
data.srcText = "\n"
|
|
"template <class T>\n"
|
|
"struct List\n"
|
|
"{\n"
|
|
" T t;\n"
|
|
"};\n"
|
|
"\n"
|
|
"struct Tupple { int a; int b; };\n"
|
|
"\n"
|
|
"void func() {\n"
|
|
" List<Tupple> l;\n"
|
|
" @\n"
|
|
" // padding so we get the scope right\n"
|
|
"}";
|
|
|
|
setup(&data);
|
|
|
|
Utils::ChangeSet change;
|
|
QString txt = QLatin1String("l.t.");
|
|
change.insert(data.pos, txt);
|
|
QTextCursor cursor(data.doc);
|
|
change.apply(&cursor);
|
|
data.pos += txt.length();
|
|
|
|
QStringList completions = getCompletions(data);
|
|
|
|
QCOMPARE(completions.size(), 3);
|
|
QVERIFY(completions.contains("Tupple"));
|
|
QVERIFY(completions.contains("a"));
|
|
QVERIFY(completions.contains("b"));
|
|
QVERIFY(completions.contains("a"));
|
|
QVERIFY(completions.contains("b"));
|
|
}
|
|
|
|
void CppToolsPlugin::test_completion()
|
|
{
|
|
QFETCH(QByteArray, code);
|
|
QFETCH(QStringList, expectedCompletions);
|
|
|
|
TestData data;
|
|
data.srcText = code;
|
|
setup(&data);
|
|
|
|
Utils::ChangeSet change;
|
|
change.insert(data.pos, "c.");
|
|
QTextCursor cursor(data.doc);
|
|
change.apply(&cursor);
|
|
data.pos += 2;
|
|
|
|
QStringList actualCompletions = getCompletions(data);
|
|
actualCompletions.sort();
|
|
expectedCompletions.sort();
|
|
|
|
QCOMPARE(actualCompletions, expectedCompletions);
|
|
}
|
|
|
|
void CppToolsPlugin::test_completion_template_as_base()
|
|
{
|
|
test_completion();
|
|
}
|
|
|
|
void CppToolsPlugin::test_completion_template_as_base_data()
|
|
{
|
|
QTest::addColumn<QByteArray>("code");
|
|
QTest::addColumn<QStringList>("expectedCompletions");
|
|
|
|
QByteArray code;
|
|
QStringList completions;
|
|
|
|
code = "\n"
|
|
"class Data { int dataMember; };\n"
|
|
"template <class T> class Other : public T { int otherMember; };\n"
|
|
"\n"
|
|
"void func() {\n"
|
|
" Other<Data> c;\n"
|
|
" @\n"
|
|
" // padding so we get the scope right\n"
|
|
"}";
|
|
completions.append("Data");
|
|
completions.append("dataMember");
|
|
completions.append("Other");
|
|
completions.append("otherMember");
|
|
QTest::newRow("case: base as template directly") << code << completions;
|
|
|
|
|
|
completions.clear();
|
|
code = "\n"
|
|
"class Data { int dataMember; };\n"
|
|
"template <class T> class Other : public T { int otherMember; };\n"
|
|
"template <class T> class More : public Other<T> { int moreMember; };\n"
|
|
"\n"
|
|
"void func() {\n"
|
|
" More<Data> c;\n"
|
|
" @\n"
|
|
" // padding so we get the scope right\n"
|
|
"}";
|
|
completions.append("Data");
|
|
completions.append("dataMember");
|
|
completions.append("Other");
|
|
completions.append("otherMember");
|
|
completions.append("More");
|
|
completions.append("moreMember");
|
|
QTest::newRow("case: base as class template") << code << completions;
|
|
|
|
|
|
completions.clear();
|
|
code = "\n"
|
|
"class Data { int dataMember; };\n"
|
|
"template <class T> class Other : public T { int otherMember; };\n"
|
|
"template <class T> class More : public ::Other<T> { int moreMember; };\n"
|
|
"\n"
|
|
"void func() {\n"
|
|
" More<Data> c;\n"
|
|
" @\n"
|
|
" // padding so we get the scope right\n"
|
|
"}";
|
|
completions.append("Data");
|
|
completions.append("dataMember");
|
|
completions.append("Other");
|
|
completions.append("otherMember");
|
|
completions.append("More");
|
|
completions.append("moreMember");
|
|
QTest::newRow("case: base as globally qualified class template") << code << completions;
|
|
|
|
|
|
completions.clear();
|
|
code = "\n"
|
|
"class Data { int dataMember; };\n"
|
|
"namespace NS {\n"
|
|
"template <class T> class Other : public T { int otherMember; };\n"
|
|
"}\n"
|
|
"template <class T> class More : public NS::Other<T> { int moreMember; };\n"
|
|
"\n"
|
|
"void func() {\n"
|
|
" More<Data> c;\n"
|
|
" @\n"
|
|
" // padding so we get the scope right\n"
|
|
"}";
|
|
completions.append("Data");
|
|
completions.append("dataMember");
|
|
completions.append("Other");
|
|
completions.append("otherMember");
|
|
completions.append("More");
|
|
completions.append("moreMember");
|
|
QTest::newRow("case: base as namespace qualified class template") << code << completions;
|
|
|
|
|
|
completions.clear();
|
|
code = "\n"
|
|
"class Data { int dataMember; };\n"
|
|
"namespace NS {\n"
|
|
"template <class T> class Delegate { typedef Data<T> Type; };\n"
|
|
"}\n"
|
|
"template <class T> class Final : public NS::Delegate<T>::Type { int finalMember; };\n"
|
|
"\n"
|
|
"void func() {\n"
|
|
" Final<Data> c;\n"
|
|
" @\n"
|
|
" // padding so we get the scope right\n"
|
|
"}";
|
|
completions.append("Data");
|
|
completions.append("dataMember");
|
|
completions.append("Final");
|
|
completions.append("finalMember");
|
|
QTest::newRow("case: base as nested template name") << code << completions;
|
|
|
|
|
|
completions.clear();
|
|
code = "\n"
|
|
"class Data { int dataMember; };\n"
|
|
"namespace NS {\n"
|
|
"template <class T> class Delegate { typedef Data<T> Type; };\n"
|
|
"}\n"
|
|
"class Final : public NS::Delegate<Data>::Type { int finalMember; };\n"
|
|
"\n"
|
|
"void func() {\n"
|
|
" Final c;\n"
|
|
" @\n"
|
|
" // padding so we get the scope right\n"
|
|
"}";
|
|
completions.append("Data");
|
|
completions.append("dataMember");
|
|
completions.append("Final");
|
|
completions.append("finalMember");
|
|
QTest::newRow("case: base as nested template name in non-template") << code << completions;
|
|
|
|
completions.clear();
|
|
code = "\n"
|
|
"class Data { int dataMember; };\n"
|
|
"namespace NS {\n"
|
|
"template <class T> class Other : public T { int otherMember; };\n"
|
|
"}\n"
|
|
"class Final : public NS::Other<Data> { int finalMember; };\n"
|
|
"\n"
|
|
"void func() {\n"
|
|
" Final c;\n"
|
|
" @\n"
|
|
" // padding so we get the scope right\n"
|
|
"}";
|
|
completions.append("Data");
|
|
completions.append("dataMember");
|
|
completions.append("Final");
|
|
completions.append("finalMember");
|
|
completions.append("Other");
|
|
completions.append("otherMember");
|
|
QTest::newRow("case: base as template name in non-template") << code << completions;
|
|
}
|
|
|
|
void CppToolsPlugin::test_completion_use_global_identifier_as_base_class()
|
|
{
|
|
test_completion();
|
|
}
|
|
|
|
void CppToolsPlugin::test_completion_use_global_identifier_as_base_class_data()
|
|
{
|
|
QTest::addColumn<QByteArray>("code");
|
|
QTest::addColumn<QStringList>("expectedCompletions");
|
|
|
|
QByteArray code;
|
|
QStringList completions;
|
|
|
|
code = "\n"
|
|
"struct Global\n"
|
|
"{\n"
|
|
" int int_global;\n"
|
|
"};\n"
|
|
"\n"
|
|
"struct Final : ::Global\n"
|
|
"{\n"
|
|
" int int_final;\n"
|
|
"};\n"
|
|
"\n"
|
|
"Final c;\n"
|
|
"@\n"
|
|
"// padding so we get the scope right\n";
|
|
|
|
completions.append("int_global");
|
|
completions.append("int_final");
|
|
completions.append("Final");
|
|
completions.append("Global");
|
|
QTest::newRow("case: derived as global and base as global") << code << completions;
|
|
|
|
completions.clear();
|
|
|
|
code = "\n"
|
|
"struct Global\n"
|
|
"{\n"
|
|
" int int_global;\n"
|
|
"};\n"
|
|
"\n"
|
|
"namespace NS\n"
|
|
"{\n"
|
|
"struct Final : ::Global\n"
|
|
"{\n"
|
|
" int int_final;\n"
|
|
"};\n"
|
|
"}\n"
|
|
"\n"
|
|
"NS::Final c;\n"
|
|
"@\n"
|
|
"// padding so we get the scope right\n";
|
|
|
|
completions.append("int_global");
|
|
completions.append("int_final");
|
|
completions.append("Final");
|
|
completions.append("Global");
|
|
QTest::newRow("case: derived is inside namespace, base as global")
|
|
<< code << completions;
|
|
|
|
completions.clear();
|
|
|
|
//this test does not work due to the bug QTCREATORBUG-7912
|
|
|
|
|
|
// code = "\n"
|
|
// "struct Global\n"
|
|
// "{\n"
|
|
// " int int_global;\n"
|
|
// "};\n"
|
|
// "\n"
|
|
// "template <typename T>\n"
|
|
// "struct Enclosing\n"
|
|
// "{\n"
|
|
// "struct Final : ::Global\n"
|
|
// "{\n"
|
|
// " int int_final;\n"
|
|
// "};\n"
|
|
// "}\n"
|
|
// "\n"
|
|
// "Enclosing<int>::Final c;\n"
|
|
// "@\n"
|
|
// "// padding so we get the scope right\n";
|
|
|
|
// completions.append("int_global");
|
|
// completions.append("int_final");
|
|
// completions.append("Final");
|
|
// completions.append("Global");
|
|
// QTest::newRow("case: derived is enclosed by template, base as global")
|
|
// << code << completions;
|
|
|
|
// completions.clear();
|
|
}
|
|
|
|
void CppToolsPlugin::test_completion_base_class_has_name_the_same_as_derived()
|
|
{
|
|
test_completion();
|
|
}
|
|
|
|
void CppToolsPlugin::test_completion_base_class_has_name_the_same_as_derived_data()
|
|
{
|
|
QTest::addColumn<QByteArray>("code");
|
|
QTest::addColumn<QStringList>("expectedCompletions");
|
|
|
|
QByteArray code;
|
|
QStringList completions;
|
|
|
|
code = "\n"
|
|
"struct A : A\n"
|
|
"{\n"
|
|
" int int_a;\n"
|
|
"};\n"
|
|
"\n"
|
|
"A c;\n"
|
|
"@\n"
|
|
"// padding so we get the scope right\n";
|
|
|
|
completions.append("int_a");
|
|
completions.append("A");
|
|
QTest::newRow("case: base class is derived class") << code << completions;
|
|
|
|
completions.clear();
|
|
|
|
code = "\n"
|
|
"namespace NS\n"
|
|
"{\n"
|
|
"struct A : A\n"
|
|
"{\n"
|
|
" int int_a;\n"
|
|
"};\n"
|
|
"}\n"
|
|
"\n"
|
|
"NS::A c;\n"
|
|
"@\n"
|
|
"// padding so we get the scope right\n";
|
|
|
|
completions.append("int_a");
|
|
completions.append("A");
|
|
QTest::newRow("case: base class is derived class. class is in namespace")
|
|
<< code << completions;
|
|
|
|
completions.clear();
|
|
|
|
code = "\n"
|
|
"namespace NS\n"
|
|
"{\n"
|
|
"struct A : NS::A\n"
|
|
"{\n"
|
|
" int int_a;\n"
|
|
"};\n"
|
|
"}\n"
|
|
"\n"
|
|
"NS::A c;\n"
|
|
"@\n"
|
|
"// padding so we get the scope right\n";
|
|
|
|
completions.append("int_a");
|
|
completions.append("A");
|
|
QTest::newRow("case: base class is derived class. class is in namespace. "
|
|
"use scope operator for base class") << code << completions;
|
|
|
|
completions.clear();
|
|
|
|
code = "\n"
|
|
"namespace NS1\n"
|
|
"{\n"
|
|
"struct A\n"
|
|
"{\n"
|
|
" int int_ns1_a;\n"
|
|
"};\n"
|
|
"}\n"
|
|
"namespace NS2\n"
|
|
"{\n"
|
|
"struct A : NS1::A\n"
|
|
"{\n"
|
|
" int int_ns2_a;\n"
|
|
"};\n"
|
|
"}\n"
|
|
"\n"
|
|
"NS2::A c;\n"
|
|
"@\n"
|
|
"// padding so we get the scope right\n";
|
|
|
|
completions.append("int_ns1_a");
|
|
completions.append("int_ns2_a");
|
|
completions.append("A");
|
|
QTest::newRow("case: base class has the same name as derived but in different namespace")
|
|
<< code << completions;
|
|
|
|
completions.clear();
|
|
|
|
code = "\n"
|
|
"struct Enclosing\n"
|
|
"{\n"
|
|
"struct A\n"
|
|
"{\n"
|
|
" int int_enclosing_a;\n"
|
|
"};\n"
|
|
"};\n"
|
|
"namespace NS2\n"
|
|
"{\n"
|
|
"struct A : Enclosing::A\n"
|
|
"{\n"
|
|
" int int_ns2_a;\n"
|
|
"};\n"
|
|
"}\n"
|
|
"\n"
|
|
"NS2::A c;\n"
|
|
"@\n"
|
|
"// padding so we get the scope right\n";
|
|
|
|
completions.append("int_enclosing_a");
|
|
completions.append("int_ns2_a");
|
|
completions.append("A");
|
|
QTest::newRow("case: base class has the same name as derived(in namespace) "
|
|
"but is nested by different class") << code << completions;
|
|
|
|
completions.clear();
|
|
|
|
code = "\n"
|
|
"struct EnclosingBase\n"
|
|
"{\n"
|
|
"struct A\n"
|
|
"{\n"
|
|
" int int_enclosing_base_a;\n"
|
|
"};\n"
|
|
"};\n"
|
|
"struct EnclosingDerived\n"
|
|
"{\n"
|
|
"struct A : EnclosingBase::A\n"
|
|
"{\n"
|
|
" int int_enclosing_derived_a;\n"
|
|
"};\n"
|
|
"};\n"
|
|
"\n"
|
|
"EnclosingDerived::A c;\n"
|
|
"@\n"
|
|
"// padding so we get the scope right\n";
|
|
|
|
completions.append("int_enclosing_base_a");
|
|
completions.append("int_enclosing_derived_a");
|
|
completions.append("A");
|
|
QTest::newRow("case: base class has the same name as derived(nested) "
|
|
"but is nested by different class") << code << completions;
|
|
|
|
completions.clear();
|
|
|
|
code = "\n"
|
|
"template <typename T>\n"
|
|
"struct A : A\n"
|
|
"{\n"
|
|
" int int_a;\n"
|
|
"};\n"
|
|
"\n"
|
|
"A<int> c;\n"
|
|
"@\n"
|
|
"// padding so we get the scope right\n";
|
|
|
|
completions.append("int_a");
|
|
completions.append("A");
|
|
QTest::newRow("case: base class is derived class. class is a template")
|
|
<< code << completions;
|
|
|
|
completions.clear();
|
|
|
|
}
|
|
|
|
|
|
void CppToolsPlugin::test_completion_cyclic_inheritance()
|
|
{
|
|
test_completion();
|
|
}
|
|
|
|
void CppToolsPlugin::test_completion_cyclic_inheritance_data()
|
|
{
|
|
QTest::addColumn<QByteArray>("code");
|
|
QTest::addColumn<QStringList>("expectedCompletions");
|
|
|
|
QByteArray code;
|
|
QStringList completions;
|
|
|
|
code = "\n"
|
|
"struct B;\n"
|
|
"struct A : B { int _a; };\n"
|
|
"struct B : A { int _b; };\n"
|
|
"\n"
|
|
"A c;\n"
|
|
"@\n"
|
|
;
|
|
completions.append("A");
|
|
completions.append("_a");
|
|
completions.append("B");
|
|
completions.append("_b");
|
|
QTest::newRow("case: direct cyclic inheritance") << code << completions;
|
|
|
|
completions.clear();
|
|
code = "\n"
|
|
"struct C;\n"
|
|
"struct A : C { int _a; };\n"
|
|
"struct B : A { int _b; };\n"
|
|
"struct C : B { int _c; };\n"
|
|
"\n"
|
|
"A c;\n"
|
|
"@\n"
|
|
;
|
|
completions.append("A");
|
|
completions.append("_a");
|
|
completions.append("B");
|
|
completions.append("_b");
|
|
completions.append("C");
|
|
completions.append("_c");
|
|
QTest::newRow("case: indirect cyclic inheritance") << code << completions;
|
|
|
|
completions.clear();
|
|
code = "\n"
|
|
"struct B;\n"
|
|
"struct A : B { int _a; };\n"
|
|
"struct C { int _c; };\n"
|
|
"struct B : C, A { int _b; };\n"
|
|
"\n"
|
|
"A c;\n"
|
|
"@\n"
|
|
;
|
|
completions.append("A");
|
|
completions.append("_a");
|
|
completions.append("B");
|
|
completions.append("_b");
|
|
completions.append("C");
|
|
completions.append("_c");
|
|
QTest::newRow("case: indirect cyclic inheritance") << code << completions;
|
|
|
|
completions.clear();
|
|
code = "\n"
|
|
"template< typename T > struct C;\n"
|
|
"template< typename T, typename S > struct D : C< S >\n"
|
|
"{\n"
|
|
" T _d_t;\n"
|
|
" S _d_s;\n"
|
|
"};\n"
|
|
"template< typename T > struct C : D< T, int >\n"
|
|
"{\n"
|
|
" T _c_t;\n"
|
|
"};\n"
|
|
"\n"
|
|
"D<int, float> c;\n"
|
|
"@\n"
|
|
;
|
|
completions.append("D");
|
|
completions.append("_d_t");
|
|
completions.append("_d_s");
|
|
completions.append("C");
|
|
completions.append("_c_t");
|
|
QTest::newRow("case: direct cyclic inheritance with templates")
|
|
<< code << completions;
|
|
|
|
completions.clear();
|
|
code = "\n"
|
|
"template< typename T > struct C;\n"
|
|
"template< typename T, typename S > struct D : C< S >\n"
|
|
"{\n"
|
|
" T _d_t;\n"
|
|
" S _d_s;\n"
|
|
"};\n"
|
|
"template< typename T > struct B : D< T, int >\n"
|
|
"{\n"
|
|
" T _b_t;\n"
|
|
"};\n"
|
|
"template< typename T > struct C : B<T>\n"
|
|
"{\n"
|
|
" T _c_t;\n"
|
|
"};\n"
|
|
"\n"
|
|
"D<int, float> c;\n"
|
|
"@\n"
|
|
;
|
|
completions.append("D");
|
|
completions.append("_d_t");
|
|
completions.append("_d_s");
|
|
completions.append("C");
|
|
completions.append("_c_t");
|
|
completions.append("B");
|
|
completions.append("_b_t");
|
|
QTest::newRow("case: indirect cyclic inheritance with templates")
|
|
<< code << completions;
|
|
|
|
}
|