惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

雷峰网
雷峰网
B
Blog
博客园_首页
云风的 BLOG
云风的 BLOG
S
SegmentFault 最新的问题
罗磊的独立博客
Jina AI
Jina AI
C
Check Point Blog
Martin Fowler
Martin Fowler
J
Java Code Geeks
博客园 - 司徒正美
美团技术团队
MongoDB | Blog
MongoDB | Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
有赞技术团队
有赞技术团队
U
Unit 42
Hugging Face - Blog
Hugging Face - Blog
WordPress大学
WordPress大学
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 叶小钗
博客园 - 三生石上(FineUI控件)
小众软件
小众软件

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(telegram): propagate forum topic names into agent con...
SebTardif · 2026-05-25 · via Recent Commits to openclaw:main
1+

import os from "node:os";

2+

import path from "node:path";

13

import type { OpenClawConfig } from "openclaw/plugin-sdk/config-contracts";

4+

import { resolveStorePath } from "openclaw/plugin-sdk/session-store-runtime";

25

import { captureEnv } from "openclaw/plugin-sdk/test-env";

36

import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";

47

import { handleTelegramAction, telegramActionRuntime } from "./action-runtime.js";

58

import { beginTelegramInboundEventDeliveryCorrelation } from "./inbound-event-delivery.js";

9+

import {

10+

getTopicName,

11+

resetTopicNameCacheForTest,

12+

resolveTopicNameCacheScope,

13+

setTelegramTopicNameStoreFactoryForTest,

14+

} from "./topic-name-cache.js";

615716

const originalTelegramActionRuntime = { ...telegramActionRuntime };

817

const reactMessageTelegram = vi.fn(async () => ({ ok: true }));

@@ -43,6 +52,38 @@ const createForumTopicTelegram = vi.fn(async () => ({

4352

}));

4453

let envSnapshot: ReturnType<typeof captureEnv>;

455455+

type TopicNameEntryForTest = {

56+

name: string;

57+

iconColor?: number;

58+

iconCustomEmojiId?: string;

59+

closed?: boolean;

60+

updatedAt: number;

61+

};

62+63+

const topicNameStoresForTest = new Map<string, Map<string, TopicNameEntryForTest>>();

64+65+

function installTopicNameStoreForTest() {

66+

topicNameStoresForTest.clear();

67+

setTelegramTopicNameStoreFactoryForTest((namespace) => {

68+

const entries = topicNameStoresForTest.get(namespace) ?? new Map();

69+

topicNameStoresForTest.set(namespace, entries);

70+

return {

71+

async register(key, value) {

72+

entries.set(key, value);

73+

},

74+

async entries() {

75+

return Array.from(entries, ([key, value]) => ({ key, value }));

76+

},

77+

async delete(key) {

78+

return entries.delete(key);

79+

},

80+

async clear() {

81+

entries.clear();

82+

},

83+

};

84+

});

85+

}

86+4687

type MockCallSource = {

4788

mock: {

4889

calls: ArrayLike<ReadonlyArray<unknown>>;

@@ -93,6 +134,10 @@ describe("handleTelegramAction", () => {

93134

} as OpenClawConfig;

94135

}

95136137+

function topicCacheScopeFor(cfg: OpenClawConfig, accountId: string): string {

138+

return resolveTopicNameCacheScope(resolveStorePath(cfg.session?.store, { agentId: accountId }));

139+

}

140+96141

async function sendInlineButtonsMessage(params: {

97142

to: string;

98143

buttons: Array<Array<{ text: string; callback_data: string; style?: string }>>;

@@ -131,6 +176,8 @@ describe("handleTelegramAction", () => {

131176132177

beforeEach(() => {

133178

envSnapshot = captureEnv(["TELEGRAM_BOT_TOKEN"]);

179+

resetTopicNameCacheForTest();

180+

installTopicNameStoreForTest();

134181

Object.assign(telegramActionRuntime, originalTelegramActionRuntime, {

135182

reactMessageTelegram,

136183

sendMessageTelegram,

@@ -155,6 +202,9 @@ describe("handleTelegramAction", () => {

155202

});

156203157204

afterEach(() => {

205+

setTelegramTopicNameStoreFactoryForTest(undefined);

206+

resetTopicNameCacheForTest();

207+

topicNameStoresForTest.clear();

158208

envSnapshot.restore();

159209

});

160210

@@ -865,6 +915,53 @@ describe("handleTelegramAction", () => {

865915

},

866916

);

867917918+

it("stores created forum topic names in the account-scoped cache", async () => {

919+

createForumTopicTelegram.mockResolvedValueOnce({

920+

topicId: 99,

921+

name: "Topic",

922+

chatId: "-100123",

923+

});

924+

const cfg = {

925+

...telegramConfig({ actions: { createForumTopic: true } }),

926+

session: { store: path.join(os.tmpdir(), "openclaw-telegram-action-sessions.json") },

927+

} as OpenClawConfig;

928+929+

await handleTelegramAction(

930+

{ action: "createForumTopic", accountId: "work", chatId: "alias-chat", name: "Topic" },

931+

cfg,

932+

);

933+934+

const scope = topicCacheScopeFor(cfg, "work");

935+

await expect(getTopicName("-100123", 99, scope)).resolves.toBe("Topic");

936+

await expect(getTopicName("alias-chat", 99, scope)).resolves.toBeUndefined();

937+

});

938+939+

it("stores edited forum topic names in the account-scoped cache", async () => {

940+

editForumTopicTelegram.mockResolvedValueOnce({

941+

ok: true,

942+

chatId: "-100123",

943+

messageThreadId: 42,

944+

name: "New",

945+

});

946+

const cfg = {

947+

...telegramConfig({ actions: { editForumTopic: true } }),

948+

session: { store: path.join(os.tmpdir(), "openclaw-telegram-action-sessions.json") },

949+

} as OpenClawConfig;

950+951+

await handleTelegramAction(

952+

{

953+

action: "editForumTopic",

954+

accountId: "work",

955+

chatId: "alias-chat",

956+

messageThreadId: 42,

957+

name: "New",

958+

},

959+

cfg,

960+

);

961+962+

await expect(getTopicName("-100123", 42, topicCacheScopeFor(cfg, "work"))).resolves.toBe("New");

963+

});

964+868965

it.each([

869966

{

870967

name: "media",