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

推荐订阅源

J
Java Code Geeks
GbyAI
GbyAI
Google DeepMind News
Google DeepMind News
Jina AI
Jina AI
B
Blog
aimingoo的专栏
aimingoo的专栏
酷 壳 – CoolShell
酷 壳 – CoolShell
T
The Blog of Author Tim Ferriss
Last Week in AI
Last Week in AI
月光博客
月光博客
H
Help Net Security
V
Visual Studio Blog
量子位
A
About on SuperTechFans
博客园 - Franky
人人都是产品经理
人人都是产品经理
N
Netflix TechBlog - Medium
云风的 BLOG
云风的 BLOG
雷峰网
雷峰网
Martin Fowler
Martin Fowler
Microsoft Security Blog
Microsoft Security Blog
博客园 - 叶小钗
P
Proofpoint News Feed
MongoDB | Blog
MongoDB | 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(codex): inject app-server client factories · openclaw...
steipete · 2026-05-15 · via Recent Commits to openclaw:main

@@ -3,12 +3,35 @@ import os from "node:os";

33

import path from "node:path";

44

import type { HarnessContextEngine as ContextEngine } from "openclaw/plugin-sdk/agent-harness-runtime";

55

import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";

6+

import type { CodexAppServerClientFactory } from "./client-factory.js";

67

import type { CodexAppServerClient } from "./client.js";

7-

import { maybeCompactCodexAppServerSession, __testing } from "./compact.js";

8+

import { maybeCompactCodexAppServerSession as maybeCompactCodexAppServerSessionImpl } from "./compact.js";

89

import type { CodexServerNotification } from "./protocol.js";

910

import { writeCodexAppServerBinding } from "./session-binding.js";

10111112

let tempDir: string;

13+

let codexAppServerClientFactoryForTest: CodexAppServerClientFactory | undefined;

14+15+

type MaybeCompactOptions = NonNullable<Parameters<typeof maybeCompactCodexAppServerSessionImpl>[1]>;

16+17+

function setCodexAppServerClientFactoryForTest(factory: CodexAppServerClientFactory): void {

18+

codexAppServerClientFactoryForTest = factory;

19+

}

20+21+

function resetCodexAppServerClientFactoryForTest(): void {

22+

codexAppServerClientFactoryForTest = undefined;

23+

}

24+25+

function maybeCompactCodexAppServerSession(

26+

params: Parameters<typeof maybeCompactCodexAppServerSessionImpl>[0],

27+

options: MaybeCompactOptions = {},

28+

) {

29+

const clientFactory = options.clientFactory ?? codexAppServerClientFactoryForTest;

30+

return maybeCompactCodexAppServerSessionImpl(

31+

params,

32+

clientFactory ? { ...options, clientFactory } : options,

33+

);

34+

}

12351336

async function writeTestBinding(options: { authProfileId?: string } = {}): Promise<string> {

1437

const sessionFile = path.join(tempDir, "session.jsonl");

@@ -49,13 +72,13 @@ describe("maybeCompactCodexAppServerSession", () => {

4972

});

50735174

afterEach(async () => {

52-

__testing.resetCodexAppServerClientFactoryForTests();

75+

resetCodexAppServerClientFactoryForTest();

5376

await fs.rm(tempDir, { recursive: true, force: true });

5477

});

55785679

it("waits for native app-server compaction before reporting success", async () => {

5780

const fake = createFakeCodexClient();

58-

__testing.setCodexAppServerClientFactoryForTests(async () => fake.client);

81+

setCodexAppServerClientFactoryForTest(async () => fake.client);

5982

const sessionFile = await writeTestBinding();

60836184

const pendingResult = startCompaction(sessionFile, { currentTokenCount: 123 });

@@ -88,7 +111,7 @@ describe("maybeCompactCodexAppServerSession", () => {

8811189112

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

90113

const fake = createFakeCodexClient();

91-

__testing.setCodexAppServerClientFactoryForTests(async () => fake.client);

114+

setCodexAppServerClientFactoryForTest(async () => fake.client);

92115

const sessionFile = await writeTestBinding();

9311694117

const pendingResult = startCompaction(sessionFile);

@@ -115,7 +138,7 @@ describe("maybeCompactCodexAppServerSession", () => {

115138

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

116139

const fake = createFakeCodexClient();

117140

let seenAuthProfileId: string | undefined;

118-

__testing.setCodexAppServerClientFactoryForTests(async (_startOptions, authProfileId) => {

141+

setCodexAppServerClientFactoryForTest(async (_startOptions, authProfileId) => {

119142

seenAuthProfileId = authProfileId;

120143

return fake.client;

121144

});

@@ -137,7 +160,7 @@ describe("maybeCompactCodexAppServerSession", () => {

137160

it("fails closed when the persisted binding auth profile disagrees with the runtime request", async () => {

138161

const fake = createFakeCodexClient();

139162

const factory = vi.fn(async () => fake.client);

140-

__testing.setCodexAppServerClientFactoryForTests(factory);

163+

setCodexAppServerClientFactoryForTest(factory);

141164

const sessionFile = path.join(tempDir, "session.jsonl");

142165

await writeCodexAppServerBinding(sessionFile, {

143166

threadId: "thread-1",

@@ -163,7 +186,7 @@ describe("maybeCompactCodexAppServerSession", () => {

163186164187

it("prefers owning context-engine compaction and records native status separately", async () => {

165188

const fake = createFakeCodexClient();

166-

__testing.setCodexAppServerClientFactoryForTests(async () => fake.client);

189+

setCodexAppServerClientFactoryForTest(async () => fake.client);

167190

const sessionFile = await writeTestBinding();

168191

const compact = vi.fn(async (_params: unknown) => ({

169192

ok: true,

@@ -260,7 +283,7 @@ describe("maybeCompactCodexAppServerSession", () => {

260283261284

it("still runs native compaction when context-engine maintenance fails", async () => {

262285

const fake = createFakeCodexClient();

263-

__testing.setCodexAppServerClientFactoryForTests(async () => fake.client);

286+

setCodexAppServerClientFactoryForTest(async () => fake.client);

264287

const sessionFile = await writeTestBinding();

265288

const contextEngine: ContextEngine = {

266289

info: { id: "lossless-claw", name: "Lossless Claw", ownsCompaction: true },

@@ -307,7 +330,7 @@ describe("maybeCompactCodexAppServerSession", () => {

307330308331

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

309332

const fake = createFakeCodexClient();

310-

__testing.setCodexAppServerClientFactoryForTests(async () => fake.client);

333+

setCodexAppServerClientFactoryForTest(async () => fake.client);

311334

const sessionFile = await writeTestBinding();

312335

const contextEngine: ContextEngine = {

313336

info: { id: "lossless-claw", name: "Lossless Claw", ownsCompaction: true },

@@ -350,7 +373,7 @@ describe("maybeCompactCodexAppServerSession", () => {

350373351374

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

352375

const fake = createFakeCodexClient();

353-

__testing.setCodexAppServerClientFactoryForTests(async () => fake.client);

376+

setCodexAppServerClientFactoryForTest(async () => fake.client);

354377

const sessionFile = await writeTestBinding();

355378

const contextEngine: ContextEngine = {

356379

info: { id: "lossless-claw", name: "Lossless Claw", ownsCompaction: true },