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

推荐订阅源

大猫的无限游戏
大猫的无限游戏
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园_首页
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
D
Docker
酷 壳 – CoolShell
酷 壳 – CoolShell
宝玉的分享
宝玉的分享
Martin Fowler
Martin Fowler
美团技术团队
量子位
M
MIT News - Artificial intelligence
Apple Machine Learning Research
Apple Machine Learning Research
阮一峰的网络日志
阮一峰的网络日志
博客园 - 叶小钗
博客园 - 三生石上(FineUI控件)
腾讯CDC
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
小众软件
小众软件
博客园 - 司徒正美
罗磊的独立博客
云风的 BLOG
云风的 BLOG
B
Blog RSS Feed
博客园 - 聂微东

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(discord): make native opus opt-in · openclaw/openclaw...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -1,4 +1,4 @@

1-

import type { Readable } from "node:stream";

1+

import { PassThrough, type Readable } from "node:stream";

22

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

33

import { ChannelType } from "../internal/discord.js";

44

import { createVoiceCaptureState } from "./capture-state.js";

@@ -1223,9 +1223,70 @@ describe("DiscordVoiceManager", () => {

12231223

);

12241224

});

122512251226+

it("skips incomplete and non-actionable forced agent-proxy transcripts", async () => {

1227+

agentCommandMock.mockResolvedValueOnce({ payloads: [{ text: "valid answer" }] });

1228+

const manager = createManager({

1229+

groupPolicy: "open",

1230+

voice: {

1231+

enabled: true,

1232+

mode: "agent-proxy",

1233+

realtime: { provider: "openai" },

1234+

},

1235+

});

1236+1237+

await manager.join({ guildId: "g1", channelId: "1001" });

1238+

const entry = getSessionEntry(manager) as {

1239+

realtime?: {

1240+

beginSpeakerTurn: (

1241+

context: { extraSystemPrompt?: string; senderIsOwner: boolean; speakerLabel: string },

1242+

userId: string,

1243+

) => { close: () => void; sendInputAudio: (audio: Buffer) => void };

1244+

};

1245+

};

1246+

const bridgeParams = createRealtimeVoiceBridgeSessionMock.mock.calls.at(-1)?.[0] as

1247+

| {

1248+

onTranscript?: (role: "user" | "assistant", text: string, isFinal: boolean) => void;

1249+

}

1250+

| undefined;

1251+1252+

const incompleteTurn = entry.realtime?.beginSpeakerTurn(

1253+

{ extraSystemPrompt: undefined, senderIsOwner: true, speakerLabel: "Owner" },

1254+

"u-owner",

1255+

);

1256+

incompleteTurn?.sendInputAudio(Buffer.alloc(8));

1257+

bridgeParams?.onTranscript?.("user", "Get this working and...", true);

1258+1259+

const closingTurn = entry.realtime?.beginSpeakerTurn(

1260+

{ extraSystemPrompt: undefined, senderIsOwner: true, speakerLabel: "Owner" },

1261+

"u-owner",

1262+

);

1263+

closingTurn?.sendInputAudio(Buffer.alloc(8));

1264+

bridgeParams?.onTranscript?.("user", "I'll be right back. See you guys. Bye-bye.", true);

1265+1266+

await new Promise((resolve) => setTimeout(resolve, 260));

1267+

expect(agentCommandMock).not.toHaveBeenCalled();

1268+1269+

const validTurn = entry.realtime?.beginSpeakerTurn(

1270+

{ extraSystemPrompt: undefined, senderIsOwner: true, speakerLabel: "Owner" },

1271+

"u-owner",

1272+

);

1273+

validTurn?.sendInputAudio(Buffer.alloc(8));

1274+

bridgeParams?.onTranscript?.("user", "ship it.", true);

1275+1276+

await new Promise((resolve) => setTimeout(resolve, 260));

1277+

expect(agentCommandMock).toHaveBeenCalledWith(

1278+

expect.objectContaining({ message: expect.stringContaining("ship it.") }),

1279+

expect.anything(),

1280+

);

1281+

expect(realtimeSessionMock.sendUserMessage).toHaveBeenCalledWith(

1282+

expect.stringContaining("valid answer"),

1283+

);

1284+

});

1285+12261286

it("queues forced agent-proxy answers until current realtime playback idles", async () => {

12271287

let resolveFirst: ((value: { payloads: Array<{ text: string }> }) => void) | undefined;

12281288

let resolveSecond: ((value: { payloads: Array<{ text: string }> }) => void) | undefined;

1289+

let resolveThird: ((value: { payloads: Array<{ text: string }> }) => void) | undefined;

12291290

agentCommandMock

12301291

.mockImplementationOnce(

12311292

() =>

@@ -1238,6 +1299,12 @@ describe("DiscordVoiceManager", () => {

12381299

new Promise<{ payloads: Array<{ text: string }> }>((resolve) => {

12391300

resolveSecond = resolve;

12401301

}),

1302+

)

1303+

.mockImplementationOnce(

1304+

() =>

1305+

new Promise<{ payloads: Array<{ text: string }> }>((resolve) => {

1306+

resolveThird = resolve;

1307+

}),

12411308

);

12421309

const manager = createManager({

12431310

groupPolicy: "open",

@@ -1263,6 +1330,7 @@ describe("DiscordVoiceManager", () => {

12631330

const bridgeParams = createRealtimeVoiceBridgeSessionMock.mock.calls.at(-1)?.[0] as

12641331

| {

12651332

audioSink?: { sendAudio: (audio: Buffer) => void };

1333+

onEvent?: (event: { direction: "server"; type: string }) => void;

12661334

onTranscript?: (role: "user" | "assistant", text: string, isFinal: boolean) => void;

12671335

}

12681336

| undefined;

@@ -1279,6 +1347,12 @@ describe("DiscordVoiceManager", () => {

12791347

);

12801348

secondTurn?.sendInputAudio(Buffer.alloc(8));

12811349

bridgeParams?.onTranscript?.("user", "second question", true);

1350+

const thirdTurn = entry.realtime?.beginSpeakerTurn(

1351+

{ extraSystemPrompt: undefined, senderIsOwner: true, speakerLabel: "Owner" },

1352+

"u-owner",

1353+

);

1354+

thirdTurn?.sendInputAudio(Buffer.alloc(8));

1355+

bridgeParams?.onTranscript?.("user", "third question", true);

12821356

await new Promise((resolve) => setTimeout(resolve, 260));

1283135712841358

resolveFirst?.({ payloads: [{ text: "first answer" }] });

@@ -1290,6 +1364,18 @@ describe("DiscordVoiceManager", () => {

12901364

bridgeParams?.audioSink?.sendAudio(Buffer.alloc(480));

1291136512921366

resolveSecond?.({ payloads: [{ text: "second answer" }] });

1367+

resolveThird?.({ payloads: [{ text: "third answer" }] });

1368+

await new Promise((resolve) => setTimeout(resolve, 0));

1369+

expect(realtimeSessionMock.sendUserMessage).not.toHaveBeenCalledWith(

1370+

expect.stringContaining("second answer"),

1371+

);

1372+

expect(realtimeSessionMock.sendUserMessage).not.toHaveBeenCalledWith(

1373+

expect.stringContaining("third answer"),

1374+

);

1375+1376+

bridgeParams?.onEvent?.({ direction: "server", type: "response.done" });

1377+

const firstStream = createAudioResourceMock.mock.calls.at(-1)?.[0] as PassThrough | undefined;

1378+

await vi.waitFor(() => expect(firstStream?.writableEnded).toBe(true));

12931379

await new Promise((resolve) => setTimeout(resolve, 0));

12941380

expect(realtimeSessionMock.sendUserMessage).not.toHaveBeenCalledWith(

12951381

expect.stringContaining("second answer"),

@@ -1302,6 +1388,23 @@ describe("DiscordVoiceManager", () => {

13021388

expect(realtimeSessionMock.sendUserMessage).toHaveBeenCalledWith(

13031389

expect.stringContaining("second answer"),

13041390

);

1391+

expect(realtimeSessionMock.sendUserMessage).not.toHaveBeenCalledWith(

1392+

expect.stringContaining("third answer"),

1393+

);

1394+1395+

bridgeParams?.audioSink?.sendAudio(Buffer.alloc(480));

1396+

bridgeParams?.onEvent?.({ direction: "server", type: "response.done" });

1397+

const secondStream = createAudioResourceMock.mock.calls.at(-1)?.[0] as PassThrough | undefined;

1398+

await vi.waitFor(() => expect(secondStream?.writableEnded).toBe(true));

1399+

await new Promise((resolve) => setTimeout(resolve, 0));

1400+

expect(realtimeSessionMock.sendUserMessage).not.toHaveBeenCalledWith(

1401+

expect.stringContaining("third answer"),

1402+

);

1403+1404+

idleHandler?.();

1405+

expect(realtimeSessionMock.sendUserMessage).toHaveBeenCalledWith(

1406+

expect.stringContaining("third answer"),

1407+

);

13051408

});

1306140913071410

it("matches agent-proxy consult tool calls to the pending transcript", async () => {