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

推荐订阅源

D
DataBreaches.Net
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Google DeepMind News
Google DeepMind News
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
V
Visual Studio Blog
IT之家
IT之家
博客园 - 【当耐特】
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
B
Blog
爱范儿
爱范儿
阮一峰的网络日志
阮一峰的网络日志
云风的 BLOG
云风的 BLOG
Vercel News
Vercel News
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
H
Help Net Security
J
Java Code Geeks
aimingoo的专栏
aimingoo的专栏
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
B
Blog RSS Feed
Blog — PlanetScale
Blog — PlanetScale
S
SegmentFault 最新的问题
Apple Machine Learning Research
Apple Machine Learning Research

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
refactor: share maintenance test fixtures · openclaw/open...
vincentkoc · 2026-06-02 · via Recent Commits to openclaw:main

@@ -53,6 +53,65 @@ function createMaintenanceTimerDeps() {

5353

};

5454

}

555556+

type MaintenanceTimerDeps = ReturnType<typeof createMaintenanceTimerDeps>;

57+58+

function staleRunTimestamp(): number {

59+

return Date.now() - ABORTED_RUN_TTL_MS - 1;

60+

}

61+62+

function seedStaleRunBuffers(deps: MaintenanceTimerDeps, runId: string): void {

63+

deps.chatRunBuffers.set(runId, "buffer");

64+

deps.chatRunState.rawBuffers.set(runId, "raw buffer");

65+

deps.chatRunState.bufferUpdatedAt.set(runId, staleRunTimestamp());

66+

deps.chatDeltaSentAt.set(runId, staleRunTimestamp());

67+

deps.chatDeltaLastBroadcastLen.set(runId, 6);

68+

deps.chatRunState.deltaLastBroadcastText.set(runId, "buffer");

69+

}

70+71+

function expectStaleRunBuffersPresent(deps: MaintenanceTimerDeps, runId: string): void {

72+

expect(deps.chatRunBuffers.get(runId)).toBe("buffer");

73+

expect(deps.chatRunState.rawBuffers.get(runId)).toBe("raw buffer");

74+

expect(deps.chatRunState.bufferUpdatedAt.has(runId)).toBe(true);

75+

expect(deps.chatDeltaSentAt.has(runId)).toBe(true);

76+

expect(deps.chatDeltaLastBroadcastLen.get(runId)).toBe(6);

77+

expect(deps.chatRunState.deltaLastBroadcastText.get(runId)).toBe("buffer");

78+

}

79+80+

function expectStaleRunBuffersSwept(deps: MaintenanceTimerDeps, runId: string): void {

81+

expect(deps.chatRunBuffers.has(runId)).toBe(false);

82+

expect(deps.chatRunState.rawBuffers.has(runId)).toBe(false);

83+

expect(deps.chatRunState.bufferUpdatedAt.has(runId)).toBe(false);

84+

expect(deps.chatDeltaSentAt.has(runId)).toBe(false);

85+

expect(deps.chatDeltaLastBroadcastLen.has(runId)).toBe(false);

86+

expect(deps.chatRunState.deltaLastBroadcastText.has(runId)).toBe(false);

87+

}

88+89+

function seedBufferedAgentEvent(deps: MaintenanceTimerDeps, key: string, runId = key): void {

90+

deps.chatRunState.bufferedAgentEvents.set(key, {

91+

payload: {

92+

runId,

93+

seq: 1,

94+

stream: "assistant",

95+

ts: Date.now(),

96+

data: { text: "buffer", delta: "buffer" },

97+

},

98+

});

99+

}

100+101+

function seedStableDedupeEntries(deps: MaintenanceTimerDeps, now: number): void {

102+

for (let index = 0; index < DEDUPE_MAX; index += 1) {

103+

deps.dedupe.set(`stable-${index}`, { ts: now - 1_000 + index, ok: true });

104+

}

105+

}

106+107+

async function createTimedMaintenanceScenario() {

108+

vi.useFakeTimers();

109+

vi.setSystemTime(new Date("2026-03-22T00:00:00Z"));

110+

const { startGatewayMaintenanceTimers } = await import("./server-maintenance.js");

111+

const deps = createMaintenanceTimerDeps();

112+

return { startGatewayMaintenanceTimers, deps, now: Date.now() };

113+

}

114+56115

function stopMaintenanceTimers(timers: {

57116

tickInterval: NodeJS.Timeout;

58117

healthInterval: NodeJS.Timeout;

@@ -189,23 +248,13 @@ describe("startGatewayMaintenanceTimers", () => {

189248

const deps = createMaintenanceTimerDeps();

190249

const runId = "run-active";

191250

deps.chatAbortControllers.set(runId, createActiveRun("main"));

192-

deps.chatRunBuffers.set(runId, "buffer");

193-

deps.chatRunState.rawBuffers.set(runId, "raw buffer");

194-

deps.chatRunState.bufferUpdatedAt.set(runId, Date.now() - ABORTED_RUN_TTL_MS - 1);

195-

deps.chatDeltaSentAt.set(runId, Date.now() - ABORTED_RUN_TTL_MS - 1);

196-

deps.chatDeltaLastBroadcastLen.set(runId, 6);

197-

deps.chatRunState.deltaLastBroadcastText.set(runId, "buffer");

251+

seedStaleRunBuffers(deps, runId);

198252199253

const timers = startGatewayMaintenanceTimers(deps);

200254201255

await vi.advanceTimersByTimeAsync(60_000);

202256203-

expect(deps.chatRunBuffers.get(runId)).toBe("buffer");

204-

expect(deps.chatRunState.rawBuffers.get(runId)).toBe("raw buffer");

205-

expect(deps.chatRunState.bufferUpdatedAt.has(runId)).toBe(true);

206-

expect(deps.chatDeltaSentAt.has(runId)).toBe(true);

207-

expect(deps.chatDeltaLastBroadcastLen.get(runId)).toBe(6);

208-

expect(deps.chatRunState.deltaLastBroadcastText.get(runId)).toBe("buffer");

257+

expectStaleRunBuffersPresent(deps, runId);

209258210259

stopMaintenanceTimers(timers);

211260

});

@@ -216,23 +265,13 @@ describe("startGatewayMaintenanceTimers", () => {

216265

const { startGatewayMaintenanceTimers } = await import("./server-maintenance.js");

217266

const deps = createMaintenanceTimerDeps();

218267

const runId = "run-orphaned";

219-

deps.chatRunBuffers.set(runId, "buffer");

220-

deps.chatRunState.rawBuffers.set(runId, "raw buffer");

221-

deps.chatRunState.bufferUpdatedAt.set(runId, Date.now() - ABORTED_RUN_TTL_MS - 1);

222-

deps.chatDeltaSentAt.set(runId, Date.now() - ABORTED_RUN_TTL_MS - 1);

223-

deps.chatDeltaLastBroadcastLen.set(runId, 6);

224-

deps.chatRunState.deltaLastBroadcastText.set(runId, "buffer");

268+

seedStaleRunBuffers(deps, runId);

225269226270

const timers = startGatewayMaintenanceTimers(deps);

227271228272

await vi.advanceTimersByTimeAsync(60_000);

229273230-

expect(deps.chatRunBuffers.has(runId)).toBe(false);

231-

expect(deps.chatRunState.rawBuffers.has(runId)).toBe(false);

232-

expect(deps.chatRunState.bufferUpdatedAt.has(runId)).toBe(false);

233-

expect(deps.chatDeltaSentAt.has(runId)).toBe(false);

234-

expect(deps.chatDeltaLastBroadcastLen.has(runId)).toBe(false);

235-

expect(deps.chatRunState.deltaLastBroadcastText.has(runId)).toBe(false);

274+

expectStaleRunBuffersSwept(deps, runId);

236275237276

stopMaintenanceTimers(timers);

238277

});

@@ -244,16 +283,8 @@ describe("startGatewayMaintenanceTimers", () => {

244283

const deps = createMaintenanceTimerDeps();

245284

const runId = "run-agent-orphaned";

246285

const throttleKey = `${runId}:assistant`;

247-

deps.chatRunState.agentDeltaSentAt.set(throttleKey, Date.now() - ABORTED_RUN_TTL_MS - 1);

248-

deps.chatRunState.bufferedAgentEvents.set(throttleKey, {

249-

payload: {

250-

runId,

251-

seq: 1,

252-

stream: "assistant",

253-

ts: Date.now(),

254-

data: { text: "buffer", delta: "buffer" },

255-

},

256-

});

286+

deps.chatRunState.agentDeltaSentAt.set(throttleKey, staleRunTimestamp());

287+

seedBufferedAgentEvent(deps, throttleKey, runId);

257288258289

const timers = startGatewayMaintenanceTimers(deps);

259290

@@ -273,35 +304,17 @@ describe("startGatewayMaintenanceTimers", () => {

273304

const { startGatewayMaintenanceTimers } = await import("./server-maintenance.js");

274305

const deps = createMaintenanceTimerDeps();

275306

const runId = "run-aborted";

276-

deps.chatRunState.abortedRuns.set(runId, Date.now() - ABORTED_RUN_TTL_MS - 1);

277-

deps.chatRunBuffers.set(runId, "buffer");

278-

deps.chatRunState.rawBuffers.set(runId, "raw buffer");

279-

deps.chatRunState.bufferUpdatedAt.set(runId, Date.now() - ABORTED_RUN_TTL_MS - 1);

280-

deps.chatDeltaSentAt.set(runId, Date.now() - ABORTED_RUN_TTL_MS - 1);

281-

deps.chatDeltaLastBroadcastLen.set(runId, 6);

282-

deps.chatRunState.deltaLastBroadcastText.set(runId, "buffer");

283-

deps.chatRunState.agentDeltaSentAt.set(runId, Date.now() - ABORTED_RUN_TTL_MS - 1);

284-

deps.chatRunState.bufferedAgentEvents.set(runId, {

285-

payload: {

286-

runId,

287-

seq: 1,

288-

stream: "assistant",

289-

ts: Date.now(),

290-

data: { text: "buffer", delta: "buffer" },

291-

},

292-

});

307+

deps.chatRunState.abortedRuns.set(runId, staleRunTimestamp());

308+

seedStaleRunBuffers(deps, runId);

309+

deps.chatRunState.agentDeltaSentAt.set(runId, staleRunTimestamp());

310+

seedBufferedAgentEvent(deps, runId);

293311294312

const timers = startGatewayMaintenanceTimers(deps);

295313296314

await vi.advanceTimersByTimeAsync(60_000);

297315298316

expect(deps.chatRunState.abortedRuns.has(runId)).toBe(false);

299-

expect(deps.chatRunBuffers.has(runId)).toBe(false);

300-

expect(deps.chatRunState.rawBuffers.has(runId)).toBe(false);

301-

expect(deps.chatRunState.bufferUpdatedAt.has(runId)).toBe(false);

302-

expect(deps.chatDeltaSentAt.has(runId)).toBe(false);

303-

expect(deps.chatDeltaLastBroadcastLen.has(runId)).toBe(false);

304-

expect(deps.chatRunState.deltaLastBroadcastText.has(runId)).toBe(false);

317+

expectStaleRunBuffersSwept(deps, runId);

305318

expect(deps.chatRunState.agentDeltaSentAt.has(runId)).toBe(false);

306319

expect(deps.chatRunState.bufferedAgentEvents.has(runId)).toBe(false);

307320

@@ -315,7 +328,7 @@ describe("startGatewayMaintenanceTimers", () => {

315328

const deps = createMaintenanceTimerDeps();

316329

const runId = "run-raw-only";

317330

deps.chatRunState.rawBuffers.set(runId, "suppressed raw buffer");

318-

deps.chatRunState.bufferUpdatedAt.set(runId, Date.now() - ABORTED_RUN_TTL_MS - 1);

331+

deps.chatRunState.bufferUpdatedAt.set(runId, staleRunTimestamp());

319332

deps.chatRunState.deltaLastBroadcastText.set(runId, "suppressed raw buffer");

320333321334

const timers = startGatewayMaintenanceTimers(deps);

@@ -330,11 +343,7 @@ describe("startGatewayMaintenanceTimers", () => {

330343

});

331344332345

it("keeps active agent dedupe entries past the normal ttl", async () => {

333-

vi.useFakeTimers();

334-

vi.setSystemTime(new Date("2026-03-22T00:00:00Z"));

335-

const { startGatewayMaintenanceTimers } = await import("./server-maintenance.js");

336-

const deps = createMaintenanceTimerDeps();

337-

const now = Date.now();

346+

const { startGatewayMaintenanceTimers, deps, now } = await createTimedMaintenanceScenario();

338347

deps.chatAbortControllers.set("active-agent", createActiveRun("agent:main:main", "agent"));

339348

deps.dedupe.set("agent:active-agent", {

340349

ts: now - DEDUPE_TTL_MS - 1,

@@ -358,11 +367,7 @@ describe("startGatewayMaintenanceTimers", () => {

358367

});

359368360369

it("keeps pending accepted agent dedupe entries until their run expiry", async () => {

361-

vi.useFakeTimers();

362-

vi.setSystemTime(new Date("2026-03-22T00:00:00Z"));

363-

const { startGatewayMaintenanceTimers } = await import("./server-maintenance.js");

364-

const deps = createMaintenanceTimerDeps();

365-

const now = Date.now();

370+

const { startGatewayMaintenanceTimers, deps, now } = await createTimedMaintenanceScenario();

366371

deps.dedupe.set("agent:pending-agent", {

367372

ts: now - DEDUPE_TTL_MS - 1,

368373

ok: true,

@@ -395,11 +400,7 @@ describe("startGatewayMaintenanceTimers", () => {

395400

});

396401397402

it("evicts pending accepted agent dedupe entries with invalid run expiry", async () => {

398-

vi.useFakeTimers();

399-

vi.setSystemTime(new Date("2026-03-22T00:00:00Z"));

400-

const { startGatewayMaintenanceTimers } = await import("./server-maintenance.js");

401-

const deps = createMaintenanceTimerDeps();

402-

const now = Date.now();

403+

const { startGatewayMaintenanceTimers, deps, now } = await createTimedMaintenanceScenario();

403404

deps.dedupe.set("agent:invalid-expiry-pending-agent", {

404405

ts: now - DEDUPE_TTL_MS - 1,

405406

ok: true,

@@ -441,11 +442,7 @@ describe("startGatewayMaintenanceTimers", () => {

441442

});

442443443444

it("keeps active exec approval dedupe aliases past the normal ttl", async () => {

444-

vi.useFakeTimers();

445-

vi.setSystemTime(new Date("2026-03-22T00:00:00Z"));

446-

const { startGatewayMaintenanceTimers } = await import("./server-maintenance.js");

447-

const deps = createMaintenanceTimerDeps();

448-

const now = Date.now();

445+

const { startGatewayMaintenanceTimers, deps, now } = await createTimedMaintenanceScenario();

449446

const runId = "exec-approval-followup:req-active:nonce:retry-1";

450447

deps.chatAbortControllers.set(runId, createActiveRun("agent:main:main", "agent"));

451448

deps.dedupe.set("agent:exec-approval-followup:req-active", {

@@ -470,15 +467,9 @@ describe("startGatewayMaintenanceTimers", () => {

470467

});

471468472469

it("evicts dedupe overflow by oldest timestamp even after reinsertion", async () => {

473-

vi.useFakeTimers();

474-

vi.setSystemTime(new Date("2026-03-22T00:00:00Z"));

475-

const { startGatewayMaintenanceTimers } = await import("./server-maintenance.js");

476-

const deps = createMaintenanceTimerDeps();

477-

const now = Date.now();

470+

const { startGatewayMaintenanceTimers, deps, now } = await createTimedMaintenanceScenario();

478471479-

for (let index = 0; index < DEDUPE_MAX; index += 1) {

480-

deps.dedupe.set(`stable-${index}`, { ts: now - 1_000 + index, ok: true });

481-

}

472+

seedStableDedupeEntries(deps, now);

482473483474

deps.dedupe.delete("stable-10");

484475

deps.dedupe.set("stable-10", { ts: now - 2_000, ok: true });

@@ -553,15 +544,9 @@ describe("startGatewayMaintenanceTimers", () => {

553544

});

554545555546

it("does not evict active agent dedupe entries while trimming overflow", async () => {

556-

vi.useFakeTimers();

557-

vi.setSystemTime(new Date("2026-03-22T00:00:00Z"));

558-

const { startGatewayMaintenanceTimers } = await import("./server-maintenance.js");

559-

const deps = createMaintenanceTimerDeps();

560-

const now = Date.now();

547+

const { startGatewayMaintenanceTimers, deps, now } = await createTimedMaintenanceScenario();

561548562-

for (let index = 0; index < DEDUPE_MAX; index += 1) {

563-

deps.dedupe.set(`stable-${index}`, { ts: now - 1_000 + index, ok: true });

564-

}

549+

seedStableDedupeEntries(deps, now);

565550

deps.chatAbortControllers.set("active-oldest", createActiveRun("agent:main:main", "agent"));

566551

deps.dedupe.set("agent:active-oldest", {

567552

ts: now - 10_000,