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

推荐订阅源

量子位
博客园_首页
罗磊的独立博客
云风的 BLOG
云风的 BLOG
J
Java Code Geeks
Last Week in AI
Last Week in AI
D
DataBreaches.Net
Jina AI
Jina AI
博客园 - Franky
大猫的无限游戏
大猫的无限游戏
Apple Machine Learning Research
Apple Machine Learning Research
V
V2EX
D
Docker
MongoDB | Blog
MongoDB | Blog
B
Blog RSS Feed
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
宝玉的分享
宝玉的分享
Engineering at Meta
Engineering at Meta
The Cloudflare Blog
博客园 - 三生石上(FineUI控件)
有赞技术团队
有赞技术团队
人人都是产品经理
人人都是产品经理
H
Help Net Security
T
The Blog of Author Tim Ferriss

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: clear skills upload broad matchers · openclaw/openc...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -126,6 +126,26 @@ function sha256(bytes: Buffer): string {

126126

return createHash("sha256").update(bytes).digest("hex");

127127

}

128128129+

async function expectPathMissing(targetPath: string): Promise<void> {

130+

try {

131+

await fs.stat(targetPath);

132+

throw new Error(`Expected path to be missing: ${targetPath}`);

133+

} catch (error) {

134+

expect((error as NodeJS.ErrnoException).code).toBe("ENOENT");

135+

}

136+

}

137+138+

function expectError(result: CallResult, code: string, message: string): void {

139+

expect(result.error?.code).toBe(code);

140+

expect(result.error?.message).toBe(message);

141+

}

142+143+

function firstCallArg<T>(mock: { mock: { calls: unknown[][] } }): T {

144+

const call = mock.mock.calls[0];

145+

expect(call).toBeDefined();

146+

return call?.[0] as T;

147+

}

148+129149

async function makeSkillArchive(params: {

130150

name?: string;

131151

description?: string;

@@ -227,9 +247,7 @@ describe("skill upload gateway handlers", () => {

227247

expect(begin.ok).toBe(false);

228248

expect(begin.error?.code).toBe("UNAVAILABLE");

229249

expect(begin.error?.message).toContain("skills.install.allowUploadedArchives");

230-

await expect(fs.stat(path.join(stateDir, "tmp", "skill-uploads"))).rejects.toMatchObject({

231-

code: "ENOENT",

232-

});

250+

await expectPathMissing(path.join(stateDir, "tmp", "skill-uploads"));

233251234252

const install = await call(

235253

handlers,

@@ -265,20 +283,14 @@ describe("skill upload gateway handlers", () => {

265283

});

266284267285

expect(install.ok).toBe(true);

268-

expect(install.payload).toMatchObject({

269-

ok: true,

270-

slug: "uploaded-demo",

271-

sha256: digest,

272-

});

286+

expect((install.payload as { ok?: unknown }).ok).toBe(true);

287+

expect((install.payload as { slug?: unknown }).slug).toBe("uploaded-demo");

288+

expect((install.payload as { sha256?: unknown }).sha256).toBe(digest);

273289

await expect(

274290

fs.readFile(path.join(workspaceDir, "skills", "uploaded-demo", "SKILL.md"), "utf8"),

275291

).resolves.toContain("Uploaded Demo");

276-

await expect(

277-

fs.stat(path.join(workspaceDir, "skills", "archive-internal-name")),

278-

).rejects.toMatchObject({ code: "ENOENT" });

279-

await expect(

280-

fs.stat(path.join(stateDir, "tmp", "skill-uploads", uploadId)),

281-

).rejects.toMatchObject({ code: "ENOENT" });

292+

await expectPathMissing(path.join(workspaceDir, "skills", "archive-internal-name"));

293+

await expectPathMissing(path.join(stateDir, "tmp", "skill-uploads", uploadId));

282294283295

const status = await call(handlers, "skills.status", {});

284296

expect(status.ok).toBe(true);

@@ -357,13 +369,8 @@ describe("skill upload gateway handlers", () => {

357369

});

358370359371

expect(install.ok).toBe(false);

360-

expect(install.error).toMatchObject({

361-

code: "INVALID_REQUEST",

362-

message: "install sha256 does not match uploaded archive",

363-

});

364-

await expect(

365-

fs.stat(path.join(stateDir, "tmp", "skill-uploads", upload.uploadId)),

366-

).rejects.toMatchObject({ code: "ENOENT" });

372+

expectError(install, "INVALID_REQUEST", "install sha256 does not match uploaded archive");

373+

await expectPathMissing(path.join(stateDir, "tmp", "skill-uploads", upload.uploadId));

367374

});

368375369376

it("rejects expired committed uploads through skills.install", async () => {

@@ -390,13 +397,8 @@ describe("skill upload gateway handlers", () => {

390397

});

391398392399

expect(install.ok).toBe(false);

393-

expect(install.error).toMatchObject({

394-

code: "INVALID_REQUEST",

395-

message: "upload has expired",

396-

});

397-

await expect(

398-

fs.stat(path.join(stateDir, "tmp", "skill-uploads", upload.uploadId)),

399-

).rejects.toMatchObject({ code: "ENOENT" });

400+

expectError(install, "INVALID_REQUEST", "upload has expired");

401+

await expectPathMissing(path.join(stateDir, "tmp", "skill-uploads", upload.uploadId));

400402

});

401403402404

it("rejects invalid slugs, missing SKILL.md, and archive traversal", async () => {

@@ -421,9 +423,7 @@ describe("skill upload gateway handlers", () => {

421423

expect(missingInstall.ok).toBe(false);

422424

expect(missingInstall.error?.code).toBe("INVALID_REQUEST");

423425

expect(missingInstall.error?.message).toContain("SKILL.md");

424-

await expect(

425-

fs.stat(path.join(stateDir, "tmp", "skill-uploads", missingSkill.uploadId)),

426-

).rejects.toMatchObject({ code: "ENOENT" });

426+

await expectPathMissing(path.join(stateDir, "tmp", "skill-uploads", missingSkill.uploadId));

427427428428

const legacyMarker = await uploadArchive(handlers, {

429429

archive: await makeSkillArchive({

@@ -440,9 +440,7 @@ describe("skill upload gateway handlers", () => {

440440

expect(legacyMarkerInstall.ok).toBe(false);

441441

expect(legacyMarkerInstall.error?.code).toBe("INVALID_REQUEST");

442442

expect(legacyMarkerInstall.error?.message).toContain("SKILL.md");

443-

await expect(

444-

fs.stat(path.join(stateDir, "tmp", "skill-uploads", legacyMarker.uploadId)),

445-

).rejects.toMatchObject({ code: "ENOENT" });

443+

await expectPathMissing(path.join(stateDir, "tmp", "skill-uploads", legacyMarker.uploadId));

446444447445

const traversal = await uploadArchive(handlers, {

448446

archive: await makeSkillArchive({ traversal: true }),

@@ -458,9 +456,7 @@ describe("skill upload gateway handlers", () => {

458456

expect(traversalInstall.error?.message).toMatch(

459457

/escapes destination|absolute|extract archive/i,

460458

);

461-

await expect(

462-

fs.stat(path.join(workspaceDir, "skills", "traversal-skill")),

463-

).rejects.toMatchObject({ code: "ENOENT" });

459+

await expectPathMissing(path.join(workspaceDir, "skills", "traversal-skill"));

464460

});

465461466462

it("treats security scan blocks as terminal invalid uploads", async () => {

@@ -484,19 +480,14 @@ describe("skill upload gateway handlers", () => {

484480

});

485481486482

expect(install.ok).toBe(false);

487-

expect(install.error).toMatchObject({

488-

code: "INVALID_REQUEST",

489-

message: expect.stringContaining("blocked dependencies"),

490-

});

491-

expect(installSecurityScanState.scanSkillInstallSource).toHaveBeenCalledWith(

492-

expect.objectContaining({

493-

origin: "skill-upload",

494-

skillName: "scan-blocked",

495-

}),

483+

expect(install.error?.code).toBe("INVALID_REQUEST");

484+

expect(install.error?.message).toContain("blocked dependencies");

485+

const scanInput = firstCallArg<{ origin?: string; skillName?: string }>(

486+

installSecurityScanState.scanSkillInstallSource,

496487

);

497-

await expect(

498-

fs.stat(path.join(stateDir, "tmp", "skill-uploads", upload.uploadId)),

499-

).rejects.toMatchObject({ code: "ENOENT" });

488+

expect(scanInput.origin).toBe("skill-upload");

489+

expect(scanInput.skillName).toBe("scan-blocked");

490+

await expectPathMissing(path.join(stateDir, "tmp", "skill-uploads", upload.uploadId));

500491

});

501492502493

it("preserves existing installs unless force was bound at begin", async () => {

@@ -533,9 +524,7 @@ describe("skill upload gateway handlers", () => {

533524

expect(blockedInstall.ok).toBe(false);

534525

expect(blockedInstall.error?.code).toBe("INVALID_REQUEST");

535526

expect(blockedInstall.error?.message).toContain("already exists");

536-

await expect(

537-

fs.stat(path.join(stateDir, "tmp", "skill-uploads", blocked.uploadId)),

538-

).rejects.toMatchObject({ code: "ENOENT" });

527+

await expectPathMissing(path.join(stateDir, "tmp", "skill-uploads", blocked.uploadId));

539528540529

const forced = await uploadArchive(handlers, {

541530

archive: await makeSkillArchive({