Files
openclaw/extensions/whatsapp/src/approval-handler.runtime.test.ts
2026-06-04 21:59:00 -04:00

161 lines
5.0 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// Whatsapp tests cover approval handler plugin behavior.
import { describe, expect, it } from "vitest";
import { whatsappApprovalNativeRuntime } from "./approval-handler.runtime.js";
describe("whatsappApprovalNativeRuntime", () => {
it("renders allowed thumbs-only reactions in pending exec approvals", async () => {
const payload = await whatsappApprovalNativeRuntime.presentation.buildPendingPayload({
cfg: {} as never,
accountId: "default",
context: { accountId: "default" },
request: {
id: "exec-1",
request: {
command: "echo hi",
},
createdAtMs: 0,
expiresAtMs: 60_000,
},
approvalKind: "exec",
nowMs: 0,
view: {
approvalKind: "exec",
approvalId: "exec-1",
commandText: "echo hi",
actions: [
{
decision: "allow-once",
label: "Allow Once",
command: "/approve exec-1 allow-once",
style: "success",
},
{
decision: "deny",
label: "Deny",
command: "/approve exec-1 deny",
style: "danger",
},
],
} as never,
});
expect(payload.reactionPayload.text).toContain("👍 Allow Once");
expect(payload.reactionPayload.text).toContain("👎 Deny");
expect(payload.reactionPayload.text).not.toContain("1⃣ Allow Once");
expect(payload.reactionPayload.text).not.toContain("2⃣ Allow Always");
expect(payload.reactionPayload.text).not.toContain("3⃣ Deny");
expect(payload.reactionPayload.allowedDecisions).toEqual(["allow-once", "deny"]);
});
it("renders allowed thumbs-only reactions in pending plugin approvals", async () => {
const payload = await whatsappApprovalNativeRuntime.presentation.buildPendingPayload({
cfg: {} as never,
accountId: "default",
context: { accountId: "default" },
request: {
id: "plugin:abc",
request: {
title: "Allow Codex to use 1Password?",
description: "Allow Codex to use 1Password?",
pluginId: "openclaw-codex-app-server",
toolName: "codex_mcp_tool_approval",
severity: "warning",
allowedDecisions: ["allow-once", "allow-always", "deny"],
},
createdAtMs: 0,
expiresAtMs: 60_000,
},
approvalKind: "plugin",
nowMs: 0,
view: {
approvalKind: "plugin",
approvalId: "plugin:abc",
title: "Plugin approval required",
severity: "warning",
actions: [
{
decision: "allow-once",
label: "Allow Once",
command: "/approve plugin:abc allow-once",
style: "success",
},
{
decision: "allow-always",
label: "Allow Always",
command: "/approve plugin:abc allow-always",
style: "primary",
},
{
decision: "deny",
label: "Deny",
command: "/approve plugin:abc deny",
style: "danger",
},
],
} as never,
});
expect(payload.reactionPayload.text).toContain("Plugin approval required");
expect(payload.reactionPayload.text).toContain(
"Reply with: /approve plugin:abc allow-once|allow-always|deny",
);
expect(payload.reactionPayload.text).toContain("👍 Allow Once");
expect(payload.reactionPayload.text).toContain("👎 Deny");
expect(payload.reactionPayload.text).not.toContain("/approve <id>");
expect(payload.reactionPayload.text).not.toContain("1⃣ Allow Once");
expect(payload.reactionPayload.text).not.toContain("2⃣ Allow Always");
expect(payload.reactionPayload.text).not.toContain("3⃣ Deny");
expect(payload.reactionPayload.allowedDecisions).toEqual([
"allow-once",
"allow-always",
"deny",
]);
});
it("normalizes WhatsApp targets and carries account ids into prepared delivery", async () => {
await expect(
whatsappApprovalNativeRuntime.transport.prepareTarget({
cfg: {} as never,
accountId: "ops",
context: { accountId: "ops" },
plannedTarget: {
surface: "origin",
reason: "preferred",
target: {
to: "15551230000@s.whatsapp.net",
},
},
request: {
id: "exec-1",
request: {
command: "echo hi",
},
createdAtMs: 0,
expiresAtMs: 60_000,
},
approvalKind: "exec",
view: {
approvalKind: "exec",
approvalId: "exec-1",
commandText: "echo hi",
actions: [],
} as never,
pendingPayload: {
manualFallbackPayload: { text: "pending" },
reactionPayload: {
text: "pending",
allowedDecisions: ["allow-once"],
reactionBindings: [],
},
},
}),
).resolves.toEqual({
dedupeKey: expect.any(String),
target: {
to: "+15551230000",
accountId: "ops",
},
});
});
});