10#include "gmock/gmock.h"
11#include "gtest/gtest.h"
13using ::testing::HasSubstr;
14using ::testing::StartsWith;
22TEST_F(ExtractFunctionTest, FunctionTest) {
26 EXPECT_EQ(apply(
"for(;;) [[1+2; 1+2;]]"),
"unavailable");
28 EXPECT_EQ(apply(
"int x = 0; [[x++;]]"),
"unavailable");
30 EXPECT_EQ(apply(
"auto lam = [](){ [[int x;]] }; "),
"unavailable");
32 EXPECT_THAT(apply(
"int [[x = 0]];"),
"unavailable");
34 EXPECT_THAT(apply(
" [[int a = 5;]] a++; "),
"unavailable");
38 EXPECT_THAT(apply(
"for(;;) { [[int x;]]break; }"), HasSubstr(
"extracted"));
41 EXPECT_THAT(apply(
" for([[int i = 0;]];);"), HasSubstr(
"extracted"));
43 EXPECT_THAT(apply(
" if(true) [[{ return; }]] "), HasSubstr(
"extracted"));
45 EXPECT_THAT(apply(
" if(true) [[if (false) return;]] "),
46 StartsWith(
"unavailable"));
48 apply(
"#define RETURN_IF_ERROR(x) if (x) return\nRETU^RN_IF_ERROR(4);"),
49 StartsWith(
"unavailable"));
52 EXPECT_THAT(apply(
" for([[int i = 0;]];);"), HasSubstr(
"unavailable"));
55TEST_F(ExtractFunctionTest, FileTest) {
57 std::string ParameterCheckInput = R
"cpp(
68 std::string ParameterCheckOutput = R"cpp(
72void extracted(int &a, int &b, int * &ptr, Foo &foo) {
80 extracted(a, b, ptr, foo);
82 EXPECT_EQ(apply(ParameterCheckInput), ParameterCheckOutput);
85 std::string ConstCheckInput = R
"cpp(
89 std::string ConstCheckOutput = R"cpp(
90void extracted(const int &c) {
96 EXPECT_EQ(apply(ConstCheckInput), ConstCheckOutput);
99 std::string ConstNamespaceCheckInput = R
"cpp(
100namespace X { struct Y { int z; }; }
101int f(const X::Y &y) {
102 [[return y.z + y.z;]]
104 std::string ConstNamespaceCheckOutput = R"cpp(
105namespace X { struct Y { int z; }; }
106int extracted(const X::Y &y) {
109int f(const X::Y &y) {
112 EXPECT_EQ(apply(ConstNamespaceCheckInput), ConstNamespaceCheckOutput);
115 EXPECT_THAT(apply(
"void f() { [[int a; f();]] }"), StartsWith(
"fail"));
117 std::string MethodInput = R
"cpp(
124 std::string MethodCheckOutput = R"cpp(
134 EXPECT_EQ(apply(MethodInput), MethodCheckOutput);
136 std::string OutOfLineMethodInput = R"cpp(
145 std::string OutOfLineMethodCheckOutput = R"cpp(
151 void T::extracted() {
158 EXPECT_EQ(apply(OutOfLineMethodInput), OutOfLineMethodCheckOutput);
162 std::string TemplateFailInput = R
"cpp(
168 EXPECT_EQ(apply(TemplateFailInput), "unavailable");
170 std::string MacroInput = R
"cpp(
171 #define F(BODY) void f() { BODY }
174 std::string MacroOutput = R"cpp(
175 #define F(BODY) void f() { BODY }
181 EXPECT_EQ(apply(MacroInput), MacroOutput);
184 EXPECT_EQ(apply(
"void f([[int a]]);"),
"unavailable");
185 EXPECT_EQ(apply(
"void f(int a = [[1]]);"),
"unavailable");
187 std::string CompoundFailInput = R
"cpp(
192 EXPECT_EQ(apply(CompoundFailInput), "unavailable");
194 ExtraArgs.push_back(
"-std=c++14");
196 EXPECT_EQ(apply(R
"cpp(
197 void call() { [[1+1]]; }
201 EXPECT_EQ(apply(R
"cpp(
202 void call() { [[1+1;]] }
207TEST_F(ExtractFunctionTest, DifferentHeaderSourceTest) {
214 std::string OutOfLineSource = R"cpp(
215 void SomeClass::f() {
220 std::string OutOfLineSourceOutputCheck = R"cpp(
221 void SomeClass::extracted() {
229 std::string HeaderOutputCheck = R"cpp(
236 llvm::StringMap<std::string> EditedFiles;
238 EXPECT_EQ(apply(OutOfLineSource, &EditedFiles), OutOfLineSourceOutputCheck);
239 EXPECT_EQ(EditedFiles.begin()->second, HeaderOutputCheck);
242TEST_F(ExtractFunctionTest, DifferentFilesNestedTest) {
251 std::string NestedOutOfLineSource = R"cpp(
252 void T::SomeClass::f() {
257 std::string NestedOutOfLineSourceOutputCheck = R"cpp(
258 void T::SomeClass::extracted() {
261void T::SomeClass::f() {
266 std::string NestedHeaderOutputCheck = R"cpp(
275 llvm::StringMap<std::string> EditedFiles;
277 EXPECT_EQ(apply(NestedOutOfLineSource, &EditedFiles),
278 NestedOutOfLineSourceOutputCheck);
279 EXPECT_EQ(EditedFiles.begin()->second, NestedHeaderOutputCheck);
282TEST_F(ExtractFunctionTest, ConstexprDifferentHeaderSourceTest) {
285 constexpr void f() const;
289 std::string OutOfLineSource = R"cpp(
290 constexpr void SomeClass::f() const {
295 std::string OutOfLineSourceOutputCheck = R"cpp(
296 constexpr void SomeClass::extracted() const {
299constexpr void SomeClass::f() const {
304 std::string HeaderOutputCheck = R"cpp(
306 constexpr void extracted() const;
307constexpr void f() const;
311 llvm::StringMap<std::string> EditedFiles;
313 EXPECT_EQ(apply(OutOfLineSource, &EditedFiles), OutOfLineSourceOutputCheck);
314 EXPECT_NE(EditedFiles.begin(), EditedFiles.end())
315 << "The header should be edited and receives the declaration of the new "
318 if (EditedFiles.begin() != EditedFiles.end()) {
319 EXPECT_EQ(EditedFiles.begin()->second, HeaderOutputCheck);
323TEST_F(ExtractFunctionTest, ConstevalDifferentHeaderSourceTest) {
324 ExtraArgs.push_back(
"--std=c++20");
327 consteval void f() const;
331 std::string OutOfLineSource = R"cpp(
332 consteval void SomeClass::f() const {
337 std::string OutOfLineSourceOutputCheck = R"cpp(
338 consteval void SomeClass::extracted() const {
341consteval void SomeClass::f() const {
346 std::string HeaderOutputCheck = R"cpp(
348 consteval void extracted() const;
349consteval void f() const;
353 llvm::StringMap<std::string> EditedFiles;
355 EXPECT_EQ(apply(OutOfLineSource, &EditedFiles), OutOfLineSourceOutputCheck);
356 EXPECT_NE(EditedFiles.begin(), EditedFiles.end())
357 << "The header should be edited and receives the declaration of the new "
360 if (EditedFiles.begin() != EditedFiles.end()) {
361 EXPECT_EQ(EditedFiles.begin()->second, HeaderOutputCheck);
365TEST_F(ExtractFunctionTest, ConstDifferentHeaderSourceTest) {
372 std::string OutOfLineSource = R"cpp(
373 void SomeClass::f() const {
378 std::string OutOfLineSourceOutputCheck = R"cpp(
379 void SomeClass::extracted() const {
382void SomeClass::f() const {
387 std::string HeaderOutputCheck = R"cpp(
389 void extracted() const;
394 llvm::StringMap<std::string> EditedFiles;
396 EXPECT_EQ(apply(OutOfLineSource, &EditedFiles), OutOfLineSourceOutputCheck);
397 EXPECT_NE(EditedFiles.begin(), EditedFiles.end())
398 << "The header should be edited and receives the declaration of the new "
401 if (EditedFiles.begin() != EditedFiles.end()) {
402 EXPECT_EQ(EditedFiles.begin()->second, HeaderOutputCheck);
406TEST_F(ExtractFunctionTest, StaticDifferentHeaderSourceTest) {
413 std::string OutOfLineSource = R"cpp(
414 void SomeClass::f() {
419 std::string OutOfLineSourceOutputCheck = R"cpp(
420 void SomeClass::extracted() {
428 std::string HeaderOutputCheck = R"cpp(
430 static void extracted();
435 llvm::StringMap<std::string> EditedFiles;
437 EXPECT_EQ(apply(OutOfLineSource, &EditedFiles), OutOfLineSourceOutputCheck);
438 EXPECT_NE(EditedFiles.begin(), EditedFiles.end())
439 << "The header should be edited and receives the declaration of the new "
442 if (EditedFiles.begin() != EditedFiles.end()) {
443 EXPECT_EQ(EditedFiles.begin()->second, HeaderOutputCheck);
447TEST_F(ExtractFunctionTest, DifferentContextHeaderSourceTest) {
465 std::string OutOfLineSource = R"cpp(
466 ns::A::C::RType ns::A::T::SomeClass::f() {
472 std::string OutOfLineSourceOutputCheck = R"cpp(
473 ns::A::C::RType ns::A::T::SomeClass::extracted() {
477ns::A::C::RType ns::A::T::SomeClass::f() {
482 std::string HeaderOutputCheck = R"cpp(
492 static ns::A::C::RType extracted();
500 llvm::StringMap<std::string> EditedFiles;
502 EXPECT_EQ(apply(OutOfLineSource, &EditedFiles), OutOfLineSourceOutputCheck);
503 EXPECT_EQ(EditedFiles.begin()->second, HeaderOutputCheck);
506TEST_F(ExtractFunctionTest, DifferentSyntacticContextNamespace) {
507 std::string OutOfLineSource = R"cpp(
517 std::string OutOfLineSourceOutputCheck = R"cpp(
523 void ns::extracted() {
531 EXPECT_EQ(apply(OutOfLineSource), OutOfLineSourceOutputCheck);
534TEST_F(ExtractFunctionTest, ControlFlow) {
537 EXPECT_THAT(apply(
" [[for(;;) if(1) break;]] "), HasSubstr(
"extracted"));
538 EXPECT_THAT(apply(
" for(;;) [[while(1) break;]] "), HasSubstr(
"extracted"));
539 EXPECT_THAT(apply(
" [[switch(1) { break; }]]"), HasSubstr(
"extracted"));
540 EXPECT_THAT(apply(
" [[while(1) switch(1) { continue; }]]"),
541 HasSubstr(
"extracted"));
543 EXPECT_THAT(apply(
" for(;;) [[if(1) continue;]] "), StartsWith(
"fail"));
544 EXPECT_THAT(apply(
" while(1) [[if(1) break;]] "), StartsWith(
"fail"));
545 EXPECT_THAT(apply(
" switch(1) { [[break;]] }"), StartsWith(
"fail"));
546 EXPECT_THAT(apply(
" for(;;) { [[while(1) break; break;]] }"),
550TEST_F(ExtractFunctionTest, ExistingReturnStatement) {
552 const char *Before = R
"cpp(
554 int getNum(bool Superstitious, int Min, int Max) {
555 if (Superstitious) [[{
556 for (int I = Min; I <= Max; ++I)
561 return (Min + Max) / 2;
567 const char *After = R
"cpp(
569 int extracted(int &Min, int &Max) {
571 for (int I = Min; I <= Max; ++I)
577int getNum(bool Superstitious, int Min, int Max) {
578 if (Superstitious) return extracted(Min, Max); else {
579 return (Min + Max) / 2;
583 EXPECT_EQ(apply(Before), After);
586TEST_F(ExtractFunctionTest, OverloadedOperators) {
588 std::string Before = R"cpp(struct A {
589 int operator+(int x) { return x; }
591 A &operator<<(A &, int);
592 A &operator|(A &, int);
609 int operator+(int x) { return x; }
611 A &operator<<(A &, int);
612 A &operator|(A &, int);
630 EXPECT_EQ(apply(Before), After);
#define TWEAK_TEST(TweakID)
TEST_F(BackgroundIndexTest, NoCrashOnErrorFile)
===– Representation.cpp - ClangDoc Representation --------—*- C++ -*-===//