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

推荐订阅源

有赞技术团队
有赞技术团队
Martin Fowler
Martin Fowler
N
Netflix TechBlog - Medium
WordPress大学
WordPress大学
罗磊的独立博客
H
Help Net Security
MongoDB | Blog
MongoDB | Blog
A
About on SuperTechFans
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
D
Docker
云风的 BLOG
云风的 BLOG
Microsoft Security Blog
Microsoft Security Blog
Blog — PlanetScale
Blog — PlanetScale
P
Proofpoint News Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
I
InfoQ
J
Java Code Geeks
博客园 - 聂微东
大猫的无限游戏
大猫的无限游戏
Engineering at Meta
Engineering at Meta
美团技术团队
小众软件
小众软件
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog

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): preserve RPC pre-update config · openclaw/op...
vincentkoc · 2026-06-18 · via Recent Commits to openclaw:main
11

// Update method tests cover update.run/status, restart sentinel metadata,

22

// managed-service handoff, restart scheduling, and delivery context preservation.

33

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

4+

import type { ConfigFileSnapshot, OpenClawConfig } from "../../config/types.openclaw.js";

45

import type { RestartSentinelPayload } from "../../infra/restart-sentinel.js";

56

import type { RespawnSupervisor } from "../../infra/supervisor-markers.js";

67

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

@@ -24,6 +25,7 @@ const isRestartEnabledMock = vi.fn(() => true);

2425

const readPackageVersionMock = vi.fn(async () => "1.0.0");

2526

const detectRespawnSupervisorMock = vi.fn<() => RespawnSupervisor | null>(() => null);

2627

const normalizeUpdateChannelMock = vi.fn((): "stable" | "beta" | "dev" | null => null);

28+

const readConfigFileSnapshotMock = vi.fn<() => Promise<ConfigFileSnapshot>>();

2729

const startManagedServiceUpdateHandoffMock = vi.fn(async () => ({

2830

status: "started" as const,

2931

pid: 12345,

@@ -52,6 +54,7 @@ type UpdateRunPayload = {

52545355

vi.mock("../../config/config.js", () => ({

5456

getRuntimeConfig: () => ({ update: {} }),

57+

readConfigFileSnapshot: readConfigFileSnapshotMock,

5558

}));

56595760

vi.mock("../../config/commands.flags.js", () => ({

@@ -179,6 +182,21 @@ beforeEach(() => {

179182

readPackageVersionMock.mockResolvedValue("1.0.0");

180183

normalizeUpdateChannelMock.mockReset();

181184

normalizeUpdateChannelMock.mockReturnValue(null);

185+

readConfigFileSnapshotMock.mockReset();

186+

readConfigFileSnapshotMock.mockResolvedValue({

187+

path: "/tmp/openclaw.json",

188+

exists: true,

189+

raw: "{}",

190+

parsed: {},

191+

resolved: {} as OpenClawConfig,

192+

sourceConfig: {} as OpenClawConfig,

193+

valid: true,

194+

config: {} as OpenClawConfig,

195+

runtimeConfig: {} as OpenClawConfig,

196+

issues: [],

197+

warnings: [],

198+

legacyIssues: [],

199+

});

182200

detectRespawnSupervisorMock.mockReset();

183201

detectRespawnSupervisorMock.mockReturnValue(null);

184202

runGatewayUpdateMock.mockClear();

@@ -724,6 +742,46 @@ describe("update.run post-core plugin finalize", () => {

724742

expect(payload?.result?.status).toBe("ok");

725743

});

726744745+

it("carries the pre-doctor source config into the git finalizer", async () => {

746+

const preUpdateConfig = {

747+

channels: {

748+

whatsapp: {

749+

enabled: true,

750+

},

751+

},

752+

} as OpenClawConfig;

753+

readConfigFileSnapshotMock.mockResolvedValueOnce({

754+

path: "/tmp/openclaw.json",

755+

exists: true,

756+

raw: JSON.stringify(preUpdateConfig),

757+

parsed: preUpdateConfig,

758+

resolved: preUpdateConfig,

759+

sourceConfig: preUpdateConfig,

760+

valid: true,

761+

config: preUpdateConfig,

762+

runtimeConfig: preUpdateConfig,

763+

issues: [],

764+

warnings: [],

765+

legacyIssues: [],

766+

});

767+

runPostCoreFinalizeAfterGatewayUpdateMock.mockResolvedValueOnce({

768+

status: "ok",

769+

entrypoint: "/tmp/openclaw-git/dist/index.mjs",

770+

});

771+

mockGitOkUpdate("/tmp/openclaw-git");

772+773+

await captureUpdateRunPayload();

774+775+

const [finalizeParams] = firstMockCall(

776+

runPostCoreFinalizeAfterGatewayUpdateMock,

777+

"post-core finalize",

778+

) as [{ preUpdateConfig?: { sourceConfig?: OpenClawConfig; authoredConfig?: OpenClawConfig } }];

779+

expect(finalizeParams.preUpdateConfig).toEqual({

780+

sourceConfig: preUpdateConfig,

781+

authoredConfig: preUpdateConfig,

782+

});

783+

});

784+727785

it("blocks the restart when post-core plugin finalize fails", async () => {

728786

runPostCoreFinalizeAfterGatewayUpdateMock.mockResolvedValueOnce({

729787

status: "error",