lha 1.0.0

Long-Horizon Agent command-line package that installs the lha binary.
Documentation
use std::path::Path;

use anyhow::Result;
use predicates::str::contains;
use tempfile::TempDir;

mod common;

fn codex_command(lha_home: &Path) -> Result<assert_cmd::Command> {
    let mut cmd = assert_cmd::Command::new(common::cargo_bin::cargo_bin("lha")?);
    cmd.env("LHA_HOME", lha_home);
    Ok(cmd)
}

#[tokio::test]
async fn features_enable_writes_feature_flag_to_config() -> Result<()> {
    let lha_home = TempDir::new()?;

    let mut cmd = codex_command(lha_home.path())?;
    cmd.args(["features", "enable", "unified_exec"])
        .assert()
        .success()
        .stdout(contains("Enabled feature `unified_exec` in config.toml."));

    let config = std::fs::read_to_string(lha_home.path().join("config.toml"))?;
    assert!(config.contains("[features]"));
    assert!(config.contains("unified_exec = true"));

    Ok(())
}

#[tokio::test]
async fn features_disable_writes_feature_flag_to_config() -> Result<()> {
    let lha_home = TempDir::new()?;

    let mut cmd = codex_command(lha_home.path())?;
    cmd.args(["features", "disable", "shell_tool"])
        .assert()
        .success()
        .stdout(contains("Disabled feature `shell_tool` in config.toml."));

    let config = std::fs::read_to_string(lha_home.path().join("config.toml"))?;
    assert!(config.contains("[features]"));
    assert!(config.contains("shell_tool = false"));

    Ok(())
}

#[tokio::test]
async fn features_enable_under_development_feature_prints_warning() -> Result<()> {
    let lha_home = TempDir::new()?;

    let mut cmd = codex_command(lha_home.path())?;
    cmd.args(["features", "enable", "sqlite"])
        .assert()
        .success()
        .stderr(contains("Under-development features enabled: sqlite."));

    Ok(())
}