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

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
J
Java Code Geeks
量子位
腾讯CDC
C
Check Point Blog
小众软件
小众软件
IT之家
IT之家
I
InfoQ
Hugging Face - Blog
Hugging Face - Blog
Stack Overflow Blog
Stack Overflow Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
GbyAI
GbyAI
Apple Machine Learning Research
Apple Machine Learning Research
大猫的无限游戏
大猫的无限游戏
博客园_首页
S
SegmentFault 最新的问题
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
aimingoo的专栏
aimingoo的专栏
P
Proofpoint News Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Google DeepMind News
Google DeepMind News
T
Tailwind CSS Blog
Martin Fowler
Martin Fowler

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(qa): keep telegram credential tests sparse safe · ope...
vincentkoc · 2026-06-21 · via Recent Commits to openclaw:main

@@ -6,7 +6,6 @@ import { copyFile, mkdir, mkdtemp, readFile, rm, unlink, writeFile } from "node:

66

import { tmpdir } from "node:os";

77

import path from "node:path";

88

import { pathToFileURL } from "node:url";

9-

import { normalizeCredentialPayloadForKind } from "../../qa/convex-credential-broker/convex/payload-validation.js";

109

import { fetchJsonWithTimeout, runCommand } from "./telegram-user-credential-io.ts";

1110

import { expandHome, writePrivateJson } from "./telegram-user-credential-paths.ts";

1211

@@ -18,6 +17,9 @@ const DEFAULT_BOT_CREDENTIALS_FILE =

1817

const DEFAULT_CONVEX_ENV_FILE = "~/.codex/skills/custom/telegram-e2e-bot-to-bot/convex.local.env";

1918

const CHUNKED_PAYLOAD_MARKER = "__openclawQaCredentialPayloadChunksV1";

2019

const TELEGRAM_USER_QA_CREDENTIAL_KIND = "telegram-user";

20+

const SHA256_HEX_RE = /^[a-f0-9]{64}$/u;

21+

const TELEGRAM_CHAT_ID_RE = /^-?\d+$/u;

22+

const TELEGRAM_USER_ID_RE = /^\d+$/u;

2123

const DEFAULT_CHUNKED_PAYLOAD_MAX_BYTES = 64 * 1024 * 1024;

2224

const DEFAULT_CHUNKED_PAYLOAD_MAX_CHUNKS = 4096;

2325

const COMMAND_TIMEOUT_MS = optionalPositiveInteger(

@@ -175,8 +177,83 @@ function optionalPositiveInteger(value: string | undefined, fallback: number, la

175177

return parsed;

176178

}

177179180+

function throwCredentialPayloadError(message: string): never {

181+

throw new Error(message);

182+

}

183+184+

function requireTelegramUserPayloadString(payload: Record<string, unknown>, key: string): string {

185+

const raw = payload[key];

186+

if (typeof raw !== "string") {

187+

throwCredentialPayloadError(

188+

`Credential payload for kind "${TELEGRAM_USER_QA_CREDENTIAL_KIND}" must include "${key}" as a string.`,

189+

);

190+

}

191+

const value = raw.trim();

192+

if (!value) {

193+

throwCredentialPayloadError(

194+

`Credential payload for kind "${TELEGRAM_USER_QA_CREDENTIAL_KIND}" must include a non-empty "${key}" value.`,

195+

);

196+

}

197+

return value;

198+

}

199+178200

function parseTelegramUserQaCredentialPayload(payload: Record<string, unknown>): JsonObject {

179-

return normalizeCredentialPayloadForKind(TELEGRAM_USER_QA_CREDENTIAL_KIND, payload);

201+

const groupId = requireTelegramUserPayloadString(payload, "groupId");

202+

if (!TELEGRAM_CHAT_ID_RE.test(groupId)) {

203+

throwCredentialPayloadError(

204+

'Credential payload for kind "telegram-user" must include a numeric "groupId" string.',

205+

);

206+

}

207+

const testerUserId = requireTelegramUserPayloadString(payload, "testerUserId");

208+

if (!TELEGRAM_USER_ID_RE.test(testerUserId)) {

209+

throwCredentialPayloadError(

210+

'Credential payload for kind "telegram-user" must include a numeric "testerUserId" string.',

211+

);

212+

}

213+

const telegramApiId = requireTelegramUserPayloadString(payload, "telegramApiId");

214+

if (!TELEGRAM_USER_ID_RE.test(telegramApiId)) {

215+

throwCredentialPayloadError(

216+

'Credential payload for kind "telegram-user" must include a numeric "telegramApiId" string.',

217+

);

218+

}

219+

const tdlibArchiveSha256 = requireTelegramUserPayloadString(

220+

payload,

221+

"tdlibArchiveSha256",

222+

).toLowerCase();

223+

const desktopTdataArchiveSha256 = requireTelegramUserPayloadString(

224+

payload,

225+

"desktopTdataArchiveSha256",

226+

).toLowerCase();

227+

if (!SHA256_HEX_RE.test(tdlibArchiveSha256)) {

228+

throwCredentialPayloadError(

229+

'Credential payload for kind "telegram-user" must include "tdlibArchiveSha256" as a SHA-256 hex string.',

230+

);

231+

}

232+

if (!SHA256_HEX_RE.test(desktopTdataArchiveSha256)) {

233+

throwCredentialPayloadError(

234+

'Credential payload for kind "telegram-user" must include "desktopTdataArchiveSha256" as a SHA-256 hex string.',

235+

);

236+

}

237+238+

return {

239+

groupId,

240+

sutToken: requireTelegramUserPayloadString(payload, "sutToken"),

241+

testerUserId,

242+

testerUsername: requireTelegramUserPayloadString(payload, "testerUsername"),

243+

telegramApiId,

244+

telegramApiHash: requireTelegramUserPayloadString(payload, "telegramApiHash"),

245+

tdlibDatabaseEncryptionKey: requireTelegramUserPayloadString(

246+

payload,

247+

"tdlibDatabaseEncryptionKey",

248+

),

249+

tdlibArchiveBase64: requireTelegramUserPayloadString(payload, "tdlibArchiveBase64"),

250+

tdlibArchiveSha256,

251+

desktopTdataArchiveBase64: requireTelegramUserPayloadString(

252+

payload,

253+

"desktopTdataArchiveBase64",

254+

),

255+

desktopTdataArchiveSha256,

256+

};

180257

}

181258182259

async function fileSha256(pathValue: string) {