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

推荐订阅源

爱范儿
爱范儿
MyScale Blog
MyScale Blog
Recent Announcements
Recent Announcements
N
Netflix TechBlog - Medium
GbyAI
GbyAI
Vercel News
Vercel News
The GitHub Blog
The GitHub Blog
阮一峰的网络日志
阮一峰的网络日志
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
Visual Studio Blog
Martin Fowler
Martin Fowler
腾讯CDC
大猫的无限游戏
大猫的无限游戏
aimingoo的专栏
aimingoo的专栏
云风的 BLOG
云风的 BLOG
J
Java Code Geeks
WordPress大学
WordPress大学
P
Proofpoint News Feed
雷峰网
雷峰网
酷 壳 – CoolShell
酷 壳 – CoolShell
有赞技术团队
有赞技术团队
人人都是产品经理
人人都是产品经理
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Y
Y Combinator 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
test: fix full ci suite follow-ups · openclaw/openclaw@b8...
steipete · 2026-04-27 · via Recent Commits to openclaw:main

@@ -25,6 +25,7 @@ const serviceLoaded = vi.fn();

2525

const prepareRestartScript = vi.fn();

2626

const runRestartScript = vi.fn();

2727

const mockedRunDaemonInstall = vi.fn();

28+

const serviceReadCommand = vi.fn();

2829

const serviceReadRuntime = vi.fn();

2930

const inspectPortUsage = vi.fn();

3031

const classifyPortListener = vi.fn();

@@ -164,8 +165,27 @@ vi.mock("../plugins/installed-plugin-index-records.js", async (importOriginal) =

164165

});

165166166167

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

168+

readGatewayServiceState: async () => {

169+

const command = await serviceReadCommand();

170+

const env = {

171+

...process.env,

172+

...(command && typeof command === "object" && "environment" in command

173+

? (command.environment as NodeJS.ProcessEnv | undefined)

174+

: undefined),

175+

};

176+

const [loaded, runtime] = await Promise.all([serviceLoaded({ env }), serviceReadRuntime(env)]);

177+

return {

178+

installed: command !== null,

179+

loaded,

180+

running: runtime?.status === "running",

181+

env,

182+

command,

183+

runtime,

184+

};

185+

},

167186

resolveGatewayService: vi.fn(() => ({

168187

isLoaded: (...args: unknown[]) => serviceLoaded(...args),

188+

readCommand: (...args: unknown[]) => serviceReadCommand(...args),

169189

readRuntime: (...args: unknown[]) => serviceReadRuntime(...args),

170190

})),

171191

}));

@@ -451,6 +471,9 @@ describe("update-cli", () => {

451471

readPackageVersion.mockResolvedValue("1.0.0");

452472

resolveGlobalManager.mockResolvedValue("npm");

453473

serviceLoaded.mockResolvedValue(false);

474+

serviceReadCommand.mockImplementation(async () =>

475+

(await serviceLoaded()) ? { programArguments: ["openclaw", "gateway", "run"] } : null,

476+

);

454477

serviceReadRuntime.mockResolvedValue({

455478

status: "running",

456479

pid: 4242,

@@ -543,11 +566,12 @@ describe("update-cli", () => {

543566

});

544567545568

it("keeps downgrade post-update work in the current process", async () => {

569+

const downgradedRoot = createCaseDir("openclaw-downgraded-root");

546570

setupUpdatedRootRefresh({

547571

gatewayUpdateImpl: async () =>

548572

makeOkUpdateResult({

549573

mode: "npm",

550-

root: createCaseDir("openclaw-downgraded-root"),

574+

root: downgradedRoot,

551575

before: { version: "2026.4.14" },

552576

after: { version: "2026.4.10" },

553577

}),

@@ -574,13 +598,13 @@ describe("update-cli", () => {

574598

url: "ws://127.0.0.1:18789",

575599

});

576600577-

await updateCommand({ yes: true, tag: "2026.4.10" });

601+

await updateCommand({ yes: true, tag: "2026.4.10", restart: false });

578602579603

expect(spawn).not.toHaveBeenCalled();

580604

expect(syncPluginsForUpdateChannel).toHaveBeenCalled();

581605

expect(updateNpmInstalledPlugins).toHaveBeenCalled();

582-

expect(runDaemonInstall).toHaveBeenCalled();

583-

expect(probeGateway).toHaveBeenCalled();

606+

expect(runDaemonInstall).not.toHaveBeenCalled();

607+

expect(probeGateway).not.toHaveBeenCalled();

584608

expect(defaultRuntime.exit).not.toHaveBeenCalledWith(1);

585609

});

586610

@@ -1872,25 +1896,32 @@ describe("update-cli", () => {

1872189618731897

await updateCommand({ yes: true });

187418981875-

expect(runDaemonInstall).toHaveBeenCalledWith({

1876-

force: true,

1877-

json: undefined,

1878-

});

1899+

expect(runDaemonInstall).not.toHaveBeenCalled();

18791900

expect(runRestartScript).not.toHaveBeenCalled();

18801901

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

1902+

expect(

1903+

vi

1904+

.mocked(defaultRuntime.log)

1905+

.mock.calls.map((call) => String(call[0]))

1906+

.join("\n"),

1907+

).toContain("updated install entrypoint not found");

18811908

});

1882190918831910

it("fails a JSON package update when fallback restart leaves the old gateway running", async () => {

1911+

const updatedRoot = createCaseDir("openclaw-updated-root");

1912+

const updatedEntrypoint = path.join(updatedRoot, "dist", "entry.js");

18841913

setupUpdatedRootRefresh({

1914+

entrypoints: [updatedEntrypoint],

18851915

gatewayUpdateImpl: async () =>

18861916

makeOkUpdateResult({

18871917

mode: "npm",

1888-

root: createCaseDir("openclaw-updated-root"),

1918+

root: updatedRoot,

18891919

before: { version: "2026.4.23" },

18901920

after: { version: "2026.4.24" },

18911921

}),

18921922

});

18931923

prepareRestartScript.mockResolvedValue(null);

1924+

serviceLoaded.mockResolvedValue(true);

18941925

probeGateway.mockResolvedValue({

18951926

ok: true,

18961927

close: null,

@@ -1911,7 +1942,11 @@ describe("update-cli", () => {

19111942

await updateCommand({ yes: true, json: true });

1912194319131944

expect(runRestartScript).not.toHaveBeenCalled();

1914-

expect(runDaemonRestart).toHaveBeenCalled();

1945+

expect(runDaemonRestart).not.toHaveBeenCalled();

1946+

expect(runCommandWithTimeout).toHaveBeenCalledWith(

1947+

[expect.stringMatching(/node/), updatedEntrypoint, "gateway", "restart", "--json"],

1948+

expect.objectContaining({ cwd: updatedRoot, timeoutMs: 60_000 }),

1949+

);

19151950

expect(probeGateway).toHaveBeenCalledWith(expect.objectContaining({ includeDetails: true }));

19161951

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

19171952

expect(defaultRuntime.writeJson).not.toHaveBeenCalled();

@@ -1927,11 +1962,14 @@ describe("update-cli", () => {

19271962

});

1928196319291964

it("fails a package update when the restarted gateway reports activated plugin load errors", async () => {

1965+

const updatedRoot = createCaseDir("openclaw-updated-root");

1966+

const updatedEntrypoint = path.join(updatedRoot, "dist", "entry.js");

19301967

setupUpdatedRootRefresh({

1968+

entrypoints: [updatedEntrypoint],

19311969

gatewayUpdateImpl: async () =>

19321970

makeOkUpdateResult({

19331971

mode: "npm",

1934-

root: createCaseDir("openclaw-updated-root"),

1972+

root: updatedRoot,

19351973

before: { version: "2026.4.23" },

19361974

after: { version: "2026.4.24" },

19371975

}),