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

推荐订阅源

MyScale Blog
MyScale Blog
博客园 - 司徒正美
A
About on SuperTechFans
Vercel News
Vercel News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
爱范儿
爱范儿
I
InfoQ
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园_首页
Google DeepMind News
Google DeepMind News
T
Tailwind CSS Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
F
Fortinet All Blogs
S
SegmentFault 最新的问题
阮一峰的网络日志
阮一峰的网络日志
D
Docker
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
G
Google Developers Blog
Stack Overflow Blog
Stack Overflow Blog
M
MIT News - Artificial intelligence
Jina AI
Jina AI
H
Help Net Security
量子位
IT之家
IT之家

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: tighten watch node assertions · openclaw/openclaw@5...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -82,6 +82,29 @@ const startWatchRun = ({

8282

return { watcher, createWatcher, fakeProcess, runPromise };

8383

};

848485+

function requireRecord(value: unknown, label: string): Record<string, unknown> {

86+

if (!value || typeof value !== "object") {

87+

throw new Error(`expected ${label} to be an object`);

88+

}

89+

return value as Record<string, unknown>;

90+

}

91+92+

function requireMockCall(mock: ReturnType<typeof vi.fn>, callIndex: number): unknown[] {

93+

const call = mock.mock.calls[callIndex] as unknown[] | undefined;

94+

if (!call) {

95+

throw new Error(`expected mock call ${callIndex}`);

96+

}

97+

return call;

98+

}

99+100+

function requireSpawnOptions(spawn: ReturnType<typeof vi.fn>, callIndex: number) {

101+

return requireRecord(requireMockCall(spawn, callIndex)[2], "spawn options");

102+

}

103+104+

function requireSpawnEnv(spawn: ReturnType<typeof vi.fn>, callIndex: number) {

105+

return requireRecord(requireSpawnOptions(spawn, callIndex).env, "spawn env");

106+

}

107+85108

describe("watch-node script", () => {

86109

it("wires chokidar watch to run-node with watched source/config paths", async () => {

87110

const { child, spawn, watcher, createWatcher, fakeProcess } = createWatchHarness();

@@ -134,30 +157,19 @@ describe("watch-node script", () => {

134157

expect(watchOptions.ignored("tsconfig.json")).toBe(false);

135158136159

expect(spawn).toHaveBeenCalledTimes(1);

137-

expect(spawn).toHaveBeenCalledWith(

138-

"/usr/local/bin/node",

139-

["scripts/run-node.mjs", "gateway", "--force"],

140-

expect.objectContaining({

141-

cwd,

142-

stdio: "inherit",

143-

env: expect.objectContaining({

144-

PATH: "/usr/bin",

145-

OPENCLAW_WATCH_MODE: "1",

146-

OPENCLAW_WATCH_SESSION: "1700000000000-4242",

147-

OPENCLAW_NO_RESPAWN: "1",

148-

OPENCLAW_WATCH_COMMAND: "gateway --force",

149-

}),

150-

}),

151-

);

152-

expect(spawn).toHaveBeenCalledWith(

153-

"/usr/local/bin/node",

154-

["scripts/run-node.mjs", "gateway", "--force"],

155-

expect.objectContaining({

156-

env: expect.not.objectContaining({

157-

OPENCLAW_TRACE_SYNC_IO: expect.any(String),

158-

}),

159-

}),

160-

);

160+

const spawnCall = requireMockCall(spawn, 0);

161+

expect(spawnCall[0]).toBe("/usr/local/bin/node");

162+

expect(spawnCall[1]).toEqual(["scripts/run-node.mjs", "gateway", "--force"]);

163+

const spawnOptions = requireSpawnOptions(spawn, 0);

164+

expect(spawnOptions.cwd).toBe(cwd);

165+

expect(spawnOptions.stdio).toBe("inherit");

166+

const spawnEnv = requireSpawnEnv(spawn, 0);

167+

expect(spawnEnv.PATH).toBe("/usr/bin");

168+

expect(spawnEnv.OPENCLAW_WATCH_MODE).toBe("1");

169+

expect(spawnEnv.OPENCLAW_WATCH_SESSION).toBe("1700000000000-4242");

170+

expect(spawnEnv.OPENCLAW_NO_RESPAWN).toBe("1");

171+

expect(spawnEnv.OPENCLAW_WATCH_COMMAND).toBe("gateway --force");

172+

expect(spawnEnv.OPENCLAW_TRACE_SYNC_IO).toBeUndefined();

161173

fakeProcess.emit("SIGINT");

162174

const exitCode = await runPromise;

163175

expect(exitCode).toBe(130);

@@ -179,15 +191,10 @@ describe("watch-node script", () => {

179191

spawn,

180192

});

181193182-

expect(spawn).toHaveBeenCalledWith(

183-

"/usr/local/bin/node",

184-

["scripts/run-node.mjs", "gateway", "--force"],

185-

expect.objectContaining({

186-

env: expect.objectContaining({

187-

OPENCLAW_TRACE_SYNC_IO: "0",

188-

}),

189-

}),

190-

);

194+

const spawnCall = requireMockCall(spawn, 0);

195+

expect(spawnCall[0]).toBe("/usr/local/bin/node");

196+

expect(spawnCall[1]).toEqual(["scripts/run-node.mjs", "gateway", "--force"]);

197+

expect(requireSpawnEnv(spawn, 0).OPENCLAW_TRACE_SYNC_IO).toBe("0");

191198192199

fakeProcess.emit("SIGINT");

193200

await runPromise;

@@ -315,23 +322,24 @@ describe("watch-node script", () => {

315322

await new Promise((resolve) => setImmediate(resolve));

316323317324

expect(spawn).toHaveBeenCalledTimes(2);

318-

expect(spawn).toHaveBeenNthCalledWith(

319-

2,

320-

"/usr/local/bin/node",

321-

["scripts/run-node.mjs", "doctor", "--fix", "--non-interactive"],

322-

expect.objectContaining({ stdio: "inherit" }),

323-

);

325+

const doctorSpawnCall = requireMockCall(spawn, 1);

326+

expect(doctorSpawnCall[0]).toBe("/usr/local/bin/node");

327+

expect(doctorSpawnCall[1]).toEqual([

328+

"scripts/run-node.mjs",

329+

"doctor",

330+

"--fix",

331+

"--non-interactive",

332+

]);

333+

expect(requireSpawnOptions(spawn, 1).stdio).toBe("inherit");

324334325335

doctor.emit("exit", 0, null);

326336

await new Promise((resolve) => setImmediate(resolve));

327337328338

expect(spawn).toHaveBeenCalledTimes(3);

329-

expect(spawn).toHaveBeenNthCalledWith(

330-

3,

331-

"/usr/local/bin/node",

332-

["scripts/run-node.mjs", "gateway", "--force"],

333-

expect.objectContaining({ stdio: "inherit" }),

334-

);

339+

const restartedGatewaySpawnCall = requireMockCall(spawn, 2);

340+

expect(restartedGatewaySpawnCall[0]).toBe("/usr/local/bin/node");

341+

expect(restartedGatewaySpawnCall[1]).toEqual(["scripts/run-node.mjs", "gateway", "--force"]);

342+

expect(requireSpawnOptions(spawn, 2).stdio).toBe("inherit");

335343336344

fakeProcess.emit("SIGINT");

337345

const exitCode = await runPromise;

@@ -396,16 +404,12 @@ describe("watch-node script", () => {

396404

spawn,

397405

});

398406399-

expect(spawn).toHaveBeenCalledWith(

400-

"/usr/local/bin/node",

401-

["scripts/run-node.mjs", "gateway", "--force"],

402-

expect.objectContaining({

403-

env: expect.objectContaining({

404-

LAUNCH_JOB_LABEL: "ai.openclaw.gateway",

405-

OPENCLAW_NO_RESPAWN: "1",

406-

}),

407-

}),

408-

);

407+

const spawnCall = requireMockCall(spawn, 0);

408+

expect(spawnCall[0]).toBe("/usr/local/bin/node");

409+

expect(spawnCall[1]).toEqual(["scripts/run-node.mjs", "gateway", "--force"]);

410+

const spawnEnv = requireSpawnEnv(spawn, 0);

411+

expect(spawnEnv.LAUNCH_JOB_LABEL).toBe("ai.openclaw.gateway");

412+

expect(spawnEnv.OPENCLAW_NO_RESPAWN).toBe("1");

409413410414

fakeProcess.emit("SIGINT");

411415

const exitCode = await runPromise;

@@ -612,11 +616,10 @@ describe("watch-node script", () => {

612616613617

expect(signalProcess).toHaveBeenCalledWith(2121, "SIGTERM");

614618

expect(spawn).toHaveBeenCalledTimes(1);

615-

expect(JSON.parse(fs.readFileSync(lockPath, "utf8"))).toMatchObject({

616-

pid: 4242,

617-

command: "gateway --force",

618-

watchSession: "1700000000000-4242",

619-

});

619+

const lockRecord = requireRecord(JSON.parse(fs.readFileSync(lockPath, "utf8")), "watch lock");

620+

expect(lockRecord.pid).toBe(4242);

621+

expect(lockRecord.command).toBe("gateway --force");

622+

expect(lockRecord.watchSession).toBe("1700000000000-4242");

620623621624

fakeProcess.emit("SIGINT");

622625

const exitCode = await runPromise;