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

推荐订阅源

博客园 - 叶小钗
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Security Blog
Microsoft Security Blog
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
美团技术团队
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
aimingoo的专栏
aimingoo的专栏
腾讯CDC
WordPress大学
WordPress大学
Apple Machine Learning Research
Apple Machine Learning Research
F
Fortinet All Blogs
G
Google Developers Blog
MongoDB | Blog
MongoDB | Blog
Microsoft Azure Blog
Microsoft Azure Blog
小众软件
小众软件
Engineering at Meta
Engineering at Meta
博客园_首页
B
Blog RSS Feed
D
Docker
M
MIT News - Artificial intelligence
爱范儿
爱范儿
I
InfoQ

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
refactor: share shared auth rotation test helpers · openc...
vincentkoc · 2026-06-02 · via Recent Commits to openclaw:main

@@ -169,6 +169,83 @@ async function applyCurrentConfig(ws: WebSocket) {

169169

});

170170

}

171171172+

async function expectGatewayAuthChangedClose(closed: ReturnType<typeof waitForGatewayWsClose>) {

173+

await expect(closed).resolves.toEqual({

174+

code: 4001,

175+

reason: "gateway auth changed",

176+

});

177+

}

178+179+

async function resolveRequiredSharedGatewayGeneration() {

180+

const { resolveSharedGatewaySessionGeneration } =

181+

await import("./server/ws-shared-generation.js");

182+

const issuerGeneration = resolveSharedGatewaySessionGeneration({

183+

mode: "token",

184+

token: OLD_TOKEN,

185+

allowTailscale: false,

186+

});

187+

expect(issuerGeneration).toBeTypeOf("string");

188+

if (!issuerGeneration) {

189+

throw new Error("expected shared gateway generation");

190+

}

191+

return issuerGeneration;

192+

}

193+194+

function requireHelloDeviceToken(

195+

hello: Awaited<ReturnType<typeof openDeviceTokenWsWithDetails>>["hello"],

196+

) {

197+

const helloDeviceToken = hello.auth?.deviceToken;

198+

if (typeof helloDeviceToken !== "string") {

199+

throw new Error("expected hello device token");

200+

}

201+

return helloDeviceToken;

202+

}

203+204+

async function expectIssuerTaggedDeviceToken(params: {

205+

deviceId: string;

206+

token: string;

207+

issuerGeneration: string;

208+

}) {

209+

const { getPairedDevice, verifyDeviceToken } = await import("../infra/device-pairing.js");

210+

const paired = await getPairedDevice(params.deviceId);

211+

expect(paired?.tokens?.operator?.issuer).toEqual({

212+

kind: "shared-gateway-auth",

213+

generation: params.issuerGeneration,

214+

});

215+

await expect(

216+

verifyDeviceToken({

217+

deviceId: params.deviceId,

218+

token: params.token,

219+

role: "operator",

220+

scopes: ["operator.admin"],

221+

requiredSharedGatewaySessionGeneration: params.issuerGeneration,

222+

}),

223+

).resolves.toEqual({

224+

ok: true,

225+

issuer: {

226+

kind: "shared-gateway-auth",

227+

generation: params.issuerGeneration,

228+

},

229+

});

230+

}

231+232+

async function expectIssuerMetadataPreservedOnReconnect(params: { browserClient?: boolean } = {}) {

233+

const issuerGeneration = await resolveRequiredSharedGatewayGeneration();

234+

const { ws, deviceId, hello } = await openDeviceTokenWsWithDetails({

235+

issuerGeneration,

236+

browserClient: params.browserClient,

237+

});

238+

try {

239+

await expectIssuerTaggedDeviceToken({

240+

deviceId,

241+

token: requireHelloDeviceToken(hello),

242+

issuerGeneration,

243+

});

244+

} finally {

245+

await closeWsAndWait(ws);

246+

}

247+

}

248+172249

describe("gateway shared auth rotation", () => {

173250

let server: Awaited<ReturnType<typeof startGatewayServer>>;

174251

let sharedTokenRotationCase: {

@@ -225,17 +302,7 @@ describe("gateway shared auth rotation", () => {

225302

});

226303227304

it("disconnects issuer-tagged device-token websocket sessions after shared token rotation", async () => {

228-

const { resolveSharedGatewaySessionGeneration } =

229-

await import("./server/ws-shared-generation.js");

230-

const issuerGeneration = resolveSharedGatewaySessionGeneration({

231-

mode: "token",

232-

token: OLD_TOKEN,

233-

allowTailscale: false,

234-

});

235-

expect(issuerGeneration).toBeTypeOf("string");

236-

if (!issuerGeneration) {

237-

throw new Error("expected shared gateway generation");

238-

}

305+

const issuerGeneration = await resolveRequiredSharedGatewayGeneration();

239306

const ws = await openDeviceTokenWs({

240307

issuerGeneration,

241308

});

@@ -244,106 +311,18 @@ describe("gateway shared auth rotation", () => {

244311

const res = await sendSharedTokenRotationPatch(ws);

245312246313

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

247-

await expect(closed).resolves.toEqual({

248-

code: 4001,

249-

reason: "gateway auth changed",

250-

});

314+

await expectGatewayAuthChangedClose(closed);

251315

} finally {

252316

await closeWsAndWait(ws);

253317

}

254318

});

255319256320

it("preserves issuer-tagged browser device tokens on reconnect", async () => {

257-

const { getPairedDevice, verifyDeviceToken } = await import("../infra/device-pairing.js");

258-

const { resolveSharedGatewaySessionGeneration } =

259-

await import("./server/ws-shared-generation.js");

260-

const issuerGeneration = resolveSharedGatewaySessionGeneration({

261-

mode: "token",

262-

token: OLD_TOKEN,

263-

allowTailscale: false,

264-

});

265-

expect(issuerGeneration).toBeTypeOf("string");

266-

if (!issuerGeneration) {

267-

throw new Error("expected shared gateway generation");

268-

}

269-

const { ws, deviceId, hello } = await openDeviceTokenWsWithDetails({

270-

issuerGeneration,

271-

browserClient: true,

272-

});

273-

try {

274-

const helloDeviceToken = hello.auth?.deviceToken;

275-

if (typeof helloDeviceToken !== "string") {

276-

throw new Error("expected hello device token");

277-

}

278-

const paired = await getPairedDevice(deviceId);

279-

expect(paired?.tokens?.operator?.issuer).toEqual({

280-

kind: "shared-gateway-auth",

281-

generation: issuerGeneration,

282-

});

283-

await expect(

284-

verifyDeviceToken({

285-

deviceId,

286-

token: helloDeviceToken,

287-

role: "operator",

288-

scopes: ["operator.admin"],

289-

requiredSharedGatewaySessionGeneration: issuerGeneration,

290-

}),

291-

).resolves.toEqual({

292-

ok: true,

293-

issuer: {

294-

kind: "shared-gateway-auth",

295-

generation: issuerGeneration,

296-

},

297-

});

298-

} finally {

299-

await closeWsAndWait(ws);

300-

}

321+

await expectIssuerMetadataPreservedOnReconnect({ browserClient: true });

301322

});

302323303324

it("keeps issuer metadata when tagged device tokens reconnect through non-browser clients", async () => {

304-

const { getPairedDevice, verifyDeviceToken } = await import("../infra/device-pairing.js");

305-

const { resolveSharedGatewaySessionGeneration } =

306-

await import("./server/ws-shared-generation.js");

307-

const issuerGeneration = resolveSharedGatewaySessionGeneration({

308-

mode: "token",

309-

token: OLD_TOKEN,

310-

allowTailscale: false,

311-

});

312-

expect(issuerGeneration).toBeTypeOf("string");

313-

if (!issuerGeneration) {

314-

throw new Error("expected shared gateway generation");

315-

}

316-

const { ws, deviceId, hello } = await openDeviceTokenWsWithDetails({

317-

issuerGeneration,

318-

});

319-

try {

320-

const helloDeviceToken = hello.auth?.deviceToken;

321-

if (typeof helloDeviceToken !== "string") {

322-

throw new Error("expected hello device token");

323-

}

324-

const paired = await getPairedDevice(deviceId);

325-

expect(paired?.tokens?.operator?.issuer).toEqual({

326-

kind: "shared-gateway-auth",

327-

generation: issuerGeneration,

328-

});

329-

await expect(

330-

verifyDeviceToken({

331-

deviceId,

332-

token: helloDeviceToken,

333-

role: "operator",

334-

scopes: ["operator.admin"],

335-

requiredSharedGatewaySessionGeneration: issuerGeneration,

336-

}),

337-

).resolves.toEqual({

338-

ok: true,

339-

issuer: {

340-

kind: "shared-gateway-auth",

341-

generation: issuerGeneration,

342-

},

343-

});

344-

} finally {

345-

await closeWsAndWait(ws);

346-

}

325+

await expectIssuerMetadataPreservedOnReconnect();

347326

});

348327

});

349328

@@ -401,10 +380,7 @@ describe("gateway shared auth rotation with unchanged SecretRefs", () => {

401380

process.env[SECRET_REF_TOKEN_ID] = NEW_TOKEN;

402381

const res = await applyCurrentConfig(ws);

403382

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

404-

await expect(closed).resolves.toEqual({

405-

code: 4001,

406-

reason: "gateway auth changed",

407-

});

383+

await expectGatewayAuthChangedClose(closed);

408384

} finally {

409385

await closeWsAndWait(ws);

410386

}