30 lines
894 B
Go
30 lines
894 B
Go
package service
|
|||
|
|
|
||
|
|
import (
|
||
|
|
"net/http"
|
||
|
|
"testing"
|
||
|
|
|
||
|
|
"github.com/stretchr/testify/assert"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestShouldFailoverUpstreamError_405IsFailoverEligible(t *testing.T) {
|
||
|
|
svc := &OpenAIGatewayService{}
|
||
|
|
|
||
|
|
assert.True(t, svc.shouldFailoverUpstreamError(http.StatusMethodNotAllowed),
|
||
|
|
"405 should trigger failover so sticky sessions can escape to healthy accounts")
|
||
|
|
}
|
||
|
|
|
||
|
|
func TestShouldFailoverUpstreamError_ExistingCodesStillWork(t *testing.T) {
|
||
|
|
svc := &OpenAIGatewayService{}
|
||
|
|
|
||
|
|
failoverCodes := []int{401, 402, 403, 405, 429, 529, 500, 502, 503, 504}
|
||
|
|
for _, code := range failoverCodes {
|
||
|
|
assert.True(t, svc.shouldFailoverUpstreamError(code), "status %d should trigger failover", code)
|
||
|
|
}
|
||
|
|
|
||
|
|
nonFailoverCodes := []int{200, 201, 400, 404, 408, 422}
|
||
|
|
for _, code := range nonFailoverCodes {
|
||
|
|
assert.False(t, svc.shouldFailoverUpstreamError(code), "status %d should NOT trigger failover", code)
|
||
|
|
}
|
||
|
|
}
|