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

推荐订阅源

大猫的无限游戏
大猫的无限游戏
云风的 BLOG
云风的 BLOG
小众软件
小众软件
V
V2EX
博客园 - Franky
博客园 - 司徒正美
Apple Machine Learning Research
Apple Machine Learning Research
量子位
博客园 - 【当耐特】
雷峰网
雷峰网
WordPress大学
WordPress大学
Jina AI
Jina AI
Google DeepMind News
Google DeepMind News
N
Netflix TechBlog - Medium
爱范儿
爱范儿
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
阮一峰的网络日志
阮一峰的网络日志
IT之家
IT之家
Blog — PlanetScale
Blog — PlanetScale
Hugging Face - Blog
Hugging Face - Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
V
Visual Studio Blog
Microsoft Security Blog
Microsoft Security Blog

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
refactor: make Telegram message cache SQLite-only · openc...
steipete · 2026-06-01 · via Recent Commits to openclaw:main
1-

import fs from "node:fs";

21

import type { Bot } from "grammy";

3-

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

2+

import {

3+

createPluginStateKeyedStoreForTests,

4+

createPluginStateSyncKeyedStoreForTests,

5+

resetPluginStateStoreForTests,

6+

} from "openclaw/plugin-sdk/plugin-state-test-runtime";

7+

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

48

import { resolveAutoTopicLabelConfig as resolveAutoTopicLabelConfigRuntime } from "./auto-topic-label-config.js";

59

import type { TelegramBotDeps } from "./bot-deps.js";

610

import {

@@ -11,9 +15,11 @@ import { notifyTelegramInboundEventOutboundSuccess } from "./inbound-event-deliv

1115

import {

1216

buildTelegramConversationContext,

1317

createTelegramMessageCache,

14-

resolveTelegramMessageCachePath,

18+

resolveTelegramMessageCacheScope,

1519

} from "./message-cache.js";

1620

import { recordOutboundMessageForPromptContext as recordOutboundMessageForPromptContextActual } from "./outbound-message-context.js";

21+

import { clearTelegramRuntime, setTelegramRuntime } from "./runtime.js";

22+

import type { TelegramRuntime } from "./runtime.types.js";

17231824

type DispatchReplyWithBufferedBlockDispatcherArgs = Parameters<

1925

TelegramBotDeps["dispatchReplyWithBufferedBlockDispatcher"]

@@ -170,6 +176,24 @@ vi.mock("./sticker-cache.js", () => ({

170176

let dispatchTelegramMessage: typeof import("./bot-message-dispatch.js").dispatchTelegramMessage;

171177

let resetTelegramReplyFenceForTests: typeof import("./bot-message-dispatch.js").resetTelegramReplyFenceForTests;

172178179+

function installTelegramStateRuntimeForTest(): void {

180+

setTelegramRuntime({

181+

state: {

182+

openKeyedStore: ((options) =>

183+

createPluginStateKeyedStoreForTests(

184+

"telegram",

185+

options,

186+

)) as TelegramRuntime["state"]["openKeyedStore"],

187+

openSyncKeyedStore: ((options) =>

188+

createPluginStateSyncKeyedStoreForTests(

189+

"telegram",

190+

options,

191+

)) as TelegramRuntime["state"]["openSyncKeyedStore"],

192+

},

193+

channel: {},

194+

} as TelegramRuntime);

195+

}

196+173197

const telegramDepsForTest: TelegramBotDeps = {

174198

getRuntimeConfig: loadConfig as TelegramBotDeps["getRuntimeConfig"],

175199

resolveStorePath: resolveStorePath as TelegramBotDeps["resolveStorePath"],

@@ -210,6 +234,8 @@ describe("dispatchTelegramMessage draft streaming", () => {

210234

});

211235212236

beforeEach(() => {

237+

resetPluginStateStoreForTests({ closeDatabase: false });

238+

installTelegramStateRuntimeForTest();

213239

resetTelegramReplyFenceForTests();

214240

createTelegramDraftStream.mockReset();

215241

createNativeTelegramToolProgressDraft.mockReset();

@@ -307,6 +333,11 @@ describe("dispatchTelegramMessage draft streaming", () => {

307333

});

308334

});

309335336+

afterEach(() => {

337+

clearTelegramRuntime();

338+

resetPluginStateStoreForTests();

339+

});

340+310341

const createDraftStream = (messageId?: number) => createTestDraftStream({ messageId });

311342

const createSequencedDraftStream = (startMessageId = 1001) =>

312343

createSequencedTestDraftStream(startMessageId);

@@ -1312,59 +1343,56 @@ describe("dispatchTelegramMessage draft streaming", () => {

1312134313131344

it("records streamed final replies into the prompt context cache", async () => {

13141345

const storePath = `/tmp/openclaw-telegram-stream-context-${process.pid}-${Date.now()}.json`;

1315-

const persistedPath = resolveTelegramMessageCachePath(storePath);

1316-

try {

1317-

setupDraftStreams({ answerMessageId: 1497 });

1318-

dispatchReplyWithBufferedBlockDispatcher.mockImplementation(async ({ dispatcherOptions }) => {

1319-

await dispatcherOptions.deliver(

1320-

{ text: "Done already: timeoutSeconds is now 7200s." },

1321-

{ kind: "final" },

1322-

);

1323-

return { queuedFinal: true };

1324-

});

1346+

setupDraftStreams({ answerMessageId: 1497 });

1347+

dispatchReplyWithBufferedBlockDispatcher.mockImplementation(async ({ dispatcherOptions }) => {

1348+

await dispatcherOptions.deliver(

1349+

{ text: "Done already: timeoutSeconds is now 7200s." },

1350+

{ kind: "final" },

1351+

);

1352+

return { queuedFinal: true };

1353+

});

132513541326-

await dispatchWithContext({

1327-

context: createContext(),

1328-

cfg: { session: { store: storePath } },

1329-

telegramDeps: {

1330-

...telegramDepsForTest,

1331-

recordOutboundMessageForPromptContext: recordOutboundMessageForPromptContextActual,

1332-

},

1333-

});

1355+

await dispatchWithContext({

1356+

context: createContext(),

1357+

cfg: { session: { store: storePath } },

1358+

telegramDeps: {

1359+

...telegramDepsForTest,

1360+

recordOutboundMessageForPromptContext: recordOutboundMessageForPromptContextActual,

1361+

},

1362+

});

133413631335-

const cache = createTelegramMessageCache({ persistedPath });

1336-

await cache.record({

1337-

accountId: "default",

1338-

chatId: "123",

1339-

threadId: 777,

1340-

msg: {

1341-

chat: { id: 123, type: "private", first_name: "Keshav" },

1342-

message_thread_id: 777,

1343-

message_id: 1521,

1344-

date: 1_779_425_460,

1345-

text: "Did all Amazon crons run fine",

1346-

from: { id: 5185575566, is_bot: false, first_name: "Keshav" },

1347-

},

1348-

});

1364+

const cache = createTelegramMessageCache({

1365+

scope: resolveTelegramMessageCacheScope(storePath),

1366+

});

1367+

await cache.record({

1368+

accountId: "default",

1369+

chatId: "123",

1370+

threadId: 777,

1371+

msg: {

1372+

chat: { id: 123, type: "private", first_name: "Keshav" },

1373+

message_thread_id: 777,

1374+

message_id: 1521,

1375+

date: 1_779_425_460,

1376+

text: "Did all Amazon crons run fine",

1377+

from: { id: 5185575566, is_bot: false, first_name: "Keshav" },

1378+

},

1379+

});

134913801350-

const context = await buildTelegramConversationContext({

1351-

cache,

1352-

accountId: "default",

1353-

chatId: "123",

1354-

threadId: 777,

1355-

messageId: "1521",

1356-

replyChainNodes: [],

1357-

recentLimit: 10,

1358-

replyTargetWindowSize: 2,

1359-

});

1381+

const context = await buildTelegramConversationContext({

1382+

cache,

1383+

accountId: "default",

1384+

chatId: "123",

1385+

threadId: 777,

1386+

messageId: "1521",

1387+

replyChainNodes: [],

1388+

recentLimit: 10,

1389+

replyTargetWindowSize: 2,

1390+

});

136013911361-

expect(context.map((entry) => entry.node.messageId)).toContain("1497");

1362-

expect(context.map((entry) => entry.node.body)).toContain(

1363-

"Done already: timeoutSeconds is now 7200s.",

1364-

);

1365-

} finally {

1366-

fs.rmSync(persistedPath, { force: true });

1367-

}

1392+

expect(context.map((entry) => entry.node.messageId)).toContain("1497");

1393+

expect(context.map((entry) => entry.node.body)).toContain(

1394+

"Done already: timeoutSeconds is now 7200s.",

1395+

);

13681396

});

1369139713701398

it("suppresses text-only tool payloads delivered after the final answer", async () => {