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

推荐订阅源

G
Google Developers Blog
有赞技术团队
有赞技术团队
WordPress大学
WordPress大学
博客园 - 司徒正美
D
Docker
B
Blog
V
Visual Studio Blog
Blog — PlanetScale
Blog — PlanetScale
U
Unit 42
S
SegmentFault 最新的问题
小众软件
小众软件
J
Java Code Geeks
美团技术团队
腾讯CDC
MyScale Blog
MyScale Blog
爱范儿
爱范儿
H
Help Net Security
宝玉的分享
宝玉的分享
Microsoft Azure Blog
Microsoft Azure Blog
A
About on SuperTechFans
Google DeepMind News
Google DeepMind News
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 三生石上(FineUI控件)
博客园 - 【当耐特】

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 session kill response assertions · openclaw...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -108,6 +108,20 @@ async function post(

108108

});

109109

}

110110111+

function expectErrorResponse(body: unknown, expected: { type: string; message?: string }) {

112+

const response = body as {

113+

ok?: unknown;

114+

error?: { type?: unknown; message?: unknown };

115+

};

116+

if (Object.hasOwn(response, "ok")) {

117+

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

118+

}

119+

expect(response.error?.type).toBe(expected.type);

120+

if (expected.message !== undefined) {

121+

expect(response.error?.message).toBe(expected.message);

122+

}

123+

}

124+111125

describe("POST /sessions/:sessionKey/kill", () => {

112126

it("returns 401 when auth fails", async () => {

113127

authMock.mockResolvedValueOnce({ ok: false, rateLimited: false });

@@ -128,10 +142,7 @@ describe("POST /sessions/:sessionKey/kill", () => {

128142

},

129143

);

130144

expect(response.status).toBe(404);

131-

await expect(response.json()).resolves.toMatchObject({

132-

ok: false,

133-

error: { type: "not_found" },

134-

});

145+

expectErrorResponse(await response.json(), { type: "not_found" });

135146

expect(killSubagentRunAdminMock).not.toHaveBeenCalled();

136147

});

137148

@@ -140,11 +151,9 @@ describe("POST /sessions/:sessionKey/kill", () => {

140151

async (pathname) => {

141152

const response = await post(pathname);

142153

expect(response.status).toBe(400);

143-

await expect(response.json()).resolves.toMatchObject({

144-

error: {

145-

message: "invalid session key",

146-

type: "invalid_request_error",

147-

},

154+

expectErrorResponse(await response.json(), {

155+

message: "invalid session key",

156+

type: "invalid_request_error",

148157

});

149158

expect(authMock).not.toHaveBeenCalled();

150159

expect(loadSessionEntryMock).not.toHaveBeenCalled();

@@ -198,12 +207,9 @@ describe("POST /sessions/:sessionKey/kill", () => {

198207

it("rejects local bearer-auth kills without a trusted admin scope surface", async () => {

199208

const response = await post("/sessions/agent%3Amain%3Asubagent%3Aworker/kill");

200209

expect(response.status).toBe(403);

201-

await expect(response.json()).resolves.toMatchObject({

202-

ok: false,

203-

error: {

204-

type: "forbidden",

205-

message: "missing scope: operator.admin",

206-

},

210+

expectErrorResponse(await response.json(), {

211+

type: "forbidden",

212+

message: "missing scope: operator.admin",

207213

});

208214

expect(loadSessionEntryMock).not.toHaveBeenCalled();

209215

expect(killSubagentRunAdminMock).not.toHaveBeenCalled();

@@ -218,12 +224,9 @@ describe("POST /sessions/:sessionKey/kill", () => {

218224

},

219225

);

220226

expect(response.status).toBe(403);

221-

await expect(response.json()).resolves.toMatchObject({

222-

ok: false,

223-

error: {

224-

type: "forbidden",

225-

message: "missing scope: operator.admin",

226-

},

227+

expectErrorResponse(await response.json(), {

228+

type: "forbidden",

229+

message: "missing scope: operator.admin",

227230

});

228231

expect(loadSessionEntryMock).not.toHaveBeenCalled();

229232

expect(killSubagentRunAdminMock).not.toHaveBeenCalled();

@@ -238,10 +241,7 @@ describe("POST /sessions/:sessionKey/kill", () => {

238241239242

const response = await post("/sessions/agent%3Amain%3Asubagent%3Aworker/kill");

240243

expect(response.status).toBe(403);

241-

await expect(response.json()).resolves.toMatchObject({

242-

ok: false,

243-

error: { type: "forbidden" },

244-

});

244+

expectErrorResponse(await response.json(), { type: "forbidden" });

245245

expect(killSubagentRunAdminMock).not.toHaveBeenCalled();

246246

});

247247

@@ -309,14 +309,18 @@ describe("POST /sessions/:sessionKey/kill", () => {

309309

});

310310

expect(response.status).toBe(200);

311311

await expect(response.json()).resolves.toEqual({ ok: true, killed: false });

312-

expect(killControlledSubagentRunMock).toHaveBeenCalledWith({

313-

cfg,

314-

controller: { controllerSessionKey: "agent:main:main" },

315-

entry: expect.objectContaining({

316-

runId: "run-current-ended",

317-

childSessionKey: "agent:main:subagent:worker",

318-

}),

319-

});

312+

expect(killControlledSubagentRunMock).toHaveBeenCalledTimes(1);

313+

const killCall = killControlledSubagentRunMock.mock.calls[0]?.[0] as

314+

| {

315+

cfg?: unknown;

316+

controller?: { controllerSessionKey?: string };

317+

entry?: { runId?: string; childSessionKey?: string };

318+

}

319+

| undefined;

320+

expect(killCall?.cfg).toBe(cfg);

321+

expect(killCall?.controller?.controllerSessionKey).toBe("agent:main:main");

322+

expect(killCall?.entry?.runId).toBe("run-current-ended");

323+

expect(killCall?.entry?.childSessionKey).toBe("agent:main:subagent:worker");

320324

});

321325322326

it("rejects bearer-auth requester kills without a trusted write scope surface", async () => {

@@ -327,12 +331,9 @@ describe("POST /sessions/:sessionKey/kill", () => {

327331

{ "x-openclaw-requester-session-key": "agent:other:main" },

328332

);

329333

expect(response.status).toBe(403);

330-

await expect(response.json()).resolves.toMatchObject({

331-

ok: false,

332-

error: {

333-

type: "forbidden",

334-

message: "missing scope: operator.write",

335-

},

334+

expectErrorResponse(await response.json(), {

335+

type: "forbidden",

336+

message: "missing scope: operator.write",

336337

});

337338

expect(loadSessionEntryMock).not.toHaveBeenCalled();

338339

expect(killSubagentRunAdminMock).not.toHaveBeenCalled();