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

推荐订阅源

博客园 - 司徒正美
大猫的无限游戏
大猫的无限游戏
腾讯CDC
J
Java Code Geeks
博客园 - 【当耐特】
Microsoft Azure Blog
Microsoft Azure Blog
V
Visual Studio Blog
人人都是产品经理
人人都是产品经理
博客园 - Franky
博客园 - 聂微东
阮一峰的网络日志
阮一峰的网络日志
美团技术团队
云风的 BLOG
云风的 BLOG
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
U
Unit 42
雷峰网
雷峰网
B
Blog RSS Feed
博客园_首页
量子位
F
Fortinet All Blogs
罗磊的独立博客
H
Hackread – Cybersecurity News, Data Breaches, AI and More
酷 壳 – CoolShell
酷 壳 – CoolShell
C
Check Point 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
fix(qa): avoid direct smoke artifact collisions · opencla...
vincentkoc · 2026-06-23 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -1,6 +1,7 @@

11

// Telegram package Docker harness.

22

// Runs QA live transport code against the package candidate installed in Docker.

33
4+

import { randomUUID } from "node:crypto";

45

import fs from "node:fs/promises";

56

import path from "node:path";

67

import { pathToFileURL } from "node:url";

@@ -40,6 +41,17 @@ function resolveCredentialRole(env: NodeJS.ProcessEnv) {

4041

return env.OPENCLAW_NPM_TELEGRAM_CREDENTIAL_ROLE ?? env.OPENCLAW_QA_CREDENTIAL_ROLE;

4142

}

4243
44+

function createRunId() {

45+

return `${Date.now().toString(36)}-${randomUUID().slice(0, 8)}`;

46+

}

47+
48+

function resolvePackageTelegramOutputDir(env: NodeJS.ProcessEnv, repoRoot: string) {

49+

return (

50+

env.OPENCLAW_NPM_TELEGRAM_OUTPUT_DIR?.trim() ||

51+

path.join(repoRoot, ".artifacts", "qa-e2e", `npm-telegram-live-${createRunId()}`)

52+

);

53+

}

54+
4355

const DEFAULT_RTT_CHECK_ID = "telegram-mentioned-message-reply";

4456
4557

function resolveRttOptions(env: NodeJS.ProcessEnv, selectedScenarioIds: readonly string[] = []) {

@@ -107,9 +119,7 @@ async function main() {

107119

const sutOpenClawCommand = await resolveTrustedOpenClawCommand(rawSutOpenClawCommand);

108120
109121

const repoRoot = path.resolve(process.env.OPENCLAW_NPM_TELEGRAM_REPO_ROOT ?? process.cwd());

110-

const outputDir =

111-

process.env.OPENCLAW_NPM_TELEGRAM_OUTPUT_DIR?.trim() ||

112-

path.join(repoRoot, ".artifacts", "qa-e2e", `npm-telegram-live-${Date.now().toString(36)}`);

122+

const outputDir = resolvePackageTelegramOutputDir(process.env, repoRoot);

113123

const scenarioIds = splitCsv(process.env.OPENCLAW_NPM_TELEGRAM_SCENARIOS);

114124

const result = await runTelegramQaLive({

115125

env: process.env,

@@ -154,6 +164,7 @@ if (process.argv[1] && import.meta.url === pathToFileURL(process.argv[1]).href)

154164
155165

export const testing = {

156166

parsePositiveIntegerEnv,

167+

resolvePackageTelegramOutputDir,

157168

resolveCredentialRole,

158169

resolveCredentialSource,

159170

resolveRttOptions,

Original file line numberDiff line numberDiff line change

@@ -201,6 +201,10 @@ function readPositiveIntegerEnv(

201201

return parsed;

202202

}

203203
204+

function createOtelSmokeRunId(): string {

205+

return `${Date.now().toString(36)}-${randomUUID().slice(0, 8)}`;

206+

}

207+
204208

function oversizedBodyError(

205209

label: string,

206210

actualBytes: number,

@@ -229,7 +233,7 @@ function parseArgs(argv: string[]): CliOptions {

229233

const options: CliOptions = {

230234

collectorMode: "local",

231235

logsExporter: "otlp",

232-

outputDir: path.join(".artifacts", "qa-e2e", `otel-smoke-${Date.now().toString(36)}`),

236+

outputDir: path.join(".artifacts", "qa-e2e", `otel-smoke-${createOtelSmokeRunId()}`),

233237

providerMode: "mock-openai",

234238

scenarioId: DEFAULT_SCENARIO_ID,

235239

help: false,

Original file line numberDiff line numberDiff line change

@@ -172,6 +172,18 @@ describe("qa-otel-smoke receiver bounds", () => {

172172

).toBe("custom-stdout-smoke");

173173

});

174174
175+

it("uses unique default output dirs", () => {

176+

const firstOutputDir = testing.parseArgs([]).outputDir;

177+

const secondOutputDir = testing.parseArgs([]).outputDir;

178+
179+

expect(path.dirname(firstOutputDir)).toBe(path.join(".artifacts", "qa-e2e"));

180+

expect(path.basename(firstOutputDir)).toMatch(/^otel-smoke-[a-z0-9]+-[a-f0-9]{8}$/u);

181+

expect(secondOutputDir).not.toBe(firstOutputDir);

182+

expect(testing.parseArgs(["--output-dir", ".artifacts/custom"]).outputDir).toBe(

183+

".artifacts/custom",

184+

);

185+

});

186+
175187

it("parses body-size limit env values as strict positive integers", () => {

176188

expect(testing.readPositiveIntegerEnv("OTEL_TEST_LIMIT", 64, {})).toBe(64);

177189

expect(

Original file line numberDiff line numberDiff line change

@@ -148,6 +148,22 @@ describe("package Telegram live Docker E2E", () => {

148148

);

149149

});

150150
151+

it("uses unique direct-run output dirs by default", () => {

152+

const repoRoot = mkTempRoot();

153+

const firstDir = testing.resolvePackageTelegramOutputDir({}, repoRoot);

154+

const secondDir = testing.resolvePackageTelegramOutputDir({}, repoRoot);

155+
156+

expect(path.dirname(firstDir)).toBe(path.join(repoRoot, ".artifacts", "qa-e2e"));

157+

expect(path.basename(firstDir)).toMatch(/^npm-telegram-live-[a-z0-9]+-[a-f0-9]{8}$/u);

158+

expect(secondDir).not.toBe(firstDir);

159+

expect(

160+

testing.resolvePackageTelegramOutputDir(

161+

{ OPENCLAW_NPM_TELEGRAM_OUTPUT_DIR: ".artifacts/custom" },

162+

repoRoot,

163+

),

164+

).toBe(".artifacts/custom");

165+

});

166+
151167

it("mounts configured output paths before entering the container", () => {

152168

const script = readFileSync(DOCKER_SCRIPT_PATH, "utf8");

153169

const dockerEnvStart = script.indexOf("docker_env=(");