New types and helpers for context-aware DB routing and per-test transactions: - PoolProxy: wraps pgxpool.Pool, routes queries through context transaction when active - Querier: interface accepted by fixture/helper functions for decoupling - ContextWithTx / TxFromContext: store/extract pgx.Tx in context.Context - SetupTestTx (in testutils): begins tx, stores in context, auto-rolls back on cleanup - SetupTestTx (in testtx): package-level variant with semaphore for parallel safety Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
84 lines
3.0 KiB
Go
84 lines
3.0 KiB
Go
package db
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/jackc/pgx/v5"
|
|
"github.com/jackc/pgx/v5/pgconn"
|
|
"github.com/jackc/pgx/v5/pgxpool"
|
|
)
|
|
|
|
// Querier is implemented by *pgxpool.Pool, pgx.Tx, and *PoolProxy.
|
|
// Fixture functions and internal helpers that need to run queries should
|
|
// accept Querier to remain decoupled from transaction state.
|
|
type Querier interface {
|
|
Exec(ctx context.Context, sql string, args ...any) (pgconn.CommandTag, error)
|
|
Query(ctx context.Context, sql string, args ...any) (pgx.Rows, error)
|
|
QueryRow(ctx context.Context, sql string, args ...any) pgx.Row
|
|
}
|
|
|
|
// PoolProxy wraps *pgxpool.Pool and routes DB operations through an active
|
|
// transaction stored in context.Context. If no transaction is present,
|
|
// it delegates to the underlying pool directly.
|
|
//
|
|
// This enables per-test transactions: tests store a pgx.Tx in the request
|
|
// context, and all handler DB calls (via db.Conn.Exec/Query/QueryRow) route
|
|
// through that transaction automatically, rolling back on test cleanup.
|
|
type PoolProxy struct {
|
|
pool *pgxpool.Pool
|
|
}
|
|
|
|
// NewPoolProxy creates a PoolProxy wrapping the given pool.
|
|
func NewPoolProxy(pool *pgxpool.Pool) *PoolProxy {
|
|
return &PoolProxy{pool: pool}
|
|
}
|
|
|
|
// Pool returns the underlying pool, used for test setup and startup code.
|
|
func (p *PoolProxy) Pool() *pgxpool.Pool { return p.pool }
|
|
|
|
// Exec runs a query, routing through a context transaction if one is active.
|
|
func (p *PoolProxy) Exec(ctx context.Context, sql string, args ...any) (pgconn.CommandTag, error) {
|
|
if tx := TxFromContext(ctx); tx != nil {
|
|
return tx.Exec(ctx, sql, args...)
|
|
}
|
|
return p.pool.Exec(ctx, sql, args...)
|
|
}
|
|
|
|
// Query runs a query, routing through a context transaction if one is active.
|
|
func (p *PoolProxy) Query(ctx context.Context, sql string, args ...any) (pgx.Rows, error) {
|
|
if tx := TxFromContext(ctx); tx != nil {
|
|
return tx.Query(ctx, sql, args...)
|
|
}
|
|
return p.pool.Query(ctx, sql, args...)
|
|
}
|
|
|
|
// QueryRow runs a query, routing through a context transaction if one is active.
|
|
func (p *PoolProxy) QueryRow(ctx context.Context, sql string, args ...any) pgx.Row {
|
|
if tx := TxFromContext(ctx); tx != nil {
|
|
return tx.QueryRow(ctx, sql, args...)
|
|
}
|
|
return p.pool.QueryRow(ctx, sql, args...)
|
|
}
|
|
|
|
// Begin starts a transaction. If the context already has an active transaction,
|
|
// it creates a savepoint (nested transaction) instead. This allows production
|
|
// code that calls db.Conn.Begin() to work inside per-test transactions.
|
|
func (p *PoolProxy) Begin(ctx context.Context) (pgx.Tx, error) {
|
|
if tx := TxFromContext(ctx); tx != nil {
|
|
return tx.Begin(ctx)
|
|
}
|
|
return p.pool.Begin(ctx)
|
|
}
|
|
|
|
// Ping always goes to the underlying pool — it's a health check, not a query.
|
|
func (p *PoolProxy) Ping(ctx context.Context) error {
|
|
return p.pool.Ping(ctx)
|
|
}
|
|
|
|
// Acquire always goes to the underlying pool — pgx.Tx has no Acquire method.
|
|
// The only production caller is the payment advisory lock, which needs a
|
|
// dedicated connection orthogonal to any transaction context.
|
|
func (p *PoolProxy) Acquire(ctx context.Context) (*pgxpool.Conn, error) {
|
|
return p.pool.Acquire(ctx)
|
|
}
|