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

推荐订阅源

N
Netflix TechBlog - Medium
I
InfoQ
Engineering at Meta
Engineering at Meta
Jina AI
Jina AI
Recent Announcements
Recent Announcements
T
The Blog of Author Tim Ferriss
P
Proofpoint News Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
D
Docker
Microsoft Security Blog
Microsoft Security Blog
宝玉的分享
宝玉的分享
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
GbyAI
GbyAI
博客园 - Franky
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 叶小钗
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog RSS Feed
WordPress大学
WordPress大学
MyScale Blog
MyScale 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
test: tighten subagent spawn assertions · openclaw/opencl...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -38,6 +38,22 @@ function createConfigOverride(overrides?: Record<string, unknown>) {

3838

});

3939

}

404041+

function requireRecord(value: unknown): Record<string, unknown> {

42+

expect(value).toBeTruthy();

43+

expect(typeof value).toBe("object");

44+

expect(Array.isArray(value)).toBe(false);

45+

return value as Record<string, unknown>;

46+

}

47+48+

function gatewayRequestRecords(): Record<string, unknown>[] {

49+

return hoisted.callGatewayMock.mock.calls.map((call) => requireRecord(call[0]));

50+

}

51+52+

function gatewayRequest(method: string): Record<string, unknown> {

53+

const request = gatewayRequestRecords().find((entry) => entry.method === method);

54+

return requireRecord(request);

55+

}

56+4157

describe("spawnSubagentDirect seam flow", () => {

4258

beforeAll(async () => {

4359

({ resetSubagentRegistryForTests, spawnSubagentDirect } = await loadSubagentSpawnModuleForTest({

@@ -114,13 +130,9 @@ describe("spawnSubagentDirect seam flow", () => {

114130

},

115131

);

116132117-

expect(result).toMatchObject({

118-

status: "forbidden",

119-

error: "agentId is not allowed for sessions_spawn (allowed: planner)",

120-

});

121-

expect(hoisted.callGatewayMock).not.toHaveBeenCalledWith(

122-

expect.objectContaining({ method: "agent" }),

123-

);

133+

expect(result.status).toBe("forbidden");

134+

expect(result.error).toBe("agentId is not allowed for sessions_spawn (allowed: planner)");

135+

expect(gatewayRequestRecords().some((request) => request.method === "agent")).toBe(false);

124136

});

125137126138

it("allows omitted agentId to default to requester even when allowAgents excludes requester", async () => {

@@ -154,10 +166,8 @@ describe("spawnSubagentDirect seam flow", () => {

154166

},

155167

);

156168157-

expect(result).toMatchObject({

158-

status: "accepted",

159-

childSessionKey: expect.stringMatching(/^agent:task-manager:subagent:/),

160-

});

169+

expect(result.status).toBe("accepted");

170+

expect(result.childSessionKey).toMatch(/^agent:task-manager:subagent:/);

161171

});

162172163173

it("accepts a spawned run across session patching, runtime-model persistence, registry registration, and lifecycle emission", async () => {

@@ -196,37 +206,31 @@ describe("spawnSubagentDirect seam flow", () => {

196206

},

197207

);

198208199-

expect(result).toMatchObject({

200-

status: "accepted",

201-

runId: "run-1",

202-

mode: "run",

203-

modelApplied: true,

204-

});

209+

expect(result.status).toBe("accepted");

210+

expect(result.runId).toBe("run-1");

211+

expect(result.mode).toBe("run");

212+

expect(result.modelApplied).toBe(true);

205213

expect(result.childSessionKey).toMatch(/^agent:main:subagent:/);

206214207215

const childSessionKey = result.childSessionKey as string;

208216

expect(hoisted.pruneLegacyStoreKeysMock).toHaveBeenCalledTimes(3);

209217

expect(hoisted.updateSessionStoreMock).toHaveBeenCalledTimes(3);

210-

expect(hoisted.registerSubagentRunMock).toHaveBeenCalledWith(

211-

expect.objectContaining({

212-

runId: "run-1",

213-

childSessionKey,

214-

requesterSessionKey: "agent:main:main",

215-

requesterDisplayKey: "agent:main:main",

216-

requesterOrigin: {

217-

channel: "discord",

218-

accountId: "acct-1",

219-

to: "user-1",

220-

threadId: 42,

221-

},

222-

task: "inspect the spawn seam",

223-

cleanup: "keep",

224-

model: "openai-codex/gpt-5.4",

225-

workspaceDir: "/tmp/requester-workspace",

226-

expectsCompletionMessage: true,

227-

spawnMode: "run",

228-

}),

229-

);

218+

const registerInput = requireRecord(hoisted.registerSubagentRunMock.mock.calls[0]?.[0]);

219+

const requesterOrigin = requireRecord(registerInput.requesterOrigin);

220+

expect(registerInput.runId).toBe("run-1");

221+

expect(registerInput.childSessionKey).toBe(childSessionKey);

222+

expect(registerInput.requesterSessionKey).toBe("agent:main:main");

223+

expect(registerInput.requesterDisplayKey).toBe("agent:main:main");

224+

expect(requesterOrigin.channel).toBe("discord");

225+

expect(requesterOrigin.accountId).toBe("acct-1");

226+

expect(requesterOrigin.to).toBe("user-1");

227+

expect(requesterOrigin.threadId).toBe(42);

228+

expect(registerInput.task).toBe("inspect the spawn seam");

229+

expect(registerInput.cleanup).toBe("keep");

230+

expect(registerInput.model).toBe("openai-codex/gpt-5.4");

231+

expect(registerInput.workspaceDir).toBe("/tmp/requester-workspace");

232+

expect(registerInput.expectsCompletionMessage).toBe(true);

233+

expect(registerInput.spawnMode).toBe("run");

230234

expect(hoisted.emitSessionLifecycleEventMock).toHaveBeenCalledWith({

231235

sessionKey: childSessionKey,

232236

reason: "create",

@@ -245,15 +249,10 @@ describe("spawnSubagentDirect seam flow", () => {

245249

expect(operations.indexOf("gateway:agent")).toBeGreaterThan(

246250

operations.lastIndexOf("store:update"),

247251

);

248-

expect(hoisted.callGatewayMock).toHaveBeenCalledWith(

249-

expect.objectContaining({

250-

method: "agent",

251-

params: expect.objectContaining({

252-

sessionKey: childSessionKey,

253-

cleanupBundleMcpOnRunEnd: true,

254-

}),

255-

}),

256-

);

252+

const agentRequest = gatewayRequest("agent");

253+

const agentParams = requireRecord(agentRequest.params);

254+

expect(agentParams.sessionKey).toBe(childSessionKey);

255+

expect(agentParams.cleanupBundleMcpOnRunEnd).toBe(true);

257256

});

258257259258

it("omits requesterOrigin threadId when no requester thread is provided", async () => {

@@ -282,13 +281,12 @@ describe("spawnSubagentDirect seam flow", () => {

282281

);

283282284283

expect(result.status).toBe("accepted");

285-

const registerInput = hoisted.registerSubagentRunMock.mock.calls[0]?.[0];

286-

expect(registerInput?.requesterOrigin).toMatchObject({

287-

channel: "discord",

288-

accountId: "acct-1",

289-

to: "user-1",

290-

});

291-

expect(registerInput?.requesterOrigin).not.toHaveProperty("threadId");

284+

const registerInput = requireRecord(hoisted.registerSubagentRunMock.mock.calls[0]?.[0]);

285+

const requesterOrigin = requireRecord(registerInput.requesterOrigin);

286+

expect(requesterOrigin.channel).toBe("discord");

287+

expect(requesterOrigin.accountId).toBe("acct-1");

288+

expect(requesterOrigin.to).toBe("user-1");

289+

expect(requesterOrigin).not.toHaveProperty("threadId");

292290

});

293291294292

it("pins admin-only methods to operator.admin and preserves least-privilege for others (#59428)", async () => {

@@ -364,13 +362,10 @@ describe("spawnSubagentDirect seam flow", () => {

364362

},

365363

);

366364367-

expect(result).toMatchObject({

368-

status: "accepted",

369-

});

365+

expect(result.status).toBe("accepted");

370366

const agentCall = calls.find((call) => call.method === "agent");

371-

expect(agentCall?.params).toMatchObject({

372-

thinking: "high",

373-

});

367+

const params = requireRecord(agentCall?.params);

368+

expect(params.thinking).toBe("high");

374369

});

375370376371

it("does not duplicate long subagent task text in the initial user message (#72019)", async () => {

@@ -434,10 +429,8 @@ describe("spawnSubagentDirect seam flow", () => {

434429

},

435430

);

436431437-

expect(result).toMatchObject({

438-

status: "error",

439-

childSessionKey: expect.stringMatching(/^agent:main:subagent:/),

440-

});

432+

expect(result.status).toBe("error");

433+

expect(result.childSessionKey).toMatch(/^agent:main:subagent:/);

441434

expect(result.error ?? "").toContain("invalid model");

442435

expect(

443436

hoisted.callGatewayMock.mock.calls.some(