mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-10 11:24:58 +00:00
199 lines
7.1 KiB
TypeScript
199 lines
7.1 KiB
TypeScript
import { describe, expect, it } from "vitest";
|
|
import type { OpenClawConfig } from "../config/config.js";
|
|
import { getDmHistoryLimitFromSessionKey } from "./pi-embedded-runner.js";
|
|
|
|
describe("getDmHistoryLimitFromSessionKey", () => {
|
|
it("returns undefined when sessionKey is undefined", () => {
|
|
expect(getDmHistoryLimitFromSessionKey(undefined, {})).toBeUndefined();
|
|
});
|
|
it("returns undefined when config is undefined", () => {
|
|
expect(getDmHistoryLimitFromSessionKey("telegram:dm:123", undefined)).toBeUndefined();
|
|
});
|
|
it("returns dmHistoryLimit for telegram provider", () => {
|
|
const config = {
|
|
channels: { telegram: { dmHistoryLimit: 15 } },
|
|
} as OpenClawConfig;
|
|
expect(getDmHistoryLimitFromSessionKey("telegram:dm:123", config)).toBe(15);
|
|
});
|
|
it("returns dmHistoryLimit for whatsapp provider", () => {
|
|
const config = {
|
|
channels: { whatsapp: { dmHistoryLimit: 20 } },
|
|
} as OpenClawConfig;
|
|
expect(getDmHistoryLimitFromSessionKey("whatsapp:dm:123", config)).toBe(20);
|
|
});
|
|
it("returns dmHistoryLimit for agent-prefixed session keys", () => {
|
|
const config = {
|
|
channels: { telegram: { dmHistoryLimit: 10 } },
|
|
} as OpenClawConfig;
|
|
expect(getDmHistoryLimitFromSessionKey("agent:main:telegram:dm:123", config)).toBe(10);
|
|
});
|
|
it("strips thread suffix from dm session keys", () => {
|
|
const config = {
|
|
channels: { telegram: { dmHistoryLimit: 10, dms: { "123": { historyLimit: 7 } } } },
|
|
} as OpenClawConfig;
|
|
expect(getDmHistoryLimitFromSessionKey("agent:main:telegram:dm:123:thread:999", config)).toBe(
|
|
7,
|
|
);
|
|
expect(getDmHistoryLimitFromSessionKey("agent:main:telegram:dm:123:topic:555", config)).toBe(7);
|
|
expect(getDmHistoryLimitFromSessionKey("telegram:dm:123:thread:999", config)).toBe(7);
|
|
});
|
|
it("keeps non-numeric thread markers in dm ids", () => {
|
|
const config = {
|
|
channels: {
|
|
telegram: { dms: { "user:thread:abc": { historyLimit: 9 } } },
|
|
},
|
|
} as OpenClawConfig;
|
|
expect(getDmHistoryLimitFromSessionKey("agent:main:telegram:dm:user:thread:abc", config)).toBe(
|
|
9,
|
|
);
|
|
});
|
|
it("returns historyLimit for channel session kinds when configured", () => {
|
|
const config = {
|
|
channels: {
|
|
slack: { historyLimit: 10, dmHistoryLimit: 15 },
|
|
discord: { historyLimit: 8 },
|
|
},
|
|
} as OpenClawConfig;
|
|
expect(getDmHistoryLimitFromSessionKey("agent:beta:slack:channel:c1", config)).toBe(10);
|
|
expect(getDmHistoryLimitFromSessionKey("discord:channel:123456", config)).toBe(8);
|
|
});
|
|
it("returns undefined for non-dm/channel/group session kinds", () => {
|
|
const config = {
|
|
channels: {
|
|
telegram: { dmHistoryLimit: 15, historyLimit: 10 },
|
|
},
|
|
} as OpenClawConfig;
|
|
// "slash" is not dm, channel, or group
|
|
expect(getDmHistoryLimitFromSessionKey("telegram:slash:123", config)).toBeUndefined();
|
|
});
|
|
it("returns undefined for unknown provider", () => {
|
|
const config = {
|
|
channels: { telegram: { dmHistoryLimit: 15 } },
|
|
} as OpenClawConfig;
|
|
expect(getDmHistoryLimitFromSessionKey("unknown:dm:123", config)).toBeUndefined();
|
|
});
|
|
it("returns undefined when provider config has no dmHistoryLimit", () => {
|
|
const config = { channels: { telegram: {} } } as OpenClawConfig;
|
|
expect(getDmHistoryLimitFromSessionKey("telegram:dm:123", config)).toBeUndefined();
|
|
});
|
|
it("handles all supported providers", () => {
|
|
const providers = [
|
|
"telegram",
|
|
"whatsapp",
|
|
"discord",
|
|
"slack",
|
|
"signal",
|
|
"imessage",
|
|
"msteams",
|
|
"nextcloud-talk",
|
|
] as const;
|
|
|
|
for (const provider of providers) {
|
|
const config = {
|
|
channels: { [provider]: { dmHistoryLimit: 5 } },
|
|
} as OpenClawConfig;
|
|
expect(getDmHistoryLimitFromSessionKey(`${provider}:dm:123`, config)).toBe(5);
|
|
}
|
|
});
|
|
it("handles per-DM overrides for all supported providers", () => {
|
|
const providers = [
|
|
"telegram",
|
|
"whatsapp",
|
|
"discord",
|
|
"slack",
|
|
"signal",
|
|
"imessage",
|
|
"msteams",
|
|
"nextcloud-talk",
|
|
] as const;
|
|
|
|
for (const provider of providers) {
|
|
// Test per-DM override takes precedence
|
|
const configWithOverride = {
|
|
channels: {
|
|
[provider]: {
|
|
dmHistoryLimit: 20,
|
|
dms: { user123: { historyLimit: 7 } },
|
|
},
|
|
},
|
|
} as OpenClawConfig;
|
|
expect(getDmHistoryLimitFromSessionKey(`${provider}:dm:user123`, configWithOverride)).toBe(7);
|
|
|
|
// Test fallback to provider default when user not in dms
|
|
expect(getDmHistoryLimitFromSessionKey(`${provider}:dm:otheruser`, configWithOverride)).toBe(
|
|
20,
|
|
);
|
|
|
|
// Test with agent-prefixed key
|
|
expect(
|
|
getDmHistoryLimitFromSessionKey(`agent:main:${provider}:dm:user123`, configWithOverride),
|
|
).toBe(7);
|
|
}
|
|
});
|
|
it("returns per-DM override when set", () => {
|
|
const config = {
|
|
channels: {
|
|
telegram: {
|
|
dmHistoryLimit: 15,
|
|
dms: { "123": { historyLimit: 5 } },
|
|
},
|
|
},
|
|
} as OpenClawConfig;
|
|
expect(getDmHistoryLimitFromSessionKey("telegram:dm:123", config)).toBe(5);
|
|
});
|
|
it("returns historyLimit for channel sessions for all providers", () => {
|
|
const providers = [
|
|
"telegram",
|
|
"whatsapp",
|
|
"discord",
|
|
"slack",
|
|
"signal",
|
|
"imessage",
|
|
"msteams",
|
|
"nextcloud-talk",
|
|
] as const;
|
|
|
|
for (const provider of providers) {
|
|
const config = {
|
|
channels: { [provider]: { historyLimit: 12 } },
|
|
} as OpenClawConfig;
|
|
expect(getDmHistoryLimitFromSessionKey(`${provider}:channel:123`, config)).toBe(12);
|
|
expect(getDmHistoryLimitFromSessionKey(`agent:main:${provider}:channel:456`, config)).toBe(
|
|
12,
|
|
);
|
|
}
|
|
});
|
|
it("returns historyLimit for group sessions", () => {
|
|
const config = {
|
|
channels: {
|
|
discord: { historyLimit: 15 },
|
|
slack: { historyLimit: 10 },
|
|
},
|
|
} as OpenClawConfig;
|
|
expect(getDmHistoryLimitFromSessionKey("discord:group:123", config)).toBe(15);
|
|
expect(getDmHistoryLimitFromSessionKey("agent:main:slack:group:abc", config)).toBe(10);
|
|
});
|
|
it("returns undefined for channel sessions when historyLimit is not configured", () => {
|
|
const config = {
|
|
channels: {
|
|
discord: { dmHistoryLimit: 10 }, // only dmHistoryLimit, no historyLimit
|
|
},
|
|
} as OpenClawConfig;
|
|
expect(getDmHistoryLimitFromSessionKey("discord:channel:123", config)).toBeUndefined();
|
|
});
|
|
|
|
describe("backward compatibility", () => {
|
|
it("accepts both legacy :dm: and new :direct: session keys", () => {
|
|
const config = {
|
|
channels: { telegram: { dmHistoryLimit: 10 } },
|
|
} as OpenClawConfig;
|
|
// Legacy format with :dm:
|
|
expect(getDmHistoryLimitFromSessionKey("telegram:dm:123", config)).toBe(10);
|
|
expect(getDmHistoryLimitFromSessionKey("agent:main:telegram:dm:123", config)).toBe(10);
|
|
// New format with :direct:
|
|
expect(getDmHistoryLimitFromSessionKey("telegram:direct:123", config)).toBe(10);
|
|
expect(getDmHistoryLimitFromSessionKey("agent:main:telegram:direct:123", config)).toBe(10);
|
|
});
|
|
});
|
|
});
|