mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-09 15:43:59 +00:00
34 lines
955 B
TypeScript
34 lines
955 B
TypeScript
/**
|
|
* Regression coverage for depth-derived subagent capabilities.
|
|
* Verifies main/orchestrator/leaf role and control-scope decisions.
|
|
*/
|
|
import { describe, expect, it } from "vitest";
|
|
import { resolveSubagentCapabilities } from "./subagent-capabilities.js";
|
|
|
|
describe("resolveSubagentCapabilities", () => {
|
|
it("returns normalized depth for non-finite direct inputs", () => {
|
|
expect(
|
|
resolveSubagentCapabilities({
|
|
depth: Number.NaN,
|
|
maxSpawnDepth: Number.POSITIVE_INFINITY,
|
|
}),
|
|
).toEqual({
|
|
depth: 0,
|
|
role: "main",
|
|
controlScope: "children",
|
|
canSpawn: true,
|
|
canControlChildren: true,
|
|
});
|
|
});
|
|
|
|
it("floors finite depth and max depth consistently", () => {
|
|
expect(resolveSubagentCapabilities({ depth: 1.9, maxSpawnDepth: 1.2 })).toEqual({
|
|
depth: 1,
|
|
role: "leaf",
|
|
controlScope: "none",
|
|
canSpawn: false,
|
|
canControlChildren: false,
|
|
});
|
|
});
|
|
});
|