rho-coding-agent 0.24.1

A lightweight agent harness inspired by Pi
Documentation
use super::*;

#[test]
fn number_input_accepts_only_ascii_digits() {
    let mut input = ConfigNumberInput::new(ConfigNumberKey::MaxOutputBytes, 42);

    input.insert_text("a1-23");

    assert_eq!(input.value, "4213");
    assert_eq!(input.cursor, 4);
}

#[test]
fn text_input_strips_line_breaks_and_edits_at_character_cursor() {
    let mut input = ConfigTextInput::new(ConfigTextKey::Exa, Some("".into()));
    input.cursor = 1;

    input.insert_text("x\ny\r");
    input.delete();

    assert_eq!(input.value, "axy");
    assert_eq!(input.cursor, 3);
}

#[test]
fn editor_cursor_navigation_is_unicode_safe() {
    let mut input = ConfigTextInput::new(ConfigTextKey::Brave, Some("aéz".into()));

    input.move_cursor_left();
    input.backspace();
    input.move_cursor_home();
    input.move_cursor_right();
    input.insert_char('x');
    input.move_cursor_end();

    assert_eq!(input.value, "axz");
    assert_eq!(input.cursor, 3);
}

#[test]
fn editor_uses_legacy_web_search_key_when_store_has_no_entry() {
    let (value, error) = resolve_web_search_editor_value(Ok(None), Some("legacy-key"));

    assert_eq!(value.as_deref(), Some("legacy-key"));
    assert!(error.is_none());
}

#[test]
fn editor_preserves_legacy_web_search_key_when_store_is_unavailable() {
    let store_error = crate::credentials::CredentialError::StoreUnavailable("test".into());

    let (value, error) = resolve_web_search_editor_value(Err(store_error), Some("legacy-key"));

    assert_eq!(value.as_deref(), Some("legacy-key"));
    assert!(matches!(
        error,
        Some(crate::credentials::CredentialError::StoreUnavailable(message)) if message == "test"
    ));
}