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

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
Y
Y Combinator Blog
博客园 - 【当耐特】
V
Visual Studio Blog
GbyAI
GbyAI
V
V2EX
P
Proofpoint News Feed
Microsoft Azure Blog
Microsoft Azure Blog
Microsoft Security Blog
Microsoft Security Blog
D
DataBreaches.Net
Hugging Face - Blog
Hugging Face - Blog
A
About on SuperTechFans
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
N
Netflix TechBlog - Medium
aimingoo的专栏
aimingoo的专栏
B
Blog RSS Feed
量子位
MongoDB | Blog
MongoDB | Blog
有赞技术团队
有赞技术团队
人人都是产品经理
人人都是产品经理
Stack Overflow Blog
Stack Overflow 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
test: dedupe qa credential lease fetch calls · openclaw/o...
steipete · 2026-05-12 · via Recent Commits to openclaw:main

@@ -11,6 +11,32 @@ function jsonResponse(payload: unknown, status = 200) {

1111

});

1212

}

131314+

type FetchMock = { mock: { calls: Parameters<typeof fetch>[] } };

15+16+

function fetchCall(fetchImpl: FetchMock, index = 0): Parameters<typeof fetch> {

17+

const call = fetchImpl.mock.calls.at(index);

18+

if (!call) {

19+

throw new Error(`expected fetch call ${index}`);

20+

}

21+

return call;

22+

}

23+24+

function fetchUrl(fetchImpl: FetchMock, index = 0): string {

25+

const url = fetchCall(fetchImpl, index)[0];

26+

if (typeof url !== "string") {

27+

throw new Error(`expected fetch call ${index} URL`);

28+

}

29+

return url;

30+

}

31+32+

function fetchInit(fetchImpl: FetchMock, index = 0): RequestInit {

33+

const init = fetchCall(fetchImpl, index)[1];

34+

if (!init || typeof init !== "object") {

35+

throw new Error(`expected fetch call ${index} init`);

36+

}

37+

return init;

38+

}

39+1440

describe("credential lease runtime", () => {

1541

afterEach(() => {

1642

vi.restoreAllMocks();

@@ -73,9 +99,8 @@ describe("credential lease runtime", () => {

7399

await lease.release();

7410075101

expect(fetchImpl).toHaveBeenCalledTimes(3);

76-

const firstCall = fetchImpl.mock.calls[0];

77-

expect(firstCall?.[0]).toContain("/qa-credentials/v1/acquire");

78-

const firstInit = firstCall?.[1];

102+

expect(fetchUrl(fetchImpl)).toContain("/qa-credentials/v1/acquire");

103+

const firstInit = fetchInit(fetchImpl);

79104

const headers = firstInit?.headers as Record<string, string>;

80105

expect(headers.authorization).toBe("Bearer maintainer-secret");

81106

});

@@ -123,10 +148,10 @@ describe("credential lease runtime", () => {

123148

sutToken: "sut",

124149

});

125150

expect(fetchImpl).toHaveBeenCalledTimes(3);

126-

expect(fetchImpl.mock.calls[1]?.[0]).toBe(

151+

expect(fetchUrl(fetchImpl, 1)).toBe(

127152

"https://qa-cred.example.convex.site/qa-credentials/v1/payload-chunk",

128153

);

129-

const chunkRequestBody = fetchImpl.mock.calls[1]?.[1]?.body;

154+

const chunkRequestBody = fetchInit(fetchImpl, 1).body;

130155

expect(chunkRequestBody).toBeTypeOf("string");

131156

const chunkRequest = JSON.parse(chunkRequestBody as string) as {

132157

credentialId?: string;

@@ -161,8 +186,7 @@ describe("credential lease runtime", () => {

161186

payload as { groupId: string; driverToken: string; sutToken: string },

162187

});

163188164-

const firstCall = fetchImpl.mock.calls[0];

165-

const firstInit = firstCall?.[1];

189+

const firstInit = fetchInit(fetchImpl);

166190

const headers = firstInit?.headers as Record<string, string>;

167191

expect(headers.authorization).toBe("Bearer maintainer-secret");

168192

});

@@ -191,8 +215,7 @@ describe("credential lease runtime", () => {

191215

payload as { groupId: string; driverToken: string; sutToken: string },

192216

});

193217194-

const firstCall = fetchImpl.mock.calls[0];

195-

const firstInit = firstCall?.[1];

218+

const firstInit = fetchInit(fetchImpl);

196219

const headers = firstInit?.headers as Record<string, string>;

197220

expect(headers.authorization).toBe("Bearer ci-secret");

198221

});

@@ -294,8 +317,7 @@ describe("credential lease runtime", () => {

294317

payload as { groupId: string; driverToken: string; sutToken: string },

295318

});

296319297-

const firstCall = fetchImpl.mock.calls[0];

298-

expect(firstCall?.[0]).toBe("http://127.0.0.1:3210/qa-credentials/v1/acquire");

320+

expect(fetchUrl(fetchImpl)).toBe("http://127.0.0.1:3210/qa-credentials/v1/acquire");

299321

});

300322301323

it("rejects unsafe endpoint prefix overrides", async () => {

@@ -346,7 +368,7 @@ describe("credential lease runtime", () => {

346368

).rejects.toThrow("bad payload shape");

347369348370

expect(fetchImpl).toHaveBeenCalledTimes(2);

349-

expect(fetchImpl.mock.calls[1]?.[0]).toBe(

371+

expect(fetchUrl(fetchImpl, 1)).toBe(

350372

"https://qa-cred.example.convex.site/qa-credentials/v1/release",

351373

);

352374

});