Files
clice/tests/unit/feature/document_symbol_tests.cpp
ykiko 0a891d8b4a refactor(tests): use Tester fixture, normalize helpers, add index tests (#377)
## 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>
2026-03-31 10:29:49 +08:00

188 lines
3.0 KiB
C++

#include <cstddef>
#include <functional>
#include <memory>
#include <vector>
#include "test/test.h"
#include "test/tester.h"
#include "feature/feature.h"
namespace clice::testing {
namespace {
namespace protocol = eventide::ipc::protocol;
TEST_SUITE(DocumentSymbol, Tester) {
std::vector<protocol::DocumentSymbol> symbols;
void run(llvm::StringRef code) {
add_main("main.cpp", code);
ASSERT_TRUE(compile_with_pch());
symbols = feature::document_symbols(*unit, feature::PositionEncoding::UTF8);
}
auto total_size(const std::vector<protocol::DocumentSymbol>& nodes) -> std::size_t {
std::size_t size = 0;
std::function<void(const std::vector<protocol::DocumentSymbol>&)> visit_symbol_vector;
std::function<void(const std::vector<std::shared_ptr<protocol::DocumentSymbol>>&)>
visit_ptr_vector;
visit_symbol_vector = [&](const std::vector<protocol::DocumentSymbol>& current) {
for(const auto& node: current) {
++size;
if(node.children.has_value()) {
visit_ptr_vector(*node.children);
}
}
};
visit_ptr_vector = [&](const std::vector<std::shared_ptr<protocol::DocumentSymbol>>& current) {
for(const auto& node: current) {
++size;
if(node->children.has_value()) {
visit_ptr_vector(*node->children);
}
}
};
visit_symbol_vector(nodes);
return size;
}
TEST_CASE(Namespace) {
run(R"cpp(
namespace _1 {
namespace _2 {
}
}
namespace _1 {
namespace _2 {
namespace _3 {
}
}
}
namespace {}
namespace _1::_2{
}
)cpp");
ASSERT_EQ(total_size(symbols), 8U);
}
TEST_CASE(Struct) {
run(R"cpp(
struct _1 {};
struct _2 {};
struct _3 {
struct _4 {};
struct _5 {};
};
)cpp");
ASSERT_EQ(total_size(symbols), 5U);
}
TEST_CASE(Field) {
run(R"cpp(
struct x {
int x1;
int x2;
struct y {
int y1;
int y2;
};
static int x3;
};
)cpp");
ASSERT_EQ(total_size(symbols), 7U);
}
TEST_CASE(Constructor) {
run(R"cpp(
struct S {
int x;
S(): x(0) {}
S(int x) : x(x) {}
S(const S& s) : x(s.x) {}
~S() {}
};
)cpp");
ASSERT_EQ(total_size(symbols), 6U);
}
TEST_CASE(Method) {
run(R"cpp(
struct _0 {
void f(int x) {}
void f(int* x) {}
void f1(int& x) {}
void f2(const int& x) {}
void f2(const _0& x) {}
void f2(_0 x) {}
};
)cpp");
ASSERT_EQ(total_size(symbols), 7U);
}
TEST_CASE(Enum) {
run(R"cpp(
enum class A {
_1,
_2,
_3,
};
enum B {
_a,
_b,
_c,
};
)cpp");
ASSERT_EQ(total_size(symbols), 8U);
}
TEST_CASE(TopLevelVariable) {
run(R"cpp(
constexpr auto x = 1;
int y = 2;
)cpp");
ASSERT_EQ(total_size(symbols), 2U);
}
TEST_CASE(Macro) {
run(R"cpp(
#define CLASS(X) class X
CLASS(test) {
int x = 1;
};
#define VAR(X) int X = 1;
VAR(test)
)cpp");
ASSERT_EQ(total_size(symbols), 3U);
}
}; // TEST_SUITE(DocumentSymbol)
} // namespace
} // namespace clice::testing