de30497f59
- Implemented tenant and user management features including: - Tenant creation and management with associated migrations. - User creation and management with associated migrations. - Tenant membership management with associated migrations. - Platform user roles management with associated migrations. - Quota management with associated migrations. - Article and template management with associated migrations. - Added HTTP handlers for templates and workspaces. - Created tests for protected and public routes. - Introduced a script to check tenant scope in SQL queries. - Documented task plan for backend completion and frontend foundation.
36 lines
897 B
Go
36 lines
897 B
Go
//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")
|
|
}
|