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

推荐订阅源

freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
G
Google Developers Blog
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
S
SegmentFault 最新的问题
宝玉的分享
宝玉的分享
博客园 - Franky
博客园_首页
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
月光博客
月光博客
博客园 - 聂微东
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
小众软件
小众软件
Microsoft Security Blog
Microsoft Security Blog
Last Week in AI
Last Week in AI
Vercel News
Vercel News
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
爱范儿
爱范儿
J
Java Code Geeks
博客园 - 叶小钗
Engineering at Meta
Engineering at Meta
阮一峰的网络日志
阮一峰的网络日志

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: avoid false macOS update failures during gateway shu...
fuller-stack · 2026-06-23 · via Recent Commits to openclaw:main

@@ -65,6 +65,9 @@ const cleanStaleGatewayProcessesSync = vi.hoisted(() =>

6565

const inspectPortUsage = vi.hoisted(() =>

6666

vi.fn(async () => ({ port: 18789, status: "free", listeners: [], hints: [] })),

6767

);

68+

const probePortUsage = vi.hoisted(() =>

69+

vi.fn<typeof import("../infra/ports-probe.js").probePortUsage>(async () => "free"),

70+

);

6871

const formatPortDiagnostics = vi.hoisted(() => vi.fn(() => ["Port 18789 is already in use."]));

6972

const defaultProgramArguments = ["node", "-e", "process.exit(0)"];

7073

@@ -262,6 +265,10 @@ vi.mock("../infra/ports.js", () => ({

262265

formatPortDiagnostics,

263266

}));

264267268+

vi.mock("../infra/ports-probe.js", () => ({

269+

probePortUsage,

270+

}));

271+265272

vi.mock("node:fs/promises", async () => {

266273

const actual = await vi.importActual<typeof import("node:fs/promises")>("node:fs/promises");

267274

const wrapped = {

@@ -354,6 +361,8 @@ beforeEach(() => {

354361

cleanStaleGatewayProcessesSync.mockReturnValue([]);

355362

inspectPortUsage.mockReset();

356363

inspectPortUsage.mockResolvedValue({ port: 18789, status: "free", listeners: [], hints: [] });

364+

probePortUsage.mockReset();

365+

probePortUsage.mockResolvedValue("free");

357366

formatPortDiagnostics.mockReset();

358367

formatPortDiagnostics.mockReturnValue(["Port 18789 is already in use."]);

359368

launchdRestartHandoffState.scheduleDetachedLaunchdRestartHandoff.mockReset();

@@ -1187,6 +1196,42 @@ describe("launchd install", () => {

11871196

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

11881197

});

118911981199+

it("waits for the configured gateway port to finish releasing after bootout", async () => {

1200+

const env = {

1201+

...createDefaultLaunchdEnv(),

1202+

OPENCLAW_GATEWAY_PORT: "19009",

1203+

};

1204+

inspectPortUsage.mockResolvedValueOnce({

1205+

port: 19009,

1206+

status: "busy",

1207+

listeners: [],

1208+

hints: [],

1209+

});

1210+1211+

await runStopLaunchAgentWithFakeTimers({ env, stdout: new PassThrough() });

1212+1213+

expect(inspectPortUsage).toHaveBeenCalledTimes(1);

1214+

expect(probePortUsage).toHaveBeenCalledWith(19009);

1215+

});

1216+1217+

it("keeps waiting until a bind probe explicitly confirms port release", async () => {

1218+

const env = {

1219+

...createDefaultLaunchdEnv(),

1220+

OPENCLAW_GATEWAY_PORT: "19010",

1221+

};

1222+

inspectPortUsage.mockResolvedValueOnce({

1223+

port: 19010,

1224+

status: "busy",

1225+

listeners: [],

1226+

hints: [],

1227+

});

1228+

probePortUsage.mockResolvedValueOnce("busy").mockResolvedValueOnce("unknown");

1229+1230+

await runStopLaunchAgentWithFakeTimers({ env, stdout: new PassThrough() });

1231+1232+

expect(probePortUsage).toHaveBeenCalledTimes(3);

1233+

});

1234+11901235

it("resolves the stop postcondition port from the stored LaunchAgent environment", async () => {

11911236

const env = createDefaultLaunchdEnv();

11921237

await installLaunchAgent({

@@ -1219,9 +1264,10 @@ describe("launchd install", () => {

12191264

listeners: [],

12201265

hints: [],

12211266

});

1267+

probePortUsage.mockResolvedValue("busy");

12221268

formatPortDiagnostics.mockReturnValue(["Port 19004 is held by pid 4242."]);

122312691224-

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

1270+

await expect(runStopLaunchAgentWithFakeTimers({ env, stdout })).rejects.toThrow(

12251271

"gateway port 19004 is still busy after LaunchAgent stop\nPort 19004 is held by pid 4242.",

12261272

);

12271273

@@ -1364,9 +1410,10 @@ describe("launchd install", () => {

13641410

listeners: [],

13651411

hints: [],

13661412

});

1413+

probePortUsage.mockResolvedValue("busy");

13671414

formatPortDiagnostics.mockReturnValue(["Port 19008 is held by pid 4242."]);

136814151369-

await expect(stopLaunchAgent({ env, stdout, disable: true })).rejects.toThrow(

1416+

await expect(runStopLaunchAgentWithFakeTimers({ env, stdout, disable: true })).rejects.toThrow(

13701417

"gateway port 19008 is still busy after LaunchAgent stop\nPort 19008 is held by pid 4242.",

13711418

);

13721419