Step 249: MCP server integration tests (Phase 9a complete)

End-to-end tests exercising the full MCP stack through MCPBridge:
handshake, 17 tools with valid schemas, AST queries, pipeline execution,
diagnostics, prompts, file CRUD cycle, and compact AST comparison (3% size).
Phase 9a: 64/64 tests pass across steps 245–249.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Bill
2026-02-11 15:14:21 +00:00
parent fbff0cedd0
commit f858925911
3 changed files with 417 additions and 0 deletions

View File

@@ -1413,4 +1413,15 @@ target_link_libraries(step248_test PRIVATE
tree_sitter_java tree_sitter_rust tree_sitter_go
tree_sitter_org)
# Step 249: MCP server integration tests
add_executable(step249_test tests/step249_test.cpp)
target_include_directories(step249_test PRIVATE src)
target_link_libraries(step249_test PRIVATE
nlohmann_json::nlohmann_json
unofficial::tree-sitter::tree-sitter
tree_sitter_python tree_sitter_cpp tree_sitter_elisp
tree_sitter_javascript tree_sitter_typescript
tree_sitter_java tree_sitter_rust tree_sitter_go
tree_sitter_org)
# Step 12: Dear ImGui shell scaffolding created (main.cpp exists but not built due to dependencies)