1 //===-- SourceCodeTests.cpp ------------------------------------*- C++ -*-===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 #include "Annotations.h" 9 #include "Context.h" 10 #include "Protocol.h" 11 #include "SourceCode.h" 12 #include "TestTU.h" 13 #include "clang/Basic/LangOptions.h" 14 #include "clang/Basic/SourceLocation.h" 15 #include "clang/Format/Format.h" 16 #include "llvm/Support/Error.h" 17 #include "llvm/Support/raw_os_ostream.h" 18 #include "llvm/Testing/Support/Annotations.h" 19 #include "llvm/Testing/Support/Error.h" 20 #include "gmock/gmock.h" 21 #include "gtest/gtest.h" 22 #include <tuple> 23 24 namespace clang { 25 namespace clangd { 26 namespace { 27 28 using llvm::Failed; 29 using llvm::HasValue; 30 31 MATCHER_P2(Pos, Line, Col, "") { 32 return arg.line == int(Line) && arg.character == int(Col); 33 } 34 35 MATCHER_P(MacroName, Name, "") { return arg.Name == Name; } 36 37 /// A helper to make tests easier to read. 38 Position position(int Line, int Character) { 39 Position Pos; 40 Pos.line = Line; 41 Pos.character = Character; 42 return Pos; 43 } 44 45 Range range(const std::pair<int, int> &P1, const std::pair<int, int> &P2) { 46 Range Range; 47 Range.start = position(P1.first, P1.second); 48 Range.end = position(P2.first, P2.second); 49 return Range; 50 } 51 52 TEST(SourceCodeTests, lspLength) { 53 EXPECT_EQ(lspLength(""), 0UL); 54 EXPECT_EQ(lspLength("ascii"), 5UL); 55 // BMP 56 EXPECT_EQ(lspLength("↓"), 1UL); 57 EXPECT_EQ(lspLength("¥"), 1UL); 58 // astral 59 EXPECT_EQ(lspLength(""), 2UL); 60 61 WithContextValue UTF8(kCurrentOffsetEncoding, OffsetEncoding::UTF8); 62 EXPECT_EQ(lspLength(""), 0UL); 63 EXPECT_EQ(lspLength("ascii"), 5UL); 64 // BMP 65 EXPECT_EQ(lspLength("↓"), 3UL); 66 EXPECT_EQ(lspLength("¥"), 2UL); 67 // astral 68 EXPECT_EQ(lspLength(""), 4UL); 69 70 WithContextValue UTF32(kCurrentOffsetEncoding, OffsetEncoding::UTF32); 71 EXPECT_EQ(lspLength(""), 0UL); 72 EXPECT_EQ(lspLength("ascii"), 5UL); 73 // BMP 74 EXPECT_EQ(lspLength("↓"), 1UL); 75 EXPECT_EQ(lspLength("¥"), 1UL); 76 // astral 77 EXPECT_EQ(lspLength(""), 1UL); 78 } 79 80 // The = → below are ASCII (1 byte), BMP (3 bytes), and astral (4 bytes). 81 const char File[] = R"(0:0 = 0 82 1:0 → 8 83 2:0 18)"; 84 struct Line { 85 unsigned Number; 86 unsigned Offset; 87 unsigned Length; 88 }; 89 Line FileLines[] = {Line{0, 0, 7}, Line{1, 8, 9}, Line{2, 18, 11}}; 90 91 TEST(SourceCodeTests, PositionToOffset) { 92 // line out of bounds 93 EXPECT_THAT_EXPECTED(positionToOffset(File, position(-1, 2)), llvm::Failed()); 94 // first line 95 EXPECT_THAT_EXPECTED(positionToOffset(File, position(0, -1)), 96 llvm::Failed()); // out of range 97 EXPECT_THAT_EXPECTED(positionToOffset(File, position(0, 0)), 98 llvm::HasValue(0)); // first character 99 EXPECT_THAT_EXPECTED(positionToOffset(File, position(0, 3)), 100 llvm::HasValue(3)); // middle character 101 EXPECT_THAT_EXPECTED(positionToOffset(File, position(0, 6)), 102 llvm::HasValue(6)); // last character 103 EXPECT_THAT_EXPECTED(positionToOffset(File, position(0, 7)), 104 llvm::HasValue(7)); // the newline itself 105 EXPECT_THAT_EXPECTED(positionToOffset(File, position(0, 7), false), 106 llvm::HasValue(7)); 107 EXPECT_THAT_EXPECTED(positionToOffset(File, position(0, 8)), 108 llvm::HasValue(7)); // out of range 109 EXPECT_THAT_EXPECTED(positionToOffset(File, position(0, 8), false), 110 llvm::Failed()); // out of range 111 // middle line 112 EXPECT_THAT_EXPECTED(positionToOffset(File, position(1, -1)), 113 llvm::Failed()); // out of range 114 EXPECT_THAT_EXPECTED(positionToOffset(File, position(1, 0)), 115 llvm::HasValue(8)); // first character 116 EXPECT_THAT_EXPECTED(positionToOffset(File, position(1, 3)), 117 llvm::HasValue(11)); // middle character 118 EXPECT_THAT_EXPECTED(positionToOffset(File, position(1, 3), false), 119 llvm::HasValue(11)); 120 EXPECT_THAT_EXPECTED(positionToOffset(File, position(1, 6)), 121 llvm::HasValue(16)); // last character 122 EXPECT_THAT_EXPECTED(positionToOffset(File, position(1, 7)), 123 llvm::HasValue(17)); // the newline itself 124 EXPECT_THAT_EXPECTED(positionToOffset(File, position(1, 8)), 125 llvm::HasValue(17)); // out of range 126 EXPECT_THAT_EXPECTED(positionToOffset(File, position(1, 8), false), 127 llvm::Failed()); // out of range 128 // last line 129 EXPECT_THAT_EXPECTED(positionToOffset(File, position(2, -1)), 130 llvm::Failed()); // out of range 131 EXPECT_THAT_EXPECTED(positionToOffset(File, position(2, 0)), 132 llvm::HasValue(18)); // first character 133 EXPECT_THAT_EXPECTED(positionToOffset(File, position(2, 3)), 134 llvm::HasValue(21)); // middle character 135 EXPECT_THAT_EXPECTED(positionToOffset(File, position(2, 5), false), 136 llvm::Failed()); // middle of surrogate pair 137 EXPECT_THAT_EXPECTED(positionToOffset(File, position(2, 5)), 138 llvm::HasValue(26)); // middle of surrogate pair 139 EXPECT_THAT_EXPECTED(positionToOffset(File, position(2, 6), false), 140 llvm::HasValue(26)); // end of surrogate pair 141 EXPECT_THAT_EXPECTED(positionToOffset(File, position(2, 8)), 142 llvm::HasValue(28)); // last character 143 EXPECT_THAT_EXPECTED(positionToOffset(File, position(2, 9)), 144 llvm::HasValue(29)); // EOF 145 EXPECT_THAT_EXPECTED(positionToOffset(File, position(2, 10), false), 146 llvm::Failed()); // out of range 147 // line out of bounds 148 EXPECT_THAT_EXPECTED(positionToOffset(File, position(3, 0)), llvm::Failed()); 149 EXPECT_THAT_EXPECTED(positionToOffset(File, position(3, 1)), llvm::Failed()); 150 151 // Codepoints are similar, except near astral characters. 152 WithContextValue UTF32(kCurrentOffsetEncoding, OffsetEncoding::UTF32); 153 // line out of bounds 154 EXPECT_THAT_EXPECTED(positionToOffset(File, position(-1, 2)), llvm::Failed()); 155 // first line 156 EXPECT_THAT_EXPECTED(positionToOffset(File, position(0, -1)), 157 llvm::Failed()); // out of range 158 EXPECT_THAT_EXPECTED(positionToOffset(File, position(0, 0)), 159 llvm::HasValue(0)); // first character 160 EXPECT_THAT_EXPECTED(positionToOffset(File, position(0, 3)), 161 llvm::HasValue(3)); // middle character 162 EXPECT_THAT_EXPECTED(positionToOffset(File, position(0, 6)), 163 llvm::HasValue(6)); // last character 164 EXPECT_THAT_EXPECTED(positionToOffset(File, position(0, 7)), 165 llvm::HasValue(7)); // the newline itself 166 EXPECT_THAT_EXPECTED(positionToOffset(File, position(0, 7), false), 167 llvm::HasValue(7)); 168 EXPECT_THAT_EXPECTED(positionToOffset(File, position(0, 8)), 169 llvm::HasValue(7)); // out of range 170 EXPECT_THAT_EXPECTED(positionToOffset(File, position(0, 8), false), 171 llvm::Failed()); // out of range 172 // middle line 173 EXPECT_THAT_EXPECTED(positionToOffset(File, position(1, -1)), 174 llvm::Failed()); // out of range 175 EXPECT_THAT_EXPECTED(positionToOffset(File, position(1, 0)), 176 llvm::HasValue(8)); // first character 177 EXPECT_THAT_EXPECTED(positionToOffset(File, position(1, 3)), 178 llvm::HasValue(11)); // middle character 179 EXPECT_THAT_EXPECTED(positionToOffset(File, position(1, 3), false), 180 llvm::HasValue(11)); 181 EXPECT_THAT_EXPECTED(positionToOffset(File, position(1, 6)), 182 llvm::HasValue(16)); // last character 183 EXPECT_THAT_EXPECTED(positionToOffset(File, position(1, 7)), 184 llvm::HasValue(17)); // the newline itself 185 EXPECT_THAT_EXPECTED(positionToOffset(File, position(1, 8)), 186 llvm::HasValue(17)); // out of range 187 EXPECT_THAT_EXPECTED(positionToOffset(File, position(1, 8), false), 188 llvm::Failed()); // out of range 189 // last line 190 EXPECT_THAT_EXPECTED(positionToOffset(File, position(2, -1)), 191 llvm::Failed()); // out of range 192 EXPECT_THAT_EXPECTED(positionToOffset(File, position(2, 0)), 193 llvm::HasValue(18)); // first character 194 EXPECT_THAT_EXPECTED(positionToOffset(File, position(2, 4)), 195 llvm::HasValue(22)); // Before astral character. 196 EXPECT_THAT_EXPECTED(positionToOffset(File, position(2, 5), false), 197 llvm::HasValue(26)); // after astral character 198 EXPECT_THAT_EXPECTED(positionToOffset(File, position(2, 7)), 199 llvm::HasValue(28)); // last character 200 EXPECT_THAT_EXPECTED(positionToOffset(File, position(2, 8)), 201 llvm::HasValue(29)); // EOF 202 EXPECT_THAT_EXPECTED(positionToOffset(File, position(2, 9), false), 203 llvm::Failed()); // out of range 204 // line out of bounds 205 EXPECT_THAT_EXPECTED(positionToOffset(File, position(3, 0)), llvm::Failed()); 206 EXPECT_THAT_EXPECTED(positionToOffset(File, position(3, 1)), llvm::Failed()); 207 208 // Test UTF-8, where transformations are trivial. 209 WithContextValue UTF8(kCurrentOffsetEncoding, OffsetEncoding::UTF8); 210 EXPECT_THAT_EXPECTED(positionToOffset(File, position(-1, 2)), llvm::Failed()); 211 EXPECT_THAT_EXPECTED(positionToOffset(File, position(3, 0)), llvm::Failed()); 212 for (Line L : FileLines) { 213 EXPECT_THAT_EXPECTED(positionToOffset(File, position(L.Number, -1)), 214 llvm::Failed()); // out of range 215 for (unsigned I = 0; I <= L.Length; ++I) 216 EXPECT_THAT_EXPECTED(positionToOffset(File, position(L.Number, I)), 217 llvm::HasValue(L.Offset + I)); 218 EXPECT_THAT_EXPECTED( 219 positionToOffset(File, position(L.Number, L.Length + 1)), 220 llvm::HasValue(L.Offset + L.Length)); 221 EXPECT_THAT_EXPECTED( 222 positionToOffset(File, position(L.Number, L.Length + 1), false), 223 llvm::Failed()); // out of range 224 } 225 } 226 227 TEST(SourceCodeTests, OffsetToPosition) { 228 EXPECT_THAT(offsetToPosition(File, 0), Pos(0, 0)) << "start of file"; 229 EXPECT_THAT(offsetToPosition(File, 3), Pos(0, 3)) << "in first line"; 230 EXPECT_THAT(offsetToPosition(File, 6), Pos(0, 6)) << "end of first line"; 231 EXPECT_THAT(offsetToPosition(File, 7), Pos(0, 7)) << "first newline"; 232 EXPECT_THAT(offsetToPosition(File, 8), Pos(1, 0)) << "start of second line"; 233 EXPECT_THAT(offsetToPosition(File, 12), Pos(1, 4)) << "before BMP char"; 234 EXPECT_THAT(offsetToPosition(File, 13), Pos(1, 5)) << "in BMP char"; 235 EXPECT_THAT(offsetToPosition(File, 15), Pos(1, 5)) << "after BMP char"; 236 EXPECT_THAT(offsetToPosition(File, 16), Pos(1, 6)) << "end of second line"; 237 EXPECT_THAT(offsetToPosition(File, 17), Pos(1, 7)) << "second newline"; 238 EXPECT_THAT(offsetToPosition(File, 18), Pos(2, 0)) << "start of last line"; 239 EXPECT_THAT(offsetToPosition(File, 21), Pos(2, 3)) << "in last line"; 240 EXPECT_THAT(offsetToPosition(File, 22), Pos(2, 4)) << "before astral char"; 241 EXPECT_THAT(offsetToPosition(File, 24), Pos(2, 6)) << "in astral char"; 242 EXPECT_THAT(offsetToPosition(File, 26), Pos(2, 6)) << "after astral char"; 243 EXPECT_THAT(offsetToPosition(File, 28), Pos(2, 8)) << "end of last line"; 244 EXPECT_THAT(offsetToPosition(File, 29), Pos(2, 9)) << "EOF"; 245 EXPECT_THAT(offsetToPosition(File, 30), Pos(2, 9)) << "out of bounds"; 246 247 // Codepoints are similar, except near astral characters. 248 WithContextValue UTF32(kCurrentOffsetEncoding, OffsetEncoding::UTF32); 249 EXPECT_THAT(offsetToPosition(File, 0), Pos(0, 0)) << "start of file"; 250 EXPECT_THAT(offsetToPosition(File, 3), Pos(0, 3)) << "in first line"; 251 EXPECT_THAT(offsetToPosition(File, 6), Pos(0, 6)) << "end of first line"; 252 EXPECT_THAT(offsetToPosition(File, 7), Pos(0, 7)) << "first newline"; 253 EXPECT_THAT(offsetToPosition(File, 8), Pos(1, 0)) << "start of second line"; 254 EXPECT_THAT(offsetToPosition(File, 12), Pos(1, 4)) << "before BMP char"; 255 EXPECT_THAT(offsetToPosition(File, 13), Pos(1, 5)) << "in BMP char"; 256 EXPECT_THAT(offsetToPosition(File, 15), Pos(1, 5)) << "after BMP char"; 257 EXPECT_THAT(offsetToPosition(File, 16), Pos(1, 6)) << "end of second line"; 258 EXPECT_THAT(offsetToPosition(File, 17), Pos(1, 7)) << "second newline"; 259 EXPECT_THAT(offsetToPosition(File, 18), Pos(2, 0)) << "start of last line"; 260 EXPECT_THAT(offsetToPosition(File, 21), Pos(2, 3)) << "in last line"; 261 EXPECT_THAT(offsetToPosition(File, 22), Pos(2, 4)) << "before astral char"; 262 EXPECT_THAT(offsetToPosition(File, 24), Pos(2, 5)) << "in astral char"; 263 EXPECT_THAT(offsetToPosition(File, 26), Pos(2, 5)) << "after astral char"; 264 EXPECT_THAT(offsetToPosition(File, 28), Pos(2, 7)) << "end of last line"; 265 EXPECT_THAT(offsetToPosition(File, 29), Pos(2, 8)) << "EOF"; 266 EXPECT_THAT(offsetToPosition(File, 30), Pos(2, 8)) << "out of bounds"; 267 268 WithContextValue UTF8(kCurrentOffsetEncoding, OffsetEncoding::UTF8); 269 for (Line L : FileLines) { 270 for (unsigned I = 0; I <= L.Length; ++I) 271 EXPECT_THAT(offsetToPosition(File, L.Offset + I), Pos(L.Number, I)); 272 } 273 EXPECT_THAT(offsetToPosition(File, 30), Pos(2, 11)) << "out of bounds"; 274 } 275 276 TEST(SourceCodeTests, IsRangeConsecutive) { 277 EXPECT_TRUE(isRangeConsecutive(range({2, 2}, {2, 3}), range({2, 3}, {2, 4}))); 278 EXPECT_FALSE( 279 isRangeConsecutive(range({0, 2}, {0, 3}), range({2, 3}, {2, 4}))); 280 EXPECT_FALSE( 281 isRangeConsecutive(range({2, 2}, {2, 3}), range({2, 4}, {2, 5}))); 282 } 283 284 TEST(SourceCodeTests, SourceLocationInMainFile) { 285 Annotations Source(R"cpp( 286 ^in^t ^foo 287 ^bar 288 ^baz ^() {} {} {} {} { }^ 289 )cpp"); 290 291 SourceManagerForFile Owner("foo.cpp", Source.code()); 292 SourceManager &SM = Owner.get(); 293 294 SourceLocation StartOfFile = SM.getLocForStartOfFile(SM.getMainFileID()); 295 EXPECT_THAT_EXPECTED(sourceLocationInMainFile(SM, position(0, 0)), 296 HasValue(StartOfFile)); 297 // End of file. 298 EXPECT_THAT_EXPECTED( 299 sourceLocationInMainFile(SM, position(4, 0)), 300 HasValue(StartOfFile.getLocWithOffset(Source.code().size()))); 301 // Column number is too large. 302 EXPECT_THAT_EXPECTED(sourceLocationInMainFile(SM, position(0, 1)), Failed()); 303 EXPECT_THAT_EXPECTED(sourceLocationInMainFile(SM, position(0, 100)), 304 Failed()); 305 EXPECT_THAT_EXPECTED(sourceLocationInMainFile(SM, position(4, 1)), Failed()); 306 // Line number is too large. 307 EXPECT_THAT_EXPECTED(sourceLocationInMainFile(SM, position(5, 0)), Failed()); 308 // Check all positions mentioned in the test return valid results. 309 for (auto P : Source.points()) { 310 size_t Offset = llvm::cantFail(positionToOffset(Source.code(), P)); 311 EXPECT_THAT_EXPECTED(sourceLocationInMainFile(SM, P), 312 HasValue(StartOfFile.getLocWithOffset(Offset))); 313 } 314 } 315 316 TEST(SourceCodeTests, CollectIdentifiers) { 317 auto Style = format::getLLVMStyle(); 318 auto IDs = collectIdentifiers(R"cpp( 319 #include "a.h" 320 void foo() { int xyz; int abc = xyz; return foo(); } 321 )cpp", 322 Style); 323 EXPECT_EQ(IDs.size(), 7u); 324 EXPECT_EQ(IDs["include"], 1u); 325 EXPECT_EQ(IDs["void"], 1u); 326 EXPECT_EQ(IDs["int"], 2u); 327 EXPECT_EQ(IDs["xyz"], 2u); 328 EXPECT_EQ(IDs["abc"], 1u); 329 EXPECT_EQ(IDs["return"], 1u); 330 EXPECT_EQ(IDs["foo"], 2u); 331 } 332 333 TEST(SourceCodeTests, CollectWords) { 334 auto Words = collectWords(R"cpp( 335 #define FIZZ_BUZZ 336 // this is a comment 337 std::string getSomeText() { return "magic word"; } 338 )cpp"); 339 std::set<StringRef> ActualWords(Words.keys().begin(), Words.keys().end()); 340 std::set<StringRef> ExpectedWords = {"define", "fizz", "buzz", "this", 341 "comment", "string", "some", "text", 342 "return", "magic", "word"}; 343 EXPECT_EQ(ActualWords, ExpectedWords); 344 } 345 346 TEST(SourceCodeTests, VisibleNamespaces) { 347 std::vector<std::pair<const char *, std::vector<std::string>>> Cases = { 348 { 349 R"cpp( 350 // Using directive resolved against enclosing namespaces. 351 using namespace foo; 352 namespace ns { 353 using namespace bar; 354 )cpp", 355 {"ns", "", "bar", "foo", "ns::bar"}, 356 }, 357 { 358 R"cpp( 359 // Don't include namespaces we've closed, ignore namespace aliases. 360 using namespace clang; 361 using std::swap; 362 namespace clang { 363 namespace clangd {} 364 namespace ll = ::llvm; 365 } 366 namespace clang { 367 )cpp", 368 {"clang", ""}, 369 }, 370 { 371 R"cpp( 372 // Using directives visible even if a namespace is reopened. 373 // Ignore anonymous namespaces. 374 namespace foo{ using namespace bar; } 375 namespace foo{ namespace { 376 )cpp", 377 {"foo", "", "bar", "foo::bar"}, 378 }, 379 { 380 R"cpp( 381 // Mismatched braces 382 namespace foo{} 383 }}} 384 namespace bar{ 385 )cpp", 386 {"bar", ""}, 387 }, 388 { 389 R"cpp( 390 // Namespaces with multiple chunks. 391 namespace a::b { 392 using namespace c::d; 393 namespace e::f { 394 )cpp", 395 { 396 "a::b::e::f", 397 "", 398 "a", 399 "a::b", 400 "a::b::c::d", 401 "a::b::e", 402 "a::c::d", 403 "c::d", 404 }, 405 }, 406 { 407 "", 408 {""}, 409 }, 410 { 411 R"cpp( 412 // Parse until EOF 413 namespace bar{})cpp", 414 {""}, 415 }, 416 }; 417 for (const auto &Case : Cases) { 418 EXPECT_EQ(Case.second, 419 visibleNamespaces(Case.first, format::getFormattingLangOpts( 420 format::getLLVMStyle()))) 421 << Case.first; 422 } 423 } 424 425 TEST(SourceCodeTests, GetMacros) { 426 Annotations Code(R"cpp( 427 #define MACRO 123 428 int abc = MA^CRO; 429 )cpp"); 430 TestTU TU = TestTU::withCode(Code.code()); 431 auto AST = TU.build(); 432 auto CurLoc = sourceLocationInMainFile(AST.getSourceManager(), Code.point()); 433 ASSERT_TRUE(bool(CurLoc)); 434 const auto *Id = syntax::spelledIdentifierTouching(*CurLoc, AST.getTokens()); 435 ASSERT_TRUE(Id); 436 auto Result = locateMacroAt(*Id, AST.getPreprocessor()); 437 ASSERT_TRUE(Result); 438 EXPECT_THAT(*Result, MacroName("MACRO")); 439 } 440 441 TEST(SourceCodeTests, WorksAtBeginOfFile) { 442 Annotations Code("^MACRO"); 443 TestTU TU = TestTU::withCode(Code.code()); 444 TU.HeaderCode = "#define MACRO int x;"; 445 auto AST = TU.build(); 446 auto CurLoc = sourceLocationInMainFile(AST.getSourceManager(), Code.point()); 447 ASSERT_TRUE(bool(CurLoc)); 448 const auto *Id = syntax::spelledIdentifierTouching(*CurLoc, AST.getTokens()); 449 ASSERT_TRUE(Id); 450 auto Result = locateMacroAt(*Id, AST.getPreprocessor()); 451 ASSERT_TRUE(Result); 452 EXPECT_THAT(*Result, MacroName("MACRO")); 453 } 454 455 TEST(SourceCodeTests, IsInsideMainFile) { 456 TestTU TU; 457 TU.HeaderCode = R"cpp( 458 #define DEFINE_CLASS(X) class X {}; 459 #define DEFINE_YY DEFINE_CLASS(YY) 460 461 class Header1 {}; 462 DEFINE_CLASS(Header2) 463 class Header {}; 464 )cpp"; 465 TU.Code = R"cpp( 466 #define DEFINE_MAIN4 class Main4{}; 467 class Main1 {}; 468 DEFINE_CLASS(Main2) 469 DEFINE_YY 470 class Main {}; 471 DEFINE_MAIN4 472 )cpp"; 473 TU.ExtraArgs.push_back("-DHeader=Header3"); 474 TU.ExtraArgs.push_back("-DMain=Main3"); 475 auto AST = TU.build(); 476 const auto &SM = AST.getSourceManager(); 477 auto DeclLoc = [&AST](llvm::StringRef Name) { 478 return findDecl(AST, Name).getLocation(); 479 }; 480 for (const auto *HeaderDecl : {"Header1", "Header2", "Header3"}) 481 EXPECT_FALSE(isInsideMainFile(DeclLoc(HeaderDecl), SM)) << HeaderDecl; 482 483 for (const auto *MainDecl : {"Main1", "Main2", "Main3", "Main4", "YY"}) 484 EXPECT_TRUE(isInsideMainFile(DeclLoc(MainDecl), SM)) << MainDecl; 485 486 // Main4 is *spelled* in the preamble, but in the main-file part of it. 487 EXPECT_TRUE(isInsideMainFile(SM.getSpellingLoc(DeclLoc("Main4")), SM)); 488 } 489 490 // Test for functions toHalfOpenFileRange and getHalfOpenFileRange 491 TEST(SourceCodeTests, HalfOpenFileRange) { 492 // Each marked range should be the file range of the decl with the same name 493 // and each name should be unique. 494 Annotations Test(R"cpp( 495 #define FOO(X, Y) int Y = ++X 496 #define BAR(X) X + 1 497 #define ECHO(X) X 498 499 #define BUZZ BAZZ(ADD) 500 #define BAZZ(m) m(1) 501 #define ADD(a) int f = a + 1; 502 template<typename T> 503 class P {}; 504 505 int main() { 506 $a[[P<P<P<P<P<int>>>>> a]]; 507 $b[[int b = 1]]; 508 $c[[FOO(b, c)]]; 509 $d[[FOO(BAR(BAR(b)), d)]]; 510 // FIXME: We might want to select everything inside the outer ECHO. 511 ECHO(ECHO($e[[int) ECHO(e]])); 512 // Shouldn't crash. 513 $f[[BUZZ]]; 514 } 515 )cpp"); 516 517 ParsedAST AST = TestTU::withCode(Test.code()).build(); 518 llvm::errs() << Test.code(); 519 const SourceManager &SM = AST.getSourceManager(); 520 const LangOptions &LangOpts = AST.getLangOpts(); 521 // Turn a SourceLocation into a pair of positions 522 auto SourceRangeToRange = [&SM](SourceRange SrcRange) { 523 return Range{sourceLocToPosition(SM, SrcRange.getBegin()), 524 sourceLocToPosition(SM, SrcRange.getEnd())}; 525 }; 526 auto CheckRange = [&](llvm::StringRef Name) { 527 const NamedDecl &Decl = findUnqualifiedDecl(AST, Name); 528 auto FileRange = toHalfOpenFileRange(SM, LangOpts, Decl.getSourceRange()); 529 SCOPED_TRACE("Checking range: " + Name); 530 ASSERT_NE(FileRange, llvm::None); 531 Range HalfOpenRange = SourceRangeToRange(*FileRange); 532 EXPECT_EQ(HalfOpenRange, Test.ranges(Name)[0]); 533 }; 534 535 CheckRange("a"); 536 CheckRange("b"); 537 CheckRange("c"); 538 CheckRange("d"); 539 CheckRange("e"); 540 CheckRange("f"); 541 } 542 543 TEST(SourceCodeTests, HalfOpenFileRangePathologicalPreprocessor) { 544 const char *Case = R"cpp( 545 #define MACRO while(1) 546 void test() { 547 [[#include "Expand.inc" 548 br^eak]]; 549 } 550 )cpp"; 551 Annotations Test(Case); 552 auto TU = TestTU::withCode(Test.code()); 553 TU.AdditionalFiles["Expand.inc"] = "MACRO\n"; 554 auto AST = TU.build(); 555 556 const auto &Func = cast<FunctionDecl>(findDecl(AST, "test")); 557 const auto &Body = cast<CompoundStmt>(Func.getBody()); 558 const auto &Loop = cast<WhileStmt>(*Body->child_begin()); 559 llvm::Optional<SourceRange> Range = toHalfOpenFileRange( 560 AST.getSourceManager(), AST.getLangOpts(), Loop->getSourceRange()); 561 ASSERT_TRUE(Range) << "Failed to get file range"; 562 EXPECT_EQ(AST.getSourceManager().getFileOffset(Range->getBegin()), 563 Test.llvm::Annotations::range().Begin); 564 EXPECT_EQ(AST.getSourceManager().getFileOffset(Range->getEnd()), 565 Test.llvm::Annotations::range().End); 566 } 567 568 TEST(SourceCodeTests, IncludeHashLoc) { 569 const char *Case = R"cpp( 570 $foo^#include "foo.inc" 571 #define HEADER "bar.inc" 572 $bar^# include HEADER 573 )cpp"; 574 Annotations Test(Case); 575 auto TU = TestTU::withCode(Test.code()); 576 TU.AdditionalFiles["foo.inc"] = "int foo;\n"; 577 TU.AdditionalFiles["bar.inc"] = "int bar;\n"; 578 auto AST = TU.build(); 579 const auto &SM = AST.getSourceManager(); 580 581 FileID Foo = SM.getFileID(findDecl(AST, "foo").getLocation()); 582 EXPECT_EQ(SM.getFileOffset(includeHashLoc(Foo, SM)), 583 Test.llvm::Annotations::point("foo")); 584 FileID Bar = SM.getFileID(findDecl(AST, "bar").getLocation()); 585 EXPECT_EQ(SM.getFileOffset(includeHashLoc(Bar, SM)), 586 Test.llvm::Annotations::point("bar")); 587 } 588 589 TEST(SourceCodeTests, GetEligiblePoints) { 590 constexpr struct { 591 const char *Code; 592 const char *FullyQualifiedName; 593 const char *EnclosingNamespace; 594 } Cases[] = { 595 {R"cpp(// FIXME: We should also mark positions before and after 596 //declarations/definitions as eligible. 597 namespace ns1 { 598 namespace a { namespace ns2 {} } 599 namespace ns2 {^ 600 void foo(); 601 namespace {} 602 void bar() {} 603 namespace ns3 {} 604 class T {}; 605 ^} 606 using namespace ns2; 607 })cpp", 608 "ns1::ns2::symbol", "ns1::ns2::"}, 609 {R"cpp( 610 namespace ns1 {^ 611 namespace a { namespace ns2 {} } 612 namespace b {} 613 namespace ns {} 614 ^})cpp", 615 "ns1::ns2::symbol", "ns1::"}, 616 {R"cpp( 617 namespace x { 618 namespace a { namespace ns2 {} } 619 namespace b {} 620 namespace ns {} 621 }^)cpp", 622 "ns1::ns2::symbol", ""}, 623 {R"cpp( 624 namespace ns1 { 625 namespace ns2 {^^} 626 namespace b {} 627 namespace ns2 {^^} 628 } 629 namespace ns1 {namespace ns2 {^^}})cpp", 630 "ns1::ns2::symbol", "ns1::ns2::"}, 631 {R"cpp( 632 namespace ns1 {^ 633 namespace ns {} 634 namespace b {} 635 namespace ns {} 636 ^} 637 namespace ns1 {^namespace ns {}^})cpp", 638 "ns1::ns2::symbol", "ns1::"}, 639 }; 640 for (auto Case : Cases) { 641 Annotations Test(Case.Code); 642 643 auto Res = getEligiblePoints( 644 Test.code(), Case.FullyQualifiedName, 645 format::getFormattingLangOpts(format::getLLVMStyle())); 646 EXPECT_THAT(Res.EligiblePoints, testing::ElementsAreArray(Test.points())) 647 << Test.code(); 648 EXPECT_EQ(Res.EnclosingNamespace, Case.EnclosingNamespace) << Test.code(); 649 } 650 } 651 652 TEST(SourceCodeTests, IdentifierRanges) { 653 Annotations Code(R"cpp( 654 class [[Foo]] {}; 655 // Foo 656 /* Foo */ 657 void f([[Foo]]* foo1) { 658 [[Foo]] foo2; 659 auto S = [[Foo]](); 660 // cross-line identifier is not supported. 661 F\ 662 o\ 663 o foo2; 664 } 665 )cpp"); 666 LangOptions LangOpts; 667 LangOpts.CPlusPlus = true; 668 EXPECT_EQ(Code.ranges(), 669 collectIdentifierRanges("Foo", Code.code(), LangOpts)); 670 } 671 672 TEST(SourceCodeTests, isHeaderFile) { 673 // Without lang options. 674 EXPECT_TRUE(isHeaderFile("foo.h")); 675 EXPECT_TRUE(isHeaderFile("foo.hh")); 676 EXPECT_TRUE(isHeaderFile("foo.hpp")); 677 678 EXPECT_FALSE(isHeaderFile("foo.cpp")); 679 EXPECT_FALSE(isHeaderFile("foo.c++")); 680 EXPECT_FALSE(isHeaderFile("foo.cxx")); 681 EXPECT_FALSE(isHeaderFile("foo.cc")); 682 EXPECT_FALSE(isHeaderFile("foo.c")); 683 EXPECT_FALSE(isHeaderFile("foo.mm")); 684 EXPECT_FALSE(isHeaderFile("foo.m")); 685 686 // With lang options 687 LangOptions LangOpts; 688 LangOpts.IsHeaderFile = true; 689 EXPECT_TRUE(isHeaderFile("string", LangOpts)); 690 // Emulate cases where there is no "-x header" flag for a .h file, we still 691 // want to treat it as a header. 692 LangOpts.IsHeaderFile = false; 693 EXPECT_TRUE(isHeaderFile("header.h", LangOpts)); 694 } 695 696 } // namespace 697 } // namespace clangd 698 } // namespace clang 699