Spaces:
Paused
Paused
OpenClawBot / src /auto-reply /reply.directive.directive-behavior.shows-current-verbose-level-verbose-has-no.e2e.test.ts
| import path from "node:path"; | |
| import { afterEach, beforeEach, describe, expect, it, vi } from "vitest"; | |
| import { withTempHome as withTempHomeBase } from "../../test/helpers/temp-home.js"; | |
| import { loadModelCatalog } from "../agents/model-catalog.js"; | |
| import { runEmbeddedPiAgent } from "../agents/pi-embedded.js"; | |
| import { loadSessionStore } from "../config/sessions.js"; | |
| import { getReplyFromConfig } from "./reply.js"; | |
| const MAIN_SESSION_KEY = "agent:main:main"; | |
| vi.mock("../agents/pi-embedded.js", () => ({ | |
| abortEmbeddedPiRun: vi.fn().mockReturnValue(false), | |
| runEmbeddedPiAgent: vi.fn(), | |
| queueEmbeddedPiMessage: vi.fn().mockReturnValue(false), | |
| resolveEmbeddedSessionLane: (key: string) => `session:${key.trim() || "main"}`, | |
| isEmbeddedPiRunActive: vi.fn().mockReturnValue(false), | |
| isEmbeddedPiRunStreaming: vi.fn().mockReturnValue(false), | |
| })); | |
| vi.mock("../agents/model-catalog.js", () => ({ | |
| loadModelCatalog: vi.fn(), | |
| })); | |
| async function withTempHome<T>(fn: (home: string) => Promise<T>): Promise<T> { | |
| return withTempHomeBase( | |
| async (home) => { | |
| return await fn(home); | |
| }, | |
| { | |
| env: { | |
| OPENCLAW_AGENT_DIR: (home) => path.join(home, ".openclaw", "agent"), | |
| PI_CODING_AGENT_DIR: (home) => path.join(home, ".openclaw", "agent"), | |
| }, | |
| prefix: "openclaw-reply-", | |
| }, | |
| ); | |
| } | |
| function _assertModelSelection( | |
| storePath: string, | |
| selection: { model?: string; provider?: string } = {}, | |
| ) { | |
| const store = loadSessionStore(storePath); | |
| const entry = store[MAIN_SESSION_KEY]; | |
| expect(entry).toBeDefined(); | |
| expect(entry?.modelOverride).toBe(selection.model); | |
| expect(entry?.providerOverride).toBe(selection.provider); | |
| } | |
| describe("directive behavior", () => { | |
| beforeEach(() => { | |
| vi.mocked(runEmbeddedPiAgent).mockReset(); | |
| vi.mocked(loadModelCatalog).mockResolvedValue([ | |
| { id: "claude-opus-4-5", name: "Opus 4.5", provider: "anthropic" }, | |
| { id: "claude-sonnet-4-1", name: "Sonnet 4.1", provider: "anthropic" }, | |
| { id: "gpt-4.1-mini", name: "GPT-4.1 Mini", provider: "openai" }, | |
| ]); | |
| }); | |
| afterEach(() => { | |
| vi.restoreAllMocks(); | |
| }); | |
| it("shows current verbose level when /verbose has no argument", async () => { | |
| await withTempHome(async (home) => { | |
| vi.mocked(runEmbeddedPiAgent).mockReset(); | |
| const res = await getReplyFromConfig( | |
| { Body: "/verbose", From: "+1222", To: "+1222", CommandAuthorized: true }, | |
| {}, | |
| { | |
| agents: { | |
| defaults: { | |
| model: "anthropic/claude-opus-4-5", | |
| workspace: path.join(home, "openclaw"), | |
| verboseDefault: "on", | |
| }, | |
| }, | |
| session: { store: path.join(home, "sessions.json") }, | |
| }, | |
| ); | |
| const text = Array.isArray(res) ? res[0]?.text : res?.text; | |
| expect(text).toContain("Current verbose level: on"); | |
| expect(text).toContain("Options: on, full, off."); | |
| expect(runEmbeddedPiAgent).not.toHaveBeenCalled(); | |
| }); | |
| }); | |
| it("shows current reasoning level when /reasoning has no argument", async () => { | |
| await withTempHome(async (home) => { | |
| vi.mocked(runEmbeddedPiAgent).mockReset(); | |
| const res = await getReplyFromConfig( | |
| { Body: "/reasoning", From: "+1222", To: "+1222", CommandAuthorized: true }, | |
| {}, | |
| { | |
| agents: { | |
| defaults: { | |
| model: "anthropic/claude-opus-4-5", | |
| workspace: path.join(home, "openclaw"), | |
| }, | |
| }, | |
| session: { store: path.join(home, "sessions.json") }, | |
| }, | |
| ); | |
| const text = Array.isArray(res) ? res[0]?.text : res?.text; | |
| expect(text).toContain("Current reasoning level: off"); | |
| expect(text).toContain("Options: on, off, stream."); | |
| expect(runEmbeddedPiAgent).not.toHaveBeenCalled(); | |
| }); | |
| }); | |
| it("shows current elevated level when /elevated has no argument", async () => { | |
| await withTempHome(async (home) => { | |
| vi.mocked(runEmbeddedPiAgent).mockReset(); | |
| const res = await getReplyFromConfig( | |
| { | |
| Body: "/elevated", | |
| From: "+1222", | |
| To: "+1222", | |
| Provider: "whatsapp", | |
| SenderE164: "+1222", | |
| CommandAuthorized: true, | |
| }, | |
| {}, | |
| { | |
| agents: { | |
| defaults: { | |
| model: "anthropic/claude-opus-4-5", | |
| workspace: path.join(home, "openclaw"), | |
| elevatedDefault: "on", | |
| }, | |
| }, | |
| tools: { | |
| elevated: { | |
| allowFrom: { whatsapp: ["+1222"] }, | |
| }, | |
| }, | |
| channels: { whatsapp: { allowFrom: ["+1222"] } }, | |
| session: { store: path.join(home, "sessions.json") }, | |
| }, | |
| ); | |
| const text = Array.isArray(res) ? res[0]?.text : res?.text; | |
| expect(text).toContain("Current elevated level: on"); | |
| expect(text).toContain("Options: on, off, ask, full."); | |
| expect(runEmbeddedPiAgent).not.toHaveBeenCalled(); | |
| }); | |
| }); | |
| it("shows current exec defaults when /exec has no argument", async () => { | |
| await withTempHome(async (home) => { | |
| vi.mocked(runEmbeddedPiAgent).mockReset(); | |
| const res = await getReplyFromConfig( | |
| { | |
| Body: "/exec", | |
| From: "+1222", | |
| To: "+1222", | |
| CommandAuthorized: true, | |
| }, | |
| {}, | |
| { | |
| agents: { | |
| defaults: { | |
| model: "anthropic/claude-opus-4-5", | |
| workspace: path.join(home, "openclaw"), | |
| }, | |
| }, | |
| tools: { | |
| exec: { | |
| host: "gateway", | |
| security: "allowlist", | |
| ask: "always", | |
| node: "mac-1", | |
| }, | |
| }, | |
| session: { store: path.join(home, "sessions.json") }, | |
| }, | |
| ); | |
| const text = Array.isArray(res) ? res[0]?.text : res?.text; | |
| expect(text).toContain( | |
| "Current exec defaults: host=gateway, security=allowlist, ask=always, node=mac-1.", | |
| ); | |
| expect(text).toContain( | |
| "Options: host=sandbox|gateway|node, security=deny|allowlist|full, ask=off|on-miss|always, node=<id>.", | |
| ); | |
| expect(runEmbeddedPiAgent).not.toHaveBeenCalled(); | |
| }); | |
| }); | |
| it("persists elevated off and reflects it in /status (even when default is on)", async () => { | |
| await withTempHome(async (home) => { | |
| vi.mocked(runEmbeddedPiAgent).mockReset(); | |
| const storePath = path.join(home, "sessions.json"); | |
| const res = await getReplyFromConfig( | |
| { | |
| Body: "/elevated off\n/status", | |
| From: "+1222", | |
| To: "+1222", | |
| Provider: "whatsapp", | |
| SenderE164: "+1222", | |
| CommandAuthorized: true, | |
| }, | |
| {}, | |
| { | |
| agents: { | |
| defaults: { | |
| model: "anthropic/claude-opus-4-5", | |
| workspace: path.join(home, "openclaw"), | |
| elevatedDefault: "on", | |
| }, | |
| }, | |
| tools: { | |
| elevated: { | |
| allowFrom: { whatsapp: ["+1222"] }, | |
| }, | |
| }, | |
| channels: { whatsapp: { allowFrom: ["+1222"] } }, | |
| session: { store: storePath }, | |
| }, | |
| ); | |
| const text = Array.isArray(res) ? res[0]?.text : res?.text; | |
| expect(text).toContain("Elevated mode disabled."); | |
| const optionsLine = text?.split("\n").find((line) => line.trim().startsWith("⚙️")); | |
| expect(optionsLine).toBeTruthy(); | |
| expect(optionsLine).not.toContain("elevated"); | |
| const store = loadSessionStore(storePath); | |
| expect(store["agent:main:main"]?.elevatedLevel).toBe("off"); | |
| expect(runEmbeddedPiAgent).not.toHaveBeenCalled(); | |
| }); | |
| }); | |
| it("strips inline elevated directives from the user text (does not persist session override)", async () => { | |
| await withTempHome(async (home) => { | |
| vi.mocked(runEmbeddedPiAgent).mockResolvedValue({ | |
| payloads: [{ text: "ok" }], | |
| meta: { | |
| durationMs: 1, | |
| agentMeta: { sessionId: "s", provider: "p", model: "m" }, | |
| }, | |
| }); | |
| const storePath = path.join(home, "sessions.json"); | |
| await getReplyFromConfig( | |
| { | |
| Body: "hello there /elevated off", | |
| From: "+1222", | |
| To: "+1222", | |
| Provider: "whatsapp", | |
| SenderE164: "+1222", | |
| }, | |
| {}, | |
| { | |
| agents: { | |
| defaults: { | |
| model: "anthropic/claude-opus-4-5", | |
| workspace: path.join(home, "openclaw"), | |
| elevatedDefault: "on", | |
| }, | |
| }, | |
| tools: { | |
| elevated: { | |
| allowFrom: { whatsapp: ["+1222"] }, | |
| }, | |
| }, | |
| channels: { whatsapp: { allowFrom: ["+1222"] } }, | |
| session: { store: storePath }, | |
| }, | |
| ); | |
| const store = loadSessionStore(storePath); | |
| expect(store["agent:main:main"]?.elevatedLevel).toBeUndefined(); | |
| const calls = vi.mocked(runEmbeddedPiAgent).mock.calls; | |
| expect(calls.length).toBeGreaterThan(0); | |
| const call = calls[0]?.[0]; | |
| expect(call?.prompt).toContain("hello there"); | |
| expect(call?.prompt).not.toContain("/elevated"); | |
| }); | |
| }); | |
| }); | |