mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 10:36:07 +00:00

Summary: Motivation: - this layout is a pain to work with - without a common root, it's painful to express things like "disable clangd" (D61122) - CMake/lit configs are a maintenance hazard, and the more the one-off hacks for various tools are entangled, the more we see apathy and non-ownership. This attempts to use the bare-minimum configuration needed (while still supporting the difficult cases: windows, standalone clang build, dynamic libs). In particular the lit.cfg.py and lit.site.cfg.py.in are merged into lit.cfg.in. The logic in these files is now minimal. (Much of clang-tools-extra's lit configs can probably be cleaned up by reusing lit.llvm.llvm_config.use_clang(), and every llvm project does its own version of LDPATH mangling. I haven't attempted to fix any of those). Docs are still in clang-tools-extra/docs, I don't have any plans to touch those. Reviewers: gribozavr Subscribers: mgorny, javed.absar, MaskRay, jkorous, arphaman, kadircet, jfb, cfe-commits, ilya-biryukov, thakis Tags: #clang Differential Revision: https://reviews.llvm.org/D61187 llvm-svn: 359424
124 lines
4.0 KiB
C++
124 lines
4.0 KiB
C++
//===-- FileDistanceTests.cpp ------------------------*- C++ -*-----------===//
|
|
//
|
|
// 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 "FileDistance.h"
|
|
#include "TestFS.h"
|
|
#include "gmock/gmock.h"
|
|
#include "gtest/gtest.h"
|
|
|
|
namespace clang {
|
|
namespace clangd {
|
|
namespace {
|
|
|
|
TEST(FileDistanceTests, Distance) {
|
|
FileDistanceOptions Opts;
|
|
Opts.UpCost = 5;
|
|
Opts.DownCost = 3;
|
|
SourceParams CostTwo;
|
|
CostTwo.Cost = 2;
|
|
FileDistance D(
|
|
{{"tools/clang/lib/Format/FormatToken.cpp", SourceParams()},
|
|
{"tools/clang/include/clang/Format/FormatToken.h", SourceParams()},
|
|
{"include/llvm/ADT/StringRef.h", CostTwo}},
|
|
Opts);
|
|
|
|
// Source
|
|
EXPECT_EQ(D.distance("tools/clang/lib/Format/FormatToken.cpp"), 0u);
|
|
EXPECT_EQ(D.distance("include/llvm/ADT/StringRef.h"), 2u);
|
|
// Parent
|
|
EXPECT_EQ(D.distance("tools/clang/lib/Format/"), 5u);
|
|
// Child
|
|
EXPECT_EQ(D.distance("tools/clang/lib/Format/FormatToken.cpp/Oops"), 3u);
|
|
// Ancestor (up+up+up+up)
|
|
EXPECT_EQ(D.distance("/"), 22u);
|
|
// Sibling (up+down)
|
|
EXPECT_EQ(D.distance("tools/clang/lib/Format/AnotherFile.cpp"), 8u);
|
|
// Cousin (up+up+down+down)
|
|
EXPECT_EQ(D.distance("include/llvm/Support/Allocator.h"), 18u);
|
|
// First cousin, once removed (up+up+up+down+down)
|
|
EXPECT_EQ(D.distance("include/llvm-c/Core.h"), 23u);
|
|
}
|
|
|
|
TEST(FileDistanceTests, BadSource) {
|
|
// We mustn't assume that paths above sources are best reached via them.
|
|
FileDistanceOptions Opts;
|
|
Opts.UpCost = 5;
|
|
Opts.DownCost = 3;
|
|
SourceParams CostLots;
|
|
CostLots.Cost = 100;
|
|
FileDistance D({{"a", SourceParams()}, {"b/b/b", CostLots}}, Opts);
|
|
EXPECT_EQ(D.distance("b"), 8u); // a+up+down, not b+up+up
|
|
EXPECT_EQ(D.distance("b/b/b"), 14u); // a+up+down+down+down, not b
|
|
EXPECT_EQ(D.distance("b/b/b/c"), 17u); // a+up+down+down+down+down, not b+down
|
|
}
|
|
|
|
// Force the unittest URI scheme to be linked,
|
|
static int LLVM_ATTRIBUTE_UNUSED UseUnittestScheme = UnittestSchemeAnchorSource;
|
|
|
|
TEST(FileDistanceTests, URI) {
|
|
FileDistanceOptions Opts;
|
|
Opts.UpCost = 5;
|
|
Opts.DownCost = 3;
|
|
SourceParams CostLots;
|
|
CostLots.Cost = 1000;
|
|
|
|
URIDistance D({{testPath("foo"), CostLots},
|
|
{"/not/a/testpath", SourceParams()},
|
|
{"C:\\not\\a\\testpath", SourceParams()}},
|
|
Opts);
|
|
#ifdef _WIN32
|
|
EXPECT_EQ(D.distance("file:///C%3a/not/a/testpath/either"), 3u);
|
|
#else
|
|
EXPECT_EQ(D.distance("file:///not/a/testpath/either"), 3u);
|
|
#endif
|
|
EXPECT_EQ(D.distance("unittest:///foo"), 1000u);
|
|
EXPECT_EQ(D.distance("unittest:///bar"), 1008u);
|
|
}
|
|
|
|
TEST(FileDistance, LimitUpTraversals) {
|
|
FileDistanceOptions Opts;
|
|
Opts.UpCost = Opts.DownCost = 1;
|
|
SourceParams CheapButLimited, CostLots;
|
|
CheapButLimited.MaxUpTraversals = 1;
|
|
CostLots.Cost = 100;
|
|
|
|
FileDistance D({{"/", CostLots}, {"/a/b/c", CheapButLimited}}, Opts);
|
|
EXPECT_EQ(D.distance("/a"), 101u);
|
|
EXPECT_EQ(D.distance("/a/z"), 102u);
|
|
EXPECT_EQ(D.distance("/a/b"), 1u);
|
|
EXPECT_EQ(D.distance("/a/b/z"), 2u);
|
|
}
|
|
|
|
TEST(FileDistance, DisallowDownTraversalsFromRoot) {
|
|
FileDistanceOptions Opts;
|
|
Opts.UpCost = Opts.DownCost = 1;
|
|
Opts.AllowDownTraversalFromRoot = false;
|
|
SourceParams CostLots;
|
|
CostLots.Cost = 100;
|
|
|
|
FileDistance D({{"/", SourceParams()}, {"/a/b/c", CostLots}}, Opts);
|
|
EXPECT_EQ(D.distance("/"), 0u);
|
|
EXPECT_EQ(D.distance("/a"), 102u);
|
|
EXPECT_EQ(D.distance("/a/b"), 101u);
|
|
EXPECT_EQ(D.distance("/x"), FileDistance::Unreachable);
|
|
}
|
|
|
|
TEST(ScopeDistance, Smoke) {
|
|
ScopeDistance D({"x::y::z", "x::", "", "a::"});
|
|
EXPECT_EQ(D.distance("x::y::z::"), 0u);
|
|
EXPECT_GT(D.distance("x::y::"), D.distance("x::y::z::"));
|
|
EXPECT_GT(D.distance("x::"), D.distance("x::y::"));
|
|
EXPECT_GT(D.distance("x::y::z::down::"), D.distance("x::y::"));
|
|
EXPECT_GT(D.distance(""), D.distance("a::"));
|
|
EXPECT_GT(D.distance("x::"), D.distance("a::"));
|
|
}
|
|
|
|
} // namespace
|
|
} // namespace clangd
|
|
} // namespace clang
|