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

推荐订阅源

Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
小众软件
小众软件
博客园_首页
T
Tailwind CSS Blog
美团技术团队
博客园 - 叶小钗
Microsoft Security Blog
Microsoft Security Blog
有赞技术团队
有赞技术团队
Apple Machine Learning Research
Apple Machine Learning Research
大猫的无限游戏
大猫的无限游戏
Microsoft Azure Blog
Microsoft Azure Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
I
InfoQ
MongoDB | Blog
MongoDB | Blog
The Cloudflare Blog
J
Java Code Geeks
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
Blog — PlanetScale
Blog — PlanetScale
IT之家
IT之家
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
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
fix(acp): accept MCP date protocolVersion in ACP server ·...
openclaw-clo · 2026-06-14 · via Recent Commits to openclaw:main

@@ -21,8 +21,14 @@ type GatewayClientOptions = GatewayClientCallbacks &

2121

caps?: string[];

2222

url?: string;

2323

};

24+

type MockAcpStream = {

25+

writable: WritableStream<unknown>;

26+

readable: ReadableStream<unknown>;

27+

};

24282529

const mockState = vi.hoisted(() => ({

30+

acpProtocolVersion: 1,

31+

acpInputMessages: [] as unknown[],

2632

gateways: [] as MockGatewayClient[],

2733

gatewayAuth: [] as GatewayClientAuth[],

2834

gatewayOptions: [] as GatewayClientOptions[],

@@ -67,14 +73,28 @@ class MockGatewayClient {

6773

}

68746975

vi.mock("@agentclientprotocol/sdk", () => ({

76+

AGENT_METHODS: {

77+

initialize: "initialize",

78+

},

7079

AgentSideConnection: function AgentSideConnection(

7180

factory: (conn: unknown) => unknown,

7281

stream: unknown,

7382

) {

7483

mockState.agentSideConnectionCtor(factory, stream);

7584

factory({});

7685

},

77-

ndJsonStream: vi.fn(() => ({ type: "mock-stream" })),

86+

PROTOCOL_VERSION: mockState.acpProtocolVersion,

87+

ndJsonStream: vi.fn(() => ({

88+

writable: new WritableStream(),

89+

readable: new ReadableStream({

90+

start(controller) {

91+

for (const message of mockState.acpInputMessages) {

92+

controller.enqueue(message);

93+

}

94+

controller.close();

95+

},

96+

}),

97+

})),

7898

}));

799980100

vi.mock("../config/config.js", () => {

@@ -201,6 +221,50 @@ describe("serveAcpGateway startup", () => {

201221

});

202222

}

203223224+

function getCapturedAcpStream(): MockAcpStream {

225+

const stream = mockState.agentSideConnectionCtor.mock.calls[0]?.[1];

226+

if (

227+

!stream ||

228+

typeof stream !== "object" ||

229+

!(stream as MockAcpStream).readable ||

230+

!(stream as MockAcpStream).writable

231+

) {

232+

throw new Error("Expected AgentSideConnection stream");

233+

}

234+

return stream as MockAcpStream;

235+

}

236+237+

async function readCapturedAcpMessages(): Promise<unknown[]> {

238+

const reader = getCapturedAcpStream().readable.getReader();

239+

const messages: unknown[] = [];

240+

try {

241+

while (true) {

242+

const { done, value } = await reader.read();

243+

if (done) {

244+

return messages;

245+

}

246+

messages.push(value);

247+

}

248+

} finally {

249+

reader.releaseLock();

250+

}

251+

}

252+253+

async function captureAcpMessagesAfterStartup(inputMessages: unknown[]): Promise<unknown[]> {

254+

mockState.acpInputMessages.push(...inputMessages);

255+

const { signalHandlers, onceSpy } = captureProcessSignalHandlers();

256+

const servePromise = serveAcpGateway({});

257+258+

try {

259+

await emitHelloAndWaitForAgentSideConnection();

260+

return await readCapturedAcpMessages();

261+

} finally {

262+

signalHandlers.get("SIGINT")?.();

263+

await servePromise;

264+

onceSpy.mockRestore();

265+

}

266+

}

267+204268

async function stopServeWithSigint(

205269

signalHandlers: Map<NodeJS.Signals, () => void>,

206270

servePromise: Promise<void>,

@@ -214,6 +278,7 @@ describe("serveAcpGateway startup", () => {

214278

});

215279216280

beforeEach(async () => {

281+

mockState.acpInputMessages.length = 0;

217282

mockState.gateways.length = 0;

218283

mockState.gatewayAuth.length = 0;

219284

mockState.gatewayOptions.length = 0;

@@ -397,4 +462,78 @@ describe("serveAcpGateway startup", () => {

397462

onceSpy.mockRestore();

398463

}

399464

});

465+466+

it("coerces MCP date-string initialize protocol versions", async () => {

467+

const initializeRequest = {

468+

jsonrpc: "2.0",

469+

id: 1,

470+

method: "initialize",

471+

params: {

472+

protocolVersion: "2025-11-25",

473+

clientCapabilities: {},

474+

},

475+

};

476+477+

await expect(captureAcpMessagesAfterStartup([initializeRequest])).resolves.toEqual([

478+

{

479+

...initializeRequest,

480+

params: {

481+

...initializeRequest.params,

482+

protocolVersion: mockState.acpProtocolVersion,

483+

},

484+

},

485+

]);

486+

});

487+488+

it("coerces non-integer numeric initialize protocol versions", async () => {

489+

const initializeRequest = {

490+

jsonrpc: "2.0",

491+

id: 1,

492+

method: "initialize",

493+

params: {

494+

protocolVersion: 1.5,

495+

clientCapabilities: {},

496+

},

497+

};

498+499+

await expect(captureAcpMessagesAfterStartup([initializeRequest])).resolves.toEqual([

500+

{

501+

...initializeRequest,

502+

params: {

503+

...initializeRequest.params,

504+

protocolVersion: mockState.acpProtocolVersion,

505+

},

506+

},

507+

]);

508+

});

509+510+

it("passes uint16 numeric initialize protocol versions through unchanged", async () => {

511+

const initializeRequest = {

512+

jsonrpc: "2.0",

513+

id: 1,

514+

method: "initialize",

515+

params: {

516+

protocolVersion: 42,

517+

clientCapabilities: {},

518+

},

519+

};

520+521+

const [message] = await captureAcpMessagesAfterStartup([initializeRequest]);

522+

expect(message).toBe(initializeRequest);

523+

});

524+525+

it("passes non-initialize JSON-RPC messages through unchanged", async () => {

526+

const sessionRequest = {

527+

jsonrpc: "2.0",

528+

id: 2,

529+

method: "session/new",

530+

params: {

531+

protocolVersion: "2025-11-25",

532+

cwd: "/tmp/openclaw",

533+

},

534+

};

535+536+

const [message] = await captureAcpMessagesAfterStartup([sessionRequest]);

537+

expect(message).toBe(sessionRequest);

538+

});

400539

});