-
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathchat_fallback_test.go
More file actions
247 lines (212 loc) · 8.45 KB
/
Copy pathchat_fallback_test.go
File metadata and controls
247 lines (212 loc) · 8.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
package openrouter
import (
"context"
"encoding/json"
"io"
"net/http"
"strings"
"testing"
"github.com/stretchr/testify/require"
)
type sequenceHTTPClient struct {
requests []ChatCompletionRequest
responses []*http.Response
}
func (s *sequenceHTTPClient) Do(req *http.Request) (*http.Response, error) {
var chatReq ChatCompletionRequest
if req.Body != nil {
err := json.NewDecoder(req.Body).Decode(&chatReq)
if err != nil {
return nil, err
}
}
s.requests = append(s.requests, chatReq)
resp := s.responses[0]
s.responses = s.responses[1:]
return resp, nil
}
func TestErrorCodeHelpers(t *testing.T) {
t.Parallel()
require.True(t, IsHTTPStatus(&APIError{HTTPStatusCode: http.StatusPaymentRequired}, http.StatusPaymentRequired))
require.True(t, IsHTTPStatus(&RequestError{HTTPStatusCode: http.StatusTooManyRequests}, http.StatusTooManyRequests))
require.False(t, IsHTTPStatus(io.EOF, http.StatusPaymentRequired))
require.True(t, IsAPIErrorCode(&APIError{Code: http.StatusPaymentRequired}, http.StatusPaymentRequired))
require.True(t, IsAPIErrorCode(&APIError{Code: "402"}, http.StatusPaymentRequired))
require.True(t, IsErrorCode(&APIError{HTTPStatusCode: http.StatusPaymentRequired}, http.StatusPaymentRequired))
require.True(t, IsErrorCode(&APIError{Code: http.StatusPaymentRequired}, http.StatusPaymentRequired))
require.False(t, IsErrorCode(&APIError{HTTPStatusCode: http.StatusBadRequest}, http.StatusPaymentRequired))
}
func TestDefaultChatCompletionFallbackErrorCodes(t *testing.T) {
t.Parallel()
codes := DefaultChatCompletionFallbackErrorCodes()
require.Contains(t, codes, http.StatusPaymentRequired)
require.Contains(t, codes, http.StatusBadGateway)
require.Contains(t, codes, http.StatusGatewayTimeout)
require.Contains(t, codes, StatusProviderOverloaded)
codes[0] = http.StatusTeapot
require.NotEqual(t, http.StatusTeapot, DefaultChatCompletionFallbackErrorCodes()[0])
}
func TestCreateChatCompletionWithFallbackRetriesOnDefaultHTTPStatus(t *testing.T) {
t.Parallel()
httpClient := &sequenceHTTPClient{
responses: []*http.Response{
jsonResponse(http.StatusPaymentRequired, `{"error":{"code":402,"message":"insufficient funds"}}`),
jsonResponse(http.StatusOK, `{
"id":"chatcmpl_1",
"object":"chat.completion",
"model":"xiaomi/mimo-v2-flash",
"choices":[{"message":{"role":"assistant","content":"ok"},"finish_reason":"stop"}]
}`),
},
}
cfg := DefaultConfig("test-token")
cfg.HTTPClient = httpClient
cfg.BaseURL = "https://example.com/api/v1"
client := NewClientWithConfig(*cfg)
resp, err := client.CreateChatCompletionWithFallback(context.Background(), ChatCompletionRequest{
Model: "deepseek/deepseek-v4-flash",
Messages: []ChatCompletionMessage{UserMessage("hello")},
}, "xiaomi/mimo-v2-flash")
require.NoError(t, err)
require.Equal(t, "xiaomi/mimo-v2-flash", resp.Model)
require.Len(t, httpClient.requests, 2)
require.Equal(t, "deepseek/deepseek-v4-flash", httpClient.requests[0].Model)
require.Equal(t, "xiaomi/mimo-v2-flash", httpClient.requests[1].Model)
}
func TestCreateChatCompletionWithFallbackRetriesOnDefaultAPIErrorCode(t *testing.T) {
t.Parallel()
httpClient := &sequenceHTTPClient{
responses: []*http.Response{
jsonResponse(http.StatusBadRequest, `{"error":{"code":402,"message":"Insufficient Balance"}}`),
jsonResponse(http.StatusOK, `{
"id":"chatcmpl_1",
"object":"chat.completion",
"model":"xiaomi/mimo-v2-flash",
"choices":[{"message":{"role":"assistant","content":"ok"},"finish_reason":"stop"}]
}`),
},
}
cfg := DefaultConfig("test-token")
cfg.HTTPClient = httpClient
cfg.BaseURL = "https://example.com/api/v1"
client := NewClientWithConfig(*cfg)
resp, err := client.CreateChatCompletionWithFallback(context.Background(), ChatCompletionRequest{
Model: "deepseek/deepseek-v4-flash",
Messages: []ChatCompletionMessage{UserMessage("hello")},
}, "xiaomi/mimo-v2-flash")
require.NoError(t, err)
require.Equal(t, "xiaomi/mimo-v2-flash", resp.Model)
require.Len(t, httpClient.requests, 2)
}
func TestCreateChatCompletionWithFallbackTriesMultipleModels(t *testing.T) {
t.Parallel()
httpClient := &sequenceHTTPClient{
responses: []*http.Response{
jsonResponse(http.StatusPaymentRequired, `{"error":{"code":402,"message":"insufficient funds"}}`),
jsonResponse(StatusProviderOverloaded, `{"error":{"code":529,"message":"provider overloaded"}}`),
jsonResponse(http.StatusOK, `{
"id":"chatcmpl_1",
"object":"chat.completion",
"model":"google/gemini-flash-1.5-8b",
"choices":[{"message":{"role":"assistant","content":"ok"},"finish_reason":"stop"}]
}`),
},
}
cfg := DefaultConfig("test-token")
cfg.HTTPClient = httpClient
cfg.BaseURL = "https://example.com/api/v1"
client := NewClientWithConfig(*cfg)
resp, err := client.CreateChatCompletionWithFallback(context.Background(), ChatCompletionRequest{
Model: "deepseek/deepseek-v4-flash",
Messages: []ChatCompletionMessage{UserMessage("hello")},
}, "xiaomi/mimo-v2-flash", "google/gemini-flash-1.5-8b")
require.NoError(t, err)
require.Equal(t, "google/gemini-flash-1.5-8b", resp.Model)
require.Len(t, httpClient.requests, 3)
require.Equal(t, "deepseek/deepseek-v4-flash", httpClient.requests[0].Model)
require.Equal(t, "xiaomi/mimo-v2-flash", httpClient.requests[1].Model)
require.Equal(t, "google/gemini-flash-1.5-8b", httpClient.requests[2].Model)
}
func TestCreateChatCompletionWithFallbackUsesCustomErrorCodes(t *testing.T) {
t.Parallel()
httpClient := &sequenceHTTPClient{
responses: []*http.Response{
jsonResponse(http.StatusBadRequest, `{"error":{"code":400,"message":"bad request"}}`),
jsonResponse(http.StatusOK, `{
"id":"chatcmpl_1",
"object":"chat.completion",
"model":"xiaomi/mimo-v2-flash",
"choices":[{"message":{"role":"assistant","content":"ok"},"finish_reason":"stop"}]
}`),
},
}
cfg := DefaultConfig("test-token")
cfg.HTTPClient = httpClient
cfg.BaseURL = "https://example.com/api/v1"
client := NewClientWithConfig(*cfg)
resp, err := client.CreateChatCompletionWithFallbackPolicy(context.Background(), ChatCompletionRequest{
Model: "deepseek/deepseek-v4-flash",
Messages: []ChatCompletionMessage{UserMessage("hello")},
}, ChatCompletionFallbackPolicy{
Models: []string{"xiaomi/mimo-v2-flash"},
ErrorCodes: []int{http.StatusBadRequest},
})
require.NoError(t, err)
require.Equal(t, "xiaomi/mimo-v2-flash", resp.Model)
require.Len(t, httpClient.requests, 2)
}
func TestCreateChatCompletionWithFallbackDoesNotRetryOnNonFallbackableError(t *testing.T) {
t.Parallel()
httpClient := &sequenceHTTPClient{
responses: []*http.Response{
jsonResponse(http.StatusBadRequest, `{"error":{"code":400,"message":"bad request"}}`),
},
}
cfg := DefaultConfig("test-token")
cfg.HTTPClient = httpClient
cfg.BaseURL = "https://example.com/api/v1"
client := NewClientWithConfig(*cfg)
_, err := client.CreateChatCompletionWithFallback(context.Background(), ChatCompletionRequest{
Model: "deepseek/deepseek-v4-flash",
Messages: []ChatCompletionMessage{UserMessage("hello")},
}, "xiaomi/mimo-v2-flash")
require.Error(t, err)
require.True(t, IsHTTPStatus(err, http.StatusBadRequest))
require.Len(t, httpClient.requests, 1)
}
func TestCreateChatCompletionStreamWithFallbackRetriesOnInitialError(t *testing.T) {
t.Parallel()
httpClient := &sequenceHTTPClient{
responses: []*http.Response{
jsonResponse(http.StatusPaymentRequired, `{"error":{"code":402,"message":"insufficient funds"}}`),
jsonResponse(http.StatusOK, strings.Join([]string{
`data: {"id":"chatcmpl_1","model":"xiaomi/mimo-v2-flash","choices":[{"delta":{"content":"ok"}}]}`,
`data: [DONE]`,
``,
}, "\n")),
},
}
cfg := DefaultConfig("test-token")
cfg.HTTPClient = httpClient
cfg.BaseURL = "https://example.com/api/v1"
client := NewClientWithConfig(*cfg)
stream, err := client.CreateChatCompletionStreamWithFallback(context.Background(), ChatCompletionRequest{
Model: "deepseek/deepseek-v4-flash",
Messages: []ChatCompletionMessage{UserMessage("hello")},
}, "xiaomi/mimo-v2-flash")
require.NoError(t, err)
chunk, err := stream.Recv()
require.NoError(t, err)
require.Equal(t, "xiaomi/mimo-v2-flash", chunk.Model)
require.Len(t, httpClient.requests, 2)
require.True(t, httpClient.requests[0].Stream)
require.True(t, httpClient.requests[1].Stream)
}
func jsonResponse(status int, body string) *http.Response {
return &http.Response{
StatusCode: status,
Status: http.StatusText(status),
Body: io.NopCloser(strings.NewReader(body)),
Header: make(http.Header),
}
}