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

推荐订阅源

G
Google Developers Blog
Apple Machine Learning Research
Apple Machine Learning Research
小众软件
小众软件
Recent Announcements
Recent Announcements
阮一峰的网络日志
阮一峰的网络日志
IT之家
IT之家
A
About on SuperTechFans
量子位
Engineering at Meta
Engineering at Meta
B
Blog
The Cloudflare Blog
博客园 - 【当耐特】
Hugging Face - Blog
Hugging Face - Blog
Y
Y Combinator Blog
J
Java Code Geeks
D
DataBreaches.Net
aimingoo的专栏
aimingoo的专栏
T
Tailwind CSS Blog
H
Help Net Security
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
V2EX
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog
酷 壳 – CoolShell
酷 壳 – CoolShell

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): bound telegram rtt warm samples · openclaw/ope...
obviyus · 2026-05-01 · via Recent Commits to openclaw:main

@@ -10,18 +10,36 @@ const timeoutMs = Number(process.env.OPENCLAW_QA_TELEGRAM_SCENARIO_TIMEOUT_MS ??

1010

const canaryTimeoutMs = Number(

1111

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

1212

);

13-

const scenarioIds = new Set(

14-

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

15-

.split(",")

16-

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

17-

.filter(Boolean),

18-

);

13+

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

14+

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

15+

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

16+

const scenarioIds = (

17+

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

18+

)

19+

.split(",")

20+

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

21+

.filter(Boolean);

19222023

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

2124

throw new Error(

2225

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

2326

);

2427

}

28+

if (!Number.isInteger(warmSampleCount) || warmSampleCount < 1) {

29+

throw new Error(

30+

`OPENCLAW_NPM_TELEGRAM_WARM_SAMPLES must be a positive integer; got: ${warmSampleCount}`,

31+

);

32+

}

33+

if (!Number.isInteger(sampleTimeoutMs) || sampleTimeoutMs < 1) {

34+

throw new Error(

35+

`OPENCLAW_NPM_TELEGRAM_SAMPLE_TIMEOUT_MS must be a positive integer; got: ${sampleTimeoutMs}`,

36+

);

37+

}

38+

if (!Number.isInteger(maxWarmFailures) || maxWarmFailures < 1) {

39+

throw new Error(

40+

`OPENCLAW_NPM_TELEGRAM_MAX_FAILURES must be a positive integer; got: ${maxWarmFailures}`,

41+

);

42+

}

25432644

class TelegramBot {

2745

constructor(token) {

@@ -101,6 +119,7 @@ async function waitForSutReply(params) {

101119

text: messageText(message),

102120

scenarioId: params.scenarioId,

103121

scenarioTitle: params.scenarioTitle,

122+

sampleIndex: params.sampleIndex,

104123

});

105124

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

106125

continue;

@@ -137,6 +156,7 @@ async function runScenario(params) {

137156

requestMessageId: request.message_id,

138157

scenarioId: params.id,

139158

scenarioTitle: params.title,

159+

sampleIndex: params.sampleIndex,

140160

startedUnixSeconds,

141161

sutId: params.sutId,

142162

timeoutMs: params.timeoutMs,

@@ -159,6 +179,71 @@ async function runScenario(params) {

159179

}

160180

}

161181182+

function percentile(sortedValues, percentileValue) {

183+

if (sortedValues.length === 0) {

184+

return undefined;

185+

}

186+

const index = Math.ceil((percentileValue / 100) * sortedValues.length) - 1;

187+

return sortedValues[Math.min(Math.max(index, 0), sortedValues.length - 1)];

188+

}

189+190+

function summarizeSamples(samples) {

191+

const passed = samples.filter((sample) => sample.status === "pass" && sample.rttMs !== undefined);

192+

const sorted = passed.map((sample) => sample.rttMs).sort((a, b) => a - b);

193+

const sum = sorted.reduce((total, value) => total + value, 0);

194+

return {

195+

total: samples.length,

196+

passed: passed.length,

197+

failed: samples.length - passed.length,

198+

avgMs: sorted.length > 0 ? Math.round(sum / sorted.length) : undefined,

199+

p50Ms: percentile(sorted, 50),

200+

p95Ms: percentile(sorted, 95),

201+

maxMs: sorted.at(-1),

202+

};

203+

}

204+205+

async function runWarmScenario(params) {

206+

const samples = [];

207+

let failures = 0;

208+

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

209+

const sample = await runScenario({

210+

allowAnySutReply: true,

211+

id: params.id,

212+

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

213+

sampleIndex: index + 1,

214+

sutId: params.sutId,

215+

timeoutMs: params.sampleTimeoutMs,

216+

title: params.title,

217+

});

218+

if (sample.status === "fail") {

219+

failures += 1;

220+

}

221+

samples.push({

222+

index: index + 1,

223+

status: sample.status,

224+

details: sample.details,

225+

...(sample.rttMs === undefined ? {} : { rttMs: sample.rttMs }),

226+

});

227+

if (failures >= params.maxFailures) {

228+

break;

229+

}

230+

if (index + 1 < params.sampleCount) {

231+

await sleep(500);

232+

}

233+

}

234+235+

const stats = summarizeSamples(samples);

236+

return {

237+

id: params.id,

238+

title: params.title,

239+

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

240+

details: `${stats.passed}/${stats.total} warm samples passed`,

241+

rttMs: stats.p50Ms,

242+

samples,

243+

stats,

244+

};

245+

}

246+162247

function reportMarkdown(summary) {

163248

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

164249

for (const scenario of summary.scenarios) {

@@ -168,6 +253,21 @@ function reportMarkdown(summary) {

168253

if (scenario.rttMs !== undefined) {

169254

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

170255

}

256+

if (scenario.stats) {

257+

lines.push(`- Samples: ${scenario.stats.passed}/${scenario.stats.total}`);

258+

if (scenario.stats.avgMs !== undefined) {

259+

lines.push(`- Avg: ${scenario.stats.avgMs}ms`);

260+

}

261+

if (scenario.stats.p50Ms !== undefined) {

262+

lines.push(`- P50: ${scenario.stats.p50Ms}ms`);

263+

}

264+

if (scenario.stats.p95Ms !== undefined) {

265+

lines.push(`- P95: ${scenario.stats.p95Ms}ms`);

266+

}

267+

if (scenario.stats.maxMs !== undefined) {

268+

lines.push(`- Max: ${scenario.stats.maxMs}ms`);

269+

}

270+

}

171271

lines.push("");

172272

}

173273

return lines.join("\n");

@@ -190,16 +290,15 @@ async function main() {

190290

}),

191291

);

192292193-

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

194-

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

293+

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

195294

scenarios.push(

196-

await runScenario({

197-

allowAnySutReply: true,

295+

await runWarmScenario({

198296

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

199-

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

200-

matchText: "OPENCLAW_RTT_OK",

297+

maxFailures: maxWarmFailures,

298+

sampleCount: warmSampleCount,

299+

sampleTimeoutMs,

201300

sutId: sutMe.id,

202-

timeoutMs,

301+

sutUsername: sutMe.username,

203302

title: "Telegram status command reply",

204303

}),

205304

);