chore(tests): add advisory locks and statement parser for test infrastructure

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
2026-06-11 22:08:23 +01:00
co-authored by Sisyphus
parent 6de0371e1d
commit 56d91ba4ef
+92 -20
View File
@@ -8,6 +8,7 @@ import (
"fmt" "fmt"
"os" "os"
"path/filepath" "path/filepath"
"strings"
"testing" "testing"
"github.com/jackc/pgx/v5" "github.com/jackc/pgx/v5"
@@ -57,16 +58,25 @@ func NewPool(dsn string) (*pgxpool.Pool, error) {
func Migrate(t *testing.T, pool *pgxpool.Pool) { func Migrate(t *testing.T, pool *pgxpool.Pool) {
t.Helper() t.Helper()
ctx := context.Background() ctx := context.Background()
// Check if database already has tables or types // Acquire a dedicated connection so advisory lock, migration, and unlock all use the same session
var err error conn, err := pool.Acquire(ctx)
var typeCount int if err != nil {
err = pool.QueryRow(ctx, "SELECT COUNT(*) FROM pg_type WHERE typnamespace = (SELECT oid FROM pg_namespace WHERE nspname = 'public')").Scan(&typeCount) t.Fatalf("Failed to acquire connection for migration: %v", err)
if err == nil && typeCount > 0 { }
t.Log("Database already has types, dropping and recreating for clean state...") defer conn.Release()
_, err = conn.Exec(ctx, "SELECT pg_advisory_lock(1337)")
if err != nil {
t.Fatalf("Failed to acquire migration advisory lock: %v", err)
}
defer conn.Exec(ctx, "SELECT pg_advisory_unlock(1337)")
// Check if database already has tables or types
var typeCount int
err = conn.QueryRow(ctx, "SELECT COUNT(*) FROM pg_type WHERE typnamespace = (SELECT oid FROM pg_namespace WHERE nspname = 'public')").Scan(&typeCount)
if err == nil && typeCount > 0 {
// Drop TYPES FIRST (they have CASCADE dependencies on tables) // Drop TYPES FIRST (they have CASCADE dependencies on tables)
typeDrops := []string{ typeDrops := []string{
"DROP TYPE IF EXISTS account_role CASCADE", "DROP TYPE IF EXISTS account_role CASCADE",
@@ -82,15 +92,19 @@ func Migrate(t *testing.T, pool *pgxpool.Pool) {
"DROP TYPE IF EXISTS milestone_unit CASCADE", "DROP TYPE IF EXISTS milestone_unit CASCADE",
"DROP TYPE IF EXISTS discount_campaign_scope CASCADE", "DROP TYPE IF EXISTS discount_campaign_scope CASCADE",
"DROP TYPE IF EXISTS discount_campaign_status CASCADE", "DROP TYPE IF EXISTS discount_campaign_status CASCADE",
"DROP TYPE IF EXISTS till_item_type CASCADE",
} }
for _, stmt := range typeDrops { for _, stmt := range typeDrops {
if _, err := pool.Exec(ctx, stmt); err != nil { if _, err := conn.Exec(ctx, stmt); err != nil {
t.Logf("Warning dropping type: %v (expected if using IF EXISTS)", err) t.Logf("Warning dropping type: %v (expected if using IF EXISTS)", err)
} }
} }
// Drop all tables, sequences, and views in correct order // Drop all tables, sequences, and views in correct order
dropOrder := []string{ dropOrder := []string{
"till_sales",
"gift_card_transactions",
"gift_card_expired_balances",
"booking_discounts", "booking_discounts",
"loyalty_redemptions", "loyalty_redemptions",
"discount_campaigns", "discount_campaigns",
@@ -127,7 +141,7 @@ func Migrate(t *testing.T, pool *pgxpool.Pool) {
for _, table := range dropOrder { for _, table := range dropOrder {
stmt := fmt.Sprintf("DROP TABLE IF EXISTS %s CASCADE", table) stmt := fmt.Sprintf("DROP TABLE IF EXISTS %s CASCADE", table)
if _, err := pool.Exec(ctx, stmt); err != nil { if _, err := conn.Exec(ctx, stmt); err != nil {
t.Logf("Warning dropping table %s: %v (expected if using IF EXISTS)", table, err) t.Logf("Warning dropping table %s: %v (expected if using IF EXISTS)", table, err)
} }
} }
@@ -140,7 +154,7 @@ func Migrate(t *testing.T, pool *pgxpool.Pool) {
"DROP SEQUENCE IF EXISTS exceptional_working_hours_groups_id_seq", "DROP SEQUENCE IF EXISTS exceptional_working_hours_groups_id_seq",
} }
for _, stmt := range seqDrops { for _, stmt := range seqDrops {
if _, err := pool.Exec(ctx, stmt); err != nil { if _, err := conn.Exec(ctx, stmt); err != nil {
t.Logf("Warning dropping sequence: %v", err) t.Logf("Warning dropping sequence: %v", err)
} }
} }
@@ -165,16 +179,58 @@ func Migrate(t *testing.T, pool *pgxpool.Pool) {
t.Fatal("Could not find init-script.sql in any expected location") t.Fatal("Could not find init-script.sql in any expected location")
} }
// Simple migration: just create tables that don't exist // Split and execute the schema SQL statement-by-statement for robust execution and diagnostic visibility
// Note: This doesn't handle stored procedures properly, but the database statements := splitSQLStatements(schemaSQL)
// should already be set up with the correct schema for i, stmt := range statements {
t.Log("Running migration...") stmt = strings.TrimSpace(stmt)
if stmt == "" {
// Execute the schema SQL continue
_, err = pool.Exec(ctx, schemaSQL)
if err != nil {
t.Fatalf("Failed to execute migration: %v", err)
} }
firstLine := strings.Split(stmt, "\n")[0]
if len(firstLine) > 80 {
firstLine = firstLine[:80] + "..."
}
_, err = conn.Exec(ctx, stmt)
if err != nil {
t.Fatalf("Failed to execute migration statement [%d]: %s\nError: %v", i+1, firstLine, err)
}
}
}
func splitSQLStatements(sql string) []string {
var statements []string
var currentStatement strings.Builder
inDollarBlock := false
lines := strings.Split(sql, "\n")
for _, line := range lines {
trimmed := strings.TrimSpace(line)
if trimmed == "" {
continue
}
if strings.HasPrefix(trimmed, "--") {
continue
}
currentStatement.WriteString(line)
currentStatement.WriteString("\n")
// Count occurrences of $$ in the line (handles single-line $$ blocks too)
count := strings.Count(line, "$$")
if count%2 == 1 {
inDollarBlock = !inDollarBlock
}
if !inDollarBlock && strings.HasSuffix(trimmed, ";") {
statements = append(statements, currentStatement.String())
currentStatement.Reset()
}
}
if currentStatement.Len() > 0 {
statements = append(statements, currentStatement.String())
}
return statements
} }
func Tx(t *testing.T, pool *pgxpool.Pool) pgx.Tx { func Tx(t *testing.T, pool *pgxpool.Pool) pgx.Tx {
@@ -201,7 +257,23 @@ func TruncateTables(t *testing.T, pool *pgxpool.Pool) {
ctx := context.Background() ctx := context.Background()
// Acquire a dedicated connection so advisory lock, truncations, and unlock all use the same session
conn, err := pool.Acquire(ctx)
if err != nil {
t.Fatalf("Failed to acquire connection for truncation: %v", err)
}
defer conn.Release()
_, err = conn.Exec(ctx, "SELECT pg_advisory_lock(1338)")
if err != nil {
t.Fatalf("Failed to acquire truncate advisory lock: %v", err)
}
defer conn.Exec(ctx, "SELECT pg_advisory_unlock(1338)")
tables := []string{ tables := []string{
"till_sales",
"gift_card_transactions",
"gift_card_expired_balances",
"booking_discounts", "booking_discounts",
"loyalty_redemptions", "loyalty_redemptions",
"discount_campaigns", "discount_campaigns",
@@ -237,7 +309,7 @@ func TruncateTables(t *testing.T, pool *pgxpool.Pool) {
} }
for _, table := range tables { for _, table := range tables {
_, err := pool.Exec(ctx, fmt.Sprintf("TRUNCATE TABLE %s CASCADE", table)) _, err := conn.Exec(ctx, fmt.Sprintf("TRUNCATE TABLE %s CASCADE", table))
if err != nil { if err != nil {
t.Logf("Warning: could not truncate %s: %v", table, err) t.Logf("Warning: could not truncate %s: %v", table, err)
} }