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

推荐订阅源

V
Visual Studio Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
G
Google Developers Blog
J
Java Code Geeks
爱范儿
爱范儿
Microsoft Azure Blog
Microsoft Azure Blog
美团技术团队
人人都是产品经理
人人都是产品经理
Martin Fowler
Martin Fowler
IT之家
IT之家
博客园_首页
B
Blog RSS Feed
Google DeepMind News
Google DeepMind News
B
Blog
U
Unit 42
Apple Machine Learning Research
Apple Machine Learning Research
L
LangChain Blog
Stack Overflow Blog
Stack Overflow Blog
罗磊的独立博客
N
Netflix TechBlog - Medium
T
Tailwind CSS Blog
博客园 - 聂微东
腾讯CDC
A
About on SuperTechFans

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 #95378: https://github.com/openclaw/openclaw/issues/9...
mikasa0818 · 2026-06-22 · via Recent Commits to openclaw:main
1-

// Telegram tests cover bot plugin behavior.

2-

import { rm } from "node:fs/promises";

1+

import { rm, writeFile } from "node:fs/promises";

2+

import path from "node:path";

33

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

44

import {

55

clearPluginInteractiveHandlers,

@@ -14,6 +14,10 @@ import type { MsgContext } from "openclaw/plugin-sdk/reply-runtime";

1414

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

1515

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

1616

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

17+

import {

18+

resolveTelegramConversationBaseSessionKey,

19+

resolveTelegramConversationRoute,

20+

} from "./conversation-route.js";

1721

import type { TelegramInteractiveHandlerContext } from "./interactive-dispatch.js";

1822

import { buildTelegramOpaqueCallbackData } from "./native-command-callback-data.js";

1923

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

@@ -145,6 +149,59 @@ function mockMsgContextArg(

145149

return mockArg(source, callIndex, argIndex, label) as MsgContext;

146150

}

147151152+

async function writeDirectTelegramTranscriptContext(params: {

153+

cfg: OpenClawConfig;

154+

storePath: string;

155+

chatId: number;

156+

senderId: number;

157+

sessionId: string;

158+

text: string;

159+

timestamp: number;

160+

}) {

161+

const route = resolveTelegramConversationRoute({

162+

cfg: params.cfg,

163+

accountId: "default",

164+

chatId: params.chatId,

165+

isGroup: false,

166+

senderId: params.senderId,

167+

}).route;

168+

const sessionKey = resolveTelegramConversationBaseSessionKey({

169+

cfg: params.cfg,

170+

route,

171+

chatId: params.chatId,

172+

isGroup: false,

173+

senderId: params.senderId,

174+

});

175+

await writeFile(

176+

params.storePath,

177+

JSON.stringify({

178+

[sessionKey]: {

179+

sessionId: params.sessionId,

180+

chatType: "direct",

181+

channel: "telegram",

182+

},

183+

}),

184+

"utf-8",

185+

);

186+

await writeFile(

187+

path.join(path.dirname(params.storePath), `${params.sessionId}.jsonl`),

188+

[

189+

JSON.stringify({ type: "session", id: params.sessionId }),

190+

JSON.stringify({

191+

id: "transcript-user-1",

192+

type: "message",

193+

message: {

194+

role: "user",

195+

content: params.text,

196+

timestamp: params.timestamp,

197+

},

198+

}),

199+

"",

200+

].join("\n"),

201+

"utf-8",

202+

);

203+

}

204+148205

function execApprovalCall(index = 0) {

149206

return requireRecord(

150207

mockArg(resolveExecApprovalSpy as unknown as MockCallSource, index, 0, "exec approval call"),

@@ -2026,6 +2083,153 @@ describe("createTelegramBot", () => {

20262083

expect(messagesById.get("35016")?.body).not.toBe("K");

20272084

});

202820852086+

it("keeps direct Telegram media context when transcript context exists", async () => {

2087+

onSpy.mockClear();

2088+

replySpy.mockClear();

2089+2090+

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

2091+

const config = {

2092+

channels: {

2093+

telegram: {

2094+

dmPolicy: "open",

2095+

allowFrom: ["*"],

2096+

},

2097+

},

2098+

session: {

2099+

store: storePath,

2100+

},

2101+

} satisfies NonNullable<Parameters<typeof createTelegramBot>[0]["config"]>;

2102+2103+

await rm(storePath, { force: true });

2104+

try {

2105+

loadConfig.mockReturnValue(config);

2106+

createTelegramBot({ token: "tok", config });

2107+

const handler = getOnHandler("message") as (ctx: Record<string, unknown>) => Promise<void>;

2108+

const baseCtx = {

2109+

me: { id: 999, username: "openclaw_bot" },

2110+

getFile: async () => ({ download: async () => new Uint8Array() }),

2111+

};

2112+2113+

await handler({

2114+

...baseCtx,

2115+

message: {

2116+

chat: { id: 7771, type: "private" },

2117+

caption: "the reference image",

2118+

date: 1778474800,

2119+

message_id: 100,

2120+

from: { id: 202, is_bot: false, first_name: "Kesava" },

2121+

photo: [{ file_id: "reference-photo-1", width: 1, height: 1 }],

2122+

},

2123+

});

2124+2125+

await writeDirectTelegramTranscriptContext({

2126+

cfg: config,

2127+

storePath,

2128+

chatId: 7771,

2129+

senderId: 202,

2130+

sessionId: "telegram-dm-media-context-session",

2131+

text: "remember the launch checklist",

2132+

timestamp: 1778474700000,

2133+

});

2134+2135+

replySpy.mockClear();

2136+

await handler({

2137+

...baseCtx,

2138+

message: {

2139+

chat: { id: 7771, type: "private" },

2140+

text: "what about the image above?",

2141+

date: 1778474850,

2142+

message_id: 101,

2143+

from: { id: 202, is_bot: false, first_name: "Kesava" },

2144+

},

2145+

});

2146+2147+

expect(replySpy).toHaveBeenCalledTimes(1);

2148+

const payload = mockMsgContextArg(

2149+

replySpy as unknown as MockCallSource,

2150+

0,

2151+

0,

2152+

"replySpy call",

2153+

);

2154+

const [conversationContext] = requireArray(

2155+

payload.UntrustedStructuredContext,

2156+

"structured context",

2157+

);

2158+

const contextRecord = requireRecord(conversationContext, "conversation context");

2159+

const contextPayload = requireRecord(contextRecord.payload, "conversation context payload");

2160+

const messages = requireArray(contextPayload.messages, "conversation context messages").map(

2161+

(message, index) => requireRecord(message, `conversation context message ${index + 1}`),

2162+

);

2163+

expect(messages.some((message) => message.body === "remember the launch checklist")).toBe(

2164+

true,

2165+

);

2166+

const photoMessage = messages.find((message) => message.message_id === "100");

2167+

expect(photoMessage?.body).toBe("the reference image");

2168+

expect(photoMessage?.media_ref).toBe("telegram:file/reference-photo-1");

2169+

} finally {

2170+

await rm(storePath, { force: true });

2171+

}

2172+

});

2173+2174+

it("skips direct transcript context for hard reset messages", async () => {

2175+

onSpy.mockClear();

2176+

replySpy.mockClear();

2177+2178+

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

2179+

const config = {

2180+

channels: {

2181+

telegram: {

2182+

dmPolicy: "open",

2183+

allowFrom: ["*"],

2184+

},

2185+

},

2186+

session: {

2187+

store: storePath,

2188+

},

2189+

} satisfies NonNullable<Parameters<typeof createTelegramBot>[0]["config"]>;

2190+2191+

await rm(storePath, { force: true });

2192+

try {

2193+

loadConfig.mockReturnValue(config);

2194+

createTelegramBot({ token: "tok", config });

2195+

await writeDirectTelegramTranscriptContext({

2196+

cfg: config,

2197+

storePath,

2198+

chatId: 7772,

2199+

senderId: 202,

2200+

sessionId: "telegram-dm-reset-context-session",

2201+

text: "old private transcript text",

2202+

timestamp: 1778474700000,

2203+

});

2204+2205+

const handler = getOnHandler("message") as (ctx: Record<string, unknown>) => Promise<void>;

2206+

await handler({

2207+

me: { id: 999, username: "openclaw_bot" },

2208+

getFile: async () => ({ download: async () => new Uint8Array() }),

2209+

message: {

2210+

chat: { id: 7772, type: "private" },

2211+

text: "/reset summarize my workspace",

2212+

date: 1778474850,

2213+

message_id: 101,

2214+

from: { id: 202, is_bot: false, first_name: "Kesava" },

2215+

},

2216+

});

2217+2218+

expect(replySpy).toHaveBeenCalledTimes(1);

2219+

const payload = mockMsgContextArg(

2220+

replySpy as unknown as MockCallSource,

2221+

0,

2222+

0,

2223+

"replySpy call",

2224+

);

2225+

expect(JSON.stringify(payload.UntrustedStructuredContext ?? [])).not.toContain(

2226+

"old private transcript text",

2227+

);

2228+

} finally {

2229+

await rm(storePath, { force: true });

2230+

}

2231+

});

2232+20292233

it("uses quote text when a Telegram partial reply is received", async () => {

20302234

onSpy.mockClear();

20312235

sendMessageSpy.mockClear();