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

推荐订阅源

V
Visual Studio Blog
罗磊的独立博客
小众软件
小众软件
T
Tailwind CSS Blog
宝玉的分享
宝玉的分享
博客园_首页
N
Netflix TechBlog - Medium
B
Blog
Recent Announcements
Recent Announcements
Y
Y Combinator Blog
Blog — PlanetScale
Blog — PlanetScale
L
LangChain Blog
F
Fortinet All Blogs
The GitHub Blog
The GitHub Blog
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog
Last Week in AI
Last Week in AI
Jina AI
Jina AI
V
V2EX
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 叶小钗
博客园 - 【当耐特】

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
fix(e2e): bound openai chat tools client · openclaw/openc...
vincentkoc · 2026-05-27 · via Recent Commits to openclaw:main

@@ -0,0 +1,162 @@

1+

import { spawn } from "node:child_process";

2+

import { createServer, type Server } from "node:http";

3+

import path from "node:path";

4+

import { describe, expect, it } from "vitest";

5+6+

const clientPath = path.resolve("scripts/e2e/lib/openai-chat-tools/client.mjs");

7+8+

interface ClientResult {

9+

error?: Error;

10+

signal: NodeJS.Signals | null;

11+

status: number | null;

12+

stderr: string;

13+

stdout: string;

14+

}

15+16+

async function listen(server: Server): Promise<number> {

17+

await new Promise<void>((resolve, reject) => {

18+

server.once("error", reject);

19+

server.listen(0, "127.0.0.1", () => {

20+

server.off("error", reject);

21+

resolve();

22+

});

23+

});

24+

const address = server.address();

25+

if (!address || typeof address === "string") {

26+

throw new Error("test server did not expose a TCP port");

27+

}

28+

return address.port;

29+

}

30+31+

function runClient(

32+

port: number,

33+

env: Record<string, string> = {},

34+

timeout = 5_000,

35+

): Promise<ClientResult> {

36+

return new Promise((resolve) => {

37+

const child = spawn(process.execPath, [clientPath], {

38+

env: {

39+

...process.env,

40+

MODEL_REF: "openai/gpt-5.4-mini",

41+

OPENCLAW_GATEWAY_TOKEN: "test-token",

42+

OPENCLAW_OPENAI_CHAT_TOOLS_TIMEOUT_SECONDS: "1",

43+

PORT: String(port),

44+

...env,

45+

},

46+

stdio: ["ignore", "pipe", "pipe"],

47+

});

48+

let stdout = "";

49+

let stderr = "";

50+

let timedOut = false;

51+

child.stdout.setEncoding("utf8");

52+

child.stderr.setEncoding("utf8");

53+

child.stdout.on("data", (chunk) => {

54+

stdout += chunk;

55+

});

56+

child.stderr.on("data", (chunk) => {

57+

stderr += chunk;

58+

});

59+

const timer = setTimeout(() => {

60+

timedOut = true;

61+

child.kill("SIGKILL");

62+

}, timeout);

63+

child.on("error", (error) => {

64+

clearTimeout(timer);

65+

resolve({ error, signal: null, status: null, stderr, stdout });

66+

});

67+

child.on("exit", (status, signal) => {

68+

clearTimeout(timer);

69+

resolve({

70+

error: timedOut ? new Error(`client timed out after ${timeout}ms`) : undefined,

71+

signal,

72+

status,

73+

stderr,

74+

stdout,

75+

});

76+

});

77+

});

78+

}

79+80+

function toolCallResponse() {

81+

return {

82+

choices: [

83+

{

84+

finish_reason: "tool_calls",

85+

message: {

86+

tool_calls: [

87+

{

88+

type: "function",

89+

function: {

90+

name: "get_weather",

91+

arguments: JSON.stringify({ city: "Paris, France" }),

92+

},

93+

},

94+

],

95+

},

96+

},

97+

],

98+

};

99+

}

100+101+

describe("scripts/e2e/lib/openai-chat-tools/client.mjs", () => {

102+

it("accepts a matching chat completions tool call response", async () => {

103+

const server = createServer((request, response) => {

104+

expect(request.method).toBe("POST");

105+

expect(request.url).toBe("/v1/chat/completions");

106+

expect(request.headers.authorization).toBe("Bearer test-token");

107+

expect(request.headers["x-openclaw-model"]).toBe("openai/gpt-5.4-mini");

108+

response.writeHead(200, { "content-type": "application/json" });

109+

response.end(JSON.stringify(toolCallResponse()));

110+

});

111+

const port = await listen(server);

112+

try {

113+

const result = await runClient(port);

114+115+

expect(result.status).toBe(0);

116+

expect(JSON.parse(result.stdout)).toMatchObject({

117+

args: { city: "Paris, France" },

118+

finishReason: "tool_calls",

119+

ok: true,

120+

toolName: "get_weather",

121+

});

122+

} finally {

123+

server.close();

124+

}

125+

});

126+127+

it("keeps the request timeout active while reading the response body", async () => {

128+

const server = createServer((_request, response) => {

129+

response.writeHead(200, { "content-type": "application/json" });

130+

response.write('{"choices":');

131+

});

132+

const port = await listen(server);

133+

const startedAt = Date.now();

134+

try {

135+

const result = await runClient(port, {}, 4_000);

136+

const elapsedMs = Date.now() - startedAt;

137+138+

expect(result.error).toBeUndefined();

139+

expect(result.status).not.toBe(0);

140+

expect(result.stderr).toMatch(/aborted|AbortError/iu);

141+

expect(elapsedMs).toBeLessThan(3_500);

142+

} finally {

143+

server.close();

144+

}

145+

});

146+147+

it("caps chat completion response bodies before JSON parsing", async () => {

148+

const server = createServer((_request, response) => {

149+

response.writeHead(200, { "content-type": "application/json" });

150+

response.end("x".repeat(256));

151+

});

152+

const port = await listen(server);

153+

try {

154+

const result = await runClient(port, { OPENCLAW_OPENAI_CHAT_TOOLS_MAX_BODY_BYTES: "64" });

155+156+

expect(result.status).not.toBe(0);

157+

expect(result.stderr).toContain("chat completions response body exceeded 64 bytes");

158+

} finally {

159+

server.close();

160+

}

161+

});

162+

});