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

推荐订阅源

人人都是产品经理
人人都是产品经理
Apple Machine Learning Research
Apple Machine Learning Research
云风的 BLOG
云风的 BLOG
罗磊的独立博客
博客园 - 三生石上(FineUI控件)
量子位
GbyAI
GbyAI
腾讯CDC
T
Tailwind CSS Blog
博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
D
Docker
G
Google Developers Blog
aimingoo的专栏
aimingoo的专栏
The GitHub Blog
The GitHub Blog
Microsoft Security Blog
Microsoft Security Blog
Stack Overflow Blog
Stack Overflow Blog
Hugging Face - Blog
Hugging Face - Blog
小众软件
小众软件
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
N
Netflix TechBlog - Medium
Jina AI
Jina AI
IT之家
IT之家
Y
Y Combinator 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
test: tighten cron timer assertions · openclaw/openclaw@c...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -49,6 +49,19 @@ function requireTimestamp(value: number | undefined, label: string): number {

4949

return value;

5050

}

515152+

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

53+

expect(value).toBeTruthy();

54+

expect(typeof value).toBe("object");

55+

expect(Array.isArray(value)).toBe(false);

56+

return value as Record<string, unknown>;

57+

}

58+59+

function firstMockArg(mock: unknown): unknown {

60+

const calls = (mock as { mock: { calls: readonly (readonly unknown[])[] } }).mock.calls;

61+

expect(calls[0]).toBeTruthy();

62+

return calls[0]?.[0];

63+

}

64+5265

describe("cron service timer regressions", () => {

5366

it("caps timer delay to 60s for far-future schedules", async () => {

5467

const timeoutSpy = vi.spyOn(globalThis, "setTimeout");

@@ -101,7 +114,7 @@ describe("cron service timer regressions", () => {

101114

await onTimer(state);

102115103116

expect(timeoutSpy).toHaveBeenCalled();

104-

expect(state.timer).toEqual(expect.anything());

117+

expect(state.timer).toBeTruthy();

105118

const delays = timeoutSpy.mock.calls

106119

.map(([, delay]) => delay)

107120

.filter((d): d is number => typeof d === "number");

@@ -1124,24 +1137,26 @@ describe("cron service timer regressions", () => {

11241137

await onTimer(state);

1125113811261139

expect(state.store?.jobs).toStrictEqual([]);

1127-

expect(log.warn).not.toHaveBeenCalledWith(

1128-

expect.anything(),

1129-

"cron: applyOutcomeToStoredJob — job not found after forceReload, result discarded",

1130-

);

1140+

expect(

1141+

log.warn.mock.calls.some(

1142+

([, message]) =>

1143+

message ===

1144+

"cron: applyOutcomeToStoredJob — job not found after forceReload, result discarded",

1145+

),

1146+

).toBe(false);

11311147

expect(log.info).toHaveBeenCalledWith(

11321148

{ jobId: selfRemovingJob.id },

11331149

"cron: finalized successful run after job was removed during execution",

11341150

);

1135-

expect(events).toContainEqual(

1136-

expect.objectContaining({

1137-

jobId: selfRemovingJob.id,

1138-

action: "finished",

1139-

status: "ok",

1140-

summary: `finished ${selfRemovingJob.id}`,

1141-

delivered: true,

1142-

deliveryStatus: "delivered",

1143-

}),

1151+

const event = events.find(

1152+

(candidate) => candidate.jobId === selfRemovingJob.id && candidate.action === "finished",

11441153

);

1154+

expect(event).toBeTruthy();

1155+

expect(event?.action).toBe("finished");

1156+

expect(event?.status).toBe("ok");

1157+

expect(event?.summary).toBe(`finished ${selfRemovingJob.id}`);

1158+

expect(event?.delivered).toBe(true);

1159+

expect(event?.deliveryStatus).toBe("delivered");

11451160

});

1146116111471162

it("keeps missing-job discard semantics for failed isolated outcomes", async () => {

@@ -1335,15 +1350,15 @@ describe("cron service timer regressions", () => {

13351350

await timerPromise;

1336135113371352

expect(abortObserved).toBe(true);

1338-

expect(cleanupTimedOutAgentRun).toHaveBeenCalledWith({

1339-

job: expect.objectContaining({ id: "timeout-cleanup-stuck-run" }),

1340-

timeoutMs: 1_000,

1341-

execution: {

1342-

jobId: "timeout-cleanup-stuck-run",

1343-

agentId: "main",

1344-

sessionId: "cron-run-session",

1345-

sessionKey: "agent:main:cron:timeout-cleanup-stuck-run:run:cron-run-session",

1346-

},

1353+

expect(cleanupTimedOutAgentRun).toHaveBeenCalledTimes(1);

1354+

const cleanupArgs = requireRecord(firstMockArg(cleanupTimedOutAgentRun));

1355+

expect(requireRecord(cleanupArgs.job).id).toBe("timeout-cleanup-stuck-run");

1356+

expect(cleanupArgs.timeoutMs).toBe(1_000);

1357+

expect(cleanupArgs.execution).toEqual({

1358+

jobId: "timeout-cleanup-stuck-run",

1359+

agentId: "main",

1360+

sessionId: "cron-run-session",

1361+

sessionKey: "agent:main:cron:timeout-cleanup-stuck-run:run:cron-run-session",

13471362

});

13481363

const job = state.store?.jobs.find((entry) => entry.id === "timeout-cleanup-stuck-run");

13491364

expect(job?.state.lastStatus).toBe("error");

@@ -1404,11 +1419,11 @@ describe("cron service timer regressions", () => {

14041419

expect(abortObserved).toBe(true);

14051420

expect(job.state.lastStatus).toBe("error");

14061421

expect(job.state.lastError).toContain("setup timed out before runner start");

1407-

expect(cleanupTimedOutAgentRun).toHaveBeenCalledWith({

1408-

job: expect.objectContaining({ id: "isolated-setup-timeout-74803" }),

1409-

timeoutMs: 120_000,

1410-

execution: undefined,

1411-

});

1422+

expect(cleanupTimedOutAgentRun).toHaveBeenCalledTimes(1);

1423+

const cleanupArgs = requireRecord(firstMockArg(cleanupTimedOutAgentRun));

1424+

expect(requireRecord(cleanupArgs.job).id).toBe("isolated-setup-timeout-74803");

1425+

expect(cleanupArgs.timeoutMs).toBe(120_000);

1426+

expect(cleanupArgs.execution).toBeUndefined();

14121427

} finally {

14131428

vi.useRealTimers();

14141429

}

@@ -1490,14 +1505,13 @@ describe("cron service timer regressions", () => {

14901505

expect(job.state.lastStatus).toBe("error");

14911506

expect(job.state.lastError).toContain("stalled before first model call");

14921507

expect(job.state.lastError).toContain("context-engine");

1493-

expect(cleanupTimedOutAgentRun).toHaveBeenCalledWith({

1494-

job: expect.objectContaining({ id: "isolated-pre-model-timeout-74803" }),

1495-

timeoutMs: 1_200_000,

1496-

execution: expect.objectContaining({

1497-

jobId: "isolated-pre-model-timeout-74803",

1498-

phase: "context_engine",

1499-

}),

1500-

});

1508+

expect(cleanupTimedOutAgentRun).toHaveBeenCalledTimes(1);

1509+

const cleanupArgs = requireRecord(firstMockArg(cleanupTimedOutAgentRun));

1510+

expect(requireRecord(cleanupArgs.job).id).toBe("isolated-pre-model-timeout-74803");

1511+

expect(cleanupArgs.timeoutMs).toBe(1_200_000);

1512+

const execution = requireRecord(cleanupArgs.execution);

1513+

expect(execution.jobId).toBe("isolated-pre-model-timeout-74803");

1514+

expect(execution.phase).toBe("context_engine");

15011515

} finally {

15021516

vi.useRealTimers();

15031517

}

@@ -1741,10 +1755,16 @@ describe("cron service timer regressions", () => {

17411755

endedAt,

17421756

});

174317571744-

expect(job.state.lastDiagnostics).toMatchObject({

1745-

summary: "exec stderr tail",

1746-

entries: [{ source: "exec", severity: "error", message: "exec stderr tail", exitCode: 1 }],

1747-

});

1758+

expect(job.state.lastDiagnostics?.summary).toBe("exec stderr tail");

1759+

expect(job.state.lastDiagnostics?.entries).toEqual([

1760+

{

1761+

ts: startedAt,

1762+

source: "exec",

1763+

severity: "error",

1764+

message: "exec stderr tail",

1765+

exitCode: 1,

1766+

},

1767+

]);

17481768

expect(job.state.lastDiagnosticSummary).toBe("exec stderr tail");

17491769

expect(log.warn).toHaveBeenCalledWith(

17501770

{