Files
sub2api/backend/internal/service/cn_provider_balance_check_service_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

102 lines
3.8 KiB
Go

package service
import (
"context"
"testing"
"github.com/Wei-Shaw/sub2api/internal/config"
"github.com/stretchr/testify/require"
)
// 周期任务对 coding plan 账号的额度探测行为(runOnce 集成路径):
// - kimi coding 账号(含已被阈值停调的)→ 额度探测被调用;
// - 智谱 coding 账号 → 额度探测被调用(智谱不进 kimi/deepseek 余额循环);
// - payg 账号不经过额度探测(走余额路径,本测试不放 payg 账号避免真实网络);
// - 非激活账号完全跳过。
type fakeCNQuotaProber struct {
probed []int64
}
func (f *fakeCNQuotaProber) QueryUsage(ctx context.Context, accountID int64) (*CNProviderQuotaProbeResult, error) {
f.probed = append(f.probed, accountID)
return &CNProviderQuotaProbeResult{Success: true, Persisted: true}, nil
}
type fakeCNCheckRepo struct {
AccountRepository
byPlatform map[string][]Account
}
func (r *fakeCNCheckRepo) ListByPlatform(ctx context.Context, platform string) ([]Account, error) {
return r.byPlatform[platform], nil
}
func TestCNProviderBalanceCheckRunOnceProbesCodingPlanQuota(t *testing.T) {
kimiActive := Account{ID: 1, Platform: PlatformKimi, Type: AccountTypeAPIKey, Status: StatusActive,
Credentials: map[string]any{"account_mode": "coding"}}
// 已被阈值停调的 coding 账号也要刷新快照(决定是否续停)。
kimiPaused := Account{ID: 2, Platform: PlatformKimi, Type: AccountTypeAPIKey, Status: StatusActive, Schedulable: false,
Credentials: map[string]any{"account_mode": "coding"}}
// 非激活账号跳过。
kimiInactive := Account{ID: 3, Platform: PlatformKimi, Type: AccountTypeAPIKey, Status: StatusDisabled,
Credentials: map[string]any{"account_mode": "coding"}}
zhipuCoding := Account{ID: 4, Platform: PlatformZhipu, Type: AccountTypeAPIKey, Status: StatusActive,
Credentials: map[string]any{"account_mode": "coding"}}
repo := &fakeCNCheckRepo{byPlatform: map[string][]Account{
PlatformKimi: {kimiActive, kimiPaused, kimiInactive},
PlatformZhipu: {zhipuCoding},
}}
prober := &fakeCNQuotaProber{}
svc := &CNProviderBalanceCheckService{
accountRepo: repo,
quotaService: prober,
cfg: &config.Config{},
}
svc.runOnce()
require.ElementsMatch(t, []int64{1, 2, 4}, prober.probed)
}
// runOnceZhipuQuota 在 quotaService 缺失时安全跳过(Start 门控不启动的老部署路径)。
func TestCNProviderBalanceCheckRunOnceWithoutQuotaService(t *testing.T) {
repo := &fakeCNCheckRepo{byPlatform: map[string][]Account{
PlatformZhipu: {{ID: 4, Platform: PlatformZhipu, Type: AccountTypeAPIKey, Status: StatusActive,
Credentials: map[string]any{"account_mode": "coding"}}},
}}
svc := &CNProviderBalanceCheckService{accountRepo: repo, cfg: &config.Config{}}
require.NotPanics(t, func() { svc.runOnce() })
}
// 双币种(deepseek CNY+USD)停调判定:任一币种达标即不停调,全部低于阈值才停;
// 无明细时退回主币种(兼容旧结果)。
func TestAllCNBalancesBelowThreshold(t *testing.T) {
dualLow := &CNProviderBalanceResult{
Balance: 1.0,
Currency: "CNY",
Balances: []CNProviderBalanceEntry{
{Currency: "CNY", Balance: 1.0},
{Currency: "USD", Balance: 0.5},
},
}
require.True(t, allCNBalancesBelowThreshold(dualLow, 5.0))
dualMixed := &CNProviderBalanceResult{
Balance: 1.0,
Currency: "CNY",
Balances: []CNProviderBalanceEntry{
{Currency: "CNY", Balance: 1.0},
{Currency: "USD", Balance: 20.0},
},
}
require.False(t, allCNBalancesBelowThreshold(dualMixed, 5.0))
// 无明细:按主币种判定(旧行为)。
singleLow := &CNProviderBalanceResult{Balance: 1.0, Currency: "CNY"}
require.True(t, allCNBalancesBelowThreshold(singleLow, 5.0))
singleOK := &CNProviderBalanceResult{Balance: 10.0, Currency: "CNY"}
require.False(t, allCNBalancesBelowThreshold(singleOK, 5.0))
}