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

推荐订阅源

S
SegmentFault 最新的问题
Jina AI
Jina AI
罗磊的独立博客
V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
J
Java Code Geeks
U
Unit 42
Microsoft Azure Blog
Microsoft Azure Blog
B
Blog RSS Feed
爱范儿
爱范儿
酷 壳 – CoolShell
酷 壳 – CoolShell
Last Week in AI
Last Week in AI
T
The Blog of Author Tim Ferriss
腾讯CDC
Hugging Face - Blog
Hugging Face - Blog
T
Tailwind CSS Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
I
InfoQ
月光博客
月光博客
博客园_首页
Vercel News
Vercel News
P
Proofpoint News Feed
GbyAI
GbyAI
Y
Y Combinator Blog

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: clear changed gate regressions · openclaw/openclaw@9...
steipete · 2026-05-01 · via Recent Commits to openclaw:main

@@ -1,17 +1,25 @@

11

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

22

import { TwilioApiError, twilioApiRequest } from "./api.js";

334-

const originalFetch = globalThis.fetch;

4+

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

5+

fetchWithSsrFGuard: vi.fn(),

6+

}));

7+8+

vi.mock("openclaw/plugin-sdk/ssrf-runtime", () => ({

9+

fetchWithSsrFGuard: apiMocks.fetchWithSsrFGuard,

10+

}));

511612

describe("twilioApiRequest", () => {

713

afterEach(() => {

8-

globalThis.fetch = originalFetch;

14+

apiMocks.fetchWithSsrFGuard.mockReset();

915

});

10161117

it("posts form bodies with basic auth and parses json", async () => {

12-

globalThis.fetch = vi.fn(async () => {

13-

return new Response(JSON.stringify({ sid: "CA123" }), { status: 200 });

14-

}) as unknown as typeof fetch;

18+

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

19+

apiMocks.fetchWithSsrFGuard.mockResolvedValue({

20+

response: new Response(JSON.stringify({ sid: "CA123" }), { status: 200 }),

21+

release,

22+

});

15231624

await expect(

1725

twilioApiRequest({

@@ -26,8 +34,10 @@ describe("twilioApiRequest", () => {

2634

}),

2735

).resolves.toEqual({ sid: "CA123" });

283629-

const [url, init] = vi.mocked(globalThis.fetch).mock.calls[0] ?? [];

37+

const [{ url, init, auditContext, policy }] = apiMocks.fetchWithSsrFGuard.mock.calls[0] ?? [];

3038

expect(url).toBe("https://api.twilio.com/Calls.json");

39+

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

40+

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

3141

expect(init).toEqual(

3242

expect.objectContaining({

3343

method: "POST",

@@ -44,14 +54,19 @@ describe("twilioApiRequest", () => {

4454

expect(requestBody.toString()).toBe(

4555

"To=%2B14155550123&StatusCallbackEvent=initiated&StatusCallbackEvent=completed",

4656

);

57+

expect(release).toHaveBeenCalledTimes(1);

4758

});

48594960

it("passes through URLSearchParams, allows 404s, and returns undefined for empty bodies", async () => {

5061

const responses = [

5162

new Response(null, { status: 204 }),

5263

new Response("missing", { status: 404 }),

5364

];

54-

globalThis.fetch = vi.fn(async () => responses.shift()!) as unknown as typeof fetch;

65+

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

66+

apiMocks.fetchWithSsrFGuard.mockImplementation(async () => ({

67+

response: responses.shift()!,

68+

release,

69+

}));

55705671

await expect(

5772

twilioApiRequest({

@@ -73,12 +88,15 @@ describe("twilioApiRequest", () => {

7388

allowNotFound: true,

7489

}),

7590

).resolves.toBeUndefined();

91+

expect(release).toHaveBeenCalledTimes(2);

7692

});

77937894

it("throws twilio api errors for non-ok responses", async () => {

79-

globalThis.fetch = vi.fn(

80-

async () => new Response("bad request", { status: 400 }),

81-

) as unknown as typeof fetch;

95+

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

96+

apiMocks.fetchWithSsrFGuard.mockResolvedValue({

97+

response: new Response("bad request", { status: 400 }),

98+

release,

99+

});

8210083101

await expect(

84102

twilioApiRequest({

@@ -89,19 +107,21 @@ describe("twilioApiRequest", () => {

89107

body: {},

90108

}),

91109

).rejects.toThrow("Twilio API error: 400 bad request");

110+

expect(release).toHaveBeenCalledTimes(1);

92111

});

9311294113

it("exposes structured Twilio error codes from json error bodies", async () => {

95-

globalThis.fetch = vi.fn(

96-

async () =>

97-

new Response(

98-

JSON.stringify({

99-

code: 21220,

100-

message: "Call is not in-progress. Cannot redirect.",

101-

}),

102-

{ status: 400 },

103-

),

104-

) as unknown as typeof fetch;

114+

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

115+

apiMocks.fetchWithSsrFGuard.mockResolvedValue({

116+

response: new Response(

117+

JSON.stringify({

118+

code: 21220,

119+

message: "Call is not in-progress. Cannot redirect.",

120+

}),

121+

{ status: 400 },

122+

),

123+

release,

124+

});

105125106126

await expect(

107127

twilioApiRequest({

@@ -117,5 +137,6 @@ describe("twilioApiRequest", () => {

117137

twilioCode: 21220,

118138

message: "Twilio API error: 400 Call is not in-progress. Cannot redirect.",

119139

} satisfies Partial<TwilioApiError>);

140+

expect(release).toHaveBeenCalledTimes(1);

120141

});

121142

});