Files
whetstone_DSL/editor/tests/step1904_test.cpp

124 lines
4.7 KiB
C++
Raw Normal View History

Sprints 273-276: Polyglot FFI Glue, Symbol Index, and LSP Proxy (steps 1893-1912) Sprint 273 — PolyglotFFIGlueGenerator (steps 1893-1897): ABIBoundaryExtractor, CHeaderEmitter, RustPythonBindingEmitter, GoCppBindingEmitter. Extracts exported symbols from toComponent provider and emits C ABI + language-specific bindings. Sprint 274 — More Binding Pairs + DWARF (steps 1898-1902): CppJSBindingEmitter (N-API), RustGoBindingEmitter (#[no_mangle]), DWARFBoundaryAnnotator (DW_TAG_* + crossLangBoundary), FFIGlueDispatcher (routes by fromLang→toLang pair), MCP tool whetstone_generate_ffi_glue (#92). Sprint 275 — Cross-Language Symbol Index (steps 1903-1907): SCIPEmitter (SCIP JSON, one doc/language, caller+provider roles), CrossLanguageSymbolTable (byLangName_ + byScip_ dual index), SymbolIndexUpdater (nodeKey diff, clear-and-rebuild), SymbolIndexOrchestrator (orchestrate + update), MCP tool whetstone_emit_symbol_index (#93). Sprint 276 — LSP Proxy Core (steps 1908-1912): LSPProxyServer (JSON-RPC 2.0 dispatcher), LanguageServerRouter (routeByUri/routeByLanguageId), CrossLanguageBoundaryDetector (detect/detectWithUri/detectInLanguage), CrossLanguageDefinitionResolver (resolve/resolveFromUri → DefinitionLocation). End-to-end: Python call site goto-def resolves to Rust sort-core provider. 100/100 tests passing across all four sprints. Architecture gate clean. LoRA sessions recorded for all sprints (~14k tokens captured). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-01 18:41:32 -07:00
// Step 1904: CrossLanguageSymbolTable
// In-memory symbol table linking same-origin symbols across all generated languages.
// A symbol originates from one ABIBoundaryNode; it has appearances in multiple languages.
//
// t1: inserting a node creates entries for both fromLanguage and toLanguage
// t2: lookup by (language, name) returns the correct symbol record
// t3: lookup by scipSymbol returns all language appearances of that symbol
// t4: multiple nodes with different language pairs all inserted correctly
// t5: lookup for unknown symbol returns empty / not-found result
#include "CrossLanguageSymbolTable.h"
#include "ABIBoundaryExtractor.h"
#include <iostream>
#include <string>
#include <nlohmann/json.hpp>
using json = nlohmann::json;
namespace ws = whetstone;
static int p=0,f=0;
#define T(n) { std::cout<<" "<<#n<<"... "; }
#define P() { std::cout<<"PASS\n"; ++p; }
#define F(m) { std::cout<<"FAIL: "<<m<<"\n"; ++f; }
#define C(c,m) if(!(c)){F(m);return;}
static ws::ABIBoundaryNode makeNode(const std::string& name,
const std::string& fromComp, const std::string& toComp,
const std::string& fromLang, const std::string& toLang)
{
ws::ABIBoundaryNode n;
n.name = name; n.kind = "function";
n.fromComponent = fromComp; n.toComponent = toComp;
n.fromLanguage = fromLang; n.toLanguage = toLang;
n.signature = {{"name",name},{"kind","function"},{"exported",true}};
return n;
}
void t1(){
T(inserting_node_creates_entries_for_both_languages);
ws::CrossLanguageSymbolTable table;
auto node = makeNode("sort_array", "data-gen", "sort-core", "Python", "Rust");
table.insert(node);
// Must appear in Python (caller) and Rust (provider)
C(table.contains("Python", "sort_array"),
"sort_array must be findable in Python");
C(table.contains("Rust", "sort_array"),
"sort_array must be findable in Rust");
P();
}
void t2(){
T(lookup_by_language_and_name_returns_correct_record);
ws::CrossLanguageSymbolTable table;
auto node = makeNode("sort_array", "data-gen", "sort-core", "Python", "Rust");
table.insert(node);
auto record = table.lookup("Rust", "sort_array");
C(record.found, "lookup must succeed");
C(record.name == "sort_array", "name must be sort_array");
C(record.toComponent == "sort-core", "toComponent must be sort-core");
C(record.fromComponent == "data-gen", "fromComponent must be data-gen");
C(record.scipSymbol == "sort-core/sort_array.", "scipSymbol mismatch");
P();
}
void t3(){
T(lookup_by_scip_symbol_returns_all_appearances);
ws::CrossLanguageSymbolTable table;
auto node = makeNode("sort_array", "data-gen", "sort-core", "Python", "Rust");
table.insert(node);
auto appearances = table.lookupByScip("sort-core/sort_array.");
C(appearances.size() == 2,
"expected 2 appearances (Python+Rust), got " + std::to_string(appearances.size()));
bool hasPython = false, hasRust = false;
for (auto& a : appearances) {
if (a.language == "Python") hasPython = true;
if (a.language == "Rust") hasRust = true;
}
C(hasPython, "Python appearance not found");
C(hasRust, "Rust appearance not found");
P();
}
void t4(){
T(multiple_nodes_different_pairs_all_inserted);
ws::CrossLanguageSymbolTable table;
table.insert(makeNode("sort_array", "data-gen", "sort-core", "Python", "Rust"));
table.insert(makeNode("handle_req", "http-server", "api-client", "Go", "C++"));
table.insert(makeNode("parse_result", "go-caller", "rust-lib", "Go", "Rust"));
C(table.contains("Python", "sort_array"), "sort_array in Python");
C(table.contains("Rust", "sort_array"), "sort_array in Rust");
C(table.contains("Go", "handle_req"), "handle_req in Go");
C(table.contains("C++", "handle_req"), "handle_req in C++");
C(table.contains("Go", "parse_result"), "parse_result in Go");
C(table.contains("Rust", "parse_result"), "parse_result in Rust");
P();
}
void t5(){
T(lookup_unknown_symbol_returns_not_found);
ws::CrossLanguageSymbolTable table;
table.insert(makeNode("sort_array", "data-gen", "sort-core", "Python", "Rust"));
auto record = table.lookup("Go", "nonexistent");
C(!record.found, "lookup of unknown symbol must return found=false");
auto appearances = table.lookupByScip("bogus/symbol.");
C(appearances.empty(), "lookupByScip for unknown scipSymbol must return empty");
P();
}
int main(){
std::cout << "Step 1904: CrossLanguageSymbolTable\n";
t1(); t2(); t3(); t4(); t5();
std::cout << "\n" << p << "/" << (p+f) << " passed\n";
return f > 0 ? 1 : 0;
}