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

推荐订阅源

Hugging Face - Blog
Hugging Face - Blog
V
Visual Studio Blog
Last Week in AI
Last Week in AI
Stack Overflow Blog
Stack Overflow Blog
The GitHub Blog
The GitHub Blog
Recent Announcements
Recent Announcements
博客园 - Franky
D
DataBreaches.Net
B
Blog
Y
Y Combinator Blog
T
The Blog of Author Tim Ferriss
Microsoft Azure Blog
Microsoft Azure Blog
人人都是产品经理
人人都是产品经理
WordPress大学
WordPress大学
P
Proofpoint News Feed
J
Java Code Geeks
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Martin Fowler
Martin Fowler
月光博客
月光博客
宝玉的分享
宝玉的分享
Engineering at Meta
Engineering at Meta
阮一峰的网络日志
阮一峰的网络日志
F
Fortinet All Blogs
博客园 - 【当耐特】

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
test(telegram): prove bot reply-chain context · openclaw/...
obviyus · 2026-05-17 · via Recent Commits to openclaw:main

@@ -2237,6 +2237,129 @@ describe("createTelegramBot", () => {

22372237

expect(mediaFetch).toHaveBeenCalledTimes(1);

22382238

});

223922392240+

it("hydrates bot reply targets cached from earlier Telegram replies", async () => {

2241+

onSpy.mockClear();

2242+

replySpy.mockClear();

2243+

getFileSpy.mockClear();

2244+2245+

const mediaFetch = vi.fn(

2246+

async () =>

2247+

new Response(new Uint8Array([0x89, 0x50, 0x4e, 0x47]), {

2248+

status: 200,

2249+

headers: { "content-type": "image/png" },

2250+

}),

2251+

);

2252+

const ssrfMock = mockPinnedHostnameResolution();

2253+2254+

try {

2255+

createTelegramBot({

2256+

token: "tok",

2257+

telegramTransport: {

2258+

fetch: mediaFetch as typeof fetch,

2259+

sourceFetch: mediaFetch as typeof fetch,

2260+

close: async () => {},

2261+

},

2262+

});

2263+

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

2264+

const baseCtx = {

2265+

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

2266+

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

2267+

};

2268+

const chat = { id: 7, type: "group", title: "Ops" };

2269+2270+

await handler({

2271+

...baseCtx,

2272+

message: {

2273+

chat,

2274+

message_id: 102,

2275+

text: "Why is there a 4th person?",

2276+

date: 1736380750,

2277+

from: { id: 2, is_bot: false, first_name: "UserB" },

2278+

reply_to_message: {

2279+

chat,

2280+

message_id: 101,

2281+

text: "Done, here is the image",

2282+

date: 1736380700,

2283+

from: { id: 999, is_bot: true, first_name: "OpenClaw" },

2284+

photo: [{ file_id: "generated-photo-1" }],

2285+

},

2286+

},

2287+

});

2288+2289+

replySpy.mockClear();

2290+

getFileSpy.mockClear();

2291+

mediaFetch.mockClear();

2292+2293+

await handler({

2294+

...baseCtx,

2295+

message: {

2296+

chat,

2297+

message_id: 103,

2298+

text: "@openclaw_bot explain what went wrong",

2299+

date: 1736380800,

2300+

from: { id: 1, is_bot: false, first_name: "UserA" },

2301+

reply_to_message: {

2302+

chat,

2303+

message_id: 102,

2304+

text: "Why is there a 4th person?",

2305+

date: 1736380750,

2306+

from: { id: 2, is_bot: false, first_name: "UserB" },

2307+

},

2308+

},

2309+

});

2310+

} finally {

2311+

ssrfMock.mockRestore();

2312+

}

2313+2314+

expect(replySpy).toHaveBeenCalledTimes(1);

2315+

const payload = mockMsgContextArg(

2316+

replySpy as unknown as MockCallSource,

2317+

0,

2318+

0,

2319+

"replySpy call",

2320+

) as {

2321+

ReplyChain?: Array<{

2322+

messageId?: string;

2323+

sender?: string;

2324+

body?: string;

2325+

mediaRef?: string;

2326+

mediaPath?: string;

2327+

}>;

2328+

UntrustedStructuredContext?: unknown[];

2329+

};

2330+

expect(payload.ReplyChain?.map((entry) => entry.messageId)).toEqual(["102", "101"]);

2331+

expect(payload.ReplyChain?.[1]).toMatchObject({

2332+

sender: "OpenClaw",

2333+

body: "Done, here is the image",

2334+

mediaRef: "telegram:file/generated-photo-1",

2335+

});

2336+

expect(payload.ReplyChain?.[1]?.mediaPath).toBeTypeOf("string");

2337+

const [conversationContext] = requireArray(

2338+

payload.UntrustedStructuredContext,

2339+

"structured context",

2340+

);

2341+

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

2342+

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

2343+

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

2344+

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

2345+

);

2346+

const messagesById = new Map(messages.map((message) => [message.message_id, message]));

2347+

expect(messagesById.get("101")).toMatchObject({

2348+

sender: "OpenClaw",

2349+

body: "Done, here is the image",

2350+

media_ref: "telegram:file/generated-photo-1",

2351+

is_reply_target: true,

2352+

});

2353+

expect(messagesById.get("102")).toMatchObject({

2354+

sender: "UserB",

2355+

body: "Why is there a 4th person?",

2356+

reply_to_id: "101",

2357+

is_reply_target: true,

2358+

});

2359+

expect(getFileSpy).toHaveBeenCalledWith("generated-photo-1");

2360+

expect(mediaFetch).toHaveBeenCalledTimes(1);

2361+

});

2362+22402363

it("does not fetch reply media for unauthorized DM replies", async () => {

22412364

onSpy.mockClear();

22422365

replySpy.mockClear();