Files
adolf/extensions/matrix/src/session-route.test.ts
alvis bedb527145
Some checks failed
ClawSweeper Dispatch / dispatch (push) Has been cancelled
CodeQL / Security High (actions) (push) Has been cancelled
CodeQL / Security High (channel-runtime-boundary) (push) Has been cancelled
CodeQL / Security High (core-auth-secrets) (push) Has been cancelled
CodeQL / Security High (mcp-process-tool-boundary) (push) Has been cancelled
CodeQL / Security High (network-ssrf-boundary) (push) Has been cancelled
CodeQL / Security High (plugin-trust-boundary) (push) Has been cancelled
CodeQL / Security High (process-exec-boundary) (push) Has been cancelled
Docs Sync Publish Repo / sync-publish-repo (push) Has been cancelled
Docs / docs (push) Has been cancelled
OpenClaw Stable Main Closeout / Resolve stable release closeout inputs (push) Has been cancelled
OpenClaw Stable Main Closeout / Verify stable main closeout (push) Has been cancelled
Workflow Sanity / no-tabs (push) Has been cancelled
Workflow Sanity / actionlint (push) Has been cancelled
Workflow Sanity / generated-doc-baselines (push) Has been cancelled
CI / runner-admission (push) Has been cancelled
CI / preflight (push) Has been cancelled
CI / security-fast (push) Has been cancelled
CI / pnpm-store-warmup (push) Has been cancelled
CI / build-artifacts (push) Has been cancelled
CI / native-i18n (push) Has been cancelled
CI / ${{ matrix.check_name }} (push) Has been cancelled
CI / ${{ matrix.checkName }} (push) Has been cancelled
CI / checks-node-compat-node22 (push) Has been cancelled
CI / check-bundled-channel-config-metadata (push) Has been cancelled
CI / check-dependencies (push) Has been cancelled
CI / check-guards (push) Has been cancelled
CI / check-lint (push) Has been cancelled
CI / check-prod-types (push) Has been cancelled
CI / check-shrinkwrap (push) Has been cancelled
CI / check-test-types (push) Has been cancelled
CI / check-additional-boundaries-a (push) Has been cancelled
CI / check-additional-boundaries-bcd (push) Has been cancelled
CI / check-additional-extension-bundled (push) Has been cancelled
CI / check-additional-extension-channels (push) Has been cancelled
CI / check-additional-extension-package-boundary (push) Has been cancelled
CI / check-additional-runtime-topology-architecture (push) Has been cancelled
CI / check-session-accessor-boundary (push) Has been cancelled
CI / check-session-transcript-reader-boundary (push) Has been cancelled
CI / check-docs (push) Has been cancelled
CI / skills-python (push) Has been cancelled
CI / macos-swift (push) Has been cancelled
CI / ios-build (push) Has been cancelled
CI / ci-timings-summary (push) Has been cancelled
Native App Locale Refresh / Refresh native fa (push) Has been cancelled
Native App Locale Refresh / Refresh native fr (push) Has been cancelled
Native App Locale Refresh / Refresh native hi (push) Has been cancelled
Native App Locale Refresh / Refresh native id (push) Has been cancelled
Native App Locale Refresh / Refresh native it (push) Has been cancelled
Native App Locale Refresh / Refresh native ja-JP (push) Has been cancelled
Control UI Locale Refresh / plan (push) Has been cancelled
Control UI Locale Refresh / Refresh ${{ matrix.locale }} (push) Has been cancelled
Control UI Locale Refresh / Commit control UI locale refresh (push) Has been cancelled
Live Media Runner Image / Build live media runner image (push) Has been cancelled
Native App Locale Refresh / Refresh native ar (push) Has been cancelled
Native App Locale Refresh / Refresh native de (push) Has been cancelled
Native App Locale Refresh / Refresh native es (push) Has been cancelled
Native App Locale Refresh / Refresh native ko (push) Has been cancelled
Native App Locale Refresh / Refresh native nl (push) Has been cancelled
Native App Locale Refresh / Refresh native pl (push) Has been cancelled
Native App Locale Refresh / Refresh native pt-BR (push) Has been cancelled
Native App Locale Refresh / Refresh native ru (push) Has been cancelled
Native App Locale Refresh / Refresh native sv (push) Has been cancelled
Native App Locale Refresh / Refresh native th (push) Has been cancelled
Native App Locale Refresh / Refresh native tr (push) Has been cancelled
Native App Locale Refresh / Refresh native uk (push) Has been cancelled
Native App Locale Refresh / Refresh native vi (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-CN (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-TW (push) Has been cancelled
Native App Locale Refresh / Commit native locale refresh (push) Has been cancelled
Plugin Init Scaffold Validation / Validate provider scaffold (push) Has been cancelled
Plugin NPM Release / preview_plugins_npm (push) Has been cancelled
Plugin NPM Release / Validate release publish approval (push) Has been cancelled
Plugin NPM Release / preview_plugin_pack (push) Has been cancelled
Plugin NPM Release / publish_plugins_npm (push) Has been cancelled
Sandbox Common Smoke / sandbox-common-smoke (push) Has been cancelled
Website Installer Sync / static (push) Has been cancelled
Website Installer Sync / linux-docker (push) Has been cancelled
Website Installer Sync / macos-installer (push) Has been cancelled
Website Installer Sync / windows-installer (push) Has been cancelled
Website Installer Sync / sync-website (push) Has been cancelled
Vendor OpenClaw source as Adolf fork baseline
Adolf is a fork/vendored clone of github.com/openclaw/openclaw (v2026.6.11),
free to diverge. Tree copied sans upstream .git; upstream remote added for
future syncs. Node pinned to 24 (.nvmrc); engines already require >=22.19.
Preserves docs/ARCHITECTURE.md.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01LeqyaxJF2nbRXJtae2kNB2
2026-07-05 09:36:54 +00:00

345 lines
11 KiB
TypeScript

// Matrix tests cover session route plugin behavior.
import fs from "node:fs";
import os from "node:os";
import path from "node:path";
import { saveSessionStore, type SessionEntry } from "openclaw/plugin-sdk/session-store-runtime";
import { afterEach, describe, expect, it } from "vitest";
import type { OpenClawConfig } from "./runtime-api.js";
import { resolveMatrixOutboundSessionRoute } from "./session-route.js";
const tempDirs = new Set<string>();
const currentDmSessionKey = "agent:main:matrix:channel:!dm:example.org";
type MatrixChannelConfig = NonNullable<NonNullable<OpenClawConfig["channels"]>["matrix"]>;
const perRoomDmMatrixConfig = {
dm: {
sessionScope: "per-room",
},
} satisfies MatrixChannelConfig;
const defaultAccountPerRoomDmMatrixConfig = {
defaultAccount: "ops",
accounts: {
ops: {
dm: {
sessionScope: "per-room",
},
},
},
} satisfies MatrixChannelConfig;
async function createTempStore(entries: Record<string, SessionEntry>): Promise<string> {
const tempDir = fs.mkdtempSync(path.join(os.tmpdir(), "matrix-session-route-"));
tempDirs.add(tempDir);
const storePath = path.join(tempDir, "sessions.json");
await saveSessionStore(storePath, entries, { skipMaintenance: true });
return storePath;
}
async function createMatrixRouteConfig(
entries: Record<string, SessionEntry>,
matrix: MatrixChannelConfig = perRoomDmMatrixConfig,
): Promise<OpenClawConfig> {
return {
session: {
store: await createTempStore(entries),
},
channels: {
matrix,
},
} satisfies OpenClawConfig;
}
function createStoredDirectDmSession(
params: {
from?: string;
to?: string;
accountId?: string | null;
nativeChannelId?: string;
nativeDirectUserId?: string;
lastTo?: string;
lastAccountId?: string;
} = {},
): SessionEntry {
const accountId = params.accountId === null ? undefined : (params.accountId ?? "ops");
const to = params.to ?? "room:!dm:example.org";
const accountMetadata = accountId ? { accountId } : {};
const nativeMetadata = {
...(params.nativeChannelId ? { nativeChannelId: params.nativeChannelId } : {}),
...(params.nativeDirectUserId ? { nativeDirectUserId: params.nativeDirectUserId } : {}),
};
return {
sessionId: "sess-1",
updatedAt: Date.now(),
chatType: "direct",
origin: {
chatType: "direct",
from: params.from ?? "matrix:@alice:example.org",
to,
...nativeMetadata,
...accountMetadata,
},
deliveryContext: {
channel: "matrix",
to,
...accountMetadata,
},
...(params.lastTo ? { lastTo: params.lastTo } : {}),
...(params.lastAccountId ? { lastAccountId: params.lastAccountId } : {}),
};
}
function createStoredChannelSession(): SessionEntry {
return {
sessionId: "sess-1",
updatedAt: Date.now(),
chatType: "channel",
origin: {
chatType: "channel",
from: "matrix:channel:!ops:example.org",
to: "room:!ops:example.org",
nativeChannelId: "!ops:example.org",
nativeDirectUserId: "@alice:example.org",
accountId: "ops",
},
deliveryContext: {
channel: "matrix",
to: "room:!ops:example.org",
accountId: "ops",
},
lastTo: "room:!ops:example.org",
lastAccountId: "ops",
};
}
function resolveUserRoute(params: { cfg: OpenClawConfig; accountId?: string; target?: string }) {
const target = params.target ?? "@alice:example.org";
return resolveMatrixOutboundSessionRoute({
cfg: params.cfg,
agentId: "main",
...(params.accountId ? { accountId: params.accountId } : {}),
currentSessionKey: currentDmSessionKey,
target,
resolvedTarget: {
to: target,
kind: "user",
source: "normalized",
},
});
}
async function resolveUserRouteForCurrentSession(params: {
storedSession: SessionEntry;
accountId?: string;
target?: string;
matrix?: MatrixChannelConfig;
}) {
return resolveUserRoute({
cfg: await createMatrixRouteConfig(
{
[currentDmSessionKey]: params.storedSession,
},
params.matrix ?? perRoomDmMatrixConfig,
),
...(params.accountId ? { accountId: params.accountId } : {}),
...(params.target ? { target: params.target } : {}),
});
}
function expectCurrentDmRoomRoute(route: ReturnType<typeof resolveMatrixOutboundSessionRoute>) {
const currentRoute = expectRoute(route);
expect(currentRoute.sessionKey).toBe(currentDmSessionKey);
expect(currentRoute.baseSessionKey).toBe(currentDmSessionKey);
expect(currentRoute.peer.kind).toBe("channel");
expect(currentRoute.peer.id).toBe("!dm:example.org");
expect(currentRoute.chatType).toBe("direct");
expect(currentRoute.from).toBe("matrix:@alice:example.org");
expect(currentRoute.to).toBe("room:!dm:example.org");
}
function expectFallbackUserRoute(
route: ReturnType<typeof resolveMatrixOutboundSessionRoute>,
params?: {
userId?: string;
},
) {
const userId = params?.userId ?? "@alice:example.org";
const fallbackRoute = expectRoute(route);
expect(fallbackRoute.sessionKey).toBe("agent:main:main");
expect(fallbackRoute.baseSessionKey).toBe("agent:main:main");
expect(fallbackRoute.peer.kind).toBe("direct");
expect(fallbackRoute.peer.id).toBe(userId);
expect(fallbackRoute.chatType).toBe("direct");
expect(fallbackRoute.from).toBe(`matrix:${userId}`);
expect(fallbackRoute.to).toBe(`room:${userId}`);
}
function expectRoute(route: ReturnType<typeof resolveMatrixOutboundSessionRoute>) {
if (!route) {
throw new Error("Expected Matrix route");
}
return route;
}
afterEach(() => {
for (const tempDir of tempDirs) {
fs.rmSync(tempDir, { recursive: true, force: true });
}
tempDirs.clear();
});
describe("resolveMatrixOutboundSessionRoute", () => {
it("reuses the current DM room session for same-user sends when Matrix DMs are per-room", async () => {
const route = await resolveUserRouteForCurrentSession({
storedSession: createStoredDirectDmSession(),
accountId: "ops",
});
expectCurrentDmRoomRoute(route);
});
it("falls back to user-scoped routing when the current session is for another DM peer", async () => {
const route = await resolveUserRouteForCurrentSession({
storedSession: createStoredDirectDmSession({ from: "matrix:@bob:example.org" }),
accountId: "ops",
});
expectFallbackUserRoute(route);
});
it("falls back to user-scoped routing when the current session belongs to another Matrix account", async () => {
const route = await resolveUserRouteForCurrentSession({
storedSession: createStoredDirectDmSession(),
accountId: "support",
});
expectFallbackUserRoute(route);
});
it("reuses the canonical DM room after user-target outbound metadata overwrites latest to fields", async () => {
const route = await resolveUserRouteForCurrentSession({
storedSession: createStoredDirectDmSession({
from: "matrix:@bob:example.org",
to: "room:@bob:example.org",
nativeChannelId: "!dm:example.org",
nativeDirectUserId: "@alice:example.org",
lastTo: "room:@bob:example.org",
lastAccountId: "ops",
}),
accountId: "ops",
});
expectCurrentDmRoomRoute(route);
});
it("does not reuse the canonical DM room for a different Matrix user after latest metadata drift", async () => {
const route = await resolveUserRouteForCurrentSession({
storedSession: createStoredDirectDmSession({
from: "matrix:@bob:example.org",
to: "room:@bob:example.org",
nativeChannelId: "!dm:example.org",
nativeDirectUserId: "@alice:example.org",
lastTo: "room:@bob:example.org",
lastAccountId: "ops",
}),
accountId: "ops",
target: "@bob:example.org",
});
expectFallbackUserRoute(route, { userId: "@bob:example.org" });
});
it("does not reuse a room after the session metadata was overwritten by a non-DM Matrix send", async () => {
const route = await resolveUserRouteForCurrentSession({
storedSession: createStoredChannelSession(),
accountId: "ops",
});
expectFallbackUserRoute(route);
});
it("uses the effective default Matrix account when accountId is omitted", async () => {
const route = await resolveUserRouteForCurrentSession({
storedSession: createStoredDirectDmSession(),
matrix: defaultAccountPerRoomDmMatrixConfig,
});
expectCurrentDmRoomRoute(route);
});
it("reuses the current DM room when stored account metadata is missing", async () => {
const route = await resolveUserRouteForCurrentSession({
storedSession: createStoredDirectDmSession({ accountId: null }),
matrix: defaultAccountPerRoomDmMatrixConfig,
});
expectCurrentDmRoomRoute(route);
});
it("recovers channel thread routes from currentSessionKey and preserves Matrix event-id case", () => {
const route = resolveMatrixOutboundSessionRoute({
cfg: {},
agentId: "main",
target: "room:!ops:example.org",
currentSessionKey: "agent:main:matrix:channel:!ops:example.org:thread:$RootEvent:Example.Org",
});
const channelRoute = expectRoute(route);
expect(channelRoute.sessionKey).toBe(
"agent:main:matrix:channel:!ops:example.org:thread:$RootEvent:Example.Org",
);
expect(channelRoute.baseSessionKey).toBe("agent:main:matrix:channel:!ops:example.org");
expect(channelRoute.threadId).toBe("$RootEvent:Example.Org");
});
it("resolves per-room DM metadata from the base key when currentSessionKey has a thread suffix", async () => {
const storedSession = createStoredDirectDmSession();
const route = resolveUserRoute({
cfg: await createMatrixRouteConfig({
[currentDmSessionKey]: storedSession,
}),
accountId: "ops",
target: "@alice:example.org",
});
const threadedRoute = resolveMatrixOutboundSessionRoute({
cfg: await createMatrixRouteConfig({
[route?.baseSessionKey ?? currentDmSessionKey]: storedSession,
}),
agentId: "main",
accountId: "ops",
target: "@alice:example.org",
resolvedTarget: {
to: "@alice:example.org",
kind: "user",
source: "normalized",
},
currentSessionKey: `${route?.baseSessionKey}:thread:$DmRoot:Example.Org`,
});
const dmThreadRoute = expectRoute(threadedRoute);
expect(dmThreadRoute.sessionKey).toBe(`${route?.baseSessionKey}:thread:$DmRoot:Example.Org`);
expect(dmThreadRoute.baseSessionKey).toBe(route?.baseSessionKey);
expect(dmThreadRoute.to).toBe("room:!dm:example.org");
expect(dmThreadRoute.threadId).toBe("$DmRoot:Example.Org");
});
it('does not recover currentSessionKey threads for shared dmScope "main" DMs', () => {
const route = resolveMatrixOutboundSessionRoute({
cfg: {},
agentId: "main",
target: "@alice:example.org",
currentSessionKey: "agent:main:main:thread:$DmRoot:Example.Org",
resolvedTarget: {
to: "@alice:example.org",
kind: "user",
source: "normalized",
},
});
const dmRoute = expectRoute(route);
expect(dmRoute.sessionKey).toBe("agent:main:main");
expect(dmRoute.baseSessionKey).toBe("agent:main:main");
expect(dmRoute.threadId).toBeUndefined();
});
});