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

推荐订阅源

aimingoo的专栏
aimingoo的专栏
Engineering at Meta
Engineering at Meta
有赞技术团队
有赞技术团队
博客园_首页
Apple Machine Learning Research
Apple Machine Learning Research
Vercel News
Vercel News
G
Google Developers Blog
Blog — PlanetScale
Blog — PlanetScale
IT之家
IT之家
MongoDB | Blog
MongoDB | Blog
Y
Y Combinator Blog
B
Blog
The GitHub Blog
The GitHub Blog
M
MIT News - Artificial intelligence
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog
Microsoft Azure Blog
Microsoft Azure Blog
D
DataBreaches.Net
I
InfoQ
Recent Announcements
Recent Announcements
阮一峰的网络日志
阮一峰的网络日志
腾讯CDC
H
Help Net Security

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: tighten telnyx provider assertions · openclaw/openc...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -27,6 +27,24 @@ function createCtx(params?: Partial<WebhookContext>): WebhookContext {

2727

};

2828

}

292930+

function requireFetchRequest() {

31+

const request = apiMocks.fetchWithSsrFGuard.mock.calls[0]?.[0] as

32+

| {

33+

url?: string;

34+

auditContext?: string;

35+

policy?: unknown;

36+

init?: {

37+

method?: string;

38+

body?: unknown;

39+

};

40+

}

41+

| undefined;

42+

if (!request) {

43+

throw new Error("expected Telnyx provider to call fetchWithSsrFGuard");

44+

}

45+

return request;

46+

}

47+3048

function decodeBase64Url(input: string): Buffer {

3149

const normalized = input.replace(/-/g, "+").replace(/_/g, "/");

3250

const padLen = (4 - (normalized.length % 4)) % 4;

@@ -222,14 +240,11 @@ describe("TelnyxProvider.parseWebhookEvent", () => {

222240

);

223241224242

expect(result.events).toHaveLength(1);

225-

expect(result.events[0]).toEqual(

226-

expect.objectContaining({

227-

type: "call.initiated",

228-

direction: "inbound",

229-

from: "+15551111111",

230-

to: "+15550000000",

231-

}),

232-

);

243+

const event = result.events[0];

244+

expect(event?.type).toBe("call.initiated");

245+

expect(event?.direction).toBe("inbound");

246+

expect(event?.from).toBe("+15551111111");

247+

expect(event?.to).toBe("+15550000000");

233248

});

234249235250

it("reads transcription text from Telnyx transcription_data payloads", () => {

@@ -258,14 +273,14 @@ describe("TelnyxProvider.parseWebhookEvent", () => {

258273

);

259274260275

expect(result.events).toHaveLength(1);

261-

expect(result.events[0]).toEqual(

262-

expect.objectContaining({

263-

type: "call.speech",

264-

transcript: "hello this is a test speech",

265-

isFinal: false,

266-

confidence: 0.977219,

267-

}),

268-

);

276+

const event = result.events[0];

277+

expect(event?.type).toBe("call.speech");

278+

if (event?.type !== "call.speech") {

279+

throw new Error("expected Telnyx transcription callback to produce a speech event");

280+

}

281+

expect(event?.transcript).toBe("hello this is a test speech");

282+

expect(event?.isFinal).toBe(false);

283+

expect(event?.confidence).toBe(0.977219);

269284

});

270285

});

271286

@@ -287,17 +302,13 @@ describe("TelnyxProvider answer control", () => {

287302

providerCallId: "call-control-1",

288303

});

289304290-

expect(apiMocks.fetchWithSsrFGuard).toHaveBeenCalledWith(

291-

expect.objectContaining({

292-

url: "https://api.telnyx.com/v2/calls/call-control-1/actions/answer",

293-

auditContext: "voice-call.telnyx.api",

294-

policy: { allowedHostnames: ["api.telnyx.com"] },

295-

init: expect.objectContaining({

296-

method: "POST",

297-

body: JSON.stringify({ command_id: "openclaw-answer-call-1" }),

298-

}),

299-

}),

300-

);

305+

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

306+

const request = requireFetchRequest();

307+

expect(request.url).toBe("https://api.telnyx.com/v2/calls/call-control-1/actions/answer");

308+

expect(request.auditContext).toBe("voice-call.telnyx.api");

309+

expect(request.policy).toEqual({ allowedHostnames: ["api.telnyx.com"] });

310+

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

311+

expect(request.init?.body).toBe(JSON.stringify({ command_id: "openclaw-answer-call-1" }));

301312

expect(release).toHaveBeenCalledTimes(1);

302313

});

303314

});

@@ -322,19 +333,15 @@ describe("TelnyxProvider speak control", () => {

322333

voice: "Telnyx.Qwen3TTS.12345678-1234-1234-1234-123456789abc",

323334

});

324335325-

expect(apiMocks.fetchWithSsrFGuard).toHaveBeenCalledWith(

326-

expect.objectContaining({

327-

url: "https://api.telnyx.com/v2/calls/call-control-1/actions/speak",

328-

auditContext: "voice-call.telnyx.api",

329-

policy: { allowedHostnames: ["api.telnyx.com"] },

330-

init: expect.objectContaining({

331-

method: "POST",

332-

body: expect.stringContaining(

333-

'"voice":"Telnyx.Qwen3TTS.12345678-1234-1234-1234-123456789abc"',

334-

),

335-

}),

336-

}),

337-

);

336+

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

337+

const request = requireFetchRequest();

338+

expect(request.url).toBe("https://api.telnyx.com/v2/calls/call-control-1/actions/speak");

339+

expect(request.auditContext).toBe("voice-call.telnyx.api");

340+

expect(request.policy).toEqual({ allowedHostnames: ["api.telnyx.com"] });

341+

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

342+

expect(typeof request.init?.body).toBe("string");

343+

const body = JSON.parse(request.init?.body as string) as { voice?: string };

344+

expect(body.voice).toBe("Telnyx.Qwen3TTS.12345678-1234-1234-1234-123456789abc");

338345

expect(release).toHaveBeenCalledTimes(1);

339346

});

340347

});