## Summary - **Use `Tester` as fixture base** for all test suites that need compilation, replacing `TesterFixture` and removing redundant `tester.clear()` calls (eventide zest now creates fresh instances per TEST_CASE) - **Remove local `Tester` variables** in `compilation_tests`, `template_resolver_tests`, `selection_tests` — use inherited fixture members directly - **Normalize helper naming**: `expect_xxx` → `EXPECT_XXX`, `go_to_definition` → `GO_TO_DEFINITION` for consistency - **Extract shared `test/cdb_helper.h`**: deduplicate `CDBEntry`, `json_escape`, `build_cdb_json` from `dependency_graph_tests` and `compile_graph_integration_tests` - **Add new test files/cases**: `project_index_tests.cpp`, expanded `tu_index_tests`, `merged_index_tests`, `compilation_tests` ## Test plan - [x] All existing unit tests pass - [x] New index tests (TUIndex, MergedIndex, ProjectIndex) pass - [x] Compilation tests (PCH, PCM, stop) pass 🤖 Generated with [Claude Code](https://claude.com/claude-code) <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Tests** * Standardized test fixtures and helper naming, moved suites to a shared fixture, and unified in-memory VFS and compile flows. * Added broad new coverage: indexing, project indexing, compilation/PCH, diagnostics, semantic features, and many targeted unit cases. * Introduced a small compile-database helper and improved driver-style test compilation paths. * **Chores** * Consolidated and reorganized test utilities and tester APIs for easier maintenance and reuse. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
36 lines
1.1 KiB
C++
36 lines
1.1 KiB
C++
#include "test/test.h"
|
|
#include "compile/compilation.h"
|
|
|
|
namespace clice::testing {
|
|
namespace {
|
|
|
|
TEST_SUITE(ClangTidy) {
|
|
|
|
TEST_CASE(FastCheck) {
|
|
// ASSERT_TRUE(tidy::is_fast_tidy_check("readability-misleading-indentation"));
|
|
// ASSERT_TRUE(tidy::is_fast_tidy_check("bugprone-unused-return-value"));
|
|
//
|
|
// // clangd/unittests/TidyProviderTests.cpp
|
|
// ASSERT_TRUE(tidy::is_fast_tidy_check("misc-const-correctness"));
|
|
// ASSERT_TRUE(tidy::is_fast_tidy_check("bugprone-suspicious-include"));
|
|
// ASSERT_EQ(tidy::is_fast_tidy_check("replay-preamble-check"), std::nullopt);
|
|
}
|
|
|
|
TEST_CASE(Tidy) {
|
|
auto vfs = llvm::makeIntrusiveRefCnt<TestVFS>();
|
|
vfs->add("main.cpp", "int main() { return 0 }");
|
|
|
|
std::string main_path = TestVFS::path("main.cpp");
|
|
CompilationParams params;
|
|
params.clang_tidy = true;
|
|
params.vfs = vfs;
|
|
params.arguments = {"clang++", "-ffreestanding", "-Xclang", "-undef", main_path.c_str()};
|
|
auto unit = compile(params);
|
|
ASSERT_TRUE(unit.completed());
|
|
ASSERT_FALSE(unit.diagnostics().empty());
|
|
}
|
|
|
|
}; // TEST_SUITE(ClangTidy)
|
|
} // namespace
|
|
} // namespace clice::testing
|