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

推荐订阅源

Martin Fowler
Martin Fowler
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
罗磊的独立博客
Apple Machine Learning Research
Apple Machine Learning Research
The Cloudflare Blog
L
LangChain Blog
博客园 - 司徒正美
G
Google Developers Blog
博客园 - 【当耐特】
GbyAI
GbyAI
月光博客
月光博客
人人都是产品经理
人人都是产品经理
D
DataBreaches.Net
大猫的无限游戏
大猫的无限游戏
A
About on SuperTechFans
Microsoft Azure Blog
Microsoft Azure Blog
V
Visual Studio Blog
D
Docker
MongoDB | Blog
MongoDB | Blog
Vercel News
Vercel News
Stack Overflow Blog
Stack Overflow Blog
Jina AI
Jina AI
博客园 - 聂微东

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 tlon upload assertions · openclaw/openclaw@...
shakkernerd · 2026-05-11 · via Recent Commits to openclaw:main

@@ -123,43 +123,30 @@ describe("uploadFile memex upload hardening", () => {

123123

expect(result).toEqual({ url: "https://memex.tlon.network/files/uploaded.png" });

124124

expect(vi.mocked(globalThis.fetch)).not.toHaveBeenCalled();

125125

expect(mockGuardedFetch).toHaveBeenCalledTimes(2);

126-

expect(mockGuardedFetch).toHaveBeenNthCalledWith(

127-

1,

128-

expect.objectContaining({

129-

url: "https://memex.tlon.network/v1/zod/upload",

130-

init: expect.objectContaining({

131-

method: "PUT",

132-

headers: { "Content-Type": "application/json" },

133-

}),

134-

auditContext: "tlon-memex-upload-url",

135-

capture: false,

136-

maxRedirects: 0,

137-

}),

138-

);

139-

expect(mockGuardedFetch).toHaveBeenNthCalledWith(2, {

140-

url: "https://uploads.tlon.network/put",

141-

init: expect.objectContaining({

142-

method: "PUT",

143-

headers: expect.objectContaining({

144-

"Cache-Control": "public, max-age=3600",

145-

"Content-Type": "image/png",

146-

}),

147-

}),

148-

auditContext: "tlon-memex-upload",

149-

capture: false,

150-

maxRedirects: 0,

151-

});

152126

const firstCall = mockGuardedFetch.mock.calls[0]?.[0];

127+

expect(firstCall?.url).toBe("https://memex.tlon.network/v1/zod/upload");

128+

expect(firstCall?.init?.method).toBe("PUT");

129+

expect(firstCall?.init?.headers).toEqual({ "Content-Type": "application/json" });

130+

expect(firstCall?.auditContext).toBe("tlon-memex-upload-url");

131+

expect(firstCall?.capture).toBe(false);

132+

expect(firstCall?.maxRedirects).toBe(0);

153133

const firstBodyRaw = firstCall?.init?.body;

154134

expect(typeof firstBodyRaw).toBe("string");

155135

const firstBody = JSON.parse(firstBodyRaw as string) as Record<string, unknown>;

156-

expect(firstBody).toMatchObject({

157-

token: "genuine-secret",

158-

contentLength: 11,

159-

contentType: "image/png",

160-

});

136+

expect(firstBody.token).toBe("genuine-secret");

137+

expect(firstBody.contentLength).toBe(11);

138+

expect(firstBody.contentType).toBe("image/png");

161139

expect(typeof firstBody.fileName).toBe("string");

162140

const secondCall = mockGuardedFetch.mock.calls[1]?.[0];

141+

expect(secondCall?.url).toBe("https://uploads.tlon.network/put");

142+

expect(secondCall?.init?.method).toBe("PUT");

143+

expect(secondCall?.init?.headers).toEqual({

144+

"Cache-Control": "public, max-age=3600",

145+

"Content-Type": "image/png",

146+

});

147+

expect(secondCall?.auditContext).toBe("tlon-memex-upload");

148+

expect(secondCall?.capture).toBe(false);

149+

expect(secondCall?.maxRedirects).toBe(0);

163150

expect(secondCall?.init?.body).toBeInstanceOf(Blob);

164151

expect(mockRelease).toHaveBeenCalledTimes(2);

165152

});

@@ -183,14 +170,12 @@ describe("uploadFile memex upload hardening", () => {

183170

).rejects.toThrow("Blocked upload target");

184171185172

expect(vi.mocked(globalThis.fetch)).not.toHaveBeenCalled();

186-

expect(mockGuardedFetch).toHaveBeenCalledWith(

187-

expect.objectContaining({

188-

url: "https://uploads.tlon.network/put",

189-

auditContext: "tlon-memex-upload",

190-

capture: false,

191-

maxRedirects: 0,

192-

}),

193-

);

173+

expect(mockGuardedFetch).toHaveBeenCalledTimes(2);

174+

const uploadCall = mockGuardedFetch.mock.calls[1]?.[0];

175+

expect(uploadCall?.url).toBe("https://uploads.tlon.network/put");

176+

expect(uploadCall?.auditContext).toBe("tlon-memex-upload");

177+

expect(uploadCall?.capture).toBe(false);

178+

expect(uploadCall?.maxRedirects).toBe(0);

194179

expect(mockRelease).toHaveBeenCalledTimes(1);

195180

});

196181

@@ -286,14 +271,12 @@ describe("uploadFile memex upload hardening", () => {

286271

).rejects.toThrow("Too many redirects (limit: 0)");

287272288273

expect(vi.mocked(globalThis.fetch)).not.toHaveBeenCalled();

289-

expect(mockGuardedFetch).toHaveBeenCalledWith(

290-

expect.objectContaining({

291-

url: "https://uploads.tlon.network/put",

292-

auditContext: "tlon-memex-upload",

293-

capture: false,

294-

maxRedirects: 0,

295-

}),

296-

);

274+

expect(mockGuardedFetch).toHaveBeenCalledTimes(2);

275+

const uploadCall = mockGuardedFetch.mock.calls[1]?.[0];

276+

expect(uploadCall?.url).toBe("https://uploads.tlon.network/put");

277+

expect(uploadCall?.auditContext).toBe("tlon-memex-upload");

278+

expect(uploadCall?.capture).toBe(false);

279+

expect(uploadCall?.maxRedirects).toBe(0);

297280

expect(mockRelease).toHaveBeenCalledTimes(1);

298281

});

299282

@@ -404,14 +387,11 @@ describe("uploadFile memex upload hardening", () => {

404387405388

expect(vi.mocked(globalThis.fetch)).not.toHaveBeenCalled();

406389

expect(mockGuardedFetch).toHaveBeenCalledTimes(1);

407-

expect(mockGuardedFetch).toHaveBeenCalledWith(

408-

expect.objectContaining({

409-

url: "https://memex.tlon.network/v1/zod/upload",

410-

auditContext: "tlon-memex-upload-url",

411-

capture: false,

412-

maxRedirects: 0,

413-

}),

414-

);

390+

const lookupCall = mockGuardedFetch.mock.calls[0]?.[0];

391+

expect(lookupCall?.url).toBe("https://memex.tlon.network/v1/zod/upload");

392+

expect(lookupCall?.auditContext).toBe("tlon-memex-upload-url");

393+

expect(lookupCall?.capture).toBe(false);

394+

expect(lookupCall?.maxRedirects).toBe(0);

415395

expect(mockRelease).not.toHaveBeenCalled();

416396

});

417397

});

@@ -475,14 +455,14 @@ describe("uploadFile custom S3 upload hardening", () => {

475455476456

expect(result.url.startsWith("https://files.example.com/")).toBe(true);

477457

expect(mockGuardedFetch).toHaveBeenCalledTimes(1);

478-

expect(mockGuardedFetch).toHaveBeenCalledWith(

479-

expect.objectContaining({

480-

url: "https://s3.example.com/uploads/file?sig=abc",

481-

auditContext: "tlon-custom-s3-upload",

482-

capture: false,

483-

maxRedirects: 0,

484-

}),

485-

);

458+

const uploadCall = mockGuardedFetch.mock.calls[0]?.[0];

459+

expect(uploadCall?.url).toBe("https://s3.example.com/uploads/file?sig=abc");

460+

expect(uploadCall?.init?.method).toBe("PUT");

461+

expect(uploadCall?.init?.headers).toBeUndefined();

462+

expect(uploadCall?.auditContext).toBe("tlon-custom-s3-upload");

463+

expect(uploadCall?.capture).toBe(false);

464+

expect(uploadCall?.maxRedirects).toBe(0);

465+

expect(uploadCall?.policy).toBeUndefined();

486466

expect(mockRelease).toHaveBeenCalledTimes(1);

487467

expect(vi.mocked(globalThis.fetch)).not.toHaveBeenCalled();

488468

});

@@ -520,25 +500,20 @@ describe("uploadFile custom S3 upload hardening", () => {

520500

),

521501

);

522502523-

await expect(

524-

uploadFile({

525-

blob: new Blob(["image-bytes"], { type: "image/png" }),

526-

fileName: "avatar.png",

527-

contentType: "image/png",

528-

}),

529-

).resolves.toEqual({

530-

url: expect.stringMatching(/^https:\/\/files\.example\.com\//),

503+

const result = await uploadFile({

504+

blob: new Blob(["image-bytes"], { type: "image/png" }),

505+

fileName: "avatar.png",

506+

contentType: "image/png",

531507

});

532508533-

expect(mockGuardedFetch).toHaveBeenCalledWith(

534-

expect.objectContaining({

535-

url: "https://10.0.0.15/uploads/file?sig=abc",

536-

auditContext: "tlon-custom-s3-upload",

537-

capture: false,

538-

maxRedirects: 0,

539-

policy: { allowPrivateNetwork: true },

540-

}),

541-

);

509+

expect(result.url.startsWith("https://files.example.com/")).toBe(true);

510+

expect(mockGuardedFetch).toHaveBeenCalledTimes(1);

511+

const uploadCall = mockGuardedFetch.mock.calls[0]?.[0];

512+

expect(uploadCall?.url).toBe("https://10.0.0.15/uploads/file?sig=abc");

513+

expect(uploadCall?.auditContext).toBe("tlon-custom-s3-upload");

514+

expect(uploadCall?.capture).toBe(false);

515+

expect(uploadCall?.maxRedirects).toBe(0);

516+

expect(uploadCall?.policy).toEqual({ allowPrivateNetwork: true });

542517

expect(mockRelease).toHaveBeenCalledTimes(1);

543518

});

544519