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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Jina AI
Jina AI
博客园 - 司徒正美
大猫的无限游戏
大猫的无限游戏
博客园 - 三生石上(FineUI控件)
J
Java Code Geeks
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
爱范儿
爱范儿
美团技术团队
腾讯CDC
博客园 - Franky
MyScale Blog
MyScale Blog
人人都是产品经理
人人都是产品经理
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
aimingoo的专栏
aimingoo的专栏
博客园_首页
V
V2EX
Martin Fowler
Martin Fowler
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: clarify launchd command assertions · openclaw/openc...
steipete · 2026-05-08 · via Recent Commits to openclaw:main

@@ -109,6 +109,10 @@ async function expectRestartLaunchAgentKickstartFailure(

109109

).rejects.toThrow("launchctl kickstart failed: Input/output error");

110110

}

111111112+

function launchctlCommandNames(): string[] {

113+

return state.launchctlCalls.map(([command]) => command ?? "");

114+

}

115+112116

function normalizeLaunchctlArgs(file: string, args: string[]): string[] {

113117

if (file === "launchctl") {

114118

return args;

@@ -400,7 +404,7 @@ describe("launchd bootstrap repair", () => {

400404

expect(repair).toEqual({ ok: true, status: "repaired" });

401405402406

expectLaunchctlEnableBootstrapOrder(env);

403-

expect(state.launchctlCalls.some((call) => call[0] === "kickstart")).toBe(false);

407+

expect(launchctlCommandNames()).not.toContain("kickstart");

404408

});

405409406410

it("treats bootstrap exit 130 as success and nudges the already-loaded service when stopped", async () => {

@@ -426,7 +430,7 @@ describe("launchd bootstrap repair", () => {

426430

const repair = await repairLaunchAgentBootstrap({ env });

427431428432

expect(repair).toEqual({ ok: true, status: "already-loaded" });

429-

expect(state.launchctlCalls.some((call) => call[0] === "kickstart")).toBe(false);

433+

expect(launchctlCommandNames()).not.toContain("kickstart");

430434

});

431435432436

it("treats 'already exists in domain' bootstrap failures as success and nudges the service when stopped", async () => {

@@ -455,7 +459,7 @@ describe("launchd bootstrap repair", () => {

455459

status: "bootstrap-failed",

456460

detail: expect.stringContaining("Could not find specified service"),

457461

});

458-

expect(state.launchctlCalls.some((call) => call[0] === "kickstart")).toBe(false);

462+

expect(launchctlCommandNames()).not.toContain("kickstart");

459463

});

460464461465

it("returns a typed kickstart failure when already-loaded recovery cannot nudge the service", async () => {

@@ -637,8 +641,8 @@ describe("launchd install", () => {

637641

const domain = typeof process.getuid === "function" ? `gui/${process.getuid()}` : "gui/501";

638642

const serviceId = `${domain}/ai.openclaw.gateway`;

639643

expect(state.launchctlCalls).toContainEqual(["bootout", serviceId]);

640-

expect(state.launchctlCalls.some((call) => call[0] === "disable")).toBe(false);

641-

expect(state.launchctlCalls.some((call) => call[0] === "stop")).toBe(false);

644+

expect(launchctlCommandNames()).not.toContain("disable");

645+

expect(launchctlCommandNames()).not.toContain("stop");

642646

expect(output).toContain("Stopped LaunchAgent");

643647

});

644648

@@ -656,7 +660,7 @@ describe("launchd install", () => {

656660

const serviceId = `${domain}/ai.openclaw.gateway`;

657661

expect(state.launchctlCalls).toContainEqual(["disable", serviceId]);

658662

expect(state.launchctlCalls).toContainEqual(["stop", "ai.openclaw.gateway"]);

659-

expect(state.launchctlCalls.some((call) => call[0] === "bootout")).toBe(false);

663+

expect(launchctlCommandNames()).not.toContain("bootout");

660664

expect(output).toContain("Stopped LaunchAgent");

661665

});

662666

@@ -678,7 +682,7 @@ describe("launchd install", () => {

678682

"disable",

679683

`${typeof process.getuid === "function" ? `gui/${process.getuid()}` : "gui/501"}/ai.openclaw.gateway`,

680684

]);

681-

expect(state.launchctlCalls.some((call) => call[0] === "bootout")).toBe(false);

685+

expect(launchctlCommandNames()).not.toContain("bootout");

682686

expect(output).toContain("Stopped LaunchAgent");

683687

expect(output).not.toContain("degraded");

684688

});

@@ -695,7 +699,7 @@ describe("launchd install", () => {

695699696700

await stopLaunchAgent({ env, stdout });

697701698-

expect(state.launchctlCalls.some((call) => call[0] === "disable")).toBe(false);

702+

expect(launchctlCommandNames()).not.toContain("disable");

699703

expect(output).toContain("Stopped LaunchAgent");

700704

expect(output).not.toContain("degraded");

701705

});

@@ -711,8 +715,8 @@ describe("launchd install", () => {

711715712716

await stopLaunchAgent({ env, stdout, disable: true });

713717714-

expect(state.launchctlCalls.some((call) => call[0] === "stop")).toBe(false);

715-

expect(state.launchctlCalls.some((call) => call[0] === "bootout")).toBe(true);

718+

expect(launchctlCommandNames()).not.toContain("stop");

719+

expect(launchctlCommandNames()).toContain("bootout");

716720

expect(output).toContain("Stopped LaunchAgent (degraded)");

717721

expect(output).toContain("used bootout fallback");

718722

});

@@ -728,8 +732,8 @@ describe("launchd install", () => {

728732729733

await runStopLaunchAgentWithFakeTimers({ env, stdout, disable: true });

730734731-

expect(state.launchctlCalls.some((call) => call[0] === "stop")).toBe(true);

732-

expect(state.launchctlCalls.some((call) => call[0] === "bootout")).toBe(true);

735+

expect(launchctlCommandNames()).toContain("stop");

736+

expect(launchctlCommandNames()).toContain("bootout");

733737

expect(output).toContain("Stopped LaunchAgent (degraded)");

734738

expect(output).toContain("did not fully stop the service");

735739

});

@@ -746,7 +750,7 @@ describe("launchd install", () => {

746750747751

await runStopLaunchAgentWithFakeTimers({ env, stdout, disable: true });

748752749-

expect(state.launchctlCalls.some((call) => call[0] === "bootout")).toBe(true);

753+

expect(launchctlCommandNames()).toContain("bootout");

750754

expect(output).toContain("Stopped LaunchAgent (degraded)");

751755

expect(output).toContain("did not fully stop the service");

752756

});

@@ -762,7 +766,7 @@ describe("launchd install", () => {

762766763767

await stopLaunchAgent({ env, stdout, disable: true });

764768765-

expect(state.launchctlCalls.some((call) => call[0] === "bootout")).toBe(true);

769+

expect(launchctlCommandNames()).toContain("bootout");

766770

expect(output).toContain("Stopped LaunchAgent (degraded)");

767771

expect(output).toContain("launchctl stop failed; used bootout fallback");

768772

});

@@ -779,7 +783,7 @@ describe("launchd install", () => {

779783780784

await runStopLaunchAgentWithFakeTimers({ env, stdout, disable: true });

781785782-

expect(state.launchctlCalls.some((call) => call[0] === "bootout")).toBe(true);

786+

expect(launchctlCommandNames()).toContain("bootout");

783787

expect(output).toContain("Stopped LaunchAgent (degraded)");

784788

expect(output).toContain("could not confirm stop");

785789

});

@@ -805,8 +809,8 @@ describe("launchd install", () => {

805809

await expect(stopLaunchAgent({ env, stdout: new PassThrough() })).rejects.toThrow(

806810

"launchctl bootout failed: launchctl bootout permission denied",

807811

);

808-

expect(state.launchctlCalls.some((call) => call[0] === "disable")).toBe(false);

809-

expect(state.launchctlCalls.some((call) => call[0] === "stop")).toBe(false);

812+

expect(launchctlCommandNames()).not.toContain("disable");

813+

expect(launchctlCommandNames()).not.toContain("stop");

810814

});

811815812816

it("sanitizes launchctl details before writing warnings (--disable)", async () => {

@@ -842,8 +846,8 @@ describe("launchd install", () => {

842846

expect(cleanStaleGatewayProcessesSync).toHaveBeenCalledWith(18789);

843847

expect(state.launchctlCalls).toContainEqual(["enable", serviceId]);

844848

expect(state.launchctlCalls).toContainEqual(["kickstart", "-k", serviceId]);

845-

expect(state.launchctlCalls.some((call) => call[0] === "bootout")).toBe(false);

846-

expect(state.launchctlCalls.some((call) => call[0] === "bootstrap")).toBe(false);

849+

expect(launchctlCommandNames()).not.toContain("bootout");

850+

expect(launchctlCommandNames()).not.toContain("bootstrap");

847851

});

848852849853

it("uses the configured gateway port for stale cleanup", async () => {

@@ -889,10 +893,10 @@ describe("launchd install", () => {

889893

);

890894891895

expect(result).toEqual({ outcome: "completed" });

892-

expect(state.launchctlCalls.some((call) => call[0] === "enable")).toBe(true);

893-

expect(state.launchctlCalls.some((call) => call[0] === "bootstrap")).toBe(true);

896+

expect(launchctlCommandNames()).toContain("enable");

897+

expect(launchctlCommandNames()).toContain("bootstrap");

894898

expect(kickstartCalls).toHaveLength(1);

895-

expect(state.launchctlCalls.some((call) => call[0] === "bootout")).toBe(false);

899+

expect(launchctlCommandNames()).not.toContain("bootout");

896900

});

897901898902

it("surfaces the original kickstart failure when the service is still loaded", async () => {

@@ -902,8 +906,8 @@ describe("launchd install", () => {

902906903907

await expectRestartLaunchAgentKickstartFailure(env);

904908905-

expect(state.launchctlCalls.some((call) => call[0] === "enable")).toBe(true);

906-

expect(state.launchctlCalls.some((call) => call[0] === "bootstrap")).toBe(false);

909+

expect(launchctlCommandNames()).toContain("enable");

910+

expect(launchctlCommandNames()).not.toContain("bootstrap");

907911

});

908912909913

it("re-bootstraps when kickstart failure leaves the service unloaded (#52208)", async () => {

@@ -914,8 +918,8 @@ describe("launchd install", () => {

914918915919

await expectRestartLaunchAgentKickstartFailure(env);

916920917-

expect(state.launchctlCalls.some((call) => call[0] === "enable")).toBe(true);

918-

expect(state.launchctlCalls.some((call) => call[0] === "bootstrap")).toBe(true);

921+

expect(launchctlCommandNames()).toContain("enable");

922+

expect(launchctlCommandNames()).toContain("bootstrap");

919923

});

920924921925

it("skips re-bootstrap when kickstart fails but service is still loaded (#52208)", async () => {

@@ -925,8 +929,8 @@ describe("launchd install", () => {

925929926930

await expectRestartLaunchAgentKickstartFailure(env);

927931928-

expect(state.launchctlCalls.some((call) => call[0] === "enable")).toBe(true);

929-

expect(state.launchctlCalls.some((call) => call[0] === "bootstrap")).toBe(false);

932+

expect(launchctlCommandNames()).toContain("enable");

933+

expect(launchctlCommandNames()).not.toContain("bootstrap");

930934

});

931935932936

it("hands restart off to a detached helper when invoked from the current LaunchAgent", async () => {