mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-03 08:30:21 +00:00
34 lines
1.0 KiB
TypeScript
34 lines
1.0 KiB
TypeScript
import { it } from "vitest";
|
|
import { finalizeInboundContext } from "../../../src/auto-reply/reply/inbound-context.js";
|
|
import { expectChannelInboundContextContract } from "../../../src/channels/plugins/contracts/test-helpers.js";
|
|
|
|
export function installWhatsAppInboundContractSuite() {
|
|
it("keeps inbound context finalized", () => {
|
|
const ctx = finalizeInboundContext({
|
|
Body: "Alice: hi",
|
|
BodyForAgent: "hi",
|
|
RawBody: "hi",
|
|
CommandBody: "hi",
|
|
BodyForCommands: "hi",
|
|
From: "123@g.us",
|
|
To: "+15550001111",
|
|
SessionKey: "agent:main:whatsapp:group:123",
|
|
AccountId: "default",
|
|
ChatType: "group",
|
|
ConversationLabel: "123@g.us",
|
|
GroupSubject: "Test Group",
|
|
SenderName: "Alice",
|
|
SenderId: "alice@s.whatsapp.net",
|
|
SenderE164: "+15550002222",
|
|
Provider: "whatsapp",
|
|
Surface: "whatsapp",
|
|
MessageSid: "msg1",
|
|
OriginatingChannel: "whatsapp",
|
|
OriginatingTo: "123@g.us",
|
|
CommandAuthorized: true,
|
|
});
|
|
|
|
expectChannelInboundContextContract(ctx);
|
|
});
|
|
}
|