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

推荐订阅源

D
DataBreaches.Net
有赞技术团队
有赞技术团队
Jina AI
Jina AI
H
Help Net Security
D
Docker
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Blog — PlanetScale
Blog — PlanetScale
Hugging Face - Blog
Hugging Face - Blog
罗磊的独立博客
MyScale Blog
MyScale Blog
N
Netflix TechBlog - Medium
B
Blog RSS Feed
Martin Fowler
Martin Fowler
WordPress大学
WordPress大学
T
The Blog of Author Tim Ferriss
U
Unit 42
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
MongoDB | Blog
MongoDB | Blog
美团技术团队
M
MIT News - Artificial intelligence
阮一峰的网络日志
阮一峰的网络日志
博客园 - 司徒正美
Microsoft Security Blog
Microsoft Security Blog
IT之家
IT之家

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 update cli post core assertions · openclaw/...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -380,6 +380,23 @@ describe("update-cli", () => {

380380

return calls[index];

381381

};

382382383+

const syncPluginCall = (index = 0) => {

384+

const calls = syncPluginsForUpdateChannel.mock.calls as unknown as Array<

385+

[{ channel?: string; config?: OpenClawConfig }]

386+

>;

387+

return calls[index]?.[0];

388+

};

389+390+

const npmPluginUpdateCall = (index = 0) => {

391+

const calls = updateNpmInstalledPlugins.mock.calls as unknown as Array<

392+

[{ timeoutMs?: number }]

393+

>;

394+

return calls[index]?.[0];

395+

};

396+397+

const pluginWarning = (result?: UpdateRunResult) => result?.postUpdate?.plugins?.warnings?.[0];

398+

const pluginOutcome = (result?: UpdateRunResult) => result?.postUpdate?.plugins?.npm.outcomes[0];

399+383400

const expectPackageInstallSpec = (spec: string) => {

384401

expect(runGatewayUpdate).not.toHaveBeenCalled();

385402

const call = (

@@ -799,18 +816,13 @@ describe("update-cli", () => {

799816800817

await updateCommand({ channel: "dev", yes: true, restart: false });

801818802-

expect(spawn).toHaveBeenCalledWith(

803-

expect.stringMatching(/node/),

804-

[entrypoints[0], "update", "--no-restart", "--yes"],

805-

expect.objectContaining({

806-

stdio: "inherit",

807-

env: expect.objectContaining({

808-

OPENCLAW_UPDATE_POST_CORE: "1",

809-

OPENCLAW_UPDATE_POST_CORE_CHANNEL: "dev",

810-

OPENCLAW_UPDATE_POST_CORE_REQUESTED_CHANNEL: "dev",

811-

}),

812-

}),

813-

);

819+

const call = spawnCall();

820+

expect(call?.[0]).toMatch(/node/);

821+

expect(call?.[1]).toEqual([entrypoints[0], "update", "--no-restart", "--yes"]);

822+

expect(call?.[2]?.stdio).toBe("inherit");

823+

expect(call?.[2]?.env?.OPENCLAW_UPDATE_POST_CORE).toBe("1");

824+

expect(call?.[2]?.env?.OPENCLAW_UPDATE_POST_CORE_CHANNEL).toBe("dev");

825+

expect(call?.[2]?.env?.OPENCLAW_UPDATE_POST_CORE_REQUESTED_CHANNEL).toBe("dev");

814826

expect(replaceConfigFile).not.toHaveBeenCalled();

815827

expect(syncPluginsForUpdateChannel).not.toHaveBeenCalled();

816828

expect(updateNpmInstalledPlugins).not.toHaveBeenCalled();

@@ -891,10 +903,10 @@ describe("update-cli", () => {

891903

);

892904893905

expect(runGatewayUpdate).not.toHaveBeenCalled();

894-

expect(runCommandWithTimeout).not.toHaveBeenCalledWith(

895-

["npm", "i", "-g", expect.any(String)],

896-

expect.anything(),

897-

);

906+

const installCall = (

907+

vi.mocked(runCommandWithTimeout).mock.calls as unknown as Array<[string[], unknown]>

908+

).find(([argv]) => argv[0] === "npm" && argv[1] === "i" && argv[2] === "-g");

909+

expect(installCall).toBeUndefined();

898910

expect(defaultRuntime.exit).toHaveBeenCalledWith(0);

899911

expect(syncPluginsForUpdateChannel).toHaveBeenCalledTimes(1);

900912

expect(updateNpmInstalledPlugins).toHaveBeenCalledTimes(1);

@@ -999,14 +1011,8 @@ describe("update-cli", () => {

9991011

},

10001012

baseHash: "stable-hash",

10011013

});

1002-

expect(syncPluginsForUpdateChannel).toHaveBeenCalledWith(

1003-

expect.objectContaining({

1004-

channel: "dev",

1005-

config: expect.objectContaining({

1006-

update: expect.objectContaining({ channel: "dev" }),

1007-

}),

1008-

}),

1009-

);

1014+

expect(syncPluginCall()?.channel).toBe("dev");

1015+

expect(syncPluginCall()?.config?.update?.channel).toBe("dev");

10101016

});

1011101710121018

it("post-core resume mode retries update channel persistence after config hash drift", async () => {

@@ -1071,14 +1077,8 @@ describe("update-cli", () => {

10711077

},

10721078

baseHash: "newer-hash",

10731079

});

1074-

expect(syncPluginsForUpdateChannel).toHaveBeenCalledWith(

1075-

expect.objectContaining({

1076-

config: expect.objectContaining({

1077-

meta: expect.objectContaining({ lastTouchedVersion: "2026.4.30" }),

1078-

update: expect.objectContaining({ channel: "dev" }),

1079-

}),

1080-

}),

1081-

);

1080+

expect(syncPluginCall()?.config?.meta?.lastTouchedVersion).toBe("2026.4.30");

1081+

expect(syncPluginCall()?.config?.update?.channel).toBe("dev");

10821082

});

1083108310841084

it("passes the update timeout budget into post-core plugin updates", async () => {

@@ -1092,9 +1092,7 @@ describe("update-cli", () => {

10921092

},

10931093

);

109410941095-

expect(updateNpmInstalledPlugins).toHaveBeenCalledWith(

1096-

expect.objectContaining({ timeoutMs: 1_800_000 }),

1097-

);

1095+

expect(npmPluginUpdateCall()?.timeoutMs).toBe(1_800_000);

10981096

});

1099109711001098

it("uses a fail-closed integrity policy for post-core plugin updates", async () => {

@@ -1200,16 +1198,12 @@ describe("update-cli", () => {

12001198

},

12011199

]);

12021200

expect(jsonOutput?.postUpdate?.plugins?.status).toBe("warning");

1203-

expect(jsonOutput?.postUpdate?.plugins?.warnings?.[0]).toMatchObject({

1204-

pluginId: "demo",

1205-

guidance: [

1206-

"Run openclaw doctor --fix to attempt automatic repair.",

1207-

"Run openclaw plugins inspect demo --runtime --json for details.",

1208-

],

1209-

});

1210-

expect(jsonOutput?.postUpdate?.plugins?.warnings?.[0]?.reason).toContain(

1211-

"npm package integrity drift",

1212-

);

1201+

expect(pluginWarning(jsonOutput)?.pluginId).toBe("demo");

1202+

expect(pluginWarning(jsonOutput)?.guidance).toEqual([

1203+

"Run openclaw doctor --fix to attempt automatic repair.",

1204+

"Run openclaw plugins inspect demo --runtime --json for details.",

1205+

]);

1206+

expect(pluginWarning(jsonOutput)?.reason).toContain("npm package integrity drift");

12131207

expect(jsonOutput?.postUpdate?.plugins?.npm.outcomes[0]?.status).toBe("error");

12141208

expect(jsonOutput?.postUpdate?.plugins?.npm.outcomes[0]?.message).toContain(

12151209

"Run openclaw doctor --fix to attempt automatic repair.",

@@ -1268,16 +1262,10 @@ describe("update-cli", () => {

12681262

| undefined;

12691263

expect(jsonOutput?.status).toBe("ok");

12701264

expect(jsonOutput?.postUpdate?.plugins?.status).toBe("warning");

1271-

expect(jsonOutput?.postUpdate?.plugins?.warnings?.[0]).toMatchObject({

1272-

pluginId: "demo",

1273-

});

1274-

expect(jsonOutput?.postUpdate?.plugins?.warnings?.[0]?.reason).toContain(

1275-

"package.json is missing",

1276-

);

1277-

expect(jsonOutput?.postUpdate?.plugins?.npm.outcomes[0]).toMatchObject({

1278-

pluginId: "demo",

1279-

status: "error",

1280-

});

1265+

expect(pluginWarning(jsonOutput)?.pluginId).toBe("demo");

1266+

expect(pluginWarning(jsonOutput)?.reason).toContain("package.json is missing");

1267+

expect(pluginOutcome(jsonOutput)?.pluginId).toBe("demo");

1268+

expect(pluginOutcome(jsonOutput)?.status).toBe("error");

12811269

});

1282127012831271

it("prints non-fatal plugin warnings in human update output", async () => {

@@ -1335,17 +1323,13 @@ describe("update-cli", () => {

13351323

| UpdateRunResult

13361324

| undefined;

13371325

expect(jsonOutput?.postUpdate?.plugins?.status).toBe("warning");

1338-

expect(jsonOutput?.postUpdate?.plugins?.warnings?.[0]).toMatchObject({

1339-

pluginId: "demo",

1340-

guidance: [

1341-

"Run openclaw doctor --fix to attempt automatic repair.",

1342-

"Run openclaw plugins inspect demo --runtime --json for details.",

1343-

],

1344-

});

1345-

expect(jsonOutput?.postUpdate?.plugins?.npm.outcomes[0]).toMatchObject({

1346-

pluginId: "demo",

1347-

status: "skipped",

1348-

});

1326+

expect(pluginWarning(jsonOutput)?.pluginId).toBe("demo");

1327+

expect(pluginWarning(jsonOutput)?.guidance).toEqual([

1328+

"Run openclaw doctor --fix to attempt automatic repair.",

1329+

"Run openclaw plugins inspect demo --runtime --json for details.",

1330+

]);

1331+

expect(pluginOutcome(jsonOutput)?.pluginId).toBe("demo");

1332+

expect(pluginOutcome(jsonOutput)?.status).toBe("skipped");

13491333

});

1350133413511335

it("fails unexpected post-core plugin sync exceptions", async () => {