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

推荐订阅源

Stack Overflow Blog
Stack Overflow Blog
云风的 BLOG
云风的 BLOG
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Recent Announcements
Recent Announcements
Microsoft Security Blog
Microsoft Security Blog
Microsoft Azure Blog
Microsoft Azure Blog
J
Java Code Geeks
D
DataBreaches.Net
U
Unit 42
P
Proofpoint News Feed
I
InfoQ
Apple Machine Learning Research
Apple Machine Learning Research
Google DeepMind News
Google DeepMind News
博客园 - Franky
博客园_首页
IT之家
IT之家
博客园 - 叶小钗
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 【当耐特】
Hugging Face - Blog
Hugging Face - Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
阮一峰的网络日志
阮一峰的网络日志

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(e2e): bound Telegram RTT driver API bodies · openclaw...
vincentkoc · 2026-05-29 · via Recent Commits to openclaw:main

@@ -19,6 +19,10 @@ const botApiTimeoutMs = readPositiveInt(

1919

process.env.OPENCLAW_NPM_TELEGRAM_BOT_API_TIMEOUT_MS,

2020

30000,

2121

);

22+

const botApiBodyMaxBytes = readPositiveInt(

23+

process.env.OPENCLAW_NPM_TELEGRAM_BOT_API_BODY_MAX_BYTES,

24+

1024 * 1024,

25+

);

2226

const maxWarmFailures = Number(

2327

process.env.OPENCLAW_NPM_TELEGRAM_MAX_FAILURES ?? String(warmSampleCount),

2428

);

@@ -56,20 +60,84 @@ function readPositiveInt(raw, fallback) {

5660

return Number.isInteger(parsed) && parsed > 0 ? parsed : fallback;

5761

}

586259-

async function fetchTelegramJson(url, init) {

63+

function taggedError(message, code) {

64+

return Object.assign(new Error(message), { code });

65+

}

66+67+

async function readBoundedResponseText(response, label, byteLimit, timeoutPromise) {

68+

const contentLength = response.headers.get("content-length");

69+

if (contentLength) {

70+

const parsedLength = Number(contentLength);

71+

if (Number.isSafeInteger(parsedLength) && parsedLength > byteLimit) {

72+

await response.body?.cancel().catch(() => {});

73+

throw taggedError(`${label} response body exceeded ${byteLimit} bytes`, "ETOOBIG");

74+

}

75+

}

76+

if (!response.body) {

77+

return "";

78+

}

79+80+

const reader = response.body.getReader();

81+

const decoder = new TextDecoder();

82+

let byteCount = 0;

83+

let text = "";

84+

try {

85+

while (true) {

86+

const { done, value } = await Promise.race([reader.read(), timeoutPromise]);

87+

if (done) {

88+

return text + decoder.decode();

89+

}

90+

byteCount += value.byteLength;

91+

if (byteCount > byteLimit) {

92+

await reader.cancel().catch(() => {});

93+

throw taggedError(`${label} response body exceeded ${byteLimit} bytes`, "ETOOBIG");

94+

}

95+

text += decoder.decode(value, { stream: true });

96+

}

97+

} finally {

98+

reader.releaseLock();

99+

}

100+

}

101+102+

function parseJsonPayload(rawPayload, label) {

103+

try {

104+

return JSON.parse(rawPayload);

105+

} catch (error) {

106+

throw new Error(`${label} returned invalid JSON`, { cause: error });

107+

}

108+

}

109+110+

async function fetchTelegramJson(url, init, label) {

60111

const controller = new AbortController();

61-

const timer = setTimeout(() => {

62-

controller.abort();

63-

}, botApiTimeoutMs);

112+

const timeoutError = taggedError(`${label} timed out after ${botApiTimeoutMs}ms`, "ETIMEDOUT");

113+

let timeout;

114+

const timeoutPromise = new Promise((_, reject) => {

115+

timeout = setTimeout(() => {

116+

controller.abort(timeoutError);

117+

reject(timeoutError);

118+

}, botApiTimeoutMs);

119+

timeout.unref?.();

120+

});

64121

try {

65-

const response = await fetch(url, {

66-

...init,

67-

signal: controller.signal,

68-

});

69-

const payload = await response.json();

122+

const response = await Promise.race([

123+

fetch(url, {

124+

...init,

125+

signal: controller.signal,

126+

}),

127+

timeoutPromise,

128+

]);

129+

const rawPayload = await readBoundedResponseText(

130+

response,

131+

label,

132+

botApiBodyMaxBytes,

133+

timeoutPromise,

134+

);

135+

const payload = parseJsonPayload(rawPayload, label);

70136

return { payload, response };

71137

} finally {

72-

clearTimeout(timer);

138+

if (timeout) {

139+

clearTimeout(timeout);

140+

}

73141

}

74142

}

75143

@@ -79,11 +147,15 @@ class TelegramBot {

79147

}

8014881149

async call(method, body) {

82-

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

83-

method: "POST",

84-

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

85-

body: JSON.stringify(body),

86-

});

150+

const { payload, response } = await fetchTelegramJson(

151+

`${this.baseUrl}/${method}`,

152+

{

153+

method: "POST",

154+

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

155+

body: JSON.stringify(body),

156+

},

157+

`Telegram Bot API ${method}`,

158+

);

87159

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

88160

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

89161

}