34 lines
791 B
Go
34 lines
791 B
Go
|
|
//go:build integration
|
||
|
|
|
||
|
|
package repository
|
||
|
|
|
||
|
|
import (
|
||
|
|
"os"
|
||
|
|
"testing"
|
||
|
|
)
|
||
|
|
|
||
|
|
// Repository integration tests require a running PostgreSQL instance.
|
||
|
|
// Run with: go test -tags=integration ./internal/tenant/repository/...
|
||
|
|
//
|
||
|
|
// Set environment variable:
|
||
|
|
// TEST_DATABASE_URL=postgres://geo:geo_dev@localhost:5432/geo_test?sslmode=disable
|
||
|
|
|
||
|
|
func TestMain(m *testing.M) {
|
||
|
|
if os.Getenv("TEST_DATABASE_URL") == "" {
|
||
|
|
return
|
||
|
|
}
|
||
|
|
os.Exit(m.Run())
|
||
|
|
}
|
||
|
|
|
||
|
|
func TestTenantIsolation(t *testing.T) {
|
||
|
|
t.Skip("requires running PostgreSQL — run with -tags=integration")
|
||
|
|
}
|
||
|
|
|
||
|
|
func TestSoftDeleteAndReCreate(t *testing.T) {
|
||
|
|
t.Skip("requires running PostgreSQL — run with -tags=integration")
|
||
|
|
}
|
||
|
|
|
||
|
|
func TestQuestionVersioning(t *testing.T) {
|
||
|
|
t.Skip("requires running PostgreSQL — run with -tags=integration")
|
||
|
|
}
|