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

推荐订阅源

Y
Y Combinator Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
博客园 - 三生石上(FineUI控件)
Hugging Face - Blog
Hugging Face - Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
罗磊的独立博客
博客园_首页
量子位
雷峰网
雷峰网
GbyAI
GbyAI
小众软件
小众软件
酷 壳 – CoolShell
酷 壳 – CoolShell
D
DataBreaches.Net
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The Cloudflare Blog
IT之家
IT之家
WordPress大学
WordPress大学
人人都是产品经理
人人都是产品经理
Apple Machine Learning Research
Apple Machine Learning Research
P
Proofpoint News Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 聂微东

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 context engine maintenance assertions · ope...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -63,6 +63,23 @@ async function waitForAssertion(

6363

}

6464

}

656566+

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

67+

if (!value || typeof value !== "object" || Array.isArray(value)) {

68+

throw new Error(`expected ${label}`);

69+

}

70+

return value as Record<string, unknown>;

71+

}

72+73+

function expectRecordFields(record: Record<string, unknown>, expected: Record<string, unknown>) {

74+

for (const [key, value] of Object.entries(expected)) {

75+

expect(record[key]).toBe(value);

76+

}

77+

}

78+79+

function expectSystemEventContaining(sessionKey: string, text: string) {

80+

expect(peekSystemEvents(sessionKey).some((event) => event.includes(text))).toBe(true);

81+

}

82+6683

vi.mock("./context-engine-capabilities.js", () => ({

6784

resolveContextEngineCapabilities: () => ({ llm: undefined }),

6885

}));

@@ -307,21 +324,16 @@ describe("runContextEngineMaintenance", () => {

307324

bytesFreed: 0,

308325

rewrittenEntries: 0,

309326

});

310-

expect(maintain).toHaveBeenCalledWith(

311-

expect.objectContaining({

312-

sessionId: "session-1",

313-

sessionKey: "agent:main:session-1",

314-

sessionFile: "/tmp/session.jsonl",

315-

runtimeContext: expect.objectContaining({

316-

workspaceDir: "/tmp/workspace",

317-

}),

318-

}),

319-

);

320-

const runtimeContext = (

321-

maintain.mock.calls[0]?.[0] as

322-

| { runtimeContext?: { rewriteTranscriptEntries?: (request: unknown) => Promise<unknown> } }

323-

| undefined

324-

)?.runtimeContext as

327+

const maintainParams = requireRecord(maintain.mock.calls[0]?.[0], "maintain params");

328+

expectRecordFields(maintainParams, {

329+

sessionId: "session-1",

330+

sessionKey: "agent:main:session-1",

331+

sessionFile: "/tmp/session.jsonl",

332+

});

333+

expect(

334+

requireRecord(maintainParams.runtimeContext, "maintain runtime context").workspaceDir,

335+

).toBe("/tmp/workspace");

336+

const runtimeContext = maintainParams.runtimeContext as

325337

| { rewriteTranscriptEntries?: (request: unknown) => Promise<unknown> }

326338

| undefined;

327339

if (!runtimeContext?.rewriteTranscriptEntries) {

@@ -479,7 +491,8 @@ describe("runContextEngineMaintenance", () => {

479491

(task) => task.taskKind === TURN_MAINTENANCE_TASK_KIND,

480492

);

481493

expect(queuedTasks).toHaveLength(1);

482-

expect(queuedTasks[0]).toMatchObject({

494+

const queuedTask = requireRecord(queuedTasks[0], "queued task");

495+

expectRecordFields(queuedTask, {

483496

runtime: "acp",

484497

scopeKind: "session",

485498

ownerKey: sessionKey,

@@ -494,16 +507,17 @@ describe("runContextEngineMaintenance", () => {

494507

}

495508

releaseForeground();

496509

await waitForAssertion(() => expect(maintain).toHaveBeenCalledTimes(1));

497-

expect(maintain.mock.calls[0]?.[0]).toMatchObject({

510+

const maintainParams = requireRecord(maintain.mock.calls[0]?.[0], "maintain params");

511+

expectRecordFields(maintainParams, {

498512

sessionId: "session-1",

499513

sessionKey,

500514

sessionFile: "/tmp/session.jsonl",

501-

runtimeContext: expect.objectContaining({

502-

workspaceDir: "/tmp/workspace",

503-

allowDeferredCompactionExecution: true,

504-

tokenBudget: 2048,

505-

currentTokenCount: 1536,

506-

}),

515+

});

516+

expectRecordFields(requireRecord(maintainParams.runtimeContext, "runtime context"), {

517+

workspaceDir: "/tmp/workspace",

518+

allowDeferredCompactionExecution: true,

519+

tokenBudget: 2048,

520+

currentTokenCount: 1536,

507521

});

508522

expect(rewriteTranscriptEntriesInSessionFileMock).toHaveBeenCalledWith({

509523

sessionFile: "/tmp/session.jsonl",

@@ -525,10 +539,11 @@ describe("runContextEngineMaintenance", () => {

525539

});

526540527541

const completedTask = getTaskById(queuedTasks[0].taskId);

528-

expect(completedTask).toMatchObject({

529-

status: "succeeded",

530-

progressSummary: expect.stringContaining("Deferred maintenance completed"),

531-

});

542+

const completedTaskRecord = requireRecord(completedTask, "completed task");

543+

expect(completedTaskRecord.status).toBe("succeeded");

544+

expect(String(completedTaskRecord.progressSummary)).toContain(

545+

"Deferred maintenance completed",

546+

);

532547533548

await foregroundTurn;

534549

} finally {

@@ -748,7 +763,8 @@ describe("runContextEngineMaintenance", () => {

748763

(task) => task.taskKind === TURN_MAINTENANCE_TASK_KIND,

749764

);

750765

expect(tasks).toHaveLength(2);

751-

expect(getTaskById(legacyTask.taskId)).toMatchObject({

766+

const cancelledLegacyTask = requireRecord(getTaskById(legacyTask.taskId), "legacy task");

767+

expectRecordFields(cancelledLegacyTask, {

752768

status: "cancelled",

753769

notifyPolicy: "silent",

754770

});

@@ -807,10 +823,9 @@ describe("runContextEngineMaintenance", () => {

807823

(task) => task.taskKind === TURN_MAINTENANCE_TASK_KIND,

808824

);

809825

expect(tasks).toHaveLength(1);

810-

expect(tasks[0]).toMatchObject({

811-

status: "cancelled",

812-

terminalSummary: expect.stringContaining("gateway draining"),

813-

});

826+

const task = requireRecord(tasks[0], "cancelled task");

827+

expect(task.status).toBe("cancelled");

828+

expect(String(task.terminalSummary)).toContain("gateway draining");

814829

expect(maintain).not.toHaveBeenCalled();

815830

} finally {

816831

enqueueSpy.mockRestore();

@@ -1103,10 +1118,9 @@ describe("runContextEngineMaintenance", () => {

1103111811041119

await vi.advanceTimersByTimeAsync(11_000);

11051120

await waitForAssertion(() =>

1106-

expect(peekSystemEvents(sessionKey)).toEqual(

1107-

expect.arrayContaining([

1108-

expect.stringContaining("Background task update: Context engine turn maintenance."),

1109-

]),

1121+

expectSystemEventContaining(

1122+

sessionKey,

1123+

"Background task update: Context engine turn maintenance.",

11101124

),

11111125

);

11121126

@@ -1115,10 +1129,9 @@ describe("runContextEngineMaintenance", () => {

11151129

}

11161130

releaseForeground();

11171131

await waitForAssertion(() =>

1118-

expect(peekSystemEvents(sessionKey)).toEqual(

1119-

expect.arrayContaining([

1120-

expect.stringContaining("Background task done: Context engine turn maintenance"),

1121-

]),

1132+

expectSystemEventContaining(

1133+

sessionKey,

1134+

"Background task done: Context engine turn maintenance",

11221135

),

11231136

);

11241137

@@ -1244,10 +1257,9 @@ describe("runContextEngineMaintenance", () => {

12441257

reason: "turn",

12451258

});

12461259

await waitForAssertion(() =>

1247-

expect(peekSystemEvents(sessionKey)).toEqual(

1248-

expect.arrayContaining([

1249-

expect.stringContaining("Background task failed: Context engine turn maintenance"),

1250-

]),

1260+

expectSystemEventContaining(

1261+

sessionKey,

1262+

"Background task failed: Context engine turn maintenance",

12511263

),

12521264

);

12531265

} finally {