Files
clice/tests/unit/feature/document_symbol_tests.cpp
ykiko 418e190fa0 chore(deps): migrate from eventide to kotatsu (#428)
## Summary

- The `eventide` dep was renamed to
[kotatsu](https://github.com/clice-io/kotatsu) with a broad rename of
CMake identifiers, namespaces, header paths, and a few module reorgs
(`serde` → `codec`, `reflection` → `meta`, `common` → `support`). Align
clice to the new names.
- CMake: FetchContent target, option prefix (`ETD_*` → `KOTA_*`,
`ETD_SERDE_*` → `KOTA_CODEC_*`), target names
(`eventide::{ipc::lsp,serde::toml,deco,zest}` →
`kota::{ipc::lsp,codec::toml,deco,zest}`).
- Namespaces: `eventide::` → `kota::`, `eventide::serde::` →
`kota::codec::`, `eventide::refl::` → `kota::meta::`. The short `et`
alias is dropped — all usages now spell `kota::` directly.
- Headers: `eventide/*` → `kota/*`, including special cases
`serde/serde/raw_value.h` → `codec/raw_value.h`, `ipc/json_codec.h` →
`ipc/codec/json.h`, `common/meta.h` → `support/type_traits.h`,
`common/ranges.h` → `support/ranges.h`.
- Kotatsu split `JsonPeer` / `BincodePeer` out of `ipc/peer.h` into the
codec-specific headers; added `kota/ipc/codec/{json,bincode}.h` includes
where those types are used.
- Depends on clice-io/kotatsu#110 (already merged) to prevent `-Wall
-Wextra -Werror` from transitively propagating out of
`kota::project_options`.

## Test plan

- [x] `pixi run unit-test RelWithDebInfo` — 518/518 pass (9 skipped,
unchanged from main)
- [x] `pixi run integration-test RelWithDebInfo` — 119/119 pass
- [x] `pixi run smoke-test RelWithDebInfo` — 2/2 pass
- [x] `pixi run format` clean

## Notes

- `tests/smoke/rapid_edit.jsonl` was intentionally left untouched: the
embedded `#include "eventide/..."` strings are frozen snapshots of file
contents the client sent at record time, not clice source.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->

## Summary by CodeRabbit

* **Chores**
* Updated internal dependencies from `eventide` to `kota`, including
async runtime, IPC transport, serialization codec, and metadata
libraries.
* Updated build configuration and CMake variables to align with the new
dependency.

* **Refactor**
* Migrated internal implementation to use `kota` namespace and APIs
throughout the codebase.

<!-- end of auto-generated comment: release notes by coderabbit.ai -->

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-18 13:49:07 +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 = kota::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