mirror of
https://github.com/router-for-me/CLIProxyAPI.git
synced 2026-02-18 04:10:51 +08:00
Implement `request_retry` and `disable_cooling` metadata overrides for authentication management. Update retry and cooling logic accordingly across `Manager`, Antigravity executor, and file synthesizer. Add tests to validate new behaviors.
98 lines
2.6 KiB
Go
98 lines
2.6 KiB
Go
package auth
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func TestManager_ShouldRetryAfterError_RespectsAuthRequestRetryOverride(t *testing.T) {
|
|
m := NewManager(nil, nil, nil)
|
|
m.SetRetryConfig(3, 30*time.Second)
|
|
|
|
model := "test-model"
|
|
next := time.Now().Add(5 * time.Second)
|
|
|
|
auth := &Auth{
|
|
ID: "auth-1",
|
|
Provider: "claude",
|
|
Metadata: map[string]any{
|
|
"request_retry": float64(0),
|
|
},
|
|
ModelStates: map[string]*ModelState{
|
|
model: {
|
|
Unavailable: true,
|
|
Status: StatusError,
|
|
NextRetryAfter: next,
|
|
},
|
|
},
|
|
}
|
|
if _, errRegister := m.Register(context.Background(), auth); errRegister != nil {
|
|
t.Fatalf("register auth: %v", errRegister)
|
|
}
|
|
|
|
_, maxWait := m.retrySettings()
|
|
wait, shouldRetry := m.shouldRetryAfterError(&Error{HTTPStatus: 500, Message: "boom"}, 0, []string{"claude"}, model, maxWait)
|
|
if shouldRetry {
|
|
t.Fatalf("expected shouldRetry=false for request_retry=0, got true (wait=%v)", wait)
|
|
}
|
|
|
|
auth.Metadata["request_retry"] = float64(1)
|
|
if _, errUpdate := m.Update(context.Background(), auth); errUpdate != nil {
|
|
t.Fatalf("update auth: %v", errUpdate)
|
|
}
|
|
|
|
wait, shouldRetry = m.shouldRetryAfterError(&Error{HTTPStatus: 500, Message: "boom"}, 0, []string{"claude"}, model, maxWait)
|
|
if !shouldRetry {
|
|
t.Fatalf("expected shouldRetry=true for request_retry=1, got false")
|
|
}
|
|
if wait <= 0 {
|
|
t.Fatalf("expected wait > 0, got %v", wait)
|
|
}
|
|
|
|
_, shouldRetry = m.shouldRetryAfterError(&Error{HTTPStatus: 500, Message: "boom"}, 1, []string{"claude"}, model, maxWait)
|
|
if shouldRetry {
|
|
t.Fatalf("expected shouldRetry=false on attempt=1 for request_retry=1, got true")
|
|
}
|
|
}
|
|
|
|
func TestManager_MarkResult_RespectsAuthDisableCoolingOverride(t *testing.T) {
|
|
prev := quotaCooldownDisabled.Load()
|
|
quotaCooldownDisabled.Store(false)
|
|
t.Cleanup(func() { quotaCooldownDisabled.Store(prev) })
|
|
|
|
m := NewManager(nil, nil, nil)
|
|
|
|
auth := &Auth{
|
|
ID: "auth-1",
|
|
Provider: "claude",
|
|
Metadata: map[string]any{
|
|
"disable_cooling": true,
|
|
},
|
|
}
|
|
if _, errRegister := m.Register(context.Background(), auth); errRegister != nil {
|
|
t.Fatalf("register auth: %v", errRegister)
|
|
}
|
|
|
|
model := "test-model"
|
|
m.MarkResult(context.Background(), Result{
|
|
AuthID: "auth-1",
|
|
Provider: "claude",
|
|
Model: model,
|
|
Success: false,
|
|
Error: &Error{HTTPStatus: 500, Message: "boom"},
|
|
})
|
|
|
|
updated, ok := m.GetByID("auth-1")
|
|
if !ok || updated == nil {
|
|
t.Fatalf("expected auth to be present")
|
|
}
|
|
state := updated.ModelStates[model]
|
|
if state == nil {
|
|
t.Fatalf("expected model state to be present")
|
|
}
|
|
if !state.NextRetryAfter.IsZero() {
|
|
t.Fatalf("expected NextRetryAfter to be zero when disable_cooling=true, got %v", state.NextRetryAfter)
|
|
}
|
|
}
|