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

推荐订阅源

S
SegmentFault 最新的问题
G
Google Developers Blog
Stack Overflow Blog
Stack Overflow Blog
WordPress大学
WordPress大学
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
罗磊的独立博客
月光博客
月光博客
IT之家
IT之家
爱范儿
爱范儿
Google DeepMind News
Google DeepMind News
小众软件
小众软件
C
Check Point Blog
B
Blog RSS Feed
H
Help Net Security
博客园 - 司徒正美
L
LangChain Blog
MongoDB | Blog
MongoDB | Blog
B
Blog
The Cloudflare Blog
Apple Machine Learning Research
Apple Machine Learning Research
Microsoft Security Blog
Microsoft Security Blog
M
MIT News - Artificial intelligence
N
Netflix TechBlog - Medium
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

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(qqbot): keep stt temp helper on sdk surface · opencl...
vincentkoc · 2026-06-19 · via Recent Commits to openclaw:main

@@ -2,7 +2,7 @@

22

import * as fs from "node:fs";

33

import * as path from "node:path";

44

import { afterAll, afterEach, beforeEach, describe, expect, it, vi } from "vitest";

5-

import { createTempDirTracker } from "../../../../../test/helpers/temp-dir.js";

5+

import { withTempDir } from "openclaw/plugin-sdk/test-env";

6677

const ssrfRuntimeMocks = vi.hoisted(() => ({

88

fetchWithSsrFGuard: vi.fn(),

@@ -19,8 +19,6 @@ afterAll(() => {

19192020

import { resolveSTTConfig, transcribeAudio } from "./stt.js";

212122-

const tempDirs = createTempDirTracker();

23-2422

function cancelTrackedResponse(

2523

text: string,

2624

init: ResponseInit,

@@ -71,7 +69,6 @@ describe("engine/utils/stt", () => {

7169

});

72707371

afterEach(() => {

74-

tempDirs.cleanup();

7572

ssrfRuntimeMocks.fetchWithSsrFGuard.mockReset();

7673

vi.unstubAllGlobals();

7774

});

@@ -135,70 +132,19 @@ describe("engine/utils/stt", () => {

135132

});

136133137134

it("posts audio to OpenAI-compatible transcription endpoint", async () => {

138-

const tmpDir = tempDirs.make("openclaw-qqbot-stt-");

139-

const audioPath = path.join(tmpDir, "voice.wav");

140-

fs.writeFileSync(audioPath, Buffer.from([1, 2, 3, 4]));

141-142-

const release = vi.fn(async () => {});

143-

ssrfRuntimeMocks.fetchWithSsrFGuard.mockResolvedValueOnce({

144-

response: Response.json({

145-

text: "hello from audio",

146-

}),

147-

release,

148-

});

149-150-

const transcript = await transcribeAudio(audioPath, {

151-

channels: {

152-

qqbot: {

153-

stt: {

154-

baseUrl: "https://api.example.test/v1/",

155-

apiKey: "secret",

156-

model: "whisper-1",

157-

},

158-

},

159-

},

160-

});

161-162-

expect(transcript).toBe("hello from audio");

163-

expect(ssrfRuntimeMocks.fetchWithSsrFGuard).toHaveBeenCalledTimes(1);

164-

const request = requireFirstSsrfRequest();

165-

expect(request.url).toBe("https://api.example.test/v1/audio/transcriptions");

166-

expect(request.auditContext).toBe("qqbot-stt");

167-

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

168-

expect(request.init?.headers).toEqual({ Authorization: "Bearer secret" });

169-

expect(request.init?.body).toBeInstanceOf(FormData);

170-

const body = request.init?.body as FormData;

171-

expect(body.get("model")).toBe("whisper-1");

172-

const file = body.get("file");

173-

expect(file).toBeInstanceOf(File);

174-

expect((file as File).name).toBe("voice.wav");

175-

expect((file as File).type).toBe("audio/wav");

176-

expect(new Uint8Array(await (file as File).arrayBuffer())).toEqual(

177-

new Uint8Array([1, 2, 3, 4]),

178-

);

179-

expect(release).toHaveBeenCalledTimes(1);

180-

});

181-182-

it("bounds STT error bodies without using response.text()", async () => {

183-

const tmpDir = tempDirs.make("openclaw-qqbot-stt-error-");

184-

const audioPath = path.join(tmpDir, "voice.wav");

185-

fs.writeFileSync(audioPath, Buffer.from([1, 2, 3, 4]));

186-187-

const release = vi.fn(async () => {});

188-

const tracked = cancelTrackedResponse(`${"stt provider unavailable ".repeat(1024)}tail`, {

189-

status: 503,

190-

statusText: "Service Unavailable",

191-

headers: { "content-type": "text/plain" },

192-

});

193-

const textSpy = vi.spyOn(tracked.response, "text").mockRejectedValue(new Error("unbounded"));

194-

ssrfRuntimeMocks.fetchWithSsrFGuard.mockResolvedValueOnce({

195-

response: tracked.response,

196-

release,

197-

});

135+

await withTempDir("openclaw-qqbot-stt-", async (tmpDir) => {

136+

const audioPath = path.join(tmpDir, "voice.wav");

137+

fs.writeFileSync(audioPath, Buffer.from([1, 2, 3, 4]));

138+139+

const release = vi.fn(async () => {});

140+

ssrfRuntimeMocks.fetchWithSsrFGuard.mockResolvedValueOnce({

141+

response: Response.json({

142+

text: "hello from audio",

143+

}),

144+

release,

145+

});

198146199-

let error: unknown;

200-

try {

201-

await transcribeAudio(audioPath, {

147+

const transcript = await transcribeAudio(audioPath, {

202148

channels: {

203149

qqbot: {

204150

stt: {

@@ -209,14 +155,67 @@ describe("engine/utils/stt", () => {

209155

},

210156

},

211157

});

212-

} catch (caught) {

213-

error = caught;

214-

}

215-216-

expect(String(error)).toContain("STT failed (HTTP 503): stt provider unavailable");

217-

expect(String(error)).not.toContain("tail");

218-

expect(tracked.wasCanceled()).toBe(true);

219-

expect(textSpy).not.toHaveBeenCalled();

220-

expect(release).toHaveBeenCalledTimes(1);

158+159+

expect(transcript).toBe("hello from audio");

160+

expect(ssrfRuntimeMocks.fetchWithSsrFGuard).toHaveBeenCalledTimes(1);

161+

const request = requireFirstSsrfRequest();

162+

expect(request.url).toBe("https://api.example.test/v1/audio/transcriptions");

163+

expect(request.auditContext).toBe("qqbot-stt");

164+

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

165+

expect(request.init?.headers).toEqual({ Authorization: "Bearer secret" });

166+

expect(request.init?.body).toBeInstanceOf(FormData);

167+

const body = request.init?.body as FormData;

168+

expect(body.get("model")).toBe("whisper-1");

169+

const file = body.get("file");

170+

expect(file).toBeInstanceOf(File);

171+

expect((file as File).name).toBe("voice.wav");

172+

expect((file as File).type).toBe("audio/wav");

173+

expect(new Uint8Array(await (file as File).arrayBuffer())).toEqual(

174+

new Uint8Array([1, 2, 3, 4]),

175+

);

176+

expect(release).toHaveBeenCalledTimes(1);

177+

});

178+

});

179+180+

it("bounds STT error bodies without using response.text()", async () => {

181+

await withTempDir("openclaw-qqbot-stt-error-", async (tmpDir) => {

182+

const audioPath = path.join(tmpDir, "voice.wav");

183+

fs.writeFileSync(audioPath, Buffer.from([1, 2, 3, 4]));

184+185+

const release = vi.fn(async () => {});

186+

const tracked = cancelTrackedResponse(`${"stt provider unavailable ".repeat(1024)}tail`, {

187+

status: 503,

188+

statusText: "Service Unavailable",

189+

headers: { "content-type": "text/plain" },

190+

});

191+

const textSpy = vi.spyOn(tracked.response, "text").mockRejectedValue(new Error("unbounded"));

192+

ssrfRuntimeMocks.fetchWithSsrFGuard.mockResolvedValueOnce({

193+

response: tracked.response,

194+

release,

195+

});

196+197+

let error: unknown;

198+

try {

199+

await transcribeAudio(audioPath, {

200+

channels: {

201+

qqbot: {

202+

stt: {

203+

baseUrl: "https://api.example.test/v1/",

204+

apiKey: "secret",

205+

model: "whisper-1",

206+

},

207+

},

208+

},

209+

});

210+

} catch (caught) {

211+

error = caught;

212+

}

213+214+

expect(String(error)).toContain("STT failed (HTTP 503): stt provider unavailable");

215+

expect(String(error)).not.toContain("tail");

216+

expect(tracked.wasCanceled()).toBe(true);

217+

expect(textSpy).not.toHaveBeenCalled();

218+

expect(release).toHaveBeenCalledTimes(1);

219+

});

221220

});

222221

});