mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-25 04:19:30 +00:00
93 lines
2.7 KiB
TypeScript
93 lines
2.7 KiB
TypeScript
/** Verifies hook callbacks receive agent context and scoped plugin metadata. */
|
|
import { describe, expect, it } from "vitest";
|
|
import {
|
|
buildAgentHookContextChannelFields,
|
|
resolveAgentHookChannelId,
|
|
} from "./hook-agent-context.js";
|
|
|
|
describe("resolveAgentHookChannelId", () => {
|
|
it("derives the conversation id from channel session keys", () => {
|
|
expect(
|
|
resolveAgentHookChannelId({
|
|
sessionKey: "agent:main:discord:channel:1472750640760623226",
|
|
messageChannel: "discord",
|
|
messageProvider: "discord",
|
|
currentChannelId: "channel:1472750640760623226",
|
|
}),
|
|
).toBe("1472750640760623226");
|
|
});
|
|
|
|
it("uses target metadata when the session key is not a channel conversation", () => {
|
|
expect(
|
|
resolveAgentHookChannelId({
|
|
sessionKey: "agent:main:main",
|
|
messageProvider: "telegram",
|
|
currentChannelId: "telegram:-1003841603622",
|
|
}),
|
|
).toBe("-1003841603622");
|
|
});
|
|
|
|
it("uses message channel prefixes when provider is a narrower route label", () => {
|
|
expect(
|
|
resolveAgentHookChannelId({
|
|
sessionKey: "agent:main:main",
|
|
messageChannel: "discord",
|
|
messageProvider: "discord-voice",
|
|
currentChannelId: "discord:voice-room",
|
|
}),
|
|
).toBe("voice-room");
|
|
});
|
|
|
|
it("uses prefixed message targets before falling back to the provider", () => {
|
|
expect(
|
|
resolveAgentHookChannelId({
|
|
messageChannel: "channel:1472750640760623226",
|
|
messageProvider: "discord",
|
|
}),
|
|
).toBe("1472750640760623226");
|
|
});
|
|
|
|
it("falls back to legacy channel/provider values when no conversation id is available", () => {
|
|
expect(
|
|
resolveAgentHookChannelId({
|
|
messageChannel: "discord",
|
|
messageProvider: "discord",
|
|
}),
|
|
).toBe("discord");
|
|
});
|
|
});
|
|
|
|
describe("buildAgentHookContextChannelFields", () => {
|
|
it("keeps provider and conversation id separate", () => {
|
|
expect(
|
|
buildAgentHookContextChannelFields({
|
|
sessionKey: "agent:main:discord:channel:c1",
|
|
messageChannel: "discord",
|
|
messageProvider: "discord",
|
|
senderId: "user-123",
|
|
}),
|
|
).toEqual({
|
|
channel: "discord",
|
|
messageProvider: "discord",
|
|
channelId: "c1",
|
|
chatId: "c1",
|
|
senderId: "user-123",
|
|
});
|
|
});
|
|
|
|
it("uses the provider as channel when message channel is a target id", () => {
|
|
expect(
|
|
buildAgentHookContextChannelFields({
|
|
messageChannel: "channel:1472750640760623226",
|
|
messageProvider: "discord",
|
|
}),
|
|
).toEqual({
|
|
channel: "discord",
|
|
messageProvider: "discord",
|
|
channelId: "1472750640760623226",
|
|
chatId: "1472750640760623226",
|
|
senderId: undefined,
|
|
});
|
|
});
|
|
});
|