Vendor OpenClaw source as Adolf fork baseline
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

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
This commit is contained in:
2026-07-05 09:36:54 +00:00
parent 3216769225
commit bedb527145
21108 changed files with 6010766 additions and 0 deletions

View File

@@ -0,0 +1,601 @@
// Telegram tests cover config schema plugin behavior.
import { describe, expect, it } from "vitest";
import { TelegramConfigSchema } from "../config-api.js";
function expectTelegramConfigValid(config: unknown) {
expect(TelegramConfigSchema.safeParse(config).success).toBe(true);
}
function expectTelegramConfigIssue(config: unknown, path: string) {
const res = TelegramConfigSchema.safeParse(config);
expect(res.success).toBe(false);
if (!res.success) {
expect(res.error.issues[0]?.path.join(".")).toBe(path);
}
}
describe("telegram custom commands schema", () => {
it('rejects dmPolicy="open" without allowFrom "*"', () => {
expectTelegramConfigIssue(
{ dmPolicy: "open", allowFrom: ["123456789"], botToken: "fake" },
"allowFrom",
);
});
it('accepts dmPolicy="open" with allowFrom "*"', () => {
const res = TelegramConfigSchema.safeParse({ dmPolicy: "open", allowFrom: ["*"] });
expect(res.success).toBe(true);
if (res.success) {
expect(res.data.dmPolicy).toBe("open");
}
});
it("defaults dm/group policy", () => {
const res = TelegramConfigSchema.safeParse({});
expect(res.success).toBe(true);
if (res.success) {
expect(res.data.dmPolicy).toBe("pairing");
expect(res.data.groupPolicy).toBe("allowlist");
}
});
it("accepts historyLimit overrides per account", () => {
const res = TelegramConfigSchema.safeParse({
historyLimit: 8,
accounts: { ops: { historyLimit: 3 } },
});
expect(res.success).toBe(true);
if (res.success) {
expect(res.data.historyLimit).toBe(8);
expect(res.data.accounts?.ops?.historyLimit).toBe(3);
}
});
it("rejects retired group history context mode keys", () => {
const res = TelegramConfigSchema.safeParse({ includeGroupHistoryContext: "mention-only" });
expect(res.success).toBe(false);
if (!res.success) {
expect(res.error.issues[0]).toMatchObject({
code: "unrecognized_keys",
keys: ["includeGroupHistoryContext"],
path: [],
});
}
});
it("accepts pollingStallThresholdMs overrides per account", () => {
const res = TelegramConfigSchema.safeParse({
pollingStallThresholdMs: 120_000,
accounts: { ops: { pollingStallThresholdMs: 180_000 } },
});
expect(res.success).toBe(true);
if (res.success) {
expect(res.data.pollingStallThresholdMs).toBe(120_000);
expect(res.data.accounts?.ops?.pollingStallThresholdMs).toBe(180_000);
}
});
it("accepts mediaGroupFlushMs overrides per account", () => {
const res = TelegramConfigSchema.safeParse({
mediaGroupFlushMs: 750,
accounts: { ops: { mediaGroupFlushMs: 1500 } },
});
expect(res.success).toBe(true);
if (res.success) {
expect(res.data.mediaGroupFlushMs).toBe(750);
expect(res.data.accounts?.ops?.mediaGroupFlushMs).toBe(1500);
}
});
it("rejects mediaGroupFlushMs outside the supported flush bounds", () => {
expectTelegramConfigIssue({ mediaGroupFlushMs: 9 }, "mediaGroupFlushMs");
expectTelegramConfigIssue({ mediaGroupFlushMs: 60_001 }, "mediaGroupFlushMs");
});
it("accepts Telegram progress commentary config", () => {
expectTelegramConfigValid({
streaming: {
mode: "progress",
progress: { commentary: true },
},
accounts: {
ops: {
streaming: {
progress: { commentary: true },
},
},
},
});
});
it("rejects removed DM thread reply policy keys", () => {
expectTelegramConfigIssue({ dm: { threadReplies: "off" } }, "");
expectTelegramConfigIssue(
{ accounts: { ops: { dm: { threadReplies: "always" } } } },
["accounts", "ops"].join("."),
);
expectTelegramConfigIssue(
{
direct: {
"123456789": {
threadReplies: "inbound",
},
},
},
"direct.123456789",
);
});
it("rejects pollingStallThresholdMs outside the watchdog bounds", () => {
expectTelegramConfigIssue({ pollingStallThresholdMs: 29_999 }, "pollingStallThresholdMs");
expectTelegramConfigIssue({ pollingStallThresholdMs: 600_001 }, "pollingStallThresholdMs");
});
it("accepts textChunkLimit", () => {
const res = TelegramConfigSchema.safeParse({
enabled: true,
textChunkLimit: 3333,
});
expect(res.success).toBe(true);
if (res.success) {
expect(res.data.textChunkLimit).toBe(3333);
}
});
it("accepts rich message opt-in per account", () => {
const res = TelegramConfigSchema.safeParse({
richMessages: true,
accounts: { ops: { richMessages: false } },
});
expect(res.success).toBe(true);
if (res.success) {
expect(res.data.richMessages).toBe(true);
expect(res.data.accounts?.ops?.richMessages).toBe(false);
}
});
it("preserves rich message inheritance for account overrides", () => {
const res = TelegramConfigSchema.safeParse({
richMessages: true,
accounts: { ops: {} },
});
expect(res.success).toBe(true);
if (res.success) {
expect(res.data.richMessages).toBe(true);
expect(res.data.accounts?.ops?.richMessages).toBeUndefined();
}
});
it("normalizes custom commands", () => {
const res = TelegramConfigSchema.safeParse({
customCommands: [{ command: "/Backup", description: " Git backup " }],
});
expect(res.success).toBe(true);
if (!res.success) {
return;
}
expect(res.data.customCommands).toEqual([{ command: "backup", description: "Git backup" }]);
});
it("normalizes hyphens in custom command names", () => {
const res = TelegramConfigSchema.safeParse({
customCommands: [{ command: "Bad-Name", description: "Override status" }],
});
expect(res.success).toBe(true);
if (!res.success) {
return;
}
expect(res.data.customCommands).toEqual([
{ command: "bad_name", description: "Override status" },
]);
});
});
describe("telegram topic agentId schema", () => {
it("accepts topic ingest boolean", () => {
expectTelegramConfigValid({
groups: {
"-1001234567890": {
topics: {
"42": {
ingest: true,
},
},
},
},
});
});
it("accepts group ingest boolean", () => {
expectTelegramConfigValid({
groups: {
"-1001234567890": {
ingest: true,
},
},
});
});
it("rejects non-boolean ingest", () => {
expectTelegramConfigIssue(
{
groups: {
"-1001234567890": {
ingest: { enabled: true },
},
},
},
"groups.-1001234567890.ingest",
);
});
it("accepts nested groupPolicy overrides", () => {
expectTelegramConfigValid({
groups: {
"-1001234567890": {
groupPolicy: "open",
topics: {
"42": {
groupPolicy: "disabled",
},
},
},
},
});
});
it("accepts valid agentId in forum group topic config", () => {
const res = TelegramConfigSchema.safeParse({
groups: {
"-1001234567890": {
topics: {
"42": {
agentId: "main",
},
},
},
},
});
expect(res.success).toBe(true);
if (!res.success) {
console.error(res.error.format());
return;
}
expect(res.data.groups?.["-1001234567890"]?.topics?.["42"]?.agentId).toBe("main");
});
it("accepts valid agentId in DM topic config", () => {
const res = TelegramConfigSchema.safeParse({
direct: {
"123456789": {
topics: {
"99": {
agentId: "support",
systemPrompt: "You are support",
},
},
},
},
});
expect(res.success).toBe(true);
if (!res.success) {
console.error(res.error.format());
return;
}
expect(res.data.direct?.["123456789"]?.topics?.["99"]?.agentId).toBe("support");
});
it("rejects removed per-DM threadReplies overrides", () => {
expectTelegramConfigIssue(
{
direct: {
"123456789": {
threadReplies: "inbound",
},
},
},
"direct.123456789",
);
});
it("accepts DM topic config without threadReplies overrides", () => {
const res = TelegramConfigSchema.safeParse({
direct: {
"123456789": {
topics: {
"99": { agentId: "support" },
},
},
},
});
expect(res.success).toBe(true);
if (!res.success) {
console.error(res.error.format());
return;
}
expect(res.data.direct?.["123456789"]?.topics?.["99"]?.agentId).toBe("support");
});
it("accepts empty config without agentId", () => {
const res = TelegramConfigSchema.safeParse({
groups: {
"-1001234567890": {
topics: {
"42": {
systemPrompt: "Be helpful",
},
},
},
},
});
expect(res.success).toBe(true);
if (!res.success) {
console.error(res.error.format());
return;
}
expect(res.data.groups?.["-1001234567890"]?.topics?.["42"]).toEqual({
systemPrompt: "Be helpful",
});
});
it("accepts multiple topics with different agentIds", () => {
const res = TelegramConfigSchema.safeParse({
groups: {
"-1001234567890": {
topics: {
"1": { agentId: "main" },
"3": { agentId: "zu" },
"5": { agentId: "q" },
},
},
},
});
expect(res.success).toBe(true);
if (!res.success) {
console.error(res.error.format());
return;
}
const topics = res.data.groups?.["-1001234567890"]?.topics;
expect(topics?.["1"]?.agentId).toBe("main");
expect(topics?.["3"]?.agentId).toBe("zu");
expect(topics?.["5"]?.agentId).toBe("q");
});
it("rejects unknown fields in topic config", () => {
const res = TelegramConfigSchema.safeParse({
groups: {
"-1001234567890": {
topics: {
"42": {
agentId: "main",
unknownField: "should fail",
},
},
},
},
});
expect(res.success).toBe(false);
});
});
describe("telegram disableAudioPreflight schema", () => {
it("accepts disableAudioPreflight for groups and topics", () => {
const res = TelegramConfigSchema.safeParse({
groups: {
"*": {
requireMention: true,
disableAudioPreflight: true,
topics: {
"123": {
disableAudioPreflight: false,
},
},
},
},
});
expect(res.success).toBe(true);
if (!res.success) {
return;
}
const group = res.data.groups?.["*"];
expect(group?.disableAudioPreflight).toBe(true);
expect(group?.topics?.["123"]?.disableAudioPreflight).toBe(false);
});
it("rejects non-boolean disableAudioPreflight values", () => {
const res = TelegramConfigSchema.safeParse({
groups: {
"*": {
disableAudioPreflight: "yes",
},
},
});
expect(res.success).toBe(false);
});
});
describe("telegram token schema", () => {
it("accepts botToken without tokenFile", () => {
const res = TelegramConfigSchema.safeParse({
botToken: "123:ABC",
});
expect(res.success).toBe(true);
if (!res.success) {
return;
}
expect(res.data.botToken).toBe("123:ABC");
expect(res.data.tokenFile).toBeUndefined();
});
it("accepts tokenFile without botToken", () => {
const res = TelegramConfigSchema.safeParse({
tokenFile: "/run/agenix/telegram-token",
});
expect(res.success).toBe(true);
if (!res.success) {
return;
}
expect(res.data.tokenFile).toBe("/run/agenix/telegram-token");
expect(res.data.botToken).toBeUndefined();
});
it("accepts botToken and tokenFile together", () => {
const res = TelegramConfigSchema.safeParse({
botToken: "fallback:token",
tokenFile: "/run/agenix/telegram-token",
});
expect(res.success).toBe(true);
if (!res.success) {
return;
}
expect(res.data.botToken).toBe("fallback:token");
expect(res.data.tokenFile).toBe("/run/agenix/telegram-token");
});
});
describe("telegram poll actions schema", () => {
it("accepts editMessage and createForumTopic actions", () => {
expectTelegramConfigValid({
actions: {
editMessage: true,
createForumTopic: false,
},
});
});
it("accepts actions.poll", () => {
expectTelegramConfigValid({ actions: { poll: false } });
});
it("accepts account actions.poll", () => {
expectTelegramConfigValid({ accounts: { ops: { actions: { poll: false } } } });
});
});
describe("telegram webhook schema", () => {
it("accepts a positive webhookPort", () => {
expectTelegramConfigValid({
webhookUrl: "https://example.com/telegram-webhook",
webhookSecret: "secret",
webhookPort: 8787,
});
});
it("accepts webhookPort set to 0 for ephemeral port binding", () => {
expectTelegramConfigValid({
webhookUrl: "https://example.com/telegram-webhook",
webhookSecret: "secret",
webhookPort: 0,
});
});
it("rejects negative webhookPort", () => {
expectTelegramConfigIssue(
{
webhookUrl: "https://example.com/telegram-webhook",
webhookSecret: "secret",
webhookPort: -1,
},
"webhookPort",
);
});
it.each([
{
name: "webhookUrl when webhookSecret is configured",
config: {
webhookUrl: "https://example.com/telegram-webhook",
webhookSecret: "secret",
},
},
{
name: "webhookUrl when webhookSecret is configured as SecretRef",
config: {
webhookUrl: "https://example.com/telegram-webhook",
webhookSecret: {
source: "env",
provider: "default",
id: "TELEGRAM_WEBHOOK_SECRET",
},
},
},
{
name: "account webhookUrl when base webhookSecret is configured",
config: {
webhookSecret: "secret",
accounts: {
ops: {
webhookUrl: "https://example.com/telegram-webhook",
},
},
},
},
{
name: "account webhookUrl when account webhookSecret is configured as SecretRef",
config: {
accounts: {
ops: {
webhookUrl: "https://example.com/telegram-webhook",
webhookSecret: {
source: "env",
provider: "default",
id: "TELEGRAM_OPS_WEBHOOK_SECRET",
},
},
},
},
},
] as const)("accepts $name", ({ config }) => {
expectTelegramConfigValid(config);
});
it("rejects webhookUrl without webhookSecret", () => {
expectTelegramConfigIssue(
{
webhookUrl: "https://example.com/telegram-webhook",
},
"webhookSecret",
);
});
it("rejects account webhookUrl without webhookSecret", () => {
expectTelegramConfigIssue(
{
accounts: {
ops: {
webhookUrl: "https://example.com/telegram-webhook",
},
},
},
"accounts.ops.webhookSecret",
);
});
});