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

推荐订阅源

H
Help Net Security
爱范儿
爱范儿
V
Visual Studio Blog
Last Week in AI
Last Week in AI
阮一峰的网络日志
阮一峰的网络日志
雷峰网
雷峰网
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 三生石上(FineUI控件)
博客园 - Franky
博客园 - 叶小钗
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The Cloudflare Blog
大猫的无限游戏
大猫的无限游戏
人人都是产品经理
人人都是产品经理
M
MIT News - Artificial intelligence
罗磊的独立博客
L
LangChain Blog
Jina AI
Jina AI
IT之家
IT之家
J
Java Code Geeks
Microsoft Azure Blog
Microsoft Azure 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: clear subagents spawn action broad matchers · openc...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -83,6 +83,24 @@ function buildContext(params?: {

8383

} satisfies Parameters<typeof handleSubagentsSpawnAction>[0];

8484

}

858586+

function latestSpawnCall(): {

87+

options: Record<string, unknown>;

88+

context: Record<string, unknown>;

89+

} {

90+

const call = spawnSubagentDirectMock.mock.calls.at(-1);

91+

if (!call) {

92+

throw new Error("expected spawnSubagentDirect call");

93+

}

94+

const [options, context] = call;

95+

if (!options || typeof options !== "object" || !context || typeof context !== "object") {

96+

throw new Error("expected spawnSubagentDirect object args");

97+

}

98+

return {

99+

options: options as Record<string, unknown>,

100+

context: context as Record<string, unknown>,

101+

};

102+

}

103+86104

describe("subagents spawn action", () => {

87105

beforeEach(() => {

88106

vi.clearAllMocks();

@@ -119,22 +137,18 @@ describe("subagents spawn action", () => {

119137

text: "Spawned subagent beta (session agent:beta:subagent:test-uuid, run run-spaw).",

120138

},

121139

});

122-

expect(spawnSubagentDirectMock).toHaveBeenCalledWith(

123-

expect.objectContaining({

124-

agentId: "beta",

125-

task: "do the thing",

126-

mode: "run",

127-

cleanup: "keep",

128-

expectsCompletionMessage: true,

129-

}),

130-

expect.objectContaining({

131-

agentSessionKey: "agent:main:main",

132-

agentChannel: "whatsapp",

133-

agentAccountId: "default",

134-

agentTo: "channel:origin",

135-

agentThreadId: "thread-1",

136-

}),

137-

);

140+

expect(spawnSubagentDirectMock).toHaveBeenCalledOnce();

141+

const { options, context } = latestSpawnCall();

142+

expect(options.agentId).toBe("beta");

143+

expect(options.task).toBe("do the thing");

144+

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

145+

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

146+

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

147+

expect(context.agentSessionKey).toBe("agent:main:main");

148+

expect(context.agentChannel).toBe("whatsapp");

149+

expect(context.agentAccountId).toBe("default");

150+

expect(context.agentTo).toBe("channel:origin");

151+

expect(context.agentThreadId).toBe("thread-1");

138152

});

139153140154

it("passes --model through to spawnSubagentDirect", async () => {

@@ -144,13 +158,9 @@ describe("subagents spawn action", () => {

144158

restTokens: ["beta", "do", "the", "thing", "--model", "openai/gpt-4o"],

145159

}),

146160

);

147-

expect(spawnSubagentDirectMock).toHaveBeenCalledWith(

148-

expect.objectContaining({

149-

model: "openai/gpt-4o",

150-

task: "do the thing",

151-

}),

152-

expect.anything(),

153-

);

161+

const { options } = latestSpawnCall();

162+

expect(options.model).toBe("openai/gpt-4o");

163+

expect(options.task).toBe("do the thing");

154164

});

155165156166

it("passes --thinking through to spawnSubagentDirect", async () => {

@@ -160,13 +170,9 @@ describe("subagents spawn action", () => {

160170

restTokens: ["beta", "do", "the", "thing", "--thinking", "high"],

161171

}),

162172

);

163-

expect(spawnSubagentDirectMock).toHaveBeenCalledWith(

164-

expect.objectContaining({

165-

thinking: "high",

166-

task: "do the thing",

167-

}),

168-

expect.anything(),

169-

);

173+

const { options } = latestSpawnCall();

174+

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

175+

expect(options.task).toBe("do the thing");

170176

});

171177172178

it("passes group context from the session entry", async () => {

@@ -182,14 +188,10 @@ describe("subagents spawn action", () => {

182188

},

183189

}),

184190

);

185-

expect(spawnSubagentDirectMock).toHaveBeenCalledWith(

186-

expect.anything(),

187-

expect.objectContaining({

188-

agentGroupId: "group-1",

189-

agentGroupChannel: "#group-channel",

190-

agentGroupSpace: "workspace-1",

191-

}),

192-

);

191+

const { context } = latestSpawnCall();

192+

expect(context.agentGroupId).toBe("group-1");

193+

expect(context.agentGroupChannel).toBe("#group-channel");

194+

expect(context.agentGroupSpace).toBe("workspace-1");

193195

});

194196195197

it("uses the requester key chosen by earlier routing", async () => {

@@ -205,14 +207,10 @@ describe("subagents spawn action", () => {

205207

},

206208

}),

207209

);

208-

expect(spawnSubagentDirectMock).toHaveBeenCalledWith(

209-

expect.anything(),

210-

expect.objectContaining({

211-

agentSessionKey: "agent:main:target",

212-

agentChannel: "discord",

213-

agentTo: "channel:12345",

214-

}),

215-

);

210+

const { context } = latestSpawnCall();

211+

expect(context.agentSessionKey).toBe("agent:main:target");

212+

expect(context.agentChannel).toBe("discord");

213+

expect(context.agentTo).toBe("channel:12345");

216214

});

217215218216

it("prefers the requester-key session entry for group metadata", async () => {

@@ -229,15 +227,11 @@ describe("subagents spawn action", () => {

229227

},

230228

}),

231229

);

232-

const call = spawnSubagentDirectMock.mock.calls.at(-1);

233-

expect(call?.[1]).toEqual(

234-

expect.objectContaining({

235-

agentSessionKey: "agent:main:target",

236-

agentGroupId: "wrapper-group",

237-

agentGroupChannel: "#wrapper",

238-

agentGroupSpace: "wrapper-space",

239-

}),

240-

);

230+

let context = latestSpawnCall().context;

231+

expect(context.agentSessionKey).toBe("agent:main:target");

232+

expect(context.agentGroupId).toBe("wrapper-group");

233+

expect(context.agentGroupChannel).toBe("#wrapper");

234+

expect(context.agentGroupSpace).toBe("wrapper-space");

241235242236

spawnSubagentDirectMock.mockClear();

243237

await handleSubagentsSpawnAction({

@@ -274,15 +268,11 @@ describe("subagents spawn action", () => {

274268

},

275269

});

276270277-

expect(spawnSubagentDirectMock).toHaveBeenCalledWith(

278-

expect.anything(),

279-

expect.objectContaining({

280-

agentSessionKey: "agent:main:target",

281-

agentGroupId: "target-group",

282-

agentGroupChannel: "#target",

283-

agentGroupSpace: "target-space",

284-

}),

285-

);

271+

context = latestSpawnCall().context;

272+

expect(context.agentSessionKey).toBe("agent:main:target");

273+

expect(context.agentGroupId).toBe("target-group");

274+

expect(context.agentGroupChannel).toBe("#target");

275+

expect(context.agentGroupSpace).toBe("target-space");

286276

});

287277288278

it("falls back to OriginatingTo when command.to is missing", async () => {

@@ -297,12 +287,7 @@ describe("subagents spawn action", () => {

297287

},

298288

}),

299289

);

300-

expect(spawnSubagentDirectMock).toHaveBeenCalledWith(

301-

expect.anything(),

302-

expect.objectContaining({

303-

agentTo: "channel:manual",

304-

}),

305-

);

290+

expect(latestSpawnCall().context.agentTo).toBe("channel:manual");

306291

});

307292308293

it("formats forbidden spawn failures", async () => {