-
Notifications
You must be signed in to change notification settings - Fork 212
Expand file tree
/
Copy pathzai.test.ts
More file actions
284 lines (241 loc) · 7.98 KB
/
Copy pathzai.test.ts
File metadata and controls
284 lines (241 loc) · 7.98 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
import * as assert from "assert"
import { RooCodeEventName, type ClineMessage } from "@roo-code/types"
import { waitUntilCompleted } from "../utils"
import { setDefaultSuiteTimeout } from "../test-utils"
// ---------------------------------------------------------------------------
// Fetch interceptor
//
// The OpenAI SDK resolves `fetch` at client construction time
// (this.fetch = options.fetch ?? getDefaultFetch()). Patching globalThis.fetch
// before setConfiguration() ensures any ZAiHandler created for this suite
// captures our interceptor. When ZAI_API_KEY is set the interceptor runs in
// passthrough mode — it captures max_tokens from the request then forwards to
// the real API, so the max_tokens assertion always runs in both modes.
// ---------------------------------------------------------------------------
type ZAiFixture = { match: string; result: string }
type ZAiRequestCapture = { maxTokens?: number }
function getBaseZAiConfiguration() {
return {
apiProvider: "zai" as const,
zaiApiKey: ZAI_API_KEY ?? "mock-key",
zaiApiLine: "international_api" as const,
modelMaxTokens: undefined,
modelMaxThinkingTokens: undefined,
}
}
function installZAiFetchInterceptor(
fixtures: ZAiFixture[],
capture?: ZAiRequestCapture,
passthrough?: boolean,
): () => void {
const original = globalThis.fetch
globalThis.fetch = async function (input: RequestInfo | URL, init?: RequestInit): Promise<Response> {
const url = typeof input === "string" ? input : input instanceof URL ? input.href : (input as Request).url
if (url.includes("api.z.ai")) {
const body = init?.body
? (JSON.parse(init.body as string) as {
messages?: Array<{ role: string; content: unknown }>
max_tokens?: number
})
: {}
if (capture) {
capture.maxTokens = body.max_tokens
}
if (passthrough) {
return original.call(globalThis, input, init as RequestInit)
}
const messages = body.messages ?? []
const lastUser = [...messages].reverse().find((m) => m.role === "user")
const text =
typeof lastUser?.content === "string" ? lastUser.content : JSON.stringify(lastUser?.content ?? "")
const fixture = fixtures.find((f) => text.includes(f.match))
if (!fixture) {
throw new Error(`Z.ai fetch interceptor: no fixture matched. Last user message: ${text.slice(0, 200)}`)
}
return makeZAiSSEResponse(fixture.result)
}
return original.call(globalThis, input, init as RequestInit)
} as typeof globalThis.fetch
return () => {
globalThis.fetch = original
}
}
function makeZAiSSEResponse(result: string): Response {
const enc = new TextEncoder()
const args = JSON.stringify({ result })
const id = "mock-zai-001"
const model = "glm-5.1"
const chunks = [
{
id,
object: "chat.completion.chunk",
model,
choices: [{ index: 0, delta: { role: "assistant", content: null }, finish_reason: null }],
},
{
id,
object: "chat.completion.chunk",
model,
choices: [
{
index: 0,
delta: {
tool_calls: [
{
index: 0,
id: "call_zai_001",
type: "function",
function: { name: "attempt_completion", arguments: "" },
},
],
},
finish_reason: null,
},
],
},
{
id,
object: "chat.completion.chunk",
model,
choices: [
{
index: 0,
delta: { tool_calls: [{ index: 0, function: { arguments: args } }] },
finish_reason: null,
},
],
},
{
id,
object: "chat.completion.chunk",
model,
choices: [{ index: 0, delta: {}, finish_reason: "tool_calls" }],
usage: { prompt_tokens: 50, completion_tokens: 10, total_tokens: 60 },
},
]
let i = 0
const stream = new ReadableStream<Uint8Array>({
pull(controller) {
if (i < chunks.length) {
controller.enqueue(enc.encode(`data: ${JSON.stringify(chunks[i++])}\n\n`))
} else {
controller.enqueue(enc.encode("data: [DONE]\n\n"))
controller.close()
}
},
})
return new Response(stream, {
status: 200,
headers: { "content-type": "text/event-stream", "cache-control": "no-cache" },
})
}
// ---------------------------------------------------------------------------
// Suite
// ---------------------------------------------------------------------------
const ZAI_API_KEY = process.env.ZAI_API_KEY
suite("Z.ai GLM provider", function () {
setDefaultSuiteTimeout(this)
let restoreFetch: (() => void) | undefined
const requestCapture: ZAiRequestCapture = {}
setup(() => {
requestCapture.maxTokens = undefined
})
suiteSetup(async () => {
restoreFetch = installZAiFetchInterceptor(
[
{ match: "zai-glm-e2e:", result: "4" },
{ match: "zai-glm-5-turbo-e2e:", result: "4" },
],
requestCapture,
!!ZAI_API_KEY,
)
await globalThis.api.upsertProfile(
"default",
{
...getBaseZAiConfiguration(),
apiModelId: "glm-5.1",
},
true,
)
})
suiteTeardown(async () => {
restoreFetch?.()
restoreFetch = undefined
const aimockUrl = process.env.AIMOCK_URL
const isRecord = process.env.AIMOCK_RECORD === "true"
await globalThis.api.upsertProfile(
"default",
{
apiProvider: "openrouter" as const,
openRouterApiKey: aimockUrl && !isRecord ? "mock-key" : process.env.OPENROUTER_API_KEY!,
openRouterModelId: "openai/gpt-4.1",
...(aimockUrl && { openRouterBaseUrl: `${aimockUrl}/v1` }),
},
true,
)
})
test("Should complete a task end-to-end using glm-5.1 via Z.ai provider", async () => {
const api = globalThis.api
const messages: ClineMessage[] = []
api.on(RooCodeEventName.Message, ({ message }) => {
if (message.type === "say" && message.partial === false) {
messages.push(message)
}
})
const taskId = await api.startNewTask({
configuration: { mode: "ask", alwaysAllowModeSwitch: true, autoApprovalEnabled: true },
text: "zai-glm-e2e: what is 2+2? Reply with only the number.",
})
await waitUntilCompleted({ api, taskId })
const capturedMaxTokens = requestCapture.maxTokens
const completionMessage = messages.find(
({ say, text }) => (say === "completion_result" || say === "text") && text?.trim() === "4",
)
assert.ok(completionMessage, "Task should complete with the expected Z.ai GLM response")
// Verify max_tokens uses the restored default clamp (20% of context window)
// unless the user explicitly overrides it via modelMaxTokens.
// Snapshot immediately after waitUntilCompleted to avoid straggling async calls
// from this task overwriting requestCapture before the assertion runs.
assert.strictEqual(
capturedMaxTokens,
40_000,
`max_tokens should default to the glm-5.1 clamp (40_000) but was ${capturedMaxTokens}`,
)
})
test("Should complete a task end-to-end using glm-5-turbo via Z.ai provider", async () => {
await globalThis.api.upsertProfile(
"default",
{
...getBaseZAiConfiguration(),
apiModelId: "glm-5-turbo",
},
true,
)
const api = globalThis.api
const messages: ClineMessage[] = []
api.on(RooCodeEventName.Message, ({ message }) => {
if (message.type === "say" && message.partial === false) {
messages.push(message)
}
})
const taskId = await api.startNewTask({
configuration: { mode: "ask", alwaysAllowModeSwitch: true, autoApprovalEnabled: true },
text: "zai-glm-5-turbo-e2e: what is 2+2? Reply with only the number.",
})
await waitUntilCompleted({ api, taskId })
const capturedMaxTokens = requestCapture.maxTokens
const completionMessage = messages.find(
({ say, text }) => (say === "completion_result" || say === "text") && text?.trim() === "4",
)
assert.ok(completionMessage, "Task should complete with the expected Z.ai GLM-5-Turbo response")
// Verify max_tokens uses the restored default clamp (20% of context window)
// unless the user explicitly overrides it via modelMaxTokens.
// Snapshot immediately after waitUntilCompleted to avoid straggling async calls
// from the prior test overwriting requestCapture before this assertion runs.
assert.strictEqual(
capturedMaxTokens,
40_551,
`max_tokens should default to the glm-5-turbo clamp (40_551) but was ${capturedMaxTokens}`,
)
})
})