import "./reply.directive.directive-behavior.e2e-mocks.js"; import path from "node:path"; import { describe, expect, it, vi } from "vitest"; import { installDirectiveBehaviorE2EHooks, loadModelCatalog, runEmbeddedPiAgent, withTempHome, } from "./reply.directive.directive-behavior.e2e-harness.js"; import { getReplyFromConfig } from "./reply.js"; describe("directive behavior", () => { installDirectiveBehaviorE2EHooks(); it("ignores inline /model and uses the default model", async () => { await withTempHome(async (home) => { const storePath = path.join(home, "sessions.json"); vi.mocked(runEmbeddedPiAgent).mockResolvedValue({ payloads: [{ text: "done" }], meta: { durationMs: 5, agentMeta: { sessionId: "s", provider: "p", model: "m" }, }, }); const res = await getReplyFromConfig( { Body: "please sync /model openai/gpt-4.1-mini now", From: "+1004", To: "+2000", }, {}, { agents: { defaults: { model: { primary: "anthropic/claude-opus-4-5" }, workspace: path.join(home, "openclaw"), models: { "anthropic/claude-opus-4-5": {}, "openai/gpt-4.1-mini": {}, }, }, }, channels: { whatsapp: { allowFrom: ["*"] } }, session: { store: storePath }, }, ); const texts = (Array.isArray(res) ? res : [res]).map((entry) => entry?.text).filter(Boolean); expect(texts).toContain("done"); expect(runEmbeddedPiAgent).toHaveBeenCalledOnce(); const call = vi.mocked(runEmbeddedPiAgent).mock.calls[0]?.[0]; expect(call?.provider).toBe("anthropic"); expect(call?.model).toBe("claude-opus-4-5"); }); }); it("defaults thinking to low for reasoning-capable models", async () => { await withTempHome(async (home) => { const storePath = path.join(home, "sessions.json"); vi.mocked(runEmbeddedPiAgent).mockResolvedValue({ payloads: [{ text: "done" }], meta: { durationMs: 5, agentMeta: { sessionId: "s", provider: "p", model: "m" }, }, }); vi.mocked(loadModelCatalog).mockResolvedValueOnce([ { id: "claude-opus-4-5", name: "Opus 4.5", provider: "anthropic", reasoning: true, }, ]); await getReplyFromConfig( { Body: "hello", From: "+1004", To: "+2000", }, {}, { agents: { defaults: { model: { primary: "anthropic/claude-opus-4-5" }, workspace: path.join(home, "openclaw"), }, }, channels: { whatsapp: { allowFrom: ["*"] } }, session: { store: storePath }, }, ); expect(runEmbeddedPiAgent).toHaveBeenCalledOnce(); const call = vi.mocked(runEmbeddedPiAgent).mock.calls[0]?.[0]; expect(call?.thinkLevel).toBe("low"); }); }); it("passes elevated defaults when sender is approved", async () => { await withTempHome(async (home) => { const storePath = path.join(home, "sessions.json"); vi.mocked(runEmbeddedPiAgent).mockResolvedValue({ payloads: [{ text: "done" }], meta: { durationMs: 5, agentMeta: { sessionId: "s", provider: "p", model: "m" }, }, }); await getReplyFromConfig( { Body: "hello", From: "+1004", To: "+2000", Provider: "whatsapp", SenderE164: "+1004", }, {}, { agents: { defaults: { model: { primary: "anthropic/claude-opus-4-5" }, workspace: path.join(home, "openclaw"), }, }, tools: { elevated: { allowFrom: { whatsapp: ["+1004"] }, }, }, channels: { whatsapp: { allowFrom: ["*"] } }, session: { store: storePath }, }, ); expect(runEmbeddedPiAgent).toHaveBeenCalledOnce(); const call = vi.mocked(runEmbeddedPiAgent).mock.calls[0]?.[0]; expect(call?.bashElevated).toEqual({ enabled: true, allowed: true, defaultLevel: "on", }); }); }); });