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

推荐订阅源

freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
V
Visual Studio Blog
IT之家
IT之家
博客园 - 聂微东
The Cloudflare Blog
月光博客
月光博客
阮一峰的网络日志
阮一峰的网络日志
S
SegmentFault 最新的问题
Apple Machine Learning Research
Apple Machine Learning Research
酷 壳 – CoolShell
酷 壳 – CoolShell
爱范儿
爱范儿
H
Help Net Security
博客园 - 叶小钗
V
V2EX
WordPress大学
WordPress大学
J
Java Code Geeks
Hugging Face - Blog
Hugging Face - Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园_首页
C
Check Point Blog
B
Blog
D
DataBreaches.Net
美团技术团队
罗磊的独立博客

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 codex compact assertions · openclaw/opencla...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -30,6 +30,19 @@ function startCompaction(sessionFile: string, options: { currentTokenCount?: num

3030

});

3131

}

323233+

type CompactResult = NonNullable<Awaited<ReturnType<typeof maybeCompactCodexAppServerSession>>>;

34+35+

function requireCompactResult(result: CompactResult | undefined): CompactResult {

36+

if (!result) {

37+

throw new Error("expected compaction result");

38+

}

39+

return result;

40+

}

41+42+

function compactDetails(result: CompactResult): Record<string, unknown> {

43+

return (result.result?.details ?? {}) as Record<string, unknown>;

44+

}

45+3346

describe("maybeCompactCodexAppServerSession", () => {

3447

beforeEach(async () => {

3548

tempDir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-codex-compact-"));

@@ -61,21 +74,16 @@ describe("maybeCompactCodexAppServerSession", () => {

6174

method: "thread/compacted",

6275

params: { threadId: "thread-1", turnId: "turn-1" },

6376

});

64-

const result = await pendingResult;

77+

const result = requireCompactResult(await pendingResult);

657866-

expect(result).toMatchObject({

67-

ok: true,

68-

compacted: true,

69-

result: {

70-

tokensBefore: 123,

71-

details: {

72-

backend: "codex-app-server",

73-

threadId: "thread-1",

74-

signal: "thread/compacted",

75-

turnId: "turn-1",

76-

},

77-

},

78-

});

79+

expect(result.ok).toBe(true);

80+

expect(result.compacted).toBe(true);

81+

expect(result.result?.tokensBefore).toBe(123);

82+

const details = compactDetails(result);

83+

expect(details.backend).toBe("codex-app-server");

84+

expect(details.threadId).toBe("thread-1");

85+

expect(details.signal).toBe("thread/compacted");

86+

expect(details.turnId).toBe("turn-1");

7987

});

80888189

it("accepts native context-compaction item completion as success", async () => {

@@ -96,16 +104,12 @@ describe("maybeCompactCodexAppServerSession", () => {

96104

},

97105

});

9810699-

await expect(pendingResult).resolves.toMatchObject({

100-

ok: true,

101-

compacted: true,

102-

result: {

103-

details: {

104-

signal: "item/completed",

105-

itemId: "compact-1",

106-

},

107-

},

108-

});

107+

const result = requireCompactResult(await pendingResult);

108+

expect(result.ok).toBe(true);

109+

expect(result.compacted).toBe(true);

110+

const details = compactDetails(result);

111+

expect(details.signal).toBe("item/completed");

112+

expect(details.itemId).toBe("compact-1");

109113

});

110114111115

it("reuses the bound auth profile for native compaction", async () => {

@@ -205,26 +209,25 @@ describe("maybeCompactCodexAppServerSession", () => {

205209

params: { threadId: "thread-1", turnId: "turn-1" },

206210

});

207211208-

await expect(pendingResult).resolves.toMatchObject({

209-

ok: true,

210-

compacted: true,

211-

result: {

212-

summary: "engine summary",

213-

firstKeptEntryId: "entry-1",

214-

tokensBefore: 55,

215-

details: {

216-

engine: "lossless-claw",

217-

codexNativeCompaction: {

218-

ok: true,

219-

compacted: true,

220-

details: {

221-

backend: "codex-app-server",

222-

threadId: "thread-1",

223-

},

224-

},

225-

},

226-

},

227-

});

212+

const result = requireCompactResult(await pendingResult);

213+

expect(result.ok).toBe(true);

214+

expect(result.compacted).toBe(true);

215+

expect(result.result?.summary).toBe("engine summary");

216+

expect(result.result?.firstKeptEntryId).toBe("entry-1");

217+

expect(result.result?.tokensBefore).toBe(55);

218+

const details = compactDetails(result);

219+

expect(details.engine).toBe("lossless-claw");

220+

const nativeDetails = details.codexNativeCompaction as

221+

| {

222+

ok?: boolean;

223+

compacted?: boolean;

224+

details?: { backend?: string; threadId?: string };

225+

}

226+

| undefined;

227+

expect(nativeDetails?.ok).toBe(true);

228+

expect(nativeDetails?.compacted).toBe(true);

229+

expect(nativeDetails?.details?.backend).toBe("codex-app-server");

230+

expect(nativeDetails?.details?.threadId).toBe("thread-1");

228231

expect(compact).toHaveBeenCalledTimes(1);

229232

const [compactCall] = compact.mock.calls[0] ?? [];

230233

expect(compactCall).toStrictEqual({

@@ -292,18 +295,14 @@ describe("maybeCompactCodexAppServerSession", () => {

292295

params: { threadId: "thread-1", turnId: "turn-1" },

293296

});

294297295-

await expect(pendingResult).resolves.toMatchObject({

296-

ok: true,

297-

compacted: true,

298-

result: {

299-

details: {

300-

codexNativeCompaction: {

301-

ok: true,

302-

compacted: true,

303-

},

304-

},

305-

},

306-

});

298+

const result = requireCompactResult(await pendingResult);

299+

expect(result.ok).toBe(true);

300+

expect(result.compacted).toBe(true);

301+

const nativeDetails = compactDetails(result).codexNativeCompaction as

302+

| { ok?: boolean; compacted?: boolean }

303+

| undefined;

304+

expect(nativeDetails?.ok).toBe(true);

305+

expect(nativeDetails?.compacted).toBe(true);

307306

});

308307309308

it("records native compaction status when primary compaction has no result payload", async () => {

@@ -337,20 +336,16 @@ describe("maybeCompactCodexAppServerSession", () => {

337336

params: { threadId: "thread-1", turnId: "turn-1" },

338337

});

339338340-

await expect(pendingResult).resolves.toMatchObject({

341-

ok: true,

342-

compacted: false,

343-

reason: "below threshold",

344-

result: {

345-

tokensBefore: 222,

346-

details: {

347-

codexNativeCompaction: {

348-

ok: true,

349-

compacted: true,

350-

},

351-

},

352-

},

353-

});

339+

const result = requireCompactResult(await pendingResult);

340+

expect(result.ok).toBe(true);

341+

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

342+

expect(result.reason).toBe("below threshold");

343+

expect(result.result?.tokensBefore).toBe(222);

344+

const nativeDetails = compactDetails(result).codexNativeCompaction as

345+

| { ok?: boolean; compacted?: boolean }

346+

| undefined;

347+

expect(nativeDetails?.ok).toBe(true);

348+

expect(nativeDetails?.compacted).toBe(true);

354349

});

355350356351

it("reports context-engine compaction errors without skipping native compaction", async () => {

@@ -382,23 +377,21 @@ describe("maybeCompactCodexAppServerSession", () => {

382377

params: { threadId: "thread-1", turnId: "turn-1" },

383378

});

384379385-

await expect(pendingResult).resolves.toMatchObject({

386-

ok: false,

387-

compacted: true,

388-

reason: "context engine compaction failed: engine boom",

389-

result: {

390-

details: {

391-

contextEngineCompaction: {

392-

ok: false,

393-

reason: "context engine compaction failed: engine boom",

394-

},

395-

codexNativeCompaction: {

396-

ok: true,

397-

compacted: true,

398-

},

399-

},

400-

},

401-

});

380+

const result = requireCompactResult(await pendingResult);

381+

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

382+

expect(result.compacted).toBe(true);

383+

expect(result.reason).toBe("context engine compaction failed: engine boom");

384+

const details = compactDetails(result);

385+

const engineDetails = details.contextEngineCompaction as

386+

| { ok?: boolean; reason?: string }

387+

| undefined;

388+

const nativeDetails = details.codexNativeCompaction as

389+

| { ok?: boolean; compacted?: boolean }

390+

| undefined;

391+

expect(engineDetails?.ok).toBe(false);

392+

expect(engineDetails?.reason).toBe("context engine compaction failed: engine boom");

393+

expect(nativeDetails?.ok).toBe(true);

394+

expect(nativeDetails?.compacted).toBe(true);

402395

});

403396404397

it("does not fail owning context-engine compaction when Codex native compaction cannot run", async () => {

@@ -425,20 +418,16 @@ describe("maybeCompactCodexAppServerSession", () => {

425418

contextEngine,

426419

});

427420428-

expect(result).toMatchObject({

429-

ok: true,

430-

compacted: true,

431-

result: {

432-

summary: "engine summary",

433-

details: {

434-

codexNativeCompaction: {

435-

ok: false,

436-

compacted: false,

437-

reason: "no codex app-server thread binding",

438-

},

439-

},

440-

},

441-

});

421+

const compactResult = requireCompactResult(result);

422+

expect(compactResult.ok).toBe(true);

423+

expect(compactResult.compacted).toBe(true);

424+

expect(compactResult.result?.summary).toBe("engine summary");

425+

const nativeDetails = compactDetails(compactResult).codexNativeCompaction as

426+

| { ok?: boolean; compacted?: boolean; reason?: string }

427+

| undefined;

428+

expect(nativeDetails?.ok).toBe(false);

429+

expect(nativeDetails?.compacted).toBe(false);

430+

expect(nativeDetails?.reason).toBe("no codex app-server thread binding");

442431

});

443432

});

444433