aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cpptools
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/cpptools')
-rw-r--r--src/plugins/cpptools/cppcompletion_test.cpp105
-rw-r--r--src/plugins/cpptools/cpptoolsplugin.h2
2 files changed, 107 insertions, 0 deletions
diff --git a/src/plugins/cpptools/cppcompletion_test.cpp b/src/plugins/cpptools/cppcompletion_test.cpp
index 34ea48fee28..6e35e263dab 100644
--- a/src/plugins/cpptools/cppcompletion_test.cpp
+++ b/src/plugins/cpptools/cppcompletion_test.cpp
@@ -1646,3 +1646,108 @@ void CppToolsPlugin::test_completion_template_specialization_with_pointer()
QVERIFY(completions.contains(QLatin1String("Template")));
QVERIFY(completions.contains(QLatin1String("pointer")));
}
+
+void CppToolsPlugin::test_completion_typedef_using_templates1()
+{
+ TestData data;
+ data.srcText = "\n"
+ "namespace NS1\n"
+ "{\n"
+ "template<typename T>\n"
+ "struct NS1Struct\n"
+ "{\n"
+ " typedef T *pointer;\n"
+ " pointer bar;\n"
+ "};\n"
+ "}\n"
+ "namespace NS2\n"
+ "{\n"
+ "using NS1::NS1Struct;\n"
+ "\n"
+ "template <typename T>\n"
+ "struct NS2Struct\n"
+ "{\n"
+ " typedef NS1Struct<T> NS1StructTypedef;\n"
+ " typedef typename NS1StructTypedef::pointer pointer;\n"
+ " pointer p;\n"
+ "};\n"
+ "}\n"
+ "struct Foo\n"
+ "{\n"
+ " int bar;\n"
+ "};\n"
+ "void fun()\n"
+ "{\n"
+ " NS2::NS2Struct<Foo> s;\n"
+ " @\n"
+ " // padding so we get the scope right\n"
+ "}\n"
+ ;
+ setup(&data);
+
+ Utils::ChangeSet change;
+ QString txt = QLatin1String("s.p->");
+ change.insert(data.pos, txt);
+ QTextCursor cursor(data.doc);
+ change.apply(&cursor);
+ data.pos += txt.length();
+
+ QStringList completions = getCompletions(data);
+
+ QCOMPARE(completions.size(), 2);
+ QVERIFY(completions.contains(QLatin1String("Foo")));
+ QVERIFY(completions.contains(QLatin1String("bar")));
+}
+
+
+void CppToolsPlugin::test_completion_typedef_using_templates2()
+{
+ TestData data;
+ data.srcText = "\n"
+ "namespace NS1\n"
+ "{\n"
+ "template<typename T>\n"
+ "struct NS1Struct\n"
+ "{\n"
+ " typedef T *pointer;\n"
+ " pointer bar;\n"
+ "};\n"
+ "}\n"
+ "namespace NS2\n"
+ "{\n"
+ "using NS1::NS1Struct;\n"
+ "\n"
+ "template <typename T>\n"
+ "struct NS2Struct\n"
+ "{\n"
+ " typedef NS1Struct<T> NS1StructTypedef;\n"
+ " typedef typename NS1StructTypedef::pointer pointer;\n"
+ " pointer p;\n"
+ "};\n"
+ "}\n"
+ "struct Foo\n"
+ "{\n"
+ " int bar;\n"
+ "};\n"
+ "void fun()\n"
+ "{\n"
+ " NS2::NS2Struct<Foo>::pointer p;\n"
+ " @\n"
+ " // padding so we get the scope right\n"
+ "}\n"
+ ;
+ setup(&data);
+
+ Utils::ChangeSet change;
+ QString txt = QLatin1String("p->");
+ change.insert(data.pos, txt);
+ QTextCursor cursor(data.doc);
+ change.apply(&cursor);
+ data.pos += txt.length();
+
+ QStringList completions = getCompletions(data);
+
+ QCOMPARE(completions.size(), 2);
+ QVERIFY(completions.contains(QLatin1String("Foo")));
+ QVERIFY(completions.contains(QLatin1String("bar")));
+}
diff --git a/src/plugins/cpptools/cpptoolsplugin.h b/src/plugins/cpptools/cpptoolsplugin.h
index fd9f18b7e8c..fcb4d417e32 100644
--- a/src/plugins/cpptools/cpptoolsplugin.h
+++ b/src/plugins/cpptools/cpptoolsplugin.h
@@ -124,6 +124,8 @@ private slots:
void test_completion_typedef_is_inside_function_before_declaration_block();
void test_completion_resolve_complex_typedef_with_template();
void test_completion_template_specialization_with_pointer();
+ void test_completion_typedef_using_templates1();
+ void test_completion_typedef_using_templates2();
void test_format_pointerdeclaration_in_simpledeclarations();
void test_format_pointerdeclaration_in_simpledeclarations_data();