package seahorse import ( "database/sql" "testing" _ "modernc.org/sqlite" ) func openTestDB(t *testing.T) *sql.DB { t.Helper() db, err := sql.Open("sqlite", ":memory:") if err != nil { t.Fatalf("open test db: %v", err) } t.Cleanup(func() { db.Close() }) return db } func TestRunMigrations(t *testing.T) { db := openTestDB(t) if err := runSchema(db); err != nil { t.Fatalf("runSchema: %v", err) } // Verify all tables exist tables := []string{ "conversations", "messages", "message_parts", "summaries", "summary_parents", "summary_messages", "context_items", } for _, tbl := range tables { var name string err := db.QueryRow( "SELECT name FROM sqlite_master WHERE type='table' AND name=?", tbl, ).Scan(&name) if err != nil { t.Errorf("table %q not found: %v", tbl, err) } } // Verify FTS5 virtual table exists var ftsName string err := db.QueryRow( "SELECT name FROM sqlite_master WHERE type='table' AND name='summaries_fts'", ).Scan(&ftsName) if err != nil { t.Errorf("FTS5 table summaries_fts not found: %v", err) } } func TestRunMigrationsIdempotent(t *testing.T) { db := openTestDB(t) // Run migrations twice — should succeed both times if err := runSchema(db); err != nil { t.Fatalf("first migration: %v", err) } if err := runSchema(db); err != nil { t.Fatalf("second migration (idempotent): %v", err) } // Verify we can still insert data after double migration res, err := db.Exec( "INSERT INTO conversations (session_key, created_at, updated_at) VALUES (?, datetime('now'), datetime('now'))", "test-session", ) if err != nil { t.Fatalf("insert after double migration: %v", err) } id, _ := res.LastInsertId() if id == 0 { t.Error("expected non-zero conversation id") } } func TestMigrationConversationUnique(t *testing.T) { db := openTestDB(t) if err := runSchema(db); err != nil { t.Fatalf("migration: %v", err) } // Insert first _, err := db.Exec( "INSERT INTO conversations (session_key, created_at, updated_at) VALUES (?, datetime('now'), datetime('now'))", "unique-key", ) if err != nil { t.Fatalf("first insert: %v", err) } // Duplicate should fail _, err = db.Exec( "INSERT INTO conversations (session_key, created_at, updated_at) VALUES (?, datetime('now'), datetime('now'))", "unique-key", ) if err == nil { t.Error("expected unique constraint violation for duplicate session_key") } } func TestMigrationSummaryFTSInsert(t *testing.T) { db := openTestDB(t) if err := runSchema(db); err != nil { t.Fatalf("migration: %v", err) } // Insert a conversation first _, err := db.Exec( "INSERT INTO conversations (session_key, created_at, updated_at) VALUES (?, datetime('now'), datetime('now'))", "fts-test", ) if err != nil { t.Fatalf("insert conversation: %v", err) } // Insert a summary _, err = db.Exec( `INSERT INTO summaries (summary_id, conversation_id, kind, depth, content, token_count, created_at) VALUES ('sum_test1', 1, 'leaf', 0, '你好世界 hello world', 10, datetime('now'))`) if err != nil { t.Fatalf("insert summary: %v", err) } // FTS should find it — trigram tokenizer requires >= 3 chars rows, err := db.Query( "SELECT summary_id FROM summaries_fts WHERE summaries_fts MATCH ?", "你好世", ) if err != nil { t.Fatalf("FTS query: %v", err) } defer rows.Close() var found string if rows.Next() { if err := rows.Scan(&found); err != nil { t.Fatalf("scan: %v", err) } } if err := rows.Err(); err != nil { t.Fatalf("rows.Err: %v", err) } if found != "sum_test1" { t.Errorf("FTS: expected 'sum_test1', got %q", found) } } func TestMigrationSummaryParentsPK(t *testing.T) { db := openTestDB(t) if err := runSchema(db); err != nil { t.Fatalf("migration: %v", err) } // Insert two summaries for _, id := range []string{"sum_a", "sum_b"} { _, err := db.Exec( `INSERT INTO summaries (summary_id, conversation_id, kind, depth, content, token_count, created_at) VALUES (?, 1, 'leaf', 0, 'content', 5, datetime('now'))`, id) if err != nil { t.Fatalf("insert summary %s: %v", id, err) } } // Link child to parent _, err := db.Exec( "INSERT INTO summary_parents (summary_id, parent_summary_id) VALUES ('sum_a', 'sum_b')") if err != nil { t.Fatalf("link: %v", err) } // Duplicate link should fail (composite PK) _, err = db.Exec( "INSERT INTO summary_parents (summary_id, parent_summary_id) VALUES ('sum_a', 'sum_b')") if err == nil { t.Error("expected unique constraint violation for duplicate summary_parents link") } } func TestFTS5SQLConstants(t *testing.T) { db := openTestDB(t) // Verify FTS5 check SQL executes without error _, err := db.Exec(sqlCheckFTS5Available) if err != nil { t.Errorf("sqlCheckFTS5Available failed: %v", err) } // Verify trigram check SQL executes without error _, err = db.Exec(sqlCheckTrigramAvailable) if err != nil { t.Errorf("sqlCheckTrigramAvailable failed: %v", err) } // Verify summaries_fts SQL executes without error _, err = db.Exec(sqlCreateSummariesFTS) if err != nil { t.Errorf("sqlCreateSummariesFTS failed: %v", err) } // Verify messages_fts SQL executes without error _, err = db.Exec(sqlCreateMessagesFTS) if err != nil { t.Errorf("sqlCreateMessagesFTS failed: %v", err) } }