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

推荐订阅源

Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
小众软件
小众软件
博客园_首页
T
Tailwind CSS Blog
美团技术团队
博客园 - 叶小钗
Microsoft Security Blog
Microsoft Security Blog
有赞技术团队
有赞技术团队
Apple Machine Learning Research
Apple Machine Learning Research
大猫的无限游戏
大猫的无限游戏
Microsoft Azure Blog
Microsoft Azure Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
I
InfoQ
MongoDB | Blog
MongoDB | Blog
The Cloudflare Blog
J
Java Code Geeks
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
Blog — PlanetScale
Blog — PlanetScale
IT之家
IT之家
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Y
Y Combinator 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
test(e2e): add black-box telegram rtt driver · openclaw/o...
obviyus · 2026-05-01 · via Recent Commits to openclaw:main

@@ -0,0 +1,238 @@

1+

#!/usr/bin/env node

2+

import fs from "node:fs/promises";

3+

import path from "node:path";

4+5+

const groupId = process.env.OPENCLAW_QA_TELEGRAM_GROUP_ID;

6+

const driverToken = process.env.OPENCLAW_QA_TELEGRAM_DRIVER_BOT_TOKEN;

7+

const sutToken = process.env.OPENCLAW_QA_TELEGRAM_SUT_BOT_TOKEN;

8+

const outputDir = process.env.OPENCLAW_NPM_TELEGRAM_OUTPUT_DIR ?? ".artifacts/rtt/raw";

9+

const timeoutMs = Number(process.env.OPENCLAW_QA_TELEGRAM_SCENARIO_TIMEOUT_MS ?? "180000");

10+

const canaryTimeoutMs = Number(

11+

process.env.OPENCLAW_QA_TELEGRAM_CANARY_TIMEOUT_MS ?? String(timeoutMs),

12+

);

13+

const scenarioIds = (

14+

process.env.OPENCLAW_NPM_TELEGRAM_SCENARIOS ?? "telegram-mentioned-message-reply"

15+

)

16+

.split(",")

17+

.map((value) => value.trim())

18+

.filter(Boolean);

19+20+

if (!groupId || !driverToken || !sutToken) {

21+

throw new Error(

22+

"missing Telegram env: OPENCLAW_QA_TELEGRAM_GROUP_ID, OPENCLAW_QA_TELEGRAM_DRIVER_BOT_TOKEN, OPENCLAW_QA_TELEGRAM_SUT_BOT_TOKEN",

23+

);

24+

}

25+26+

class TelegramBot {

27+

constructor(token) {

28+

this.baseUrl = `https://api.telegram.org/bot${token}`;

29+

}

30+31+

async call(method, body) {

32+

const response = await fetch(`${this.baseUrl}/${method}`, {

33+

method: "POST",

34+

headers: { "content-type": "application/json" },

35+

body: JSON.stringify(body),

36+

});

37+

const payload = await response.json();

38+

if (!response.ok || payload.ok !== true) {

39+

throw new Error(`${method} failed: ${JSON.stringify(payload)}`);

40+

}

41+

return payload.result;

42+

}

43+44+

getMe() {

45+

return this.call("getMe", {});

46+

}

47+48+

sendMessage(params) {

49+

return this.call("sendMessage", params);

50+

}

51+52+

getUpdates(params) {

53+

return this.call("getUpdates", params);

54+

}

55+

}

56+57+

const driver = new TelegramBot(driverToken);

58+

const sut = new TelegramBot(sutToken);

59+

const observedMessages = [];

60+

let driverUpdateOffset = 0;

61+62+

function messageText(message) {

63+

return message.text ?? message.caption ?? "";

64+

}

65+66+

function sleep(ms) {

67+

return new Promise((resolve) => setTimeout(resolve, ms));

68+

}

69+70+

async function flushUpdates(bot) {

71+

let updates = await bot.getUpdates({ timeout: 0, allowed_updates: ["message"] });

72+

let nextOffset;

73+

while (updates.length > 0) {

74+

const lastUpdateId = updates.at(-1).update_id;

75+

nextOffset = lastUpdateId + 1;

76+

updates = await bot.getUpdates({

77+

offset: nextOffset,

78+

timeout: 0,

79+

allowed_updates: ["message"],

80+

});

81+

}

82+

return nextOffset;

83+

}

84+85+

async function waitForSutReply(params) {

86+

const deadline = Date.now() + params.timeoutMs;

87+

while (Date.now() < deadline) {

88+

const updates = await driver.getUpdates({

89+

offset: driverUpdateOffset,

90+

timeout: 5,

91+

allowed_updates: ["message"],

92+

});

93+

for (const update of updates) {

94+

driverUpdateOffset = Math.max(driverUpdateOffset, update.update_id + 1);

95+

const message = update.message;

96+

if (!message || String(message.chat?.id) !== String(groupId)) {

97+

continue;

98+

}

99+

observedMessages.push({

100+

updateId: update.update_id,

101+

messageId: message.message_id,

102+

fromId: message.from?.id,

103+

fromUsername: message.from?.username,

104+

replyToMessageId: message.reply_to_message?.message_id,

105+

text: messageText(message),

106+

scenarioId: params.scenarioId,

107+

scenarioTitle: params.scenarioTitle,

108+

});

109+

if (message.from?.id !== params.sutId) {

110+

continue;

111+

}

112+

if (message.date < params.startedUnixSeconds) {

113+

continue;

114+

}

115+

const text = messageText(message);

116+

const replyMatches = message.reply_to_message?.message_id === params.requestMessageId;

117+

const markerMatches = params.matchText ? text.includes(params.matchText) : false;

118+

const anySutReplyMatches = params.allowAnySutReply;

119+

if (replyMatches || markerMatches || anySutReplyMatches) {

120+

return message;

121+

}

122+

}

123+

}

124+125+

throw new Error(`timed out after ${params.timeoutMs}ms waiting for Telegram message`);

126+

}

127+128+

async function runScenario(params) {

129+

const startedAt = new Date();

130+

const startedUnixSeconds = Math.floor(startedAt.getTime() / 1000);

131+

const request = await driver.sendMessage({

132+

chat_id: groupId,

133+

text: params.input,

134+

disable_notification: true,

135+

});

136+137+

try {

138+

const reply = await waitForSutReply({

139+

allowAnySutReply: params.allowAnySutReply,

140+

matchText: params.matchText,

141+

requestMessageId: request.message_id,

142+

scenarioId: params.id,

143+

scenarioTitle: params.title,

144+

startedUnixSeconds,

145+

sutId: params.sutId,

146+

timeoutMs: params.timeoutMs,

147+

});

148+

const rttMs = Date.now() - startedAt.getTime();

149+

return {

150+

id: params.id,

151+

title: params.title,

152+

status: "pass",

153+

details: `observed SUT message ${reply.message_id}`,

154+

rttMs,

155+

};

156+

} catch (error) {

157+

return {

158+

id: params.id,

159+

title: params.title,

160+

status: "fail",

161+

details: error instanceof Error ? error.message : String(error),

162+

};

163+

}

164+

}

165+166+

function reportMarkdown(summary) {

167+

const lines = ["# Telegram RTT", ""];

168+

for (const scenario of summary.scenarios) {

169+

lines.push(`## ${scenario.title}`, "");

170+

lines.push(`- Status: ${scenario.status}`);

171+

lines.push(`- Details: ${scenario.details}`);

172+

if (scenario.rttMs !== undefined) {

173+

lines.push(`- RTT: ${scenario.rttMs}ms`);

174+

}

175+

lines.push("");

176+

}

177+

return lines.join("\n");

178+

}

179+180+

async function main() {

181+

await fs.mkdir(outputDir, { recursive: true });

182+

const [driverMe, sutMe] = await Promise.all([driver.getMe(), sut.getMe()]);

183+

driverUpdateOffset = (await flushUpdates(driver)) ?? driverUpdateOffset;

184+185+

const scenarios = [];

186+

scenarios.push(

187+

await runScenario({

188+

allowAnySutReply: true,

189+

id: "telegram-canary",

190+

input: `/status@${sutMe.username}`,

191+

sutId: sutMe.id,

192+

timeoutMs: canaryTimeoutMs,

193+

title: "Telegram canary",

194+

}),

195+

);

196+197+

if (scenarioIds.includes("telegram-mentioned-message-reply")) {

198+

const marker = `OPENCLAW_RTT_${Date.now().toString(36)}`;

199+

scenarios.push(

200+

await runScenario({

201+

allowAnySutReply: true,

202+

id: "telegram-mentioned-message-reply",

203+

input: `/status@${sutMe.username} RTT marker ${marker}`,

204+

matchText: "OPENCLAW_RTT_OK",

205+

sutId: sutMe.id,

206+

timeoutMs,

207+

title: "Telegram status command reply",

208+

}),

209+

);

210+

}

211+212+

const failed = scenarios.filter((scenario) => scenario.status === "fail").length;

213+

const summary = {

214+

provider: "telegram",

215+

driver: { id: driverMe.id, username: driverMe.username },

216+

sut: { id: sutMe.id, username: sutMe.username },

217+

startedAt: new Date().toISOString(),

218+

status: failed > 0 ? "fail" : "pass",

219+

totals: { total: scenarios.length, failed, passed: scenarios.length - failed },

220+

scenarios,

221+

};

222+223+

await fs.writeFile(

224+

path.join(outputDir, "telegram-qa-summary.json"),

225+

`${JSON.stringify(summary, null, 2)}\n`,

226+

);

227+

await fs.writeFile(path.join(outputDir, "telegram-qa-report.md"), reportMarkdown(summary));

228+

await fs.writeFile(

229+

path.join(outputDir, "telegram-qa-observed-messages.json"),

230+

`${JSON.stringify(observedMessages, null, 2)}\n`,

231+

);

232+233+

if (failed > 0) {

234+

process.exitCode = 1;

235+

}

236+

}

237+238+

await main();