remem-ai 0.5.141

Local-first coding agent memory for Claude Code and OpenAI Codex
Documentation
use std::sync::Mutex;

use super::config::{log_max_bytes, log_path, with_log_dir, DEFAULT_LOG_MAX_BYTES};
use super::open_log_append;
use super::write::rotate_if_needed;
use crate::db::test_support::ScopedTestDataDir;

static ENV_LOCK: Mutex<()> = Mutex::new(());

fn with_log_env<T>(value: Option<&str>, f: impl FnOnce() -> T) -> T {
    let _guard = ENV_LOCK.lock().expect("log env lock should acquire");
    let previous = std::env::var("REMEM_LOG_MAX_BYTES").ok();

    match value {
        Some(value) => unsafe { std::env::set_var("REMEM_LOG_MAX_BYTES", value) },
        None => unsafe { std::env::remove_var("REMEM_LOG_MAX_BYTES") },
    }

    let result = f();

    match previous {
        Some(value) => unsafe { std::env::set_var("REMEM_LOG_MAX_BYTES", value) },
        None => unsafe { std::env::remove_var("REMEM_LOG_MAX_BYTES") },
    }

    result
}

#[test]
fn log_max_bytes_uses_positive_env_override() {
    with_log_env(Some("4096"), || {
        assert_eq!(log_max_bytes(), 4096);
    });
}

#[test]
fn log_max_bytes_rejects_zero_and_invalid() {
    with_log_env(Some("0"), || {
        assert_eq!(log_max_bytes(), DEFAULT_LOG_MAX_BYTES);
    });
    with_log_env(Some("invalid"), || {
        assert_eq!(log_max_bytes(), DEFAULT_LOG_MAX_BYTES);
    });
}

#[test]
fn open_log_append_creates_log_file_in_data_dir() {
    let _data_dir = ScopedTestDataDir::new("log-open-append");

    let file = open_log_append().expect("log file should open");
    drop(file);

    let path = log_path().expect("log path should resolve");
    assert!(path.exists(), "log file should exist at {:?}", path);
}

#[test]
fn with_log_dir_overrides_log_path_for_current_thread() {
    let dir = std::env::temp_dir().join(format!(
        "remem-log-override-{}-{}",
        std::process::id(),
        std::time::SystemTime::now()
            .duration_since(std::time::UNIX_EPOCH)
            .expect("system time before unix epoch")
            .as_nanos()
    ));
    std::fs::create_dir_all(&dir).expect("log override dir should create");

    let path = with_log_dir(&dir, || log_path().expect("log path should resolve"));

    assert_eq!(path, dir.join("remem.log"));
    let _ = std::fs::remove_dir_all(dir);
}

#[test]
fn rotate_if_needed_shifts_existing_files() {
    let data_dir = ScopedTestDataDir::new("log-rotate");
    // Use a dedicated test path — NOT the real log path — so concurrent
    // tests' log writes (e.g. migration auto-upgrade) cannot contaminate
    // the file we are about to rotate.
    let path = data_dir.path.join("logs").join("rotate-test.log");
    let parent = path.parent().expect("log file should have parent");
    std::fs::create_dir_all(parent).expect("log dir should create");

    std::fs::write(&path, "base-payload").expect("base log should write");
    std::fs::write(format!("{}.1", path.display()), "older-1").expect("log.1 should write");
    std::fs::write(format!("{}.2", path.display()), "older-2").expect("log.2 should write");
    std::fs::write(format!("{}.3", path.display()), "older-3").expect("log.3 should write");

    rotate_if_needed(&path, 4);

    assert!(
        !path.exists(),
        "base log should be renamed away during rotation"
    );
    assert_eq!(
        std::fs::read_to_string(format!("{}.1", path.display())).expect("log.1 should read"),
        "base-payload"
    );
    assert_eq!(
        std::fs::read_to_string(format!("{}.2", path.display())).expect("log.2 should read"),
        "older-1"
    );
    assert_eq!(
        std::fs::read_to_string(format!("{}.3", path.display())).expect("log.3 should read"),
        "older-2"
    );
}