vtcode 0.98.7

A Rust-based terminal coding agent with modular architecture supporting multiple LLM providers
use assert_fs::TempDir;
use vtcode_core::config::ToolDocumentationMode;
use vtcode_core::config::constants::tools;
use vtcode_core::config::types::CapabilityLevel;
use vtcode_core::tools::ToolRegistry;
use vtcode_core::tools::handlers::{SessionSurface, SessionToolsConfig, ToolModelCapabilities};

#[tokio::test]
async fn audit_public_catalog_is_runtime_driven() {
    let temp = TempDir::new().expect("tempdir");
    let registry = ToolRegistry::new(temp.path().to_path_buf()).await;

    let public_names = registry.available_tools().await;
    let schema_names: Vec<_> = registry
        .schema_entries(SessionToolsConfig::full_public(
            SessionSurface::Interactive,
            CapabilityLevel::CodeSearch,
            ToolDocumentationMode::Full,
            ToolModelCapabilities::default(),
        ))
        .await
        .into_iter()
        .map(|entry| entry.name)
        .collect();

    assert_eq!(public_names, schema_names);
    assert!(public_names.contains(&tools::UNIFIED_SEARCH.to_string()));
    assert!(public_names.contains(&tools::UNIFIED_FILE.to_string()));
    assert!(public_names.contains(&tools::UNIFIED_EXEC.to_string()));
}

#[tokio::test]
async fn audit_public_catalog_hides_legacy_aliases() {
    let temp = TempDir::new().expect("tempdir");
    let registry = ToolRegistry::new(temp.path().to_path_buf()).await;

    let public_names = registry.available_tools().await;

    for legacy_name in [
        tools::READ_FILE,
        tools::WRITE_FILE,
        tools::EDIT_FILE,
        tools::DELETE_FILE,
        tools::RUN_PTY_CMD,
        tools::SEND_PTY_INPUT,
        tools::LIST_PTY_SESSIONS,
    ] {
        assert!(
            !public_names.iter().any(|name| name == legacy_name),
            "legacy alias leaked into public catalog: {legacy_name}"
        );
    }
}

#[tokio::test]
async fn audit_acp_subset_comes_from_same_catalog() {
    let temp = TempDir::new().expect("tempdir");
    let registry = ToolRegistry::new(temp.path().to_path_buf()).await;

    let acp_names = registry
        .public_tool_names(SessionSurface::Acp, CapabilityLevel::CodeSearch)
        .await;

    assert_eq!(
        acp_names,
        vec![
            tools::UNIFIED_EXEC.to_string(),
            tools::UNIFIED_FILE.to_string(),
            tools::UNIFIED_SEARCH.to_string(),
        ]
    );
}