Files
optimclaw/tests/workspace_integration.rs
T
e843c18141 feat: add libSQL/Turso embedded database backend (#47)
* feat: add libSQL/Turso database backend with full feature parity

Introduce a Database trait abstraction (~60 async methods) enabling
compile-time backend selection between PostgreSQL and libSQL/Turso.
Convert all modules from concrete Store to Arc<dyn Database>, add
LibSqlSecretsStore and LibSqlWasmToolStore implementations, wire
libsql stores throughout CLI and main entry points, and make the
setup wizard backend-agnostic.

Key changes:
- src/db/: Database trait, PostgresDatabase adapter, LibSqlBackend
  with native SQLite-dialect SQL, and idempotent migration system
- src/secrets/store.rs: LibSqlSecretsStore (all 8 trait methods)
- src/tools/wasm/storage.rs: LibSqlWasmToolStore (all 7 trait methods)
- src/main.rs, cli/tool.rs, cli/mcp.rs: backend-conditional wiring
- src/setup/channels.rs: SecretsContext uses Arc<dyn SecretsStore>
- Feature-gate postgres-only tests and examples

Co-Authored-By: Claude Opus 4.6 <[email protected]>

* feat: enable onboarding wizard for libSQL builds

Refactor the setup wizard to work with both postgres and libsql feature
flags. Previously the wizard was gated behind #[cfg(feature = "postgres")]
only, so libsql-only builds would print an error on `ironclaw onboard`.

- Add libsql fields to Settings (database_backend, libsql_path, libsql_url)
- Split wizard database/migration/secrets methods into feature-gated variants
- Add step_database_libsql() with local path and Turso remote replica prompts
- Update setup/mod.rs and main.rs feature gates to any(postgres, libsql)
- Extend check_onboard_needed() to detect libsql database presence

Co-Authored-By: Claude Opus 4.6 <[email protected]>

* fix: address PR review feedback for libSQL backend

- P0: Switch libsql_backend to connection-per-operation pattern to fix
  shared Connection concurrency issue across tokio tasks
- P0: Wrap secrets store INSERT+SELECT in transaction to fix TOCTOU race
- P0: Document encryption-at-rest limitations and json_patch divergence
- P1: Fix get_opt_text removing .filter(|s| !s.is_empty()) that conflated
  empty strings with NULL
- P1: Replace datetime('now') with fmt_ts(&Utc::now()) for consistent
  RFC 3339 timestamps across all queries
- P2: Use explicit _rowid column in FTS5 triggers and joins for stability
  across VACUUM operations
- P2: Add tracing::warn when embedding provided but vector search disabled
  in hybrid_search
- Extract shared connect_from_config() helper to deduplicate DB connection
  logic across main.rs, cli/config.rs, and cli/mcp.rs

Co-Authored-By: Claude Opus 4.6 <[email protected]>

* fix: add missing JobContext fields and resolve fmt/clippy warnings

Add total_tokens_used and max_tokens fields to JobContext in
libsql_backend.rs, apply cargo fmt, and fix clippy warnings.

Co-Authored-By: Claude Opus 4.6 <[email protected]>

* fix: review fixes for libSQL backend (shared connections, panics, indexes)

- Replace .expect() with proper error propagation in 3 call sites
- Share Arc<Database> between backend and stores instead of single Connection
- Add connect-per-operation pattern to LibSqlSecretsStore and LibSqlWasmToolStore
- Wrap store() INSERT + SELECT-back in a transaction
- Add ~22 missing indexes for parity with PostgreSQL schema
- Add 18 leak_detection_patterns seed rows matching PostgreSQL V2 migration
- Fix super:: import to use crate:: style
- Gate mask_password_in_url behind #[cfg(feature = "postgres")]
- Rewrite secrets store init with or_else chain for runtime backend selection

Co-Authored-By: Claude Opus 4.6 <[email protected]>

* fix: Resolve clippy lints (collapsible_if, too_many_arguments)

Collapse nested if blocks into let_chains to satisfy clippy's
collapsible_if lint (CI uses -D warnings). Suppress too_many_arguments
on libsql_row_to_tool_at since refactoring the positional index
pattern would be a larger change.

Co-Authored-By: Claude Opus 4.6 <[email protected]>

---------

Co-authored-by: Claude Opus 4.6 <[email protected]>
Co-authored-by: Illia Polosukhin <[email protected]>
2026-02-14 02:05:05 +00:00

410 lines
11 KiB
Rust

#![cfg(feature = "postgres")]
//! Integration tests for the workspace module.
//!
//! Requires a running PostgreSQL with pgvector extension.
//! Set DATABASE_URL=postgres://localhost/ironclaw_test
use std::sync::Arc;
use ironclaw::workspace::{MockEmbeddings, SearchConfig, Workspace, paths};
fn get_pool() -> deadpool_postgres::Pool {
let database_url = std::env::var("DATABASE_URL")
.unwrap_or_else(|_| "postgres://localhost/ironclaw_test".to_string());
let config: tokio_postgres::Config = database_url.parse().expect("Invalid DATABASE_URL");
let mgr = deadpool_postgres::Manager::new(config, tokio_postgres::NoTls);
deadpool_postgres::Pool::builder(mgr)
.max_size(4)
.build()
.expect("Failed to create pool")
}
/// Try to get a connection, returning None if Postgres is unreachable.
/// Tests call this to skip gracefully in CI where no database is available.
async fn try_connect(pool: &deadpool_postgres::Pool) -> Option<()> {
match pool.get().await {
Ok(_) => Some(()),
Err(e) => {
eprintln!("skipping: database unavailable ({e})");
None
}
}
}
async fn cleanup_user(pool: &deadpool_postgres::Pool, user_id: &str) {
let conn = pool.get().await.expect("Failed to get connection");
conn.execute(
"DELETE FROM memory_documents WHERE user_id = $1",
&[&user_id],
)
.await
.ok();
}
#[tokio::test]
async fn test_workspace_write_and_read() {
let pool = get_pool();
if try_connect(&pool).await.is_none() {
return;
}
let user_id = "test_write_read";
cleanup_user(&pool, user_id).await;
let workspace = Workspace::new(user_id, pool.clone());
// Write a file
let doc = workspace
.write("README.md", "# Hello World\n\nThis is a test.")
.await
.expect("Failed to write");
assert_eq!(doc.path, "README.md");
assert!(doc.content.contains("Hello World"));
// Read it back
let doc2 = workspace.read("README.md").await.expect("Failed to read");
assert_eq!(doc2.content, "# Hello World\n\nThis is a test.");
// Cleanup
cleanup_user(&pool, user_id).await;
}
#[tokio::test]
async fn test_workspace_append() {
let pool = get_pool();
if try_connect(&pool).await.is_none() {
return;
}
let user_id = "test_append";
cleanup_user(&pool, user_id).await;
let workspace = Workspace::new(user_id, pool.clone());
// Write initial content
workspace
.write("notes.md", "Line 1")
.await
.expect("Failed to write");
// Append more
workspace
.append("notes.md", "Line 2")
.await
.expect("Failed to append");
// Read and verify
let doc = workspace.read("notes.md").await.expect("Failed to read");
assert_eq!(doc.content, "Line 1\nLine 2");
cleanup_user(&pool, user_id).await;
}
#[tokio::test]
async fn test_workspace_nested_paths() {
let pool = get_pool();
if try_connect(&pool).await.is_none() {
return;
}
let user_id = "test_nested";
cleanup_user(&pool, user_id).await;
let workspace = Workspace::new(user_id, pool.clone());
// Write nested files
workspace
.write("projects/alpha/README.md", "# Alpha")
.await
.expect("Failed to write alpha");
workspace
.write("projects/alpha/notes.md", "Notes here")
.await
.expect("Failed to write notes");
workspace
.write("projects/beta/README.md", "# Beta")
.await
.expect("Failed to write beta");
// List root
let root = workspace.list("").await.expect("Failed to list root");
assert_eq!(root.len(), 1); // just "projects/"
assert!(root[0].is_directory);
assert_eq!(root[0].name(), "projects");
// List projects
let projects = workspace
.list("projects")
.await
.expect("Failed to list projects");
assert_eq!(projects.len(), 2); // alpha/, beta/
// List alpha
let alpha = workspace
.list("projects/alpha")
.await
.expect("Failed to list alpha");
assert_eq!(alpha.len(), 2); // README.md, notes.md
cleanup_user(&pool, user_id).await;
}
#[tokio::test]
async fn test_workspace_delete() {
let pool = get_pool();
if try_connect(&pool).await.is_none() {
return;
}
let user_id = "test_delete";
cleanup_user(&pool, user_id).await;
let workspace = Workspace::new(user_id, pool.clone());
// Write and verify exists
workspace
.write("temp.md", "temporary")
.await
.expect("Failed to write");
assert!(workspace.exists("temp.md").await.expect("exists failed"));
// Delete
workspace.delete("temp.md").await.expect("Failed to delete");
// Verify gone
assert!(!workspace.exists("temp.md").await.expect("exists failed"));
cleanup_user(&pool, user_id).await;
}
#[tokio::test]
async fn test_workspace_memory_operations() {
let pool = get_pool();
if try_connect(&pool).await.is_none() {
return;
}
let user_id = "test_memory_ops";
cleanup_user(&pool, user_id).await;
let workspace = Workspace::new(user_id, pool.clone());
// Append to memory
workspace
.append_memory("User prefers dark mode")
.await
.expect("Failed to append memory");
workspace
.append_memory("User's timezone is PST")
.await
.expect("Failed to append memory");
// Read memory
let memory = workspace.memory().await.expect("Failed to get memory");
assert!(memory.content.contains("dark mode"));
assert!(memory.content.contains("PST"));
// Entries should be separated by double newline
assert!(memory.content.contains("\n\n"));
cleanup_user(&pool, user_id).await;
}
#[tokio::test]
async fn test_workspace_daily_log() {
let pool = get_pool();
if try_connect(&pool).await.is_none() {
return;
}
let user_id = "test_daily_log";
cleanup_user(&pool, user_id).await;
let workspace = Workspace::new(user_id, pool.clone());
// Append to daily log (timestamped)
workspace
.append_daily_log("Started working on feature X")
.await
.expect("Failed to append daily log");
// Read today's log
let log = workspace
.today_log()
.await
.expect("Failed to get today log");
assert!(log.content.contains("feature X"));
// Should have timestamp prefix like [HH:MM:SS]
assert!(log.content.contains("["));
cleanup_user(&pool, user_id).await;
}
#[tokio::test]
async fn test_workspace_fts_search() {
let pool = get_pool();
if try_connect(&pool).await.is_none() {
return;
}
let user_id = "test_fts_search";
cleanup_user(&pool, user_id).await;
let workspace = Workspace::new(user_id, pool.clone());
// Write some documents
workspace
.write(
"docs/authentication.md",
"# Authentication\n\nThe system uses JWT tokens for authentication.",
)
.await
.expect("write failed");
workspace
.write(
"docs/database.md",
"# Database\n\nWe use PostgreSQL with pgvector for vector search.",
)
.await
.expect("write failed");
workspace
.write(
"docs/api.md",
"# API\n\nThe REST API uses JSON for request and response bodies.",
)
.await
.expect("write failed");
// Search for JWT (FTS only since no embeddings)
let results = workspace
.search_with_config("JWT authentication", SearchConfig::default().fts_only())
.await
.expect("search failed");
assert!(!results.is_empty(), "Should find results for JWT");
assert!(
results[0].content.contains("JWT"),
"Top result should contain JWT"
);
// Search for PostgreSQL
let results = workspace
.search_with_config("PostgreSQL database", SearchConfig::default().fts_only())
.await
.expect("search failed");
assert!(!results.is_empty(), "Should find results for PostgreSQL");
assert!(
results[0].content.contains("PostgreSQL"),
"Top result should contain PostgreSQL"
);
cleanup_user(&pool, user_id).await;
}
#[tokio::test]
async fn test_workspace_hybrid_search_with_mock_embeddings() {
let pool = get_pool();
if try_connect(&pool).await.is_none() {
return;
}
let user_id = "test_hybrid_search";
cleanup_user(&pool, user_id).await;
// Create workspace with mock embeddings (1536 dimensions to match OpenAI)
let embeddings = Arc::new(MockEmbeddings::new(1536));
let workspace = Workspace::new(user_id, pool.clone()).with_embeddings(embeddings);
// Write documents
workspace
.write(
"memory.md",
"The user prefers dark mode and vim keybindings.",
)
.await
.expect("write failed");
workspace
.write(
"prefs.md",
"Settings: theme=dark, editor=vim, font=monospace",
)
.await
.expect("write failed");
// Hybrid search
let results = workspace
.search("dark theme preference", 5)
.await
.expect("search failed");
assert!(!results.is_empty(), "Should find results");
// At least one result should be a hybrid match (found by both FTS and vector)
// or we should have results from either method
cleanup_user(&pool, user_id).await;
}
#[tokio::test]
async fn test_workspace_list_all() {
let pool = get_pool();
if try_connect(&pool).await.is_none() {
return;
}
let user_id = "test_list_all";
cleanup_user(&pool, user_id).await;
let workspace = Workspace::new(user_id, pool.clone());
// Write files at various depths
workspace.write("README.md", "root").await.unwrap();
workspace.write("docs/intro.md", "intro").await.unwrap();
workspace.write("docs/api/rest.md", "rest").await.unwrap();
workspace.write("src/main.md", "main").await.unwrap();
// List all
let all = workspace.list_all().await.expect("list_all failed");
assert_eq!(all.len(), 4);
assert!(all.contains(&"README.md".to_string()));
assert!(all.contains(&"docs/intro.md".to_string()));
assert!(all.contains(&"docs/api/rest.md".to_string()));
assert!(all.contains(&"src/main.md".to_string()));
cleanup_user(&pool, user_id).await;
}
#[tokio::test]
async fn test_workspace_system_prompt() {
let pool = get_pool();
if try_connect(&pool).await.is_none() {
return;
}
let user_id = "test_system_prompt";
cleanup_user(&pool, user_id).await;
let workspace = Workspace::new(user_id, pool.clone());
// Write identity files
workspace
.write(paths::AGENTS, "You are a helpful assistant.")
.await
.unwrap();
workspace
.write(paths::SOUL, "Be kind and thorough.")
.await
.unwrap();
workspace.write(paths::USER, "Name: Alice").await.unwrap();
// Get system prompt
let prompt = workspace
.system_prompt()
.await
.expect("system_prompt failed");
assert!(
prompt.contains("helpful assistant"),
"Should include AGENTS.md"
);
assert!(
prompt.contains("kind and thorough"),
"Should include SOUL.md"
);
assert!(prompt.contains("Alice"), "Should include USER.md");
cleanup_user(&pool, user_id).await;
}