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

推荐订阅源

Y
Y Combinator Blog
IT之家
IT之家
博客园_首页
量子位
博客园 - 三生石上(FineUI控件)
小众软件
小众软件
博客园 - 聂微东
罗磊的独立博客
酷 壳 – CoolShell
酷 壳 – CoolShell
Hugging Face - Blog
Hugging Face - Blog
V
V2EX
爱范儿
爱范儿
大猫的无限游戏
大猫的无限游戏
宝玉的分享
宝玉的分享
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
雷峰网
雷峰网
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Google DeepMind News
Google DeepMind News
Microsoft Azure Blog
Microsoft Azure Blog
有赞技术团队
有赞技术团队
S
SegmentFault 最新的问题
Engineering at Meta
Engineering at Meta
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com

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: add gateway supervisor restart handoff · openclaw/op...
shakkernerd · 2026-05-05 · via Recent Commits to openclaw:main

@@ -0,0 +1,221 @@

1+

import fs from "node:fs";

2+

import os from "node:os";

3+

import path from "node:path";

4+

import { afterEach, describe, expect, it } from "vitest";

5+

import {

6+

consumeGatewayRestartHandoffForExitedProcessSync,

7+

GATEWAY_SUPERVISOR_RESTART_HANDOFF_FILENAME,

8+

GATEWAY_SUPERVISOR_RESTART_HANDOFF_KIND,

9+

readGatewayRestartHandoffSync,

10+

writeGatewayRestartHandoffSync,

11+

} from "./restart-handoff.js";

12+13+

const tempDirs: string[] = [];

14+15+

function createHandoffEnv(): NodeJS.ProcessEnv {

16+

const dir = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-restart-handoff-"));

17+

tempDirs.push(dir);

18+

return {

19+

...process.env,

20+

OPENCLAW_STATE_DIR: dir,

21+

};

22+

}

23+24+

function handoffPath(env: NodeJS.ProcessEnv): string {

25+

return path.join(env.OPENCLAW_STATE_DIR ?? "", GATEWAY_SUPERVISOR_RESTART_HANDOFF_FILENAME);

26+

}

27+28+

describe("gateway restart handoff", () => {

29+

afterEach(() => {

30+

for (const dir of tempDirs.splice(0)) {

31+

fs.rmSync(dir, { force: true, recursive: true });

32+

}

33+

});

34+35+

it("writes a supervisor handoff for an exited gateway process", () => {

36+

const env = createHandoffEnv();

37+38+

const handoff = writeGatewayRestartHandoffSync({

39+

env,

40+

pid: 12_345,

41+

processInstanceId: "gateway-instance-1",

42+

reason: "plugin source changed",

43+

restartKind: "full-process",

44+

supervisorMode: "launchd",

45+

createdAt: 1_000,

46+

});

47+48+

expect(handoff).toMatchObject({

49+

kind: GATEWAY_SUPERVISOR_RESTART_HANDOFF_KIND,

50+

version: 1,

51+

pid: 12_345,

52+

processInstanceId: "gateway-instance-1",

53+

reason: "plugin source changed",

54+

source: "plugin-change",

55+

restartKind: "full-process",

56+

supervisorMode: "launchd",

57+

createdAt: 1_000,

58+

expiresAt: 61_000,

59+

});

60+

expect(fs.statSync(handoffPath(env)).mode & 0o777).toBe(0o600);

61+

expect(readGatewayRestartHandoffSync(env, 1_500)).toMatchObject({

62+

pid: 12_345,

63+

reason: "plugin source changed",

64+

});

65+

});

66+67+

it("consumes a fresh handoff by exited pid instead of current process pid", () => {

68+

const env = createHandoffEnv();

69+70+

expect(

71+

writeGatewayRestartHandoffSync({

72+

env,

73+

pid: process.pid + 1,

74+

reason: "update.run",

75+

restartKind: "update-process",

76+

supervisorMode: "systemd",

77+

createdAt: 2_000,

78+

}),

79+

).not.toBeNull();

80+81+

expect(

82+

consumeGatewayRestartHandoffForExitedProcessSync({

83+

env,

84+

exitedPid: process.pid + 1,

85+

now: 2_001,

86+

}),

87+

).toMatchObject({

88+

pid: process.pid + 1,

89+

source: "gateway-update",

90+

restartKind: "update-process",

91+

supervisorMode: "systemd",

92+

});

93+

expect(fs.existsSync(handoffPath(env))).toBe(false);

94+

});

95+96+

it("rejects handoffs for a different exited pid and clears them", () => {

97+

const env = createHandoffEnv();

98+99+

expect(

100+

writeGatewayRestartHandoffSync({

101+

env,

102+

pid: 111,

103+

restartKind: "full-process",

104+

supervisorMode: "external",

105+

createdAt: 1_000,

106+

}),

107+

).not.toBeNull();

108+109+

expect(

110+

consumeGatewayRestartHandoffForExitedProcessSync({

111+

env,

112+

exitedPid: 222,

113+

now: 1_001,

114+

}),

115+

).toBeNull();

116+

expect(fs.existsSync(handoffPath(env))).toBe(false);

117+

});

118+119+

it("rejects a handoff when the supplied process instance does not match", () => {

120+

const env = createHandoffEnv();

121+122+

expect(

123+

writeGatewayRestartHandoffSync({

124+

env,

125+

pid: 111,

126+

processInstanceId: "gateway-instance-1",

127+

restartKind: "full-process",

128+

supervisorMode: "external",

129+

createdAt: 1_000,

130+

}),

131+

).not.toBeNull();

132+133+

expect(

134+

consumeGatewayRestartHandoffForExitedProcessSync({

135+

env,

136+

exitedPid: 111,

137+

processInstanceId: "gateway-instance-2",

138+

now: 1_001,

139+

}),

140+

).toBeNull();

141+

expect(fs.existsSync(handoffPath(env))).toBe(false);

142+

});

143+144+

it("rejects malformed handoff payloads", () => {

145+

const env = createHandoffEnv();

146+147+

fs.writeFileSync(

148+

handoffPath(env),

149+

`${JSON.stringify({

150+

kind: GATEWAY_SUPERVISOR_RESTART_HANDOFF_KIND,

151+

version: 1,

152+

intentId: "bad",

153+

pid: 111,

154+

createdAt: 1_000,

155+

expiresAt: 61_000,

156+

reason: 123,

157+

source: "bad-source",

158+

restartKind: "full-process",

159+

supervisorMode: "external",

160+

})}\n`,

161+

{ encoding: "utf8", mode: 0o600 },

162+

);

163+164+

expect(readGatewayRestartHandoffSync(env, 1_001)).toBeNull();

165+

});

166+167+

it("rejects expired and oversized handoff files", () => {

168+

const env = createHandoffEnv();

169+170+

expect(

171+

writeGatewayRestartHandoffSync({

172+

env,

173+

pid: 111,

174+

restartKind: "full-process",

175+

supervisorMode: "external",

176+

createdAt: 1_000,

177+

ttlMs: 1_000,

178+

}),

179+

).not.toBeNull();

180+

expect(readGatewayRestartHandoffSync(env, 2_001)).toBeNull();

181+182+

fs.writeFileSync(handoffPath(env), "x".repeat(8192), { encoding: "utf8", mode: 0o600 });

183+

expect(

184+

consumeGatewayRestartHandoffForExitedProcessSync({

185+

env,

186+

exitedPid: 111,

187+

now: 2_001,

188+

}),

189+

).toBeNull();

190+

expect(fs.existsSync(handoffPath(env))).toBe(false);

191+

});

192+193+

it("does not follow an existing handoff-path symlink when writing", () => {

194+

const env = createHandoffEnv();

195+

const targetPath = path.join(env.OPENCLAW_STATE_DIR ?? "", "attacker-target.txt");

196+

fs.writeFileSync(targetPath, "keep", "utf8");

197+

try {

198+

fs.symlinkSync(targetPath, handoffPath(env));

199+

} catch {

200+

return;

201+

}

202+203+

expect(

204+

writeGatewayRestartHandoffSync({

205+

env,

206+

pid: 12_345,

207+

restartKind: "full-process",

208+

supervisorMode: "external",

209+

}),

210+

).not.toBeNull();

211+212+

expect(fs.readFileSync(targetPath, "utf8")).toBe("keep");

213+

expect(fs.lstatSync(handoffPath(env)).isSymbolicLink()).toBe(false);

214+

expect(

215+

consumeGatewayRestartHandoffForExitedProcessSync({

216+

env,

217+

exitedPid: 12_345,

218+

}),

219+

).toMatchObject({ pid: 12_345 });

220+

});

221+

});