Release / update-version (push) Has been cancelled
Release / build-frontend (push) Has been cancelled
Release / release (push) Has been cancelled
Release / sync-version-file (push) Has been cancelled
CI / shell (push) Canceled after 0s
CI / test (push) Canceled after 0s
CI / frontend (push) Canceled after 0s
CI / golangci-lint (push) Canceled after 0s
Security Scan / backend-security (push) Canceled after 0s
Security Scan / frontend-security (push) Canceled after 0s
137 lines
4.0 KiB
Go
137 lines
4.0 KiB
Go
//go:build integration
|
|
|
|
package repository
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/Wei-Shaw/sub2api/internal/service"
|
|
)
|
|
|
|
func TestAccountRepoSparkShadowRoundTrip(t *testing.T) {
|
|
ctx := context.Background()
|
|
tx := testEntTx(t)
|
|
repo := newAccountRepositoryWithSQL(tx.Client(), tx, nil)
|
|
|
|
parent := &service.Account{
|
|
Name: "parent",
|
|
Platform: service.PlatformOpenAI,
|
|
Type: service.AccountTypeOAuth,
|
|
Status: service.StatusActive,
|
|
}
|
|
if err := repo.Create(ctx, parent); err != nil {
|
|
t.Fatalf("create parent: %v", err)
|
|
}
|
|
pid := parent.ID
|
|
shadow := &service.Account{
|
|
Name: "shadow",
|
|
Platform: service.PlatformOpenAI,
|
|
Type: service.AccountTypeOAuth,
|
|
Status: service.StatusActive,
|
|
ParentAccountID: &pid,
|
|
QuotaDimension: service.QuotaDimensionSpark,
|
|
}
|
|
if err := repo.Create(ctx, shadow); err != nil {
|
|
t.Fatalf("create shadow: %v", err)
|
|
}
|
|
got, err := repo.GetByID(ctx, shadow.ID)
|
|
if err != nil {
|
|
t.Fatalf("get: %v", err)
|
|
}
|
|
if got.ParentAccountID == nil || *got.ParentAccountID != pid {
|
|
t.Fatalf("ParentAccountID round-trip: %v", got.ParentAccountID)
|
|
}
|
|
if got.QuotaDimension != service.QuotaDimensionSpark {
|
|
t.Fatalf("QuotaDimension: %q", got.QuotaDimension)
|
|
}
|
|
}
|
|
|
|
func TestListShadowsByParent(t *testing.T) {
|
|
// Schema enforces at most one spark shadow per parent (uq_accounts_spark_shadow_per_parent).
|
|
// Test strategy: create 2 parents each with 1 spark shadow + 1 unrelated account;
|
|
// assert ListShadowsByParent(parent1.ID) returns exactly 1 (filtering by both
|
|
// parent_account_id and quota_dimension='spark', excluding parent2's shadow and unrelated).
|
|
ctx := context.Background()
|
|
tx := testEntTx(t)
|
|
repo := newAccountRepositoryWithSQL(tx.Client(), tx, nil)
|
|
|
|
// Create parent1 and its spark shadow
|
|
parent1 := &service.Account{
|
|
Name: "list-parent1",
|
|
Platform: service.PlatformOpenAI,
|
|
Type: service.AccountTypeOAuth,
|
|
Status: service.StatusActive,
|
|
}
|
|
if err := repo.Create(ctx, parent1); err != nil {
|
|
t.Fatalf("create parent1: %v", err)
|
|
}
|
|
pid1 := parent1.ID
|
|
|
|
shadow1 := &service.Account{
|
|
Name: "shadow1",
|
|
Platform: service.PlatformOpenAI,
|
|
Type: service.AccountTypeOAuth,
|
|
Status: service.StatusActive,
|
|
ParentAccountID: &pid1,
|
|
QuotaDimension: service.QuotaDimensionSpark,
|
|
}
|
|
if err := repo.Create(ctx, shadow1); err != nil {
|
|
t.Fatalf("create shadow1: %v", err)
|
|
}
|
|
|
|
// Create parent2 and its spark shadow (must NOT appear in parent1's list)
|
|
parent2 := &service.Account{
|
|
Name: "list-parent2",
|
|
Platform: service.PlatformOpenAI,
|
|
Type: service.AccountTypeOAuth,
|
|
Status: service.StatusActive,
|
|
}
|
|
if err := repo.Create(ctx, parent2); err != nil {
|
|
t.Fatalf("create parent2: %v", err)
|
|
}
|
|
pid2 := parent2.ID
|
|
|
|
shadow2 := &service.Account{
|
|
Name: "shadow2",
|
|
Platform: service.PlatformOpenAI,
|
|
Type: service.AccountTypeOAuth,
|
|
Status: service.StatusActive,
|
|
ParentAccountID: &pid2,
|
|
QuotaDimension: service.QuotaDimensionSpark,
|
|
}
|
|
if err := repo.Create(ctx, shadow2); err != nil {
|
|
t.Fatalf("create shadow2: %v", err)
|
|
}
|
|
|
|
// Create 1 unrelated normal account (no parent, global dimension)
|
|
unrelated := &service.Account{
|
|
Name: "unrelated",
|
|
Platform: service.PlatformOpenAI,
|
|
Type: service.AccountTypeOAuth,
|
|
Status: service.StatusActive,
|
|
}
|
|
if err := repo.Create(ctx, unrelated); err != nil {
|
|
t.Fatalf("create unrelated: %v", err)
|
|
}
|
|
|
|
// Assert ListShadowsByParent returns exactly 1 for parent1
|
|
got, err := repo.ListShadowsByParent(ctx, pid1)
|
|
if err != nil {
|
|
t.Fatalf("ListShadowsByParent: %v", err)
|
|
}
|
|
if len(got) != 1 {
|
|
t.Fatalf("expected 1 spark shadow for parent1, got %d", len(got))
|
|
}
|
|
acc := got[0]
|
|
if acc.ParentAccountID == nil || *acc.ParentAccountID != pid1 {
|
|
t.Errorf("unexpected ParentAccountID: %v", acc.ParentAccountID)
|
|
}
|
|
if acc.QuotaDimension != service.QuotaDimensionSpark {
|
|
t.Errorf("unexpected QuotaDimension: %q", acc.QuotaDimension)
|
|
}
|
|
if acc.ID != shadow1.ID {
|
|
t.Errorf("expected shadow1.ID=%d, got %d", shadow1.ID, acc.ID)
|
|
}
|
|
}
|