mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-01 09:13:34 +00:00
Merged via squash.
Prepared head SHA: 90f51eafd5
Co-authored-by: lanzhi-lee <36190508+lanzhi-lee@users.noreply.github.com>
Co-authored-by: vincentkoc <25068+vincentkoc@users.noreply.github.com>
Reviewed-by: @vincentkoc
138 lines
3.9 KiB
TypeScript
138 lines
3.9 KiB
TypeScript
/** Verifies hook callbacks receive agent context and scoped plugin metadata. */
|
|
import { describe, expect, it } from "vitest";
|
|
import {
|
|
buildAgentHookContextChannelFields,
|
|
buildAgentHookContextIdentityFields,
|
|
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,
|
|
});
|
|
});
|
|
});
|
|
|
|
describe("buildAgentHookContextIdentityFields", () => {
|
|
it("mirrors flat sender and chat ids into channel-owned context", () => {
|
|
expect(
|
|
buildAgentHookContextIdentityFields({
|
|
senderId: "open-id-1",
|
|
chatId: "chat-1",
|
|
}),
|
|
).toEqual({
|
|
senderId: "open-id-1",
|
|
chatId: "chat-1",
|
|
channelContext: {
|
|
sender: { id: "open-id-1" },
|
|
chat: { id: "chat-1" },
|
|
},
|
|
});
|
|
});
|
|
|
|
it("preserves plugin-augmented channel fields while keeping id compatible", () => {
|
|
expect(
|
|
buildAgentHookContextIdentityFields({
|
|
senderId: "open-id-1",
|
|
channelContext: {
|
|
sender: { id: "stale-id", userId: "user-1" } as { id?: string; userId: string },
|
|
},
|
|
}),
|
|
).toEqual({
|
|
senderId: "open-id-1",
|
|
channelContext: {
|
|
sender: { id: "open-id-1", userId: "user-1" },
|
|
},
|
|
});
|
|
});
|
|
|
|
it("omits identity fields for system-originated triggers", () => {
|
|
expect(
|
|
buildAgentHookContextIdentityFields({
|
|
trigger: "cron",
|
|
senderId: "open-id-1",
|
|
chatId: "chat-1",
|
|
}),
|
|
).toEqual({});
|
|
});
|
|
});
|