-
Notifications
You must be signed in to change notification settings - Fork 212
Expand file tree
/
Copy pathopenai-compatible.spec.ts
More file actions
313 lines (263 loc) · 8.89 KB
/
Copy pathopenai-compatible.spec.ts
File metadata and controls
313 lines (263 loc) · 8.89 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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
// Use vi.hoisted to define mock functions that can be referenced in hoisted vi.mock() calls
const { mockStreamText, mockGenerateText } = vi.hoisted(() => ({
mockStreamText: vi.fn(),
mockGenerateText: vi.fn(),
}))
vi.mock("ai", async (importOriginal) => {
const actual = await importOriginal<typeof import("ai")>()
return {
...actual,
streamText: mockStreamText,
generateText: mockGenerateText,
}
})
vi.mock("@ai-sdk/openai-compatible", () => ({
createOpenAICompatible: vi.fn(function () {
// Return a function that returns a mock language model
return vi.fn(() => ({
modelId: "test-model",
provider: "openai-compatible",
}))
}),
}))
import type { Anthropic } from "@anthropic-ai/sdk"
import { OpenAICompatibleHandler, OpenAICompatibleConfig } from "../openai-compatible"
import type { ApiHandlerOptions } from "../../../shared/api"
// Concrete implementation for testing
class TestOpenAICompatibleHandler extends OpenAICompatibleHandler {
constructor(options: ApiHandlerOptions, config: OpenAICompatibleConfig) {
super(options, config)
}
override getModel() {
return {
id: this.config.modelId,
info: this.config.modelInfo,
maxTokens: this.config.modelMaxTokens,
temperature: this.config.temperature,
}
}
}
describe("OpenAICompatibleHandler", () => {
let handler: TestOpenAICompatibleHandler
let mockOptions: ApiHandlerOptions
let mockConfig: OpenAICompatibleConfig
const systemPrompt = "You are a helpful assistant."
const messages: Anthropic.Messages.MessageParam[] = [
{
role: "user",
content: [{ type: "text", text: "Hello!" }],
},
]
beforeEach(() => {
mockOptions = {
apiModelId: "test-model",
apiKey: "test-api-key",
}
mockConfig = {
providerName: "TestProvider",
baseURL: "https://api.test.com/v1",
apiKey: "test-api-key",
modelId: "test-model",
modelInfo: {
maxTokens: 8192,
contextWindow: 128000,
supportsImages: false,
supportsPromptCache: true,
},
}
handler = new TestOpenAICompatibleHandler(mockOptions, mockConfig)
vi.clearAllMocks()
})
describe("constructor", () => {
it("should initialize with provided options and config", () => {
expect(handler).toBeInstanceOf(TestOpenAICompatibleHandler)
expect(handler.getModel().id).toBe(mockConfig.modelId)
})
})
describe("createMessage", () => {
it("should handle streaming responses", async () => {
async function* mockFullStream() {
yield { type: "text-delta", text: "Test response" }
}
const mockUsage = Promise.resolve({
inputTokens: 10,
outputTokens: 5,
details: {},
raw: {},
})
mockStreamText.mockReturnValue({
fullStream: mockFullStream(),
usage: mockUsage,
})
const stream = handler.createMessage(systemPrompt, messages)
const chunks: any[] = []
for await (const chunk of stream) {
chunks.push(chunk)
}
expect(chunks.length).toBeGreaterThan(0)
const textChunks = chunks.filter((chunk) => chunk.type === "text")
expect(textChunks).toHaveLength(1)
expect(textChunks[0].text).toBe("Test response")
})
it("should handle multiple stream parts and yield usage metrics", async () => {
async function* mockFullStream() {
yield { type: "text-delta", text: "First part" }
yield { type: "text-delta", text: "Second part" }
yield { type: "tool-call", toolCallId: "123", name: "test_tool", args: "{}" }
}
const mockUsage = Promise.resolve({
inputTokens: 20,
outputTokens: 10,
details: {},
raw: {},
})
mockStreamText.mockReturnValue({
fullStream: mockFullStream(),
usage: mockUsage,
})
const stream = handler.createMessage(systemPrompt, messages)
const chunks: any[] = []
for await (const chunk of stream) {
chunks.push(chunk)
}
expect(chunks.length).toBeGreaterThan(2)
const textChunks = chunks.filter((chunk) => chunk.type === "text")
expect(textChunks).toHaveLength(2)
expect(textChunks[0].text).toBe("First part")
expect(textChunks[1].text).toBe("Second part")
const usageChunks = chunks.filter((chunk) => chunk.type === "usage")
expect(usageChunks).toHaveLength(1)
})
it("should handle stream without usage metrics", async () => {
async function* mockFullStream() {
yield { type: "text-delta", text: "Test response" }
}
mockStreamText.mockReturnValue({
fullStream: mockFullStream(),
usage: Promise.resolve(undefined),
})
const stream = handler.createMessage(systemPrompt, messages)
const chunks: any[] = []
for await (const chunk of stream) {
chunks.push(chunk)
}
expect(chunks.length).toBeGreaterThan(0)
const usageChunks = chunks.filter((chunk) => chunk.type === "usage")
expect(usageChunks).toHaveLength(0)
})
it("should handle tool-call events in stream", async () => {
async function* mockFullStream() {
yield { type: "text-delta", text: "Calling tool" }
yield { type: "tool-call-start", toolCallId: "tc_1", name: "read_file" }
yield { type: "tool-call-delta", toolCallId: "tc_1", delta: '{"path":"test.ts"}' }
yield { type: "tool-call-end", toolCallId: "tc_1" }
}
const mockUsage = Promise.resolve({
inputTokens: 15,
outputTokens: 8,
details: {},
raw: {},
})
mockStreamText.mockReturnValue({
fullStream: mockFullStream(),
usage: mockUsage,
})
const stream = handler.createMessage(systemPrompt, messages)
const chunks: any[] = []
for await (const chunk of stream) {
chunks.push(chunk)
}
expect(chunks.length).toBeGreaterThan(0)
})
// Test 1: createMessage() with mock 429 response → verify thrown error has .status === 429 and provider name in message
it("should throw error with .status 429 when API returns 429", async () => {
const rateLimitError = new Error("Rate limited") as Error & { status: number }
rateLimitError.status = 429
mockStreamText.mockReturnValue({
// eslint-disable-next-line require-yield
fullStream: (async function* () {
throw rateLimitError
})(),
usage: Promise.resolve({ inputTokens: 0, outputTokens: 0, details: {}, raw: {} }),
})
let thrownError: any
try {
for await (const chunk of handler.createMessage(systemPrompt, messages)) {
void chunk // Use void to satisfy no-unused-expressions rule
}
} catch (e: any) {
thrownError = e
}
expect(thrownError).toBeInstanceOf(Error)
expect(thrownError.status).toBe(429)
expect(thrownError.message).toContain("TestProvider")
})
// Test 2: createMessage() with mock 500 response → verify error is properly tagged
it("should throw error with .status 500 and provider name when API returns 500", async () => {
const serverError = new Error("Internal Server Error") as Error & { status: number }
serverError.status = 500
mockStreamText.mockReturnValue({
// eslint-disable-next-line require-yield
fullStream: (async function* () {
throw serverError
})(),
usage: Promise.resolve({ inputTokens: 0, outputTokens: 0, details: {}, raw: {} }),
})
let thrownError: any
try {
for await (const chunk of handler.createMessage(systemPrompt, messages)) {
void chunk
}
} catch (e: any) {
thrownError = e
}
expect(thrownError).toBeInstanceOf(Error)
expect(thrownError.status).toBe(500)
expect(thrownError.message).toContain("TestProvider")
})
})
describe("completePrompt", () => {
it("should complete a prompt using generateText", async () => {
mockGenerateText.mockResolvedValue({
text: "Test completion",
})
const result = await handler.completePrompt("Test prompt")
expect(result).toBe("Test completion")
expect(mockGenerateText).toHaveBeenCalledWith(
expect.objectContaining({
prompt: "Test prompt",
}),
)
})
// Test 3: completePrompt() with mock 4xx/5xx → verify error carries .status and provider name
it("should throw error with .status and provider name when generateText throws 400", async () => {
const badRequestError = new Error("Bad Request") as Error & { status: number }
badRequestError.status = 400
mockGenerateText.mockRejectedValue(badRequestError)
await expect(handler.completePrompt("Test prompt")).rejects.toThrow("TestProvider")
let thrownError: any
try {
await handler.completePrompt("Test prompt")
} catch (e: any) {
thrownError = e
}
expect(thrownError).toBeInstanceOf(Error)
expect((thrownError as any).status).toBe(400)
expect(thrownError.message).toContain("TestProvider")
})
it("should throw error with .status and provider name when generateText throws 500", async () => {
const serverError = new Error("Internal Server Error") as Error & { status: number }
serverError.status = 500
mockGenerateText.mockRejectedValue(serverError)
let thrownError: any
try {
await handler.completePrompt("Test prompt")
} catch (e: any) {
thrownError = e
}
expect(thrownError).toBeInstanceOf(Error)
expect((thrownError as any).status).toBe(500)
expect(thrownError.message).toContain("TestProvider")
})
})
})