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

推荐订阅源

人人都是产品经理
人人都是产品经理
Stack Overflow Blog
Stack Overflow Blog
S
SegmentFault 最新的问题
博客园 - 司徒正美
aimingoo的专栏
aimingoo的专栏
U
Unit 42
GbyAI
GbyAI
B
Blog RSS Feed
博客园 - Franky
L
LangChain Blog
Hugging Face - Blog
Hugging Face - Blog
美团技术团队
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
云风的 BLOG
云风的 BLOG
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - 三生石上(FineUI控件)
Microsoft Azure Blog
Microsoft Azure Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
G
Google Developers Blog
Last Week in AI
Last Week in AI
阮一峰的网络日志
阮一峰的网络日志
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Apple Machine Learning Research
Apple Machine Learning Research

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(codex): cover websocket token rotation (#70328) (tha...
steipete · 2026-04-23 · via Recent Commits to openclaw:main

@@ -1,4 +1,5 @@

11

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

2+

import { WebSocketServer, type RawData } from "ws";

23

import { CodexAppServerClient, MIN_CODEX_APP_SERVER_VERSION } from "./client.js";

34

import { createClientHarness } from "./test-support.js";

45

@@ -16,6 +17,7 @@ vi.mock("openclaw/plugin-sdk/provider-auth", () => ({

1617

}));

17181819

let listCodexAppServerModels: typeof import("./models.js").listCodexAppServerModels;

20+

let clearSharedCodexAppServerClient: typeof import("./shared-client.js").clearSharedCodexAppServerClient;

1921

let resetSharedCodexAppServerClientForTests: typeof import("./shared-client.js").resetSharedCodexAppServerClientForTests;

20222123

async function sendInitializeResult(

@@ -36,7 +38,8 @@ async function sendEmptyModelList(harness: ReturnType<typeof createClientHarness

3638

describe("shared Codex app-server client", () => {

3739

beforeAll(async () => {

3840

({ listCodexAppServerModels } = await import("./models.js"));

39-

({ resetSharedCodexAppServerClientForTests } = await import("./shared-client.js"));

41+

({ clearSharedCodexAppServerClient, resetSharedCodexAppServerClientForTests } =

42+

await import("./shared-client.js"));

4043

});

41444245

afterEach(() => {

@@ -187,4 +190,77 @@ describe("shared Codex app-server client", () => {

187190188191

expect(second.process.kill).not.toHaveBeenCalled();

189192

});

193+194+

it("uses a fresh websocket Authorization header after shared-client token rotation", async () => {

195+

const server = new WebSocketServer({ host: "127.0.0.1", port: 0 });

196+

const authHeaders: Array<string | undefined> = [];

197+

server.on("connection", (socket, request) => {

198+

authHeaders.push(request.headers.authorization);

199+

socket.on("message", (data) => {

200+

const message = JSON.parse(rawDataToText(data)) as { id?: number; method?: string };

201+

if (message.method === "initialize") {

202+

socket.send(

203+

JSON.stringify({ id: message.id, result: { userAgent: "openclaw/0.118.0" } }),

204+

);

205+

return;

206+

}

207+

if (message.method === "model/list") {

208+

socket.send(JSON.stringify({ id: message.id, result: { data: [] } }));

209+

}

210+

});

211+

});

212+213+

try {

214+

await new Promise<void>((resolve) => server.once("listening", resolve));

215+

const address = server.address();

216+

if (!address || typeof address === "string") {

217+

throw new Error("expected websocket test server port");

218+

}

219+

const url = `ws://127.0.0.1:${address.port}`;

220+221+

await expect(

222+

listCodexAppServerModels({

223+

timeoutMs: 1000,

224+

startOptions: {

225+

transport: "websocket",

226+

command: "codex",

227+

args: [],

228+

url,

229+

authToken: "tok-first",

230+

headers: {},

231+

},

232+

}),

233+

).resolves.toEqual({ models: [] });

234+

await expect(

235+

listCodexAppServerModels({

236+

timeoutMs: 1000,

237+

startOptions: {

238+

transport: "websocket",

239+

command: "codex",

240+

args: [],

241+

url,

242+

authToken: "tok-second",

243+

headers: {},

244+

},

245+

}),

246+

).resolves.toEqual({ models: [] });

247+248+

expect(authHeaders).toEqual(["Bearer tok-first", "Bearer tok-second"]);

249+

} finally {

250+

clearSharedCodexAppServerClient();

251+

await new Promise<void>((resolve, reject) =>

252+

server.close((error) => (error ? reject(error) : resolve())),

253+

);

254+

}

255+

});

190256

});

257+258+

function rawDataToText(data: RawData): string {

259+

if (Array.isArray(data)) {

260+

return Buffer.concat(data).toString("utf8");

261+

}

262+

if (data instanceof ArrayBuffer) {

263+

return Buffer.from(new Uint8Array(data)).toString("utf8");

264+

}

265+

return Buffer.from(data).toString("utf8");

266+

}