Spaces:
Paused
Paused
File size: 4,256 Bytes
fb4d8fe | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 | import os from "node:os";
import path from "node:path";
import { describe, expect, it } from "vitest";
import type { OpenClawConfig } from "../config/config.js";
import {
applyAgentBindings,
applyAgentConfig,
buildAgentSummaries,
pruneAgentConfig,
} from "./agents.js";
describe("agents helpers", () => {
it("buildAgentSummaries includes default + configured agents", () => {
const cfg: OpenClawConfig = {
agents: {
defaults: {
workspace: "/main-ws",
model: { primary: "anthropic/claude" },
},
list: [
{ id: "main" },
{
id: "work",
default: true,
name: "Work",
workspace: "/work-ws",
agentDir: "/state/agents/work/agent",
model: "openai/gpt-4.1",
},
],
},
bindings: [
{
agentId: "work",
match: { channel: "whatsapp", accountId: "biz" },
},
{ agentId: "main", match: { channel: "telegram" } },
],
};
const summaries = buildAgentSummaries(cfg);
const main = summaries.find((summary) => summary.id === "main");
const work = summaries.find((summary) => summary.id === "work");
expect(main).toBeTruthy();
expect(main?.workspace).toBe(path.join(os.homedir(), ".openclaw", "workspace-main"));
expect(main?.bindings).toBe(1);
expect(main?.model).toBe("anthropic/claude");
expect(main?.agentDir.endsWith(path.join("agents", "main", "agent"))).toBe(true);
expect(work).toBeTruthy();
expect(work?.name).toBe("Work");
expect(work?.workspace).toBe(path.resolve("/work-ws"));
expect(work?.agentDir).toBe(path.resolve("/state/agents/work/agent"));
expect(work?.bindings).toBe(1);
expect(work?.isDefault).toBe(true);
});
it("applyAgentConfig merges updates", () => {
const cfg: OpenClawConfig = {
agents: {
list: [{ id: "work", workspace: "/old-ws", model: "anthropic/claude" }],
},
};
const next = applyAgentConfig(cfg, {
agentId: "work",
name: "Work",
workspace: "/new-ws",
agentDir: "/state/work/agent",
});
const work = next.agents?.list?.find((agent) => agent.id === "work");
expect(work?.name).toBe("Work");
expect(work?.workspace).toBe("/new-ws");
expect(work?.agentDir).toBe("/state/work/agent");
expect(work?.model).toBe("anthropic/claude");
});
it("applyAgentBindings skips duplicates and reports conflicts", () => {
const cfg: OpenClawConfig = {
bindings: [
{
agentId: "main",
match: { channel: "whatsapp", accountId: "default" },
},
],
};
const result = applyAgentBindings(cfg, [
{
agentId: "main",
match: { channel: "whatsapp", accountId: "default" },
},
{
agentId: "work",
match: { channel: "whatsapp", accountId: "default" },
},
{
agentId: "work",
match: { channel: "telegram" },
},
]);
expect(result.added).toHaveLength(1);
expect(result.skipped).toHaveLength(1);
expect(result.conflicts).toHaveLength(1);
expect(result.config.bindings).toHaveLength(2);
});
it("pruneAgentConfig removes agent, bindings, and allowlist entries", () => {
const cfg: OpenClawConfig = {
agents: {
list: [
{ id: "work", default: true, workspace: "/work-ws" },
{ id: "home", workspace: "/home-ws" },
],
},
bindings: [
{ agentId: "work", match: { channel: "whatsapp" } },
{ agentId: "home", match: { channel: "telegram" } },
],
tools: {
agentToAgent: { enabled: true, allow: ["work", "home"] },
},
};
const result = pruneAgentConfig(cfg, "work");
expect(result.config.agents?.list?.some((agent) => agent.id === "work")).toBe(false);
expect(result.config.agents?.list?.some((agent) => agent.id === "home")).toBe(true);
expect(result.config.bindings).toHaveLength(1);
expect(result.config.bindings?.[0]?.agentId).toBe("home");
expect(result.config.tools?.agentToAgent?.allow).toEqual(["home"]);
expect(result.removedBindings).toBe(1);
expect(result.removedAllow).toBe(1);
});
});
|