惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
P
Proofpoint News Feed
宝玉的分享
宝玉的分享
人人都是产品经理
人人都是产品经理
博客园_首页
爱范儿
爱范儿
博客园 - 叶小钗
aimingoo的专栏
aimingoo的专栏
S
SegmentFault 最新的问题
MyScale Blog
MyScale Blog
阮一峰的网络日志
阮一峰的网络日志
IT之家
IT之家
Microsoft Security Blog
Microsoft Security Blog
Blog — PlanetScale
Blog — PlanetScale
博客园 - 【当耐特】
Y
Y Combinator Blog
量子位
博客园 - 三生石上(FineUI控件)
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
T
The Blog of Author Tim Ferriss
月光博客
月光博客
有赞技术团队
有赞技术团队
Apple Machine Learning Research
Apple Machine Learning Research
A
About on SuperTechFans

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
test: dedupe openai http agent mock calls · openclaw/open...
steipete · 2026-05-12 · via Recent Commits to openclaw:main

@@ -94,6 +94,30 @@ function parseSseDataLines(text: string): string[] {

9494

.map((line) => line.slice("data: ".length));

9595

}

969697+

type FirstAgentCommandOptions = {

98+

clientTools?: Array<{

99+

function?: {

100+

description?: string;

101+

name?: string;

102+

parameters?: Record<string, unknown>;

103+

strict?: boolean;

104+

};

105+

type?: string;

106+

}>;

107+

extraSystemPrompt?: string;

108+

images?: Array<{ data: string; mimeType: string; type: string }>;

109+

message?: string;

110+

messageChannel?: string;

111+

model?: string;

112+

senderIsOwner?: boolean;

113+

sessionKey?: string;

114+

streamParams?: { maxTokens?: number };

115+

};

116+117+

function firstAgentCommandOptions() {

118+

return agentCommand.mock.calls.at(0)?.[0] as FirstAgentCommandOptions | undefined;

119+

}

120+97121

describe("OpenAI-compatible HTTP API (e2e)", () => {

98122

it("handles request validation and routing", async () => {

99123

const port = enabledPort;

@@ -110,10 +134,7 @@ describe("OpenAI-compatible HTTP API (e2e)", () => {

110134

const res = await postChatCompletions(port, request.body, request.headers);

111135

expect(res.status).toBe(200);

112136

expect(agentCommand).toHaveBeenCalledTimes(1);

113-

const opts = (agentCommand.mock.calls[0] as unknown[] | undefined)?.[0];

114-

expect((opts as { sessionKey?: string } | undefined)?.sessionKey ?? "").toMatch(

115-

request.matcher,

116-

);

137+

expect(firstAgentCommandOptions()?.sessionKey ?? "").toMatch(request.matcher);

117138

await res.text();

118139

};

119140

const expectMessageContext = (

@@ -129,26 +150,7 @@ describe("OpenAI-compatible HTTP API (e2e)", () => {

129150

expect(message).toContain(line);

130151

}

131152

};

132-

const getFirstAgentCall = () =>

133-

(agentCommand.mock.calls[0] as unknown[] | undefined)?.[0] as

134-

| {

135-

sessionKey?: string;

136-

messageChannel?: string;

137-

message?: string;

138-

extraSystemPrompt?: string;

139-

images?: Array<{ type: string; data: string; mimeType: string }>;

140-

clientTools?: Array<{

141-

type?: string;

142-

function?: {

143-

name?: string;

144-

description?: string;

145-

parameters?: Record<string, unknown>;

146-

strict?: boolean;

147-

};

148-

}>;

149-

senderIsOwner?: boolean;

150-

}

151-

| undefined;

153+

const getFirstAgentCall = () => firstAgentCommandOptions();

152154

const getFirstAgentMessage = () => getFirstAgentCall()?.message ?? "";

153155

const expectInvalidRequestNoDispatch = async (messages: unknown[]) => {

154156

agentCommand.mockClear();

@@ -233,10 +235,7 @@ describe("OpenAI-compatible HTTP API (e2e)", () => {

233235

);

234236

expect(res.status).toBe(200);

235237236-

const opts = (agentCommand.mock.calls[0] as unknown[] | undefined)?.[0];

237-

expect((opts as { sessionKey?: string } | undefined)?.sessionKey).toBe(

238-

"agent:beta:openai:custom",

239-

);

238+

expect(firstAgentCommandOptions()?.sessionKey).toBe("agent:beta:openai:custom");

240239

await res.text();

241240

}

242241

@@ -249,10 +248,7 @@ describe("OpenAI-compatible HTTP API (e2e)", () => {

249248

});

250249

expect(res.status).toBe(200);

251250252-

const opts = (agentCommand.mock.calls[0] as unknown[] | undefined)?.[0];

253-

expect((opts as { sessionKey?: string } | undefined)?.sessionKey ?? "").toContain(

254-

"openai-user:alice",

255-

);

251+

expect(firstAgentCommandOptions()?.sessionKey ?? "").toContain("openai-user:alice");

256252

await res.text();

257253

}

258254

@@ -284,8 +280,7 @@ describe("OpenAI-compatible HTTP API (e2e)", () => {

284280

},

285281

);

286282

expect(res.status).toBe(200);

287-

const opts = (agentCommand.mock.calls[0] as unknown[] | undefined)?.[0];

288-

expect((opts as { model?: string } | undefined)?.model).toBe("openai/gpt-5.4");

283+

expect(firstAgentCommandOptions()?.model).toBe("openai/gpt-5.4");

289284

await res.text();

290285

}

291286

@@ -312,8 +307,7 @@ describe("OpenAI-compatible HTTP API (e2e)", () => {

312307

},

313308

);

314309

expect(res.status).toBe(200);

315-

const opts = (agentCommand.mock.calls[0] as unknown[] | undefined)?.[0];

316-

expect((opts as { model?: string } | undefined)?.model).toBe("gpt-5.4");

310+

expect(firstAgentCommandOptions()?.model).toBe("gpt-5.4");

317311

await res.text();

318312

await writeGatewayConfig({});

319313

}

@@ -366,8 +360,7 @@ describe("OpenAI-compatible HTTP API (e2e)", () => {

366360

});

367361

expect(res.status).toBe(200);

368362369-

const opts = (agentCommand.mock.calls[0] as unknown[] | undefined)?.[0];

370-

expect((opts as { message?: string } | undefined)?.message).toBe("hello\nworld");

363+

expect(firstAgentCommandOptions()?.message).toBe("hello\nworld");

371364

await res.text();

372365

}

373366

@@ -1279,11 +1272,7 @@ describe("OpenAI-compatible HTTP API (e2e)", () => {

12791272

agentCommand.mockClear();

12801273

agentCommand.mockResolvedValueOnce({ payloads } as never);

12811274

};

1282-

const getFirstAgentMaxTokens = () => {

1283-

const opts = (agentCommand.mock.calls[0] as unknown[] | undefined)?.[0];

1284-

return (opts as { streamParams?: { maxTokens?: number } } | undefined)?.streamParams

1285-

?.maxTokens;

1286-

};

1275+

const getFirstAgentMaxTokens = () => firstAgentCommandOptions()?.streamParams?.maxTokens;

1287127612881277

{

12891278

mockAgentOnce([{ text: "hello" }]);

@@ -2037,10 +2026,7 @@ describe("OpenAI-compatible HTTP API (e2e)", () => {

20372026

});

2038202720392028

expect(res.status).toBe(200);

2040-

const firstCall = (agentCommand.mock.calls[0] as unknown[] | undefined)?.[0] as

2041-

| { senderIsOwner?: boolean }

2042-

| undefined;

2043-

expect(firstCall?.senderIsOwner).toBe(true);

2029+

expect(firstAgentCommandOptions()?.senderIsOwner).toBe(true);

20442030

await res.text();

20452031

} finally {

20462032

await server.close({ reason: "openai token auth owner test done" });