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

推荐订阅源

N
Netflix TechBlog - Medium
G
Google Developers Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
T
The Blog of Author Tim Ferriss
Microsoft Azure Blog
Microsoft Azure Blog
GbyAI
GbyAI
L
LangChain Blog
云风的 BLOG
云风的 BLOG
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
aimingoo的专栏
aimingoo的专栏
P
Proofpoint News Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
小众软件
小众软件
WordPress大学
WordPress大学
A
About on SuperTechFans
大猫的无限游戏
大猫的无限游戏
C
Check Point Blog
月光博客
月光博客
Stack Overflow Blog
Stack Overflow Blog
美团技术团队
Jina AI
Jina AI
T
Tailwind CSS Blog
Google DeepMind News
Google DeepMind News
D
Docker

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(gateway): fire typed session_end on shutdown/restart ...
pandadev66 · 2026-05-12 · via Recent Commits to openclaw:main
1+

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

2+

import type { OpenClawConfig } from "../config/types.openclaw.js";

3+4+

// Regression coverage for #57790: the bounded shutdown drain must fire a

5+

// typed `session_end` for every session the tracker has noted, must skip

6+

// sessions that have already been finalized through replace / reset /

7+

// delete / compaction (so we never double-fire), must respect the

8+

// configured total timeout, and must propagate the reason ("shutdown" or

9+

// "restart") into the plugin hook payload.

10+11+

const runSessionEndMock = vi.fn(async () => undefined);

12+

const hasHooksMock = vi.fn((name: string) => name === "session_end");

13+

const getGlobalHookRunnerMock = vi.fn(() => ({

14+

hasHooks: hasHooksMock,

15+

runSessionEnd: runSessionEndMock,

16+

runSessionStart: vi.fn(async () => undefined),

17+

}));

18+19+

vi.mock("../plugins/hook-runner-global.js", () => ({

20+

getGlobalHookRunner: getGlobalHookRunnerMock,

21+

}));

22+23+

vi.mock("./session-transcript-files.fs.js", () => ({

24+

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

25+

sessionFile: undefined,

26+

transcriptArchived: false,

27+

})),

28+

archiveSessionTranscriptsDetailed: vi.fn(() => []),

29+

}));

30+31+

vi.mock("../auto-reply/reply/session-hooks.js", () => ({

32+

buildSessionEndHookPayload: vi.fn(

33+

(params: { sessionId: string; reason: string; sessionKey: string }) => ({

34+

event: { sessionId: params.sessionId, reason: params.reason, sessionKey: params.sessionKey },

35+

context: { sessionId: params.sessionId, reason: params.reason },

36+

}),

37+

),

38+

buildSessionStartHookPayload: vi.fn(() => ({ event: {}, context: {} })),

39+

}));

40+41+

const {

42+

drainActiveSessionsForShutdown,

43+

emitGatewaySessionEndPluginHook,

44+

emitGatewaySessionStartPluginHook,

45+

} = await import("./session-reset-service.js");

46+

const { clearActiveSessionsForShutdownTracker, listActiveSessionsForShutdown } =

47+

await import("./active-sessions-shutdown-tracker.js");

48+49+

const cfg: OpenClawConfig = {};

50+51+

beforeEach(() => {

52+

clearActiveSessionsForShutdownTracker();

53+

runSessionEndMock.mockClear();

54+

hasHooksMock.mockClear();

55+

hasHooksMock.mockImplementation((name: string) => name === "session_end");

56+

});

57+58+

afterEach(() => {

59+

clearActiveSessionsForShutdownTracker();

60+

});

61+62+

describe("drainActiveSessionsForShutdown", () => {

63+

it("returns an empty result and skips hook emission when no sessions are tracked", async () => {

64+

const result = await drainActiveSessionsForShutdown({ reason: "shutdown" });

65+66+

expect(result).toEqual({ emittedSessionIds: [], timedOut: false });

67+

expect(runSessionEndMock).not.toHaveBeenCalled();

68+

});

69+70+

it("fires session_end with reason=shutdown for every tracked session and clears them", async () => {

71+

emitGatewaySessionStartPluginHook({

72+

cfg,

73+

sessionKey: "agent:main:main",

74+

sessionId: "sess-A",

75+

storePath: "/tmp/store.json",

76+

});

77+

emitGatewaySessionStartPluginHook({

78+

cfg,

79+

sessionKey: "agent:main:other",

80+

sessionId: "sess-B",

81+

storePath: "/tmp/store.json",

82+

});

83+84+

const result = await drainActiveSessionsForShutdown({ reason: "shutdown" });

85+86+

expect(result.timedOut).toBe(false);

87+

expect(result.emittedSessionIds.sort()).toEqual(["sess-A", "sess-B"]);

88+

expect(runSessionEndMock).toHaveBeenCalledTimes(2);

89+

const reasons = runSessionEndMock.mock.calls.map(

90+

([event]) => (event as { reason?: string }).reason,

91+

);

92+

expect(reasons.every((reason) => reason === "shutdown")).toBe(true);

93+

// After the drain, the tracker forgets every emitted session (the emit

94+

// helper calls `forgetActiveSessionForShutdown`), so a second drain is a

95+

// no-op and we never double-fire on restart loops.

96+

expect(listActiveSessionsForShutdown()).toEqual([]);

97+

});

98+99+

it("propagates reason=restart when called for a restart shutdown", async () => {

100+

emitGatewaySessionStartPluginHook({

101+

cfg,

102+

sessionKey: "agent:main:main",

103+

sessionId: "sess-A",

104+

storePath: "/tmp/store.json",

105+

});

106+107+

await drainActiveSessionsForShutdown({ reason: "restart" });

108+109+

expect(runSessionEndMock).toHaveBeenCalledTimes(1);

110+

expect((runSessionEndMock.mock.calls[0][0] as { reason?: string }).reason).toBe("restart");

111+

});

112+113+

it("does not double-fire for a session already finalized by reset/delete/compaction", async () => {

114+

emitGatewaySessionStartPluginHook({

115+

cfg,

116+

sessionKey: "agent:main:main",

117+

sessionId: "sess-A",

118+

storePath: "/tmp/store.json",

119+

});

120+

emitGatewaySessionStartPluginHook({

121+

cfg,

122+

sessionKey: "agent:main:other",

123+

sessionId: "sess-B",

124+

storePath: "/tmp/store.json",

125+

});

126+

// Simulate sess-A being finalized through the normal reset path before

127+

// the gateway is shut down: the matching `session_end` is fired with

128+

// reason="reset" and the tracker forgets it.

129+

emitGatewaySessionEndPluginHook({

130+

cfg,

131+

sessionKey: "agent:main:main",

132+

sessionId: "sess-A",

133+

storePath: "/tmp/store.json",

134+

reason: "reset",

135+

});

136+

runSessionEndMock.mockClear();

137+138+

await drainActiveSessionsForShutdown({ reason: "shutdown" });

139+140+

expect(runSessionEndMock).toHaveBeenCalledTimes(1);

141+

expect((runSessionEndMock.mock.calls[0][0] as { sessionId?: string }).sessionId).toBe("sess-B");

142+

});

143+144+

it("still records the session as forgotten when no `session_end` plugins are registered", async () => {

145+

hasHooksMock.mockImplementation(() => false);

146+

emitGatewaySessionStartPluginHook({

147+

cfg,

148+

sessionKey: "agent:main:main",

149+

sessionId: "sess-A",

150+

storePath: "/tmp/store.json",

151+

});

152+

// session_end fires while no plugin listens: hook is not run, but the

153+

// shutdown tracker must still forget the session so the later drain

154+

// does not pick it up.

155+

emitGatewaySessionEndPluginHook({

156+

cfg,

157+

sessionKey: "agent:main:main",

158+

sessionId: "sess-A",

159+

storePath: "/tmp/store.json",

160+

reason: "deleted",

161+

});

162+163+

expect(listActiveSessionsForShutdown()).toEqual([]);

164+

const result = await drainActiveSessionsForShutdown({ reason: "shutdown" });

165+166+

expect(result.emittedSessionIds).toEqual([]);

167+

});

168+

});