File: TypesTest.cpp

package info (click to toggle)
llvm-toolchain-20 1%3A20.1.8-1~exp1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 2,111,388 kB
  • sloc: cpp: 7,438,767; ansic: 1,393,871; asm: 1,012,926; python: 241,728; f90: 86,635; objc: 75,411; lisp: 42,144; pascal: 17,286; sh: 10,027; ml: 5,082; perl: 4,730; awk: 3,523; makefile: 3,349; javascript: 2,251; xml: 892; fortran: 672
file content (102 lines) | stat: -rw-r--r-- 4,192 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
//===-- RecordTest.cpp ----------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "clang-include-cleaner/Types.h"
#include "clang/Basic/FileManager.h"
#include "clang/Basic/FileSystemOptions.h"
#include "clang/Tooling/Inclusions/StandardLibrary.h"
#include "llvm/ADT/IntrusiveRefCntPtr.h"
#include "llvm/Support/VirtualFileSystem.h"
#include "gmock/gmock.h"
#include "gtest/gtest.h"

namespace clang::include_cleaner {
namespace {
using testing::ElementsAre;
using testing::IsEmpty;
using testing::UnorderedElementsAre;

// Matches an Include* on the specified line;
MATCHER_P(line, N, "") { return arg->Line == (unsigned)N; }

TEST(RecordedIncludesTest, Match) {
  // We're using synthetic data, but need a FileManager to obtain FileEntry*s.
  // Ensure it doesn't do any actual IO.
  auto FS = llvm::makeIntrusiveRefCnt<llvm::vfs::InMemoryFileSystem>();
  FileManager FM(FileSystemOptions{});
  FileEntryRef A = FM.getVirtualFileRef("/path/a", /*Size=*/0, time_t{});
  FileEntryRef B = FM.getVirtualFileRef("/path/b", /*Size=*/0, time_t{});

  Includes Inc;
  Inc.add(Include{"a", A, SourceLocation(), 1});
  Inc.add(Include{"a2", A, SourceLocation(), 2});
  Inc.add(Include{"b", B, SourceLocation(), 3});
  Inc.add(Include{"vector", B, SourceLocation(), 4});
  Inc.add(Include{"vector", B, SourceLocation(), 5});
  Inc.add(Include{"missing", std::nullopt, SourceLocation(), 6});

  EXPECT_THAT(Inc.match(A), ElementsAre(line(1), line(2)));
  EXPECT_THAT(Inc.match(B), ElementsAre(line(3), line(4), line(5)));
  EXPECT_THAT(Inc.match(*tooling::stdlib::Header::named("<vector>")),
              ElementsAre(line(4), line(5)));
}

TEST(RecordedIncludesTest, MatchVerbatim) {
  auto FS = llvm::makeIntrusiveRefCnt<llvm::vfs::InMemoryFileSystem>();
  FileManager FM(FileSystemOptions{});
  Includes Inc;

  // By default, a verbatim header only matches includes with the same spelling.
  auto Foo =
      FM.getVirtualFileRef("repo/lib/include/rel/foo.h", /*Size=*/0, time_t{});
  Inc.add(Include{"lib/include/rel/foo.h", Foo, SourceLocation(), 1});
  Inc.add(Include{"rel/foo.h", Foo, SourceLocation(), 2});
  EXPECT_THAT(Inc.match(Header("<rel/foo.h>")), ElementsAre(line(2)));

  // A verbatim header can match another spelling if the search path
  // suggests it's equivalent.
  auto Bar =
      FM.getVirtualFileRef("repo/lib/include/rel/bar.h", /*Size=*/0, time_t{});
  Inc.addSearchDirectory("repo/");
  Inc.addSearchDirectory("repo/lib/include");
  Inc.add(Include{"lib/include/rel/bar.h", Bar, SourceLocation(), 3});
  Inc.add(Include{"rel/bar.h", Bar, SourceLocation(), 4});
  EXPECT_THAT(Inc.match(Header("<rel/bar.h>")),
              UnorderedElementsAre(line(3), line(4)));

  // We don't apply this logic to system headers, though.
  auto Vector =
      FM.getVirtualFileRef("repo/lib/include/vector", /*Size=*/0, time_t{});
  Inc.add(Include{"lib/include/vector", Vector, SourceLocation(), 5});
  EXPECT_THAT(Inc.match(Header(*tooling::stdlib::Header::named("<vector>"))),
              IsEmpty());
}

TEST(RecordedIncludesTest, MatchVerbatimMixedAbsoluteRelative) {
  auto FS = llvm::makeIntrusiveRefCnt<llvm::vfs::InMemoryFileSystem>();
  FS->setCurrentWorkingDirectory("/working");
  FileManager FM(FileSystemOptions{});
  Includes Inc;

  auto Foo =
      FM.getVirtualFileRef("/working/rel1/rel2/foo.h", /*Size=*/0, time_t{});
  Inc.addSearchDirectory("rel1");
  Inc.addSearchDirectory("rel1/rel2");
  Inc.add(Include{"rel2/foo.h", Foo, SourceLocation(), 1});
  EXPECT_THAT(Inc.match(Header("<foo.h>")), IsEmpty());

  Inc = Includes{};
  auto Bar = FM.getVirtualFileRef("rel1/rel2/bar.h", /*Size=*/0, time_t{});
  Inc.addSearchDirectory("/working/rel1");
  Inc.addSearchDirectory("/working/rel1/rel2");
  Inc.add(Include{"rel2/bar.h", Bar, SourceLocation(), 1});
  EXPECT_THAT(Inc.match(Header("<bar.h>")), IsEmpty());
}

} // namespace
} // namespace clang::include_cleaner