225 lines
5.0 KiB
Go
225 lines
5.0 KiB
Go
package database
|
|
|
|
import (
|
|
"context"
|
|
"database/sql"
|
|
"testing"
|
|
|
|
_ "modernc.org/sqlite" // SQLite driver registration
|
|
)
|
|
|
|
// openTestDB returns a fresh in-memory SQLite database.
|
|
func openTestDB(t *testing.T) *sql.DB {
|
|
t.Helper()
|
|
|
|
db, err := sql.Open("sqlite", ":memory:")
|
|
if err != nil {
|
|
t.Fatalf("failed to open test db: %v", err)
|
|
}
|
|
|
|
t.Cleanup(func() { db.Close() })
|
|
|
|
return db
|
|
}
|
|
|
|
func TestParseMigrationVersion(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
filename string
|
|
want int
|
|
wantErr bool
|
|
}{
|
|
{
|
|
name: "version only",
|
|
filename: "001.sql",
|
|
want: 1,
|
|
},
|
|
{
|
|
name: "version with description",
|
|
filename: "001_initial_schema.sql",
|
|
want: 1,
|
|
},
|
|
{
|
|
name: "multi-digit version",
|
|
filename: "042_add_indexes.sql",
|
|
want: 42,
|
|
},
|
|
{
|
|
name: "long version number",
|
|
filename: "00001_long_prefix.sql",
|
|
want: 1,
|
|
},
|
|
{
|
|
name: "description with multiple underscores",
|
|
filename: "003_add_user_auth_tables.sql",
|
|
want: 3,
|
|
},
|
|
{
|
|
name: "empty filename",
|
|
filename: ".sql",
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "leading underscore",
|
|
filename: "_description.sql",
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "non-numeric version",
|
|
filename: "abc_migration.sql",
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "mixed alphanumeric version",
|
|
filename: "001a_migration.sql",
|
|
wantErr: true,
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
got, err := ParseMigrationVersion(tt.filename)
|
|
if tt.wantErr {
|
|
if err == nil {
|
|
t.Errorf("ParseMigrationVersion(%q) expected error, got %d", tt.filename, got)
|
|
}
|
|
|
|
return
|
|
}
|
|
|
|
if err != nil {
|
|
t.Errorf("ParseMigrationVersion(%q) unexpected error: %v", tt.filename, err)
|
|
|
|
return
|
|
}
|
|
|
|
if got != tt.want {
|
|
t.Errorf("ParseMigrationVersion(%q) = %d, want %d", tt.filename, got, tt.want)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestApplyMigrations_CreatesSchemaAndTables(t *testing.T) {
|
|
db := openTestDB(t)
|
|
ctx := context.Background()
|
|
|
|
if err := ApplyMigrations(ctx, db, nil); err != nil {
|
|
t.Fatalf("ApplyMigrations failed: %v", err)
|
|
}
|
|
|
|
// The schema_migrations table must exist and contain at least
|
|
// version 0 (the bootstrap) and 1 (the initial schema).
|
|
rows, err := db.Query("SELECT version FROM schema_migrations ORDER BY version")
|
|
if err != nil {
|
|
t.Fatalf("failed to query schema_migrations: %v", err)
|
|
}
|
|
defer rows.Close()
|
|
|
|
var versions []int
|
|
for rows.Next() {
|
|
var v int
|
|
if err := rows.Scan(&v); err != nil {
|
|
t.Fatalf("failed to scan version: %v", err)
|
|
}
|
|
|
|
versions = append(versions, v)
|
|
}
|
|
|
|
if err := rows.Err(); err != nil {
|
|
t.Fatalf("row iteration error: %v", err)
|
|
}
|
|
|
|
if len(versions) < 2 {
|
|
t.Fatalf("expected at least 2 migrations recorded, got %d: %v", len(versions), versions)
|
|
}
|
|
|
|
if versions[0] != 0 {
|
|
t.Errorf("first recorded migration = %d, want %d", versions[0], 0)
|
|
}
|
|
|
|
if versions[1] != 1 {
|
|
t.Errorf("second recorded migration = %d, want %d", versions[1], 1)
|
|
}
|
|
|
|
// Verify that the application tables created by 001.sql exist.
|
|
for _, table := range []string{"source_content", "source_metadata", "output_content", "request_cache", "negative_cache", "cache_stats"} {
|
|
var count int
|
|
|
|
err := db.QueryRow(
|
|
"SELECT COUNT(*) FROM sqlite_master WHERE type='table' AND name=?",
|
|
table,
|
|
).Scan(&count)
|
|
if err != nil {
|
|
t.Fatalf("failed to check for table %s: %v", table, err)
|
|
}
|
|
|
|
if count != 1 {
|
|
t.Errorf("table %s does not exist after migrations", table)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestApplyMigrations_Idempotent(t *testing.T) {
|
|
db := openTestDB(t)
|
|
ctx := context.Background()
|
|
|
|
if err := ApplyMigrations(ctx, db, nil); err != nil {
|
|
t.Fatalf("first ApplyMigrations failed: %v", err)
|
|
}
|
|
|
|
// Running a second time must succeed without errors.
|
|
if err := ApplyMigrations(ctx, db, nil); err != nil {
|
|
t.Fatalf("second ApplyMigrations failed: %v", err)
|
|
}
|
|
|
|
// Verify no duplicate rows in schema_migrations.
|
|
var count int
|
|
|
|
err := db.QueryRow("SELECT COUNT(*) FROM schema_migrations WHERE version = 0").Scan(&count)
|
|
if err != nil {
|
|
t.Fatalf("failed to count version 0 rows: %v", err)
|
|
}
|
|
|
|
if count != 1 {
|
|
t.Errorf("expected exactly 1 row for version 0, got %d", count)
|
|
}
|
|
}
|
|
|
|
func TestBootstrapMigrationsTable_FreshDatabase(t *testing.T) {
|
|
db := openTestDB(t)
|
|
ctx := context.Background()
|
|
|
|
if err := bootstrapMigrationsTable(ctx, db, nil); err != nil {
|
|
t.Fatalf("bootstrapMigrationsTable failed: %v", err)
|
|
}
|
|
|
|
// schema_migrations table must exist.
|
|
var tableCount int
|
|
|
|
err := db.QueryRow(
|
|
"SELECT COUNT(*) FROM sqlite_master WHERE type='table' AND name='schema_migrations'",
|
|
).Scan(&tableCount)
|
|
if err != nil {
|
|
t.Fatalf("failed to check for table: %v", err)
|
|
}
|
|
|
|
if tableCount != 1 {
|
|
t.Fatalf("schema_migrations table not created")
|
|
}
|
|
|
|
// Version 0 must be recorded.
|
|
var recorded int
|
|
|
|
err = db.QueryRow(
|
|
"SELECT COUNT(*) FROM schema_migrations WHERE version = 0",
|
|
).Scan(&recorded)
|
|
if err != nil {
|
|
t.Fatalf("failed to check version: %v", err)
|
|
}
|
|
|
|
if recorded != 1 {
|
|
t.Errorf("expected version 0 to be recorded, got count %d", recorded)
|
|
}
|
|
}
|