Files
sub2api/backend/internal/service/batch_image_billing_recovery_test.go
T
李建琦 6d655c9903
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
Sub2API v1.0 - AI API 网关(二开初始版本,基于上游 Wei-Shaw/sub2api)
2026-08-21 18:30:13 +08:00

118 lines
4.1 KiB
Go

//go:build unit
package service
import (
"context"
"errors"
"testing"
"time"
"github.com/stretchr/testify/require"
)
type recordingBatchImageQueue struct {
*fakeBatchImageQueue
enqueued []string
}
func (q *recordingBatchImageQueue) Enqueue(_ context.Context, batchID string) error {
q.enqueued = append(q.enqueued, batchID)
return nil
}
func TestBatchImageBillingRecoveryService_ReleasesStaleUnsubmittedHold(t *testing.T) {
repo := newFakeBatchImageRepository()
apiKeyID := int64(22)
holdAmount := 0.5
stale := &BatchImageJob{
BatchID: "imgbatch_stale_created",
UserID: 11,
APIKeyID: &apiKeyID,
Status: BatchImageJobStatusCreated,
EstimatedCost: holdAmount,
HoldAmount: &holdAmount,
CreatedAt: time.Now().Add(-time.Hour),
UpdatedAt: time.Now().Add(-time.Hour),
}
activeProviderName := "providers/job"
active := &BatchImageJob{
BatchID: "imgbatch_has_provider",
UserID: 11,
APIKeyID: &apiKeyID,
Status: BatchImageJobStatusSubmitted,
ProviderJobName: &activeProviderName,
EstimatedCost: holdAmount,
HoldAmount: &holdAmount,
CreatedAt: time.Now().Add(-time.Hour),
UpdatedAt: time.Now().Add(-time.Hour),
}
repo.jobs[stale.BatchID] = stale
repo.jobs[active.BatchID] = active
billing := &fakeBatchImageBillingRepo{}
svc := &BatchImageBillingRecoveryService{Repo: repo, Billing: billing, StaleAfter: time.Minute, Limit: 10}
released, err := svc.ReleaseStaleUnsubmittedOnce(context.Background())
require.NoError(t, err)
require.Equal(t, 1, released)
require.Equal(t, BatchImageJobStatusFailed, repo.jobs[stale.BatchID].Status)
require.Equal(t, "SUBMIT_STALE_BEFORE_PROVIDER", batchImageDerefString(repo.jobs[stale.BatchID].LastErrorCode))
require.Len(t, billing.releases, 1)
require.Equal(t, BatchImageReleaseRequestID(stale.BatchID), billing.releases[0].RequestID)
require.Equal(t, BatchImageJobStatusSubmitted, repo.jobs[active.BatchID].Status)
}
func TestBatchImageBillingRecoveryService_SkipsJobRefreshedByHeartbeat(t *testing.T) {
repo := newFakeBatchImageRepository()
apiKeyID := int64(22)
holdAmount := 0.5
// updated_at 在 cutoff 之后(慢提交心跳持续续期):不得误杀退款。
fresh := &BatchImageJob{
BatchID: "imgbatch_fresh_uploading",
UserID: 11,
APIKeyID: &apiKeyID,
Status: BatchImageJobStatusUploading,
EstimatedCost: holdAmount,
HoldAmount: &holdAmount,
CreatedAt: time.Now().Add(-time.Hour),
UpdatedAt: time.Now(),
}
repo.jobs[fresh.BatchID] = fresh
billing := &fakeBatchImageBillingRepo{}
svc := &BatchImageBillingRecoveryService{Repo: repo, Billing: billing, StaleAfter: time.Minute, Limit: 10}
released, err := svc.ReleaseStaleUnsubmittedOnce(context.Background())
require.NoError(t, err)
require.Equal(t, 0, released)
require.Equal(t, BatchImageJobStatusUploading, repo.jobs[fresh.BatchID].Status)
require.Empty(t, billing.releases)
}
func TestBatchImageBillingRecoveryService_EnqueuesRetryWhenReleaseFails(t *testing.T) {
repo := newFakeBatchImageRepository()
apiKeyID := int64(22)
holdAmount := 0.5
stale := &BatchImageJob{
BatchID: "imgbatch_stale_release_fail",
UserID: 11,
APIKeyID: &apiKeyID,
Status: BatchImageJobStatusCreated,
EstimatedCost: holdAmount,
HoldAmount: &holdAmount,
CreatedAt: time.Now().Add(-time.Hour),
UpdatedAt: time.Now().Add(-time.Hour),
}
repo.jobs[stale.BatchID] = stale
billing := &fakeBatchImageBillingRepo{releaseErr: errors.New("billing db down")}
queue := &recordingBatchImageQueue{fakeBatchImageQueue: newFakeBatchImageQueue("")}
svc := &BatchImageBillingRecoveryService{Repo: repo, Billing: billing, Queue: queue, StaleAfter: time.Minute, Limit: 10}
released, err := svc.ReleaseStaleUnsubmittedOnce(context.Background())
// job 已转 failed、不会再出现在 stale 列表:释放失败必须入队重试
//(由 worker 的 releaseTerminalHold 兜底),否则冻结余额永久泄漏。
require.Error(t, err)
require.Equal(t, 0, released)
require.Equal(t, BatchImageJobStatusFailed, repo.jobs[stale.BatchID].Status)
require.Equal(t, []string{stale.BatchID}, queue.enqueued)
}