Files
yvgude--lean-ctx/rust/tests/p4_ctx_handoff_eval.rs
T
wehub-resource-sync 26382a7ac6
CI / Clippy (push) Failing after 15m13s
CI / Test (ubuntu-latest) (push) Failing after 16m1s
CI / Test (macos-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / Build (no embeddings / no ORT) (push) Has been cancelled
CI / Format (push) Has been cancelled
CI / Cookbook (Node) (push) Has been cancelled
CI / Pi Extension (Node) (push) Has been cancelled
CI / Rust SDK (lean-ctx-client) (push) Has been cancelled
CI / Embed SDK (lean-ctx-sdk) (push) Has been cancelled
CI / Python SDK (leanctx) (push) Has been cancelled
CI / Hermes Plugin (Python) (push) Has been cancelled
CI / SDK Conformance Matrix (push) Has been cancelled
CI / Coverage (push) Has been cancelled
CI / cargo-deny (push) Has been cancelled
CI / Adversarial Safety (push) Has been cancelled
CI / Benchmarks (push) Has been cancelled
CI / Output-Quality Gate (eval A/B) (push) Has been cancelled
CI / Documentation (push) Has been cancelled
CI / CI Green (push) Has been cancelled
JetBrains Plugin / Actionlint (push) Has been cancelled
CodeQL / Analyze (actions) (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
CodeQL / Analyze (rust) (push) Has been cancelled
JetBrains Plugin / Validation (push) Has been cancelled
JetBrains Plugin / Build (push) Has been cancelled
JetBrains Plugin / Test (push) Has been cancelled
Security Check / Security Scan (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:35:30 +08:00

132 lines
4.3 KiB
Rust

use serde_json::json;
fn extract_path(s: &str) -> String {
for line in s.lines() {
if let Some(rest) = line.strip_prefix(" path: ") {
return rest.trim().to_string();
}
}
panic!("no path in output: {s}");
}
#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
#[allow(clippy::await_holding_lock)]
async fn ctx_handoff_create_show_list_pull_clear() {
let _g = lean_ctx::core::data_dir::test_env_lock();
let dir = tempfile::tempdir().expect("tempdir");
let data_dir = dir.path().join("data");
std::fs::create_dir_all(&data_dir).expect("create data dir");
// TODO: Audit that the environment access only happens in single-threaded code.
unsafe { std::env::set_var("LEAN_CTX_DATA_DIR", &data_dir) };
let project = tempfile::tempdir().expect("project");
let file = project.path().join("a.rs");
std::fs::write(&file, "pub fn a() {}\n").expect("write file");
let engine = lean_ctx::engine::ContextEngine::with_project_root(project.path());
// Establish project_root in session + create some context.
let _ = engine
.call_tool_text(
"ctx_read",
Some(json!({"path": file.to_string_lossy().to_string(), "mode":"signatures"})),
)
.await
.expect("ctx_read");
let _ = engine
.call_tool_text(
"ctx_knowledge",
Some(json!({"action":"remember","category":"handoff","key":"k1","value":"v1","confidence":0.9})),
)
.await
.expect("remember");
let _ = engine
.call_tool_text(
"ctx_workflow",
Some(json!({"action":"start","name":"plan_code_test"})),
)
.await
.expect("workflow start");
let created = engine
.call_tool_text(
"ctx_handoff",
Some(json!({"action":"create","paths":[file.to_string_lossy().to_string()]})),
)
.await
.expect("handoff create");
let ledger_path = extract_path(&created);
let exported = engine
.call_tool_text("ctx_handoff", Some(json!({"action":"export","write":true})))
.await
.expect("handoff export");
let bundle_path = extract_path(&exported);
let listed = engine
.call_tool_text("ctx_handoff", Some(json!({"action":"list"})))
.await
.expect("handoff list");
assert!(listed.contains(&ledger_path), "list: {listed}");
let shown = engine
.call_tool_text(
"ctx_handoff",
Some(json!({"action":"show","path":ledger_path})),
)
.await
.expect("handoff show");
assert!(shown.contains("\"manifest_md5\""), "show: {shown}");
// Pull into a new engine instance (fresh in-memory state).
let engine2 = lean_ctx::engine::ContextEngine::with_project_root(project.path());
let pulled = engine2
.call_tool_text(
"ctx_handoff",
Some(json!({"action":"pull","path": extract_path(&created)})),
)
.await
.expect("handoff pull");
assert!(
pulled.contains("imported_knowledge:"),
"pull must report imported_knowledge: {pulled}"
);
let pull_count: u32 = pulled
.lines()
.find_map(|l| l.trim().strip_prefix("imported_knowledge: "))
.and_then(|v| v.trim().parse().ok())
.unwrap_or(0);
assert!(
pull_count >= 1,
"pull must import at least 1 knowledge fact, got {pull_count}: {pulled}"
);
let imported = engine2
.call_tool_text(
"ctx_handoff",
Some(json!({"action":"import","path": bundle_path})),
)
.await
.expect("handoff import");
let import_count: u32 = imported
.lines()
.find_map(|l| l.trim().strip_prefix("imported_knowledge: "))
.and_then(|v| v.trim().parse().ok())
.unwrap_or(0);
assert!(
import_count >= 1,
"import must import at least 1 knowledge fact, got {import_count}: {imported}"
);
let cleared = engine
.call_tool_text("ctx_handoff", Some(json!({"action":"clear"})))
.await
.expect("handoff clear");
assert!(cleared.contains("removed:"), "clear: {cleared}");
// TODO: Audit that the environment access only happens in single-threaded code.
unsafe { std::env::remove_var("LEAN_CTX_DATA_DIR") };
}