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

推荐订阅源

WordPress大学
WordPress大学
G
Google Developers Blog
M
MIT News - Artificial intelligence
Vercel News
Vercel News
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
GbyAI
GbyAI
B
Blog RSS Feed
Blog — PlanetScale
Blog — PlanetScale
Microsoft Security Blog
Microsoft Security Blog
V
Visual Studio Blog
Stack Overflow Blog
Stack Overflow Blog
雷峰网
雷峰网
The Cloudflare Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
F
Fortinet All Blogs
L
LangChain Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
A
About on SuperTechFans
T
The Blog of Author Tim Ferriss
B
Blog
J
Java Code Geeks
Hugging Face - Blog
Hugging Face - Blog
I
InfoQ
让小产品的独立变现更简单 - 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(qqbot): bound stt error bodies · openclaw/openclaw@e0...
vincentkoc · 2026-06-19 · via Recent Commits to openclaw:main
11

// Qqbot tests cover stt plugin behavior.

22

import * as fs from "node:fs";

3-

import * as os from "node:os";

43

import * as path from "node:path";

54

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

5+

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

6677

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

88

fetchWithSsrFGuard: vi.fn(),

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

19192020

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

212122+

const tempDirs = createTempDirTracker();

23+24+

function cancelTrackedResponse(

25+

text: string,

26+

init: ResponseInit,

27+

): {

28+

response: Response;

29+

wasCanceled: () => boolean;

30+

} {

31+

let canceled = false;

32+

const stream = new ReadableStream<Uint8Array>({

33+

start(controller) {

34+

controller.enqueue(new TextEncoder().encode(text));

35+

},

36+

cancel() {

37+

canceled = true;

38+

},

39+

});

40+

return {

41+

response: new Response(stream, init),

42+

wasCanceled: () => canceled,

43+

};

44+

}

45+2246

function requireFirstSsrfRequest(): {

2347

url?: unknown;

2448

auditContext?: unknown;

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

4771

});

48724973

afterEach(() => {

74+

tempDirs.cleanup();

5075

ssrfRuntimeMocks.fetchWithSsrFGuard.mockReset();

5176

vi.unstubAllGlobals();

5277

});

@@ -110,7 +135,7 @@ describe("engine/utils/stt", () => {

110135

});

111136112137

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

113-

const tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-qqbot-stt-"));

138+

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

114139

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

115140

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

116141

@@ -153,4 +178,45 @@ describe("engine/utils/stt", () => {

153178

);

154179

expect(release).toHaveBeenCalledTimes(1);

155180

});

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+

});

198+199+

let error: unknown;

200+

try {

201+

await transcribeAudio(audioPath, {

202+

channels: {

203+

qqbot: {

204+

stt: {

205+

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

206+

apiKey: "secret",

207+

model: "whisper-1",

208+

},

209+

},

210+

},

211+

});

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);

221+

});

156222

});