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

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
G
Google Developers Blog
V
V2EX
美团技术团队
H
Help Net Security
月光博客
月光博客
爱范儿
爱范儿
Engineering at Meta
Engineering at Meta
The Cloudflare Blog
U
Unit 42
大猫的无限游戏
大猫的无限游戏
Recent Announcements
Recent Announcements
A
About on SuperTechFans
博客园 - Franky
The GitHub Blog
The GitHub Blog
N
Netflix TechBlog - Medium
人人都是产品经理
人人都是产品经理
博客园 - 司徒正美
MyScale Blog
MyScale Blog
B
Blog
雷峰网
雷峰网
Y
Y Combinator Blog
云风的 BLOG
云风的 BLOG
T
The Blog of Author Tim Ferriss

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(qa): preserve Slack live failure artifacts · opencla...
vincentkoc · 2026-05-04 · via Recent Commits to openclaw:main

@@ -122,6 +122,9 @@ type SlackQaSummary = {

122122

startedAt: string;

123123

};

124124125+

type SlackCredentialLease = Awaited<ReturnType<typeof acquireQaCredentialLease<SlackQaRuntimeEnv>>>;

126+

type SlackCredentialHeartbeat = ReturnType<typeof startQaCredentialLeaseHeartbeat>;

127+125128

const SLACK_QA_CAPTURE_CONTENT_ENV = "OPENCLAW_QA_SLACK_CAPTURE_CONTENT";

126129

const QA_REDACT_PUBLIC_METADATA_ENV = "OPENCLAW_QA_REDACT_PUBLIC_METADATA";

127130

const SLACK_QA_ENV_KEYS = [

@@ -212,6 +215,23 @@ function isTruthyOptIn(value: string | undefined) {

212215

return normalized === "1" || normalized === "true" || normalized === "yes";

213216

}

214217218+

function inferSlackCredentialSource(

219+

value: string | undefined,

220+

env: NodeJS.ProcessEnv = process.env,

221+

): "convex" | "env" {

222+

const normalized =

223+

value?.trim().toLowerCase() || env.OPENCLAW_QA_CREDENTIAL_SOURCE?.trim().toLowerCase();

224+

return normalized === "convex" ? "convex" : "env";

225+

}

226+227+

function inferSlackCredentialRole(value: string | undefined): QaCredentialRole | undefined {

228+

const normalized = value?.trim().toLowerCase();

229+

if (normalized === "ci" || normalized === "maintainer") {

230+

return normalized;

231+

}

232+

return undefined;

233+

}

234+215235

function normalizeSlackId(value: string, label: string) {

216236

const normalized = value.trim();

217237

if (!/^[A-Z][A-Z0-9]+$/.test(normalized)) {

@@ -607,20 +627,8 @@ export async function runSlackQaLive(params: {

607627

const alternateModel = params.alternateModel?.trim() || defaultQaModelForMode(providerMode, true);

608628

const sutAccountId = params.sutAccountId?.trim() || "sut";

609629

const scenarios = findScenario(params.scenarioIds);

610-611-

const credentialLease = await acquireQaCredentialLease({

612-

kind: "slack",

613-

source: params.credentialSource,

614-

role: params.credentialRole,

615-

resolveEnvPayload: () => resolveSlackQaRuntimeEnv(),

616-

parsePayload: parseSlackQaCredentialPayload,

617-

});

618-

const leaseHeartbeat = startQaCredentialLeaseHeartbeat(credentialLease);

619-

const assertLeaseHealthy = () => {

620-

leaseHeartbeat.throwIfFailed();

621-

};

622-623-

const runtimeEnv = credentialLease.payload;

630+

const requestedCredentialSource = inferSlackCredentialSource(params.credentialSource);

631+

const requestedCredentialRole = inferSlackCredentialRole(params.credentialRole);

624632

const redactPublicMetadata = isTruthyOptIn(process.env[QA_REDACT_PUBLIC_METADATA_ENV]);

625633

const includeObservedMessageContent = isTruthyOptIn(process.env[SLACK_QA_CAPTURE_CONTENT_ENV]);

626634

const startedAt = new Date().toISOString();

@@ -629,18 +637,37 @@ export async function runSlackQaLive(params: {

629637

const cleanupIssues: string[] = [];

630638

const gatewayDebugDirPath = path.join(outputDir, "gateway-debug");

631639

let preservedGatewayDebugArtifacts = false;

640+

let credentialLease: SlackCredentialLease | undefined;

641+

let leaseHeartbeat: SlackCredentialHeartbeat | undefined;

642+

let runtimeEnv: SlackQaRuntimeEnv | undefined;

632643633644

try {

645+

credentialLease = await acquireQaCredentialLease({

646+

kind: "slack",

647+

source: params.credentialSource,

648+

role: params.credentialRole,

649+

resolveEnvPayload: () => resolveSlackQaRuntimeEnv(),

650+

parsePayload: parseSlackQaCredentialPayload,

651+

});

652+

leaseHeartbeat = startQaCredentialLeaseHeartbeat(credentialLease);

653+

const assertLeaseHealthy = () => {

654+

leaseHeartbeat?.throwIfFailed();

655+

};

656+

const activeRuntimeEnv = credentialLease.payload;

657+

runtimeEnv = activeRuntimeEnv;

658+634659

const [driverIdentity, sutIdentity] = await Promise.all([

635-

getSlackIdentity(runtimeEnv.driverBotToken),

636-

getSlackIdentity(runtimeEnv.sutBotToken),

660+

getSlackIdentity(activeRuntimeEnv.driverBotToken),

661+

getSlackIdentity(activeRuntimeEnv.sutBotToken),

637662

]);

638663

if (driverIdentity.userId === sutIdentity.userId) {

639664

throw new Error("Slack QA requires two distinct bots for driver and SUT.");

640665

}

641666642-

const driverClient = createSlackWriteClient(runtimeEnv.driverBotToken, { timeout: 15_000 });

643-

const sutReadClient = createSlackWebClient(runtimeEnv.sutBotToken, { timeout: 15_000 });

667+

const driverClient = createSlackWriteClient(activeRuntimeEnv.driverBotToken, {

668+

timeout: 15_000,

669+

});

670+

const sutReadClient = createSlackWebClient(activeRuntimeEnv.sutBotToken, { timeout: 15_000 });

644671

const gatewayHarness = await startQaLiveLaneGateway({

645672

repoRoot,

646673

transport: {

@@ -655,11 +682,11 @@ export async function runSlackQaLive(params: {

655682

controlUiEnabled: false,

656683

mutateConfig: (cfg) =>

657684

buildSlackQaConfig(cfg, {

658-

channelId: runtimeEnv.channelId,

685+

channelId: activeRuntimeEnv.channelId,

659686

driverBotUserId: driverIdentity.userId,

660687

sutAccountId,

661-

sutAppToken: runtimeEnv.sutAppToken,

662-

sutBotToken: runtimeEnv.sutBotToken,

688+

sutAppToken: activeRuntimeEnv.sutAppToken,

689+

sutBotToken: activeRuntimeEnv.sutBotToken,

663690

}),

664691

});

665692

try {

@@ -671,13 +698,13 @@ export async function runSlackQaLive(params: {

671698

const requestStartedAt = new Date();

672699

try {

673700

const sent = await sendSlackChannelMessage({

674-

channelId: runtimeEnv.channelId,

701+

channelId: activeRuntimeEnv.channelId,

675702

client: driverClient,

676703

text: scenarioRun.input,

677704

});

678705

if (scenarioRun.expectReply) {

679706

const reply = await waitForSlackScenarioReply({

680-

channelId: runtimeEnv.channelId,

707+

channelId: activeRuntimeEnv.channelId,

681708

client: sutReadClient,

682709

matchText: scenarioRun.matchText,

683710

observedMessages,

@@ -700,7 +727,7 @@ export async function runSlackQaLive(params: {

700727

});

701728

} else {

702729

await waitForSlackNoReply({

703-

channelId: runtimeEnv.channelId,

730+

channelId: activeRuntimeEnv.channelId,

704731

client: sutReadClient,

705732

matchText: scenarioRun.matchText,

706733

observedMessages,

@@ -760,15 +787,19 @@ export async function runSlackQaLive(params: {

760787

details: formatErrorMessage(error),

761788

});

762789

} finally {

763-

try {

764-

await leaseHeartbeat.stop();

765-

} catch (error) {

766-

appendLiveLaneIssue(cleanupIssues, "credential heartbeat stop failed", error);

790+

if (leaseHeartbeat) {

791+

try {

792+

await leaseHeartbeat.stop();

793+

} catch (error) {

794+

appendLiveLaneIssue(cleanupIssues, "credential heartbeat stop failed", error);

795+

}

767796

}

768-

try {

769-

await credentialLease.release();

770-

} catch (error) {

771-

appendLiveLaneIssue(cleanupIssues, "credential release failed", error);

797+

if (credentialLease) {

798+

try {

799+

await credentialLease.release();

800+

} catch (error) {

801+

appendLiveLaneIssue(cleanupIssues, "credential release failed", error);

802+

}

772803

}

773804

}

774805

@@ -779,14 +810,24 @@ export async function runSlackQaLive(params: {

779810

const passed = scenarioResults.filter((entry) => entry.status === "pass").length;

780811

const failed = scenarioResults.filter((entry) => entry.status === "fail").length;

781812

const summary: SlackQaSummary = {

782-

credentials: {

783-

source: credentialLease.source,

784-

kind: credentialLease.kind,

785-

role: credentialLease.role,

786-

credentialId: redactPublicMetadata ? undefined : credentialLease.credentialId,

787-

ownerId: redactPublicMetadata ? undefined : credentialLease.ownerId,

788-

},

789-

channelId: redactPublicMetadata ? "<redacted>" : runtimeEnv.channelId,

813+

credentials: credentialLease

814+

? {

815+

source: credentialLease.source,

816+

kind: credentialLease.kind,

817+

role: credentialLease.role,

818+

credentialId: redactPublicMetadata ? undefined : credentialLease.credentialId,

819+

ownerId: redactPublicMetadata ? undefined : credentialLease.ownerId,

820+

}

821+

: {

822+

source: requestedCredentialSource,

823+

kind: "slack",

824+

role: requestedCredentialRole,

825+

},

826+

channelId: runtimeEnv

827+

? redactPublicMetadata

828+

? "<redacted>"

829+

: runtimeEnv.channelId

830+

: "<unavailable>",

790831

startedAt,

791832

finishedAt,

792833

cleanupIssues,

@@ -813,9 +854,9 @@ export async function runSlackQaLive(params: {

813854

await fs.writeFile(

814855

reportPath,

815856

`${renderSlackQaMarkdown({

816-

channelId: runtimeEnv.channelId,

857+

channelId: runtimeEnv?.channelId ?? "<unavailable>",

817858

cleanupIssues,

818-

credentialSource: credentialLease.source,

859+

credentialSource: credentialLease?.source ?? requestedCredentialSource,

819860

finishedAt,

820861

gatewayDebugDirPath: preservedGatewayDebugArtifacts ? gatewayDebugDirPath : undefined,

821862

redactMetadata: redactPublicMetadata,