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

推荐订阅源

J
Java Code Geeks
Last Week in AI
Last Week in AI
T
Tailwind CSS Blog
WordPress大学
WordPress大学
B
Blog RSS Feed
T
The Blog of Author Tim Ferriss
F
Fortinet All Blogs
aimingoo的专栏
aimingoo的专栏
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
C
Check Point Blog
P
Proofpoint News Feed
H
Help Net Security
月光博客
月光博客
博客园_首页
Stack Overflow Blog
Stack Overflow Blog
博客园 - 三生石上(FineUI控件)
Martin Fowler
Martin Fowler
Recent Announcements
Recent Announcements
人人都是产品经理
人人都是产品经理
U
Unit 42
美团技术团队
I
InfoQ
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
test(e2e): measure telegram normal reply rtt · openclaw/o...
obviyus · 2026-05-01 · via Recent Commits to openclaw:main

@@ -13,6 +13,7 @@ const canaryTimeoutMs = Number(

1313

const warmSampleCount = Number(process.env.OPENCLAW_NPM_TELEGRAM_WARM_SAMPLES ?? "20");

1414

const sampleTimeoutMs = Number(process.env.OPENCLAW_NPM_TELEGRAM_SAMPLE_TIMEOUT_MS ?? "30000");

1515

const maxWarmFailures = Number(process.env.OPENCLAW_NPM_TELEGRAM_MAX_FAILURES ?? "3");

16+

const successMarker = process.env.OPENCLAW_NPM_TELEGRAM_SUCCESS_MARKER ?? "OPENCLAW_E2E_OK";

1617

const scenarioIds = (

1718

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

1819

)

@@ -82,15 +83,18 @@ function messageText(message) {

8283

}

83848485

async function flushUpdates(bot) {

85-

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

86+

let updates = await bot.getUpdates({

87+

timeout: 0,

88+

allowed_updates: ["message", "edited_message"],

89+

});

8690

let nextOffset;

8791

while (updates.length > 0) {

8892

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

8993

nextOffset = lastUpdateId + 1;

9094

updates = await bot.getUpdates({

9195

offset: nextOffset,

9296

timeout: 0,

93-

allowed_updates: ["message"],

97+

allowed_updates: ["message", "edited_message"],

9498

});

9599

}

96100

return nextOffset;

@@ -102,15 +106,16 @@ async function waitForSutReply(params) {

102106

const updates = await driver.getUpdates({

103107

offset: driverUpdateOffset,

104108

timeout: 5,

105-

allowed_updates: ["message"],

109+

allowed_updates: ["message", "edited_message"],

106110

});

107111

for (const update of updates) {

108112

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

109-

const message = update.message;

113+

const message = update.message ?? update.edited_message;

110114

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

111115

continue;

112116

}

113117

observedMessages.push({

118+

updateType: update.edited_message ? "edited_message" : "message",

114119

updateId: update.update_id,

115120

messageId: message.message_id,

116121

fromId: message.from?.id,

@@ -128,10 +133,12 @@ async function waitForSutReply(params) {

128133

continue;

129134

}

130135

const text = messageText(message);

136+

if (params.matchText && !text.includes(params.matchText)) {

137+

continue;

138+

}

131139

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

132-

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

133140

const anySutReplyMatches = params.allowAnySutReply;

134-

if (replyMatches || markerMatches || anySutReplyMatches) {

141+

if (replyMatches || anySutReplyMatches || params.matchText) {

135142

return message;

136143

}

137144

}

@@ -143,11 +150,15 @@ async function waitForSutReply(params) {

143150

async function runScenario(params) {

144151

const startedAt = new Date();

145152

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

146-

const request = await driver.sendMessage({

153+

const sendParams = {

147154

chat_id: groupId,

148155

text: params.input,

149156

disable_notification: true,

150-

});

157+

};

158+

if (params.replyToMessageId) {

159+

sendParams.reply_parameters = { message_id: params.replyToMessageId };

160+

}

161+

const request = await driver.sendMessage(sendParams);

151162152163

try {

153164

const reply = await waitForSutReply({

@@ -167,6 +178,7 @@ async function runScenario(params) {

167178

title: params.title,

168179

status: "pass",

169180

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

181+

messageId: reply.message_id,

170182

rttMs,

171183

};

172184

} catch (error) {

@@ -207,10 +219,13 @@ async function runWarmScenario(params) {

207219

let failures = 0;

208220

let passed = 0;

209221

for (let index = 0; passed < params.sampleCount; index += 1) {

222+

const sampleMarker = `${successMarker}_${index + 1}`;

210223

const sample = await runScenario({

211-

allowAnySutReply: true,

224+

allowAnySutReply: false,

212225

id: params.id,

213-

input: `/status@${params.sutUsername}`,

226+

input: `@${params.sutUsername} RTT sample ${index + 1}. Reply with exactly ${sampleMarker}.`,

227+

matchText: sampleMarker,

228+

replyToMessageId: params.replyToMessageId,

214229

sampleIndex: index + 1,

215230

sutId: params.sutId,

216231

timeoutMs: params.sampleTimeoutMs,

@@ -282,27 +297,27 @@ async function main() {

282297

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

283298284299

const scenarios = [];

285-

scenarios.push(

286-

await runScenario({

287-

allowAnySutReply: true,

288-

id: "telegram-canary",

289-

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

290-

sutId: sutMe.id,

291-

timeoutMs: canaryTimeoutMs,

292-

title: "Telegram canary",

293-

}),

294-

);

300+

const canary = await runScenario({

301+

allowAnySutReply: true,

302+

id: "telegram-canary",

303+

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

304+

sutId: sutMe.id,

305+

timeoutMs: canaryTimeoutMs,

306+

title: "Telegram canary",

307+

});

308+

scenarios.push(canary);

295309296310

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

297311

scenarios.push(

298312

await runWarmScenario({

299313

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

300314

maxFailures: maxWarmFailures,

315+

replyToMessageId: canary.messageId,

301316

sampleCount: warmSampleCount,

302317

sampleTimeoutMs,

303318

sutId: sutMe.id,

304319

sutUsername: sutMe.username,

305-

title: "Telegram status command reply",

320+

title: "Telegram normal reply",

306321

}),

307322

);

308323

}