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

推荐订阅源

OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
B
Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
V2EX
IT之家
IT之家
Jina AI
Jina AI
D
DataBreaches.Net
V
Visual Studio Blog
腾讯CDC
雷峰网
雷峰网
博客园 - 【当耐特】
Y
Y Combinator Blog
阮一峰的网络日志
阮一峰的网络日志
Last Week in AI
Last Week in AI
P
Proofpoint News Feed
Microsoft Security Blog
Microsoft Security Blog
M
MIT News - Artificial intelligence
MongoDB | Blog
MongoDB | Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
MyScale Blog
MyScale Blog
爱范儿
爱范儿
博客园 - Franky
有赞技术团队
有赞技术团队
Engineering at Meta
Engineering at Meta

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 depth assertions · openclaw/opencl...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -18,6 +18,13 @@ const hoisted = vi.hoisted(() => ({

1818

let spawnSubagentDirect: typeof import("./subagent-spawn.js").spawnSubagentDirect;

1919

let persistedStore: Record<string, Record<string, unknown>> | undefined;

202021+

type SpawnResult = Awaited<ReturnType<typeof spawnSubagentDirect>>;

22+

type AcceptedSpawnResult = SpawnResult & {

23+

childSessionKey: string;

24+

runId: string;

25+

status: "accepted";

26+

};

27+2128

function createDepthLimitConfig(subagents?: Record<string, unknown>) {

2229

return createSubagentSpawnTestConfig("/tmp/workspace-main", {

2330

agents: {

@@ -45,6 +52,24 @@ async function spawnFrom(sessionKey: string, params?: Record<string, unknown>) {

4552

);

4653

}

475455+

function expectForbidden(result: SpawnResult, error: string) {

56+

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

57+

if (result.status !== "forbidden") {

58+

throw new Error(`Expected forbidden spawn result, received ${result.status}`);

59+

}

60+

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

61+

}

62+63+

function expectAccepted(result: SpawnResult, runId: string): AcceptedSpawnResult {

64+

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

65+

if (result.status !== "accepted") {

66+

throw new Error(`Expected accepted spawn result, received ${result.status}`);

67+

}

68+

expect(result.runId).toBe(runId);

69+

expect(typeof result.childSessionKey).toBe("string");

70+

return result as AcceptedSpawnResult;

71+

}

72+4873

describe("subagent spawn depth + child limits", () => {

4974

beforeAll(async () => {

5075

({ spawnSubagentDirect } = await loadSubagentSpawnModuleForTest({

@@ -80,10 +105,10 @@ describe("subagent spawn depth + child limits", () => {

8010581106

const result = await spawnFrom("agent:main:subagent:parent");

8210783-

expect(result).toMatchObject({

84-

status: "forbidden",

85-

error: "sessions_spawn is not allowed at this depth (current depth: 1, max: 1)",

86-

});

108+

expectForbidden(

109+

result,

110+

"sessions_spawn is not allowed at this depth (current depth: 1, max: 1)",

111+

);

87112

});

8811389114

it("allows depth-1 callers when maxSpawnDepth is 2 and patches child capabilities", async () => {

@@ -92,19 +117,18 @@ describe("subagent spawn depth + child limits", () => {

9211793118

const result = await spawnFrom("agent:main:subagent:parent");

9411995-

expect(result).toMatchObject({

96-

status: "accepted",

97-

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

98-

runId: "run-1",

99-

});

100-101-

const childSession = persistedStore?.[result.childSessionKey as string];

102-

expect(childSession).toMatchObject({

103-

spawnedBy: "agent:main:subagent:parent",

104-

spawnDepth: 2,

105-

subagentRole: "leaf",

106-

subagentControlScope: "none",

107-

});

120+

const accepted = expectAccepted(result, "run-1");

121+

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

122+123+

const childSession = persistedStore?.[accepted.childSessionKey];

124+

expect(childSession).toBeDefined();

125+

if (!childSession) {

126+

throw new Error("Expected persisted child session");

127+

}

128+

expect(childSession.spawnedBy).toBe("agent:main:subagent:parent");

129+

expect(childSession.spawnDepth).toBe(2);

130+

expect(childSession.subagentRole).toBe("leaf");

131+

expect(childSession.subagentControlScope).toBe("none");

108132

expect(typeof childSession?.spawnedWorkspaceDir).toBe("string");

109133

});

110134

@@ -114,10 +138,10 @@ describe("subagent spawn depth + child limits", () => {

114138115139

const result = await spawnFrom("agent:main:subagent:flat-depth-2");

116140117-

expect(result).toMatchObject({

118-

status: "forbidden",

119-

error: "sessions_spawn is not allowed at this depth (current depth: 2, max: 2)",

120-

});

141+

expectForbidden(

142+

result,

143+

"sessions_spawn is not allowed at this depth (current depth: 2, max: 2)",

144+

);

121145

});

122146123147

it("rejects when active children for requester session reached maxChildrenPerAgent", async () => {

@@ -130,10 +154,10 @@ describe("subagent spawn depth + child limits", () => {

130154131155

const result = await spawnFrom("agent:main:subagent:parent");

132156133-

expect(result).toMatchObject({

134-

status: "forbidden",

135-

error: "sessions_spawn has reached max active children for this session (1/1)",

136-

});

157+

expectForbidden(

158+

result,

159+

"sessions_spawn has reached max active children for this session (1/1)",

160+

);

137161

});

138162139163

it("does not use subagent maxConcurrent as a per-parent spawn gate", async () => {

@@ -147,10 +171,7 @@ describe("subagent spawn depth + child limits", () => {

147171148172

const result = await spawnFrom("agent:main:subagent:parent");

149173150-

expect(result).toMatchObject({

151-

status: "accepted",

152-

runId: "run-1",

153-

});

174+

expectAccepted(result, "run-1");

154175

});

155176156177

it("fails spawn when the initial child session patch rejects the model", async () => {

@@ -167,9 +188,7 @@ describe("subagent spawn depth + child limits", () => {

167188168189

const result = await spawnFrom("main", { model: "bad-model" });

169190170-

expect(result).toMatchObject({

171-

status: "error",

172-

});

191+

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

173192

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

174193

expect(

175194

hoisted.callGatewayMock.mock.calls.some(