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

推荐订阅源

U
Unit 42
Google DeepMind News
Google DeepMind News
Stack Overflow Blog
Stack Overflow Blog
H
Help Net Security
MongoDB | Blog
MongoDB | Blog
I
InfoQ
N
Netflix TechBlog - Medium
T
Tailwind CSS Blog
量子位
博客园 - 叶小钗
月光博客
月光博客
IT之家
IT之家
G
Google Developers Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
小众软件
小众软件
S
SegmentFault 最新的问题
Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
aimingoo的专栏
aimingoo的专栏
云风的 BLOG
云风的 BLOG
Vercel News
Vercel News
爱范儿
爱范儿
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
宝玉的分享
宝玉的分享

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
fix(update): resume official plugin convergence after gat...
masatohoshin · 2026-06-18 · via Recent Commits to openclaw:main
1+

import { describe, expect, it, vi } from "vitest";

2+

import {

3+

foldPostCoreFinalizeIntoResult,

4+

type PostCoreFinalizeSpawner,

5+

runPostCoreFinalizeAfterGatewayUpdate,

6+

} from "./update-post-core-finalize.js";

7+

import type { UpdateRunResult } from "./update-runner.js";

8+9+

function gitOkResult(overrides: Partial<UpdateRunResult> = {}): UpdateRunResult {

10+

return {

11+

status: "ok",

12+

mode: "git",

13+

root: "/srv/openclaw",

14+

before: { sha: "aaa", version: "2026.5.3" },

15+

after: { sha: "bbb", version: "2026.6.1" },

16+

steps: [],

17+

durationMs: 10,

18+

...overrides,

19+

};

20+

}

21+22+

const ENTRYPOINT = "/srv/openclaw/dist/index.mjs";

23+

const resolveEntrypointOk = async () => ENTRYPOINT;

24+25+

describe("runPostCoreFinalizeAfterGatewayUpdate", () => {

26+

it("skips non-git update modes", async () => {

27+

const spawnFinalize = vi.fn<PostCoreFinalizeSpawner>();

28+

for (const result of [

29+

gitOkResult({ mode: "pnpm" }),

30+

gitOkResult({ status: "error" }),

31+

gitOkResult({ status: "skipped" }),

32+

gitOkResult({ root: undefined }),

33+

]) {

34+

const outcome = await runPostCoreFinalizeAfterGatewayUpdate({

35+

result,

36+

resolveEntrypoint: resolveEntrypointOk,

37+

spawnFinalize,

38+

});

39+

expect(outcome).toEqual({ status: "skipped", reason: "not-git-update" });

40+

}

41+

expect(spawnFinalize).not.toHaveBeenCalled();

42+

});

43+44+

it("skips when no built entrypoint is found", async () => {

45+

const spawnFinalize = vi.fn<PostCoreFinalizeSpawner>();

46+

const outcome = await runPostCoreFinalizeAfterGatewayUpdate({

47+

result: gitOkResult(),

48+

resolveEntrypoint: async () => undefined,

49+

spawnFinalize,

50+

});

51+

expect(outcome).toEqual({ status: "skipped", reason: "entrypoint-missing" });

52+

expect(spawnFinalize).not.toHaveBeenCalled();

53+

});

54+55+

it("spawns `update finalize` against the rebuilt binary and reports success", async () => {

56+

const spawnFinalize = vi.fn<PostCoreFinalizeSpawner>(async () => ({ code: 0 }));

57+

const outcome = await runPostCoreFinalizeAfterGatewayUpdate({

58+

result: gitOkResult(),

59+

channel: "stable",

60+

timeoutMs: 120_000,

61+

resolveEntrypoint: resolveEntrypointOk,

62+

spawnFinalize,

63+

});

64+

expect(outcome).toEqual({ status: "ok", entrypoint: ENTRYPOINT });

65+

expect(spawnFinalize).toHaveBeenCalledTimes(1);

66+

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

67+

// Reconcile runs through the designed finalizer; never restarts (RPC owns restart).

68+

expect(call.argv).toEqual([

69+

expect.any(String),

70+

ENTRYPOINT,

71+

"update",

72+

"finalize",

73+

"--json",

74+

"--yes",

75+

"--no-restart",

76+

"--channel",

77+

"stable",

78+

"--timeout",

79+

"120",

80+

]);

81+

// Host-compat resolution is pinned to the just-installed core version.

82+

expect(call.env.OPENCLAW_COMPATIBILITY_HOST_VERSION).toBe("2026.6.1");

83+

});

84+85+

it("omits channel/timeout flags when not provided", async () => {

86+

const spawnFinalize = vi.fn<PostCoreFinalizeSpawner>(async () => ({ code: 0 }));

87+

await runPostCoreFinalizeAfterGatewayUpdate({

88+

result: gitOkResult(),

89+

resolveEntrypoint: resolveEntrypointOk,

90+

spawnFinalize,

91+

});

92+

const argv = spawnFinalize.mock.calls[0]![0].argv;

93+

expect(argv).not.toContain("--channel");

94+

expect(argv).not.toContain("--timeout");

95+

});

96+97+

it("reports error on a non-zero finalize exit", async () => {

98+

const spawnFinalize = vi.fn<PostCoreFinalizeSpawner>(async () => ({

99+

code: 1,

100+

stderr: "convergence failed",

101+

}));

102+

const outcome = await runPostCoreFinalizeAfterGatewayUpdate({

103+

result: gitOkResult(),

104+

resolveEntrypoint: resolveEntrypointOk,

105+

spawnFinalize,

106+

});

107+

expect(outcome).toEqual({

108+

status: "error",

109+

reason: "nonzero-exit",

110+

entrypoint: ENTRYPOINT,

111+

exitCode: 1,

112+

message: "convergence failed",

113+

});

114+

});

115+116+

it("reports error when the finalize spawn throws", async () => {

117+

const spawnFinalize = vi.fn<PostCoreFinalizeSpawner>(async () => {

118+

throw new Error("ENOENT");

119+

});

120+

const outcome = await runPostCoreFinalizeAfterGatewayUpdate({

121+

result: gitOkResult(),

122+

resolveEntrypoint: resolveEntrypointOk,

123+

spawnFinalize,

124+

});

125+

expect(outcome).toEqual({

126+

status: "error",

127+

reason: "spawn-failed",

128+

entrypoint: ENTRYPOINT,

129+

message: "ENOENT",

130+

});

131+

});

132+

});

133+134+

describe("foldPostCoreFinalizeIntoResult", () => {

135+

it("leaves the result unchanged for ok/skipped outcomes", () => {

136+

const result = gitOkResult();

137+

expect(foldPostCoreFinalizeIntoResult(result, { status: "ok", entrypoint: ENTRYPOINT })).toBe(

138+

result,

139+

);

140+

expect(

141+

foldPostCoreFinalizeIntoResult(result, { status: "skipped", reason: "not-git-update" }),

142+

).toBe(result);

143+

});

144+145+

it("flips status to error so the RPC restart gate is skipped", () => {

146+

const result = gitOkResult();

147+

const folded = foldPostCoreFinalizeIntoResult(result, {

148+

status: "error",

149+

reason: "nonzero-exit",

150+

entrypoint: ENTRYPOINT,

151+

exitCode: 2,

152+

message: "boom",

153+

});

154+

expect(folded.status).toBe("error");

155+

expect(folded.reason).toBe("post-core-plugin-finalize-failed");

156+

expect(folded.steps.at(-1)).toMatchObject({

157+

name: "post-core plugin finalize",

158+

exitCode: 2,

159+

stderrTail: "boom",

160+

});

161+

// Core update metadata is preserved for the sentinel.

162+

expect(folded.after).toEqual(result.after);

163+

});

164+

});