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

198 lines
7.9 KiB
Go

//go:build unit
package service
import (
"context"
"net/http"
"testing"
"time"
"github.com/stretchr/testify/require"
)
func TestClassifyGrokUpstreamFailure_FreeUsage(t *testing.T) {
cases := []struct {
name string
status int
body string
}{
{
name: "code free-usage-exhausted",
status: http.StatusTooManyRequests,
body: `{"error":{"code":"subscription:free-usage-exhausted","message":"You've used all the included free usage for model grok-4.5. Usage resets over a rolling 24-hour window."}}`,
},
{
name: "chinese body without 429",
status: http.StatusBadRequest,
body: `{"error":{"message":"模型额度用完,请稍后再试"}}`,
},
{
name: "token pair with free marker",
status: http.StatusOK,
body: `{"error":{"message":"free usage tokens (actual / limit): 2000000 / 2000000 for model grok-4.5"}}`,
},
}
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
d := classifyGrokUpstreamFailure(tc.status, []byte(tc.body), "grok-4.5")
require.Equal(t, GrokFailureFreeUsage, d.Class)
require.True(t, d.ShouldCooldown)
require.True(t, d.ShouldFailover)
require.False(t, d.BlockModel, "free-usage must not soft-block models")
require.Equal(t, grokFreeUsageProbeCooldown, d.Cooldown)
})
}
}
func TestClassifyGrokUpstreamFailure_EmptyUpstream(t *testing.T) {
d := classifyGrokUpstreamFailure(http.StatusBadGateway, []byte(`empty model output: no content/tool_calls`), "grok-4.5")
require.Equal(t, GrokFailureEmptyUpstream, d.Class)
require.True(t, d.ShouldCooldown)
require.True(t, d.ShouldFailover)
require.True(t, d.BlockModel)
require.Equal(t, 4*time.Minute, d.Cooldown)
}
func TestClassifyGrokUpstreamFailure_Billing(t *testing.T) {
d := classifyGrokUpstreamFailure(http.StatusForbidden, []byte(`{"code":"personal-team-blocked:spending-limit","error":"spending limit reached"}`), "")
require.Equal(t, GrokFailureBilling, d.Class)
require.True(t, d.ShouldCooldown)
require.True(t, d.ShouldFailover)
}
func TestClassifyGrokUpstreamFailure_ValidationNoCool(t *testing.T) {
d := classifyGrokUpstreamFailure(http.StatusBadRequest, []byte(`{"error":{"message":"invalid tool schema"}}`), "")
require.Equal(t, GrokFailureNone, d.Class)
require.False(t, d.ShouldCooldown)
require.False(t, d.ShouldFailover)
}
func TestClassifyGrokUpstreamFailure_FreeUsageWinsOver5xx(t *testing.T) {
// Proxy may rewrite free-usage into synthetic 502; body must win.
d := classifyGrokUpstreamFailure(http.StatusBadGateway, []byte(`subscription:free-usage-exhausted for model grok-4.3`), "grok-4.3")
require.Equal(t, GrokFailureFreeUsage, d.Class)
require.NotEqual(t, GrokFailureServer, d.Class)
}
func TestShouldFailoverGrokUpstreamError_FreeUsageBody(t *testing.T) {
svc := &OpenAIGatewayService{}
body := []byte(`{"error":{"code":"subscription:free-usage-exhausted","message":"free usage exhausted"}}`)
require.True(t, svc.shouldFailoverGrokUpstreamError(http.StatusBadRequest, body))
}
func TestShouldFailoverGrokUpstreamError_ContentPolicyStillNoFailover(t *testing.T) {
svc := &OpenAIGatewayService{}
body := []byte(`{"error":{"code":"new_sensitive","message":"text is sensitive"}}`)
require.False(t, svc.shouldFailoverGrokUpstreamError(http.StatusForbidden, body))
}
func TestHandleGrokAccountUpstreamError_FreeUsageBodyCoolsAccount(t *testing.T) {
repo := &grokQuotaAccountRepo{}
svc := &OpenAIGatewayService{accountRepo: repo}
account := &Account{ID: 9101, Platform: PlatformGrok, Type: AccountTypeOAuth}
before := time.Now()
body := []byte(`{"error":{"code":"subscription:free-usage-exhausted","message":"You've used all the included free usage. Usage resets over a rolling 24-hour window."}}`)
svc.handleGrokAccountUpstreamError(context.Background(), account, http.StatusBadRequest, nil, body)
require.Equal(t, 1, repo.tempUnschedCalls)
require.Equal(t, "grok free usage exhausted", repo.lastTempUnschedReason)
// Rolling-window exhaustion must use a short probe cooldown when no
// upstream absolute reset is available; it must not start a 24h lock here.
require.Greater(t, repo.lastTempUnschedUntil, before.Add(grokFreeUsageProbeCooldown-time.Second))
require.Less(t, repo.lastTempUnschedUntil, before.Add(grokFreeUsageProbeCooldown+time.Second))
}
func TestHandleGrokAccountUpstreamError_FreeUsageUsesUpstreamReset(t *testing.T) {
repo := &grokQuotaAccountRepo{}
svc := &OpenAIGatewayService{accountRepo: repo}
account := &Account{ID: 9102, Platform: PlatformGrok, Type: AccountTypeOAuth}
body := []byte(`{"error":{"code":"subscription:free-usage-exhausted","message":"free usage exhausted; rolling 24-hour window"}}`)
svc.handleGrokAccountUpstreamError(context.Background(), account, http.StatusTooManyRequests,
http.Header{"Retry-After": []string{"3600"}}, body)
require.Zero(t, repo.tempUnschedCalls)
require.WithinDuration(t, time.Now().Add(time.Hour), repo.lastRateLimitResetAt, 2*time.Second)
}
func TestHandleGrokAccountUpstreamError_EmptyOutputCoolsAccount(t *testing.T) {
repo := &grokQuotaAccountRepo{}
svc := &OpenAIGatewayService{accountRepo: repo}
account := &Account{ID: 9102, Platform: PlatformGrok, Type: AccountTypeOAuth}
before := time.Now()
svc.handleGrokAccountUpstreamError(
context.Background(), account, http.StatusBadGateway, nil,
[]byte(`empty model output: no content/tool_calls`),
)
require.Equal(t, 1, repo.tempUnschedCalls)
require.Equal(t, "grok empty model output", repo.lastTempUnschedReason)
require.WithinDuration(t, before.Add(4*time.Minute), repo.lastTempUnschedUntil, time.Second)
}
func TestHandleGrokAccountUpstreamError_MultiAgentCapacityBlocksOnlyThatModel(t *testing.T) {
repo := &grokQuotaAccountRepo{}
svc := &OpenAIGatewayService{accountRepo: repo}
account := &Account{ID: 9120, Platform: PlatformGrok, Type: AccountTypeOAuth}
ctx := withGrokTeamRateLimitModel(context.Background(), "grok-4.20-multi-agent-0309")
svc.handleGrokAccountUpstreamError(
ctx, account, http.StatusBadGateway, nil,
[]byte(`{"error":{"message":"engine_overloaded"}}`),
)
require.Zero(t, repo.tempUnschedCalls)
require.True(t, isGrokModelQuotaBlocked(account.ID, "grok-4.20-multi-agent-0309", time.Now()))
require.False(t, isGrokModelQuotaBlocked(account.ID, "grok-4.5", time.Now()))
}
func TestHandleGrokAccountUpstreamError_FreeUsageDoesNotCoolPoolMode(t *testing.T) {
repo := &grokQuotaAccountRepo{}
svc := &OpenAIGatewayService{accountRepo: repo}
account := &Account{
ID: 9103,
Platform: PlatformGrok,
Type: AccountTypeAPIKey,
Credentials: map[string]any{
"pool_mode": true,
},
}
body := []byte(`{"error":{"code":"subscription:free-usage-exhausted","message":"free usage exhausted"}}`)
svc.handleGrokAccountUpstreamError(context.Background(), account, http.StatusBadRequest, nil, body)
require.Zero(t, repo.tempUnschedCalls)
require.False(t, svc.isOpenAIAccountRuntimeBlocked(account))
}
func TestHandleGrokAccountUpstreamError_ContentPolicyStillNoMutation(t *testing.T) {
repo := &grokQuotaAccountRepo{}
svc := &OpenAIGatewayService{accountRepo: repo}
account := &Account{ID: 9104, Platform: PlatformGrok, Type: AccountTypeOAuth}
body := []byte(`{"error":{"code":"new_sensitive","message":"text is sensitive"}}`)
svc.handleGrokAccountUpstreamError(context.Background(), account, http.StatusForbidden, nil, body)
require.Zero(t, repo.tempUnschedCalls)
}
func TestHandleGrokAccountUpstreamError_Entitlement403Unchanged(t *testing.T) {
repo := &grokQuotaAccountRepo{}
svc := &OpenAIGatewayService{accountRepo: repo}
account := &Account{ID: 9105, Platform: PlatformGrok, Type: AccountTypeOAuth}
before := time.Now()
svc.handleGrokAccountUpstreamError(
context.Background(), account, http.StatusForbidden, nil,
[]byte(`{"error":{"message":"subscription required"}}`),
)
require.Equal(t, 1, repo.tempUnschedCalls)
require.Equal(t, "grok access or entitlement denied", repo.lastTempUnschedReason)
require.Greater(t, repo.lastTempUnschedUntil, before.Add(29*time.Minute))
require.Less(t, repo.lastTempUnschedUntil, before.Add(31*time.Minute))
}