forked from baron/baron-sso
75 lines
2.0 KiB
Go
75 lines
2.0 KiB
Go
package repository
|
|
|
|
import (
|
|
"baron-sso-backend/internal/domain"
|
|
"baron-sso-backend/internal/testsupport"
|
|
"context"
|
|
"log"
|
|
"os"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/testcontainers/testcontainers-go"
|
|
postgres_module "github.com/testcontainers/testcontainers-go/modules/postgres"
|
|
"github.com/testcontainers/testcontainers-go/wait"
|
|
gorm_postgres "gorm.io/driver/postgres"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
var testDB *gorm.DB
|
|
|
|
func TestMain(m *testing.M) {
|
|
if !testsupport.DockerAvailable() {
|
|
log.Printf("skipping repository tests: Docker provider is unavailable in this environment")
|
|
os.Exit(0)
|
|
}
|
|
|
|
ctx := context.Background()
|
|
|
|
// Start PostgreSQL container
|
|
dbName := "testdb"
|
|
dbUser := "user"
|
|
dbPassword := "password"
|
|
|
|
postgresContainer, err := postgres_module.Run(ctx,
|
|
"postgres:16-alpine",
|
|
postgres_module.WithDatabase(dbName),
|
|
postgres_module.WithUsername(dbUser),
|
|
postgres_module.WithPassword(dbPassword),
|
|
testcontainers.WithWaitStrategy(
|
|
wait.ForLog("database system is ready to accept connections").
|
|
WithOccurrence(2).
|
|
WithStartupTimeout(30*time.Second)),
|
|
)
|
|
if err != nil {
|
|
log.Fatalf("failed to start container: %s", err)
|
|
}
|
|
|
|
defer func() {
|
|
if err := postgresContainer.Terminate(ctx); err != nil {
|
|
log.Fatalf("failed to terminate container: %s", err)
|
|
}
|
|
}()
|
|
|
|
connStr, err := postgresContainer.ConnectionString(ctx, "sslmode=disable")
|
|
if err != nil {
|
|
log.Fatalf("failed to get connection string: %s", err)
|
|
}
|
|
|
|
// Connect to test database
|
|
db, err := gorm.Open(gorm_postgres.Open(connStr), &gorm.Config{})
|
|
if err != nil {
|
|
log.Fatalf("failed to connect to database: %s", err)
|
|
}
|
|
|
|
// Auto-migrate
|
|
err = db.AutoMigrate(&domain.Tenant{}, &domain.TenantDomain{}, &domain.User{}, &domain.UserLoginID{}, &domain.UserProjectionState{}, &domain.ClientConsent{}, &domain.RPUserMetadata{}, &domain.RPUsageEvent{}, &domain.KetoOutbox{}, &domain.WorksmobileOutbox{})
|
|
if err != nil {
|
|
log.Fatalf("failed to migrate database: %s", err)
|
|
}
|
|
|
|
testDB = db
|
|
|
|
os.Exit(m.Run())
|
|
}
|