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

推荐订阅源

V
V2EX
P
Proofpoint News Feed
D
DataBreaches.Net
C
Check Point Blog
L
LangChain Blog
量子位
美团技术团队
Vercel News
Vercel News
人人都是产品经理
人人都是产品经理
N
Netflix TechBlog - Medium
V
Visual Studio Blog
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
MongoDB | Blog
MongoDB | Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Last Week in AI
Last Week in AI
The GitHub Blog
The GitHub Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
U
Unit 42
腾讯CDC
M
MIT News - Artificial intelligence
Microsoft Azure Blog
Microsoft Azure Blog
Blog — PlanetScale
Blog — PlanetScale

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 archive security assertions · openclaw/open...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -55,8 +55,23 @@ async function createDirectorySymlink(targetDir: string, linkPath: string) {

5555

await fs.symlink(targetDir, linkPath, directorySymlinkType);

5656

}

575758+

async function expectRejectedCode(promise: Promise<unknown>, expected: string | RegExp) {

59+

try {

60+

await promise;

61+

} catch (error) {

62+

const code = (error as Partial<ArchiveSecurityError>).code;

63+

if (typeof expected === "string") {

64+

expect(code).toBe(expected);

65+

return;

66+

}

67+

expect(String(code)).toMatch(expected);

68+

return;

69+

}

70+

throw new Error("expected promise to reject");

71+

}

72+5873

async function expectPathMissing(filePath: string) {

59-

await expect(fs.stat(filePath)).rejects.toMatchObject({ code: "ENOENT" });

74+

await expectRejectedCode(fs.stat(filePath), "ENOENT");

6075

}

61766277

async function expectExtractedSizeBudgetExceeded(params: {

@@ -148,15 +163,14 @@ describe("archive utils", () => {

148163

await fs.rm(extractDir, { recursive: true, force: true });

149164

await createDirectorySymlink(realExtractDir, extractDir);

150165151-

await expect(

166+

await expectRejectedCode(

152167

extractArchive({

153168

archivePath,

154169

destDir: extractDir,

155170

timeoutMs: ARCHIVE_EXTRACT_TIMEOUT_MS,

156171

}),

157-

).rejects.toMatchObject({

158-

code: "destination-symlink",

159-

} satisfies Partial<ArchiveSecurityError>);

172+

"destination-symlink",

173+

);

160174161175

await expectPathMissing(path.join(realExtractDir, "package", "hello.txt"));

162176

});

@@ -189,15 +203,14 @@ describe("archive utils", () => {

189203

zip.file("escape/pwn.txt", "owned");

190204

await fs.writeFile(archivePath, await zip.generateAsync({ type: "nodebuffer" }));

191205192-

await expect(

206+

await expectRejectedCode(

193207

extractArchive({

194208

archivePath,

195209

destDir: extractDir,

196210

timeoutMs: ARCHIVE_EXTRACT_TIMEOUT_MS,

197211

}),

198-

).rejects.toMatchObject({

199-

code: "destination-symlink-traversal",

200-

} satisfies Partial<ArchiveSecurityError>);

212+

"destination-symlink-traversal",

213+

);

201214202215

const outsideFile = path.join(outsideDir, "pwn.txt");

203216

const outsideExists = await fs

@@ -239,9 +252,8 @@ describe("archive utils", () => {

239252

});

240253

} catch (error) {

241254

rejected = true;

242-

expect(error).toMatchObject({

243-

code: expect.stringMatching(/destination-symlink-traversal|not-file/),

244-

} satisfies Partial<ArchiveSecurityError>);

255+

const code = (error as Partial<ArchiveSecurityError>).code;

256+

expect(String(code)).toMatch(/destination-symlink-traversal|not-file/);

245257

}

246258247259

await expect(fs.readFile(outsideTarget, "utf8")).resolves.toBe("SAFE");

@@ -280,21 +292,20 @@ describe("archive utils", () => {

280292

});

281293282294

try {

283-

await expect(

295+

await expectRejectedCode(

284296

extractArchive({

285297

archivePath,

286298

destDir: extractDir,

287299

timeoutMs: ARCHIVE_EXTRACT_TIMEOUT_MS,

288300

}),

289-

).rejects.toMatchObject({

290-

code: expect.stringMatching(/^(?:destination-symlink-traversal|hardlink)$/u),

291-

});

301+

/^(?:destination-symlink-traversal|hardlink)$/u,

302+

);

292303

} finally {

293304

lstatSpy.mockRestore();

294305

}

295306296307

await expect(fs.readFile(outsideAlias, "utf8")).resolves.toBe("");

297-

await expect(fs.stat(extractedPath)).rejects.toMatchObject({ code: "ENOENT" });

308+

await expectPathMissing(extractedPath);

298309

});

299310

},

300311

);

@@ -327,15 +338,14 @@ describe("archive utils", () => {

327338

await createDirectorySymlink(outsideDir, path.join(extractDir, "escape"));

328339

await tar.c({ cwd: archiveRoot, file: archivePath }, ["escape"]);

329340330-

await expect(

341+

await expectRejectedCode(

331342

extractArchive({

332343

archivePath,

333344

destDir: extractDir,

334345

timeoutMs: ARCHIVE_EXTRACT_TIMEOUT_MS,

335346

}),

336-

).rejects.toMatchObject({

337-

code: "destination-symlink-traversal",

338-

} satisfies Partial<ArchiveSecurityError>);

347+

"destination-symlink-traversal",

348+

);

339349340350

await expectPathMissing(path.join(outsideDir, "pwn.txt"));

341351

});