//go:build integration package app import ( "os" "testing" ) // Integration tests require a running PostgreSQL and Redis instance. // Run with: go test -tags=integration ./internal/tenant/app/... // // Set environment variables: // TEST_DATABASE_URL=postgres://geo:geo_dev@localhost:5432/geo_test?sslmode=disable // TEST_REDIS_ADDR=localhost:6379 func TestMain(m *testing.M) { if os.Getenv("TEST_DATABASE_URL") == "" { // Skip integration tests when no database is available return } os.Exit(m.Run()) } func TestAuthService_LoginFlow(t *testing.T) { t.Skip("requires running PostgreSQL and Redis — run with -tags=integration") } func TestTemplateService_GenerateFlow(t *testing.T) { t.Skip("requires running PostgreSQL — run with -tags=integration") } func TestBrandService_CRUDFlow(t *testing.T) { t.Skip("requires running PostgreSQL — run with -tags=integration") }