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

推荐订阅源

云风的 BLOG
云风的 BLOG
M
MIT News - Artificial intelligence
Recent Announcements
Recent Announcements
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Stack Overflow Blog
Stack Overflow Blog
J
Java Code Geeks
Microsoft Azure Blog
Microsoft Azure Blog
罗磊的独立博客
博客园 - 【当耐特】
H
Help Net Security
腾讯CDC
大猫的无限游戏
大猫的无限游戏
GbyAI
GbyAI
Last Week in AI
Last Week in AI
Jina AI
Jina AI
博客园 - 聂微东
Blog — PlanetScale
Blog — PlanetScale
A
About on SuperTechFans
Apple Machine Learning Research
Apple Machine Learning Research
P
Proofpoint News Feed
Y
Y Combinator Blog
C
Check Point Blog
博客园 - 司徒正美
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

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(webchat): suppress stale active session rows (#87962)...
MukundaKatta · 2026-05-31 · via Recent Commits to openclaw:main
1+

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

2+

import { isSessionRunActive } from "../session-run-state.ts";

3+

import type { SessionsListResult } from "../types.ts";

4+

import {

5+

reconcileChatRunFromCurrentSessionRow,

6+

reconcileChatRunLifecycle,

7+

STALE_ACTIVE_ROW_RECONCILE_WINDOW_MS,

8+

} from "./run-lifecycle.ts";

9+10+

type ReconcileHost = Parameters<typeof reconcileChatRunFromCurrentSessionRow>[0];

11+

type TestRow = { key: string; hasActiveRun?: boolean; status?: string; startedAt?: number };

12+13+

function makeSessionsResult(rows: TestRow[]): SessionsListResult {

14+

return { sessions: rows } as unknown as SessionsListResult;

15+

}

16+17+

function makeHost(over: Partial<ReconcileHost> = {}): ReconcileHost {

18+

return {

19+

sessionKey: "s1",

20+

chatRunId: null,

21+

chatStream: null,

22+

sessionsResult: makeSessionsResult([{ key: "s1", hasActiveRun: true, status: "running" }]),

23+

requestUpdate: () => {},

24+

...over,

25+

};

26+

}

27+28+

function rowActive(host: ReconcileHost): boolean {

29+

const row = host.sessionsResult?.sessions.find((r) => r.key === host.sessionKey);

30+

return Boolean(row && isSessionRunActive(row));

31+

}

32+33+

describe("reconcileChatRunFromCurrentSessionRow stale-active suppression (#87875)", () => {

34+

it("suppresses a stale active row after a recent local completion", () => {

35+

const host = makeHost({

36+

lastLocalTerminalReconcile: {

37+

sessionKey: "s1",

38+

runId: "r1",

39+

phase: "done",

40+

sessionStatus: "done",

41+

occurredAt: Date.now(),

42+

},

43+

});

44+

expect(reconcileChatRunFromCurrentSessionRow(host)).toBe(true);

45+

expect(rowActive(host)).toBe(false);

46+

expect(host.lastLocalTerminalReconcile?.runId).toBe("r1");

47+

});

48+49+

it("does NOT clear a genuinely recovered active run with no recent local completion", () => {

50+

const host = makeHost({ lastLocalTerminalReconcile: null });

51+

expect(reconcileChatRunFromCurrentSessionRow(host)).toBe(false);

52+

expect(rowActive(host)).toBe(true);

53+

});

54+55+

it("ignores and clears a local terminal reconcile older than the window", () => {

56+

const host = makeHost({

57+

lastLocalTerminalReconcile: {

58+

sessionKey: "s1",

59+

runId: "r1",

60+

phase: "done",

61+

sessionStatus: "done",

62+

occurredAt: Date.now() - STALE_ACTIVE_ROW_RECONCILE_WINDOW_MS - 1_000,

63+

},

64+

});

65+

expect(reconcileChatRunFromCurrentSessionRow(host)).toBe(false);

66+

expect(rowActive(host)).toBe(true);

67+

expect(host.lastLocalTerminalReconcile).toBeNull();

68+

});

69+70+

it("does not suppress when the recent completion was for a different session", () => {

71+

const host = makeHost({

72+

sessionKey: "s2",

73+

sessionsResult: makeSessionsResult([{ key: "s2", hasActiveRun: true, status: "running" }]),

74+

lastLocalTerminalReconcile: {

75+

sessionKey: "s1",

76+

runId: "r1",

77+

phase: "done",

78+

sessionStatus: "done",

79+

occurredAt: Date.now(),

80+

},

81+

});

82+

expect(reconcileChatRunFromCurrentSessionRow(host)).toBe(false);

83+

expect(rowActive(host)).toBe(true);

84+

});

85+86+

it("clears the flag once the server poll reports a non-active row", () => {

87+

const host = makeHost({

88+

sessionsResult: makeSessionsResult([{ key: "s1", hasActiveRun: false, status: "done" }]),

89+

lastLocalTerminalReconcile: {

90+

sessionKey: "s1",

91+

runId: "r1",

92+

phase: "done",

93+

sessionStatus: "done",

94+

occurredAt: Date.now(),

95+

},

96+

});

97+

expect(reconcileChatRunFromCurrentSessionRow(host)).toBe(false);

98+

expect(host.lastLocalTerminalReconcile).toBeNull();

99+

});

100+101+

it("does not arm stale-row suppression from generic lifecycle cleanup", () => {

102+

const host = makeHost({

103+

chatRunId: "orphaned-run",

104+

chatStream: "stale stream",

105+

});

106+

reconcileChatRunLifecycle(host, {

107+

outcome: "interrupted",

108+

sessionStatus: "killed",

109+

runId: "orphaned-run",

110+

sessionKey: "s1",

111+

clearLocalRun: true,

112+

clearChatStream: true,

113+

publishRunStatus: false,

114+

});

115+

expect(host.lastLocalTerminalReconcile ?? null).toBeNull();

116+

host.sessionsResult = makeSessionsResult([

117+

{ key: "s1", hasActiveRun: true, status: "running" },

118+

]);

119+

expect(reconcileChatRunFromCurrentSessionRow(host)).toBe(false);

120+

expect(rowActive(host)).toBe(true);

121+

});

122+123+

it("does not suppress a newer active row after a follow-up run starts", () => {

124+

const terminalAt = Date.now();

125+

const host = makeHost({

126+

sessionsResult: makeSessionsResult([

127+

{

128+

key: "s1",

129+

hasActiveRun: true,

130+

status: "running",

131+

startedAt: terminalAt + 1,

132+

},

133+

]),

134+

lastLocalTerminalReconcile: {

135+

sessionKey: "s1",

136+

runId: "r1",

137+

phase: "done",

138+

sessionStatus: "done",

139+

occurredAt: terminalAt,

140+

},

141+

});

142+

expect(reconcileChatRunFromCurrentSessionRow(host)).toBe(false);

143+

expect(rowActive(host)).toBe(true);

144+

expect(host.lastLocalTerminalReconcile).toBeNull();

145+

});

146+147+

it("arms suppression on a completed turn, then suppresses the racing refresh", () => {

148+

const host = makeHost({

149+

chatRunId: "r1",

150+

chatStream: "partial...",

151+

sessionsResult: makeSessionsResult([{ key: "s1", hasActiveRun: true, status: "running" }]),

152+

});

153+

reconcileChatRunLifecycle(host, {

154+

outcome: "done",

155+

sessionStatus: "done",

156+

runId: "r1",

157+

sessionKey: "s1",

158+

clearLocalRun: true,

159+

clearChatStream: true,

160+

publishRunStatus: false,

161+

armLocalTerminalReconcile: true,

162+

});

163+

expect(host.lastLocalTerminalReconcile?.sessionKey).toBe("s1");

164+

expect(host.chatRunId ?? null).toBeNull();

165+

// A racing sessions.list refresh re-introduces a stale active row.

166+

host.sessionsResult = makeSessionsResult([

167+

{ key: "s1", hasActiveRun: true, status: "running" },

168+

]);

169+

expect(reconcileChatRunFromCurrentSessionRow(host)).toBe(true);

170+

expect(rowActive(host)).toBe(false);

171+

expect(host.lastLocalTerminalReconcile?.runId).toBe("r1");

172+

});

173+174+

it("keeps suppressing multiple stale active refreshes within the window", () => {

175+

const terminalAt = Date.now();

176+

const host = makeHost({

177+

lastLocalTerminalReconcile: {

178+

sessionKey: "s1",

179+

runId: "r1",

180+

phase: "done",

181+

sessionStatus: "done",

182+

occurredAt: terminalAt,

183+

},

184+

});

185+186+

expect(reconcileChatRunFromCurrentSessionRow(host)).toBe(true);

187+

host.sessionsResult = makeSessionsResult([

188+

{ key: "s1", hasActiveRun: true, status: "running", startedAt: terminalAt - 1 },

189+

]);

190+

expect(reconcileChatRunFromCurrentSessionRow(host)).toBe(true);

191+

expect(rowActive(host)).toBe(false);

192+

});

193+

});