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

推荐订阅源

月光博客
月光博客
D
Docker
腾讯CDC
J
Java Code Geeks
大猫的无限游戏
大猫的无限游戏
The Cloudflare Blog
Martin Fowler
Martin Fowler
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
博客园 - 三生石上(FineUI控件)
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
IT之家
IT之家
WordPress大学
WordPress大学
M
MIT News - Artificial intelligence
爱范儿
爱范儿
Microsoft Azure Blog
Microsoft Azure Blog
Vercel News
Vercel News
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
小众软件
小众软件
N
Netflix TechBlog - Medium
T
Tailwind CSS Blog
Engineering at Meta
Engineering at Meta
博客园 - 【当耐特】

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): preserve WhatsApp live failure diagnostics · ope...
vincentkoc · 2026-06-16 · via Recent Commits to openclaw:main

@@ -1895,6 +1895,7 @@ async function waitForScenarioObservedMessage(

18951895

label: string;

18961896

match: (message: WhatsAppQaDriverObservedMessage) => boolean;

18971897

}>;

1898+

expectedSender?: (message: WhatsAppQaDriverObservedMessage) => boolean;

18981899

match: (message: WhatsAppQaDriverObservedMessage) => boolean;

18991900

observedAfter?: Date;

19001901

timeoutMs?: number;

@@ -1906,7 +1907,8 @@ async function waitForScenarioObservedMessage(

19061907

observedAfter: params.observedAfter,

19071908

timeoutMs: params.timeoutMs ?? 45_000,

19081909

match: (candidate) =>

1909-

candidate.fromPhoneE164 === context.sutPhoneE164 && params.match(candidate),

1910+

(params.expectedSender?.(candidate) ?? candidate.fromPhoneE164 === context.sutPhoneE164) &&

1911+

params.match(candidate),

19101912

});

19111913

} catch (error) {

19121914

if (/\btimed out waiting for WhatsApp QA driver message\b/iu.test(formatErrorMessage(error))) {

@@ -2522,6 +2524,8 @@ async function runWhatsAppScenario(params: {

25222524

sutAuthDir: string;

25232525

sutPhoneE164: string;

25242526

groupJid?: string;

2527+

onGatewayDebugPreserveFailure?: (error: unknown) => void;

2528+

onGatewayDebugPreserved?: () => void;

25252529

}): Promise<WhatsAppQaScenarioResult> {

25262530

const scenarioRun = params.scenario.buildRun();

25272531

if (scenarioRun.kind !== "approval" && scenarioRun.target === "group" && !params.groupJid) {

@@ -2709,26 +2713,19 @@ async function runWhatsAppScenario(params: {

27092713

details: "no reply",

27102714

};

27112715

}

2712-

const reply = await params.driver.waitForMessage({

2716+

const reply = await waitForScenarioObservedMessage(scenarioContext, {

27132717

observedAfter: requestStartedAt,

27142718

timeoutMs: params.scenario.timeoutMs,

2715-

match: (message) =>

2716-

(scenarioRun.target === "group"

2719+

expectedSender: (message) =>

2720+

scenarioRun.target === "group"

27172721

? message.fromJid === params.groupJid

2718-

: message.fromPhoneE164 === params.sutPhoneE164) &&

2719-

messageMatches(message as WhatsAppObservedMessage, scenarioRun.matchText),

2722+

: message.fromPhoneE164 === params.sutPhoneE164,

2723+

match: (message) => messageMatches(message as WhatsAppObservedMessage, scenarioRun.matchText),

27202724

});

2721-

const observed: WhatsAppObservedMessage = {

2722-

...reply,

2723-

matchedScenario: true,

2724-

scenarioId: params.scenario.id,

2725-

scenarioTitle: params.scenario.title,

2726-

};

27272725

scenarioRun.verify?.(reply, scenarioContext);

2728-

params.observedMessages.push(observed);

27292726

const afterReplyDetails = await scenarioRun.afterReply?.(reply, scenarioContext);

27302727

const batchDetails = await assertWhatsAppScenarioMessageBatch({

2731-

alreadyRecordedMessageIds: new Set(observed.messageId ? [observed.messageId] : []),

2728+

alreadyRecordedMessageIds: new Set(reply.messageId ? [reply.messageId] : []),

27322729

context: scenarioContext,

27332730

observedAfter: requestStartedAt,

27342731

run: scenarioRun,

@@ -2754,8 +2751,13 @@ async function runWhatsAppScenario(params: {

27542751

},

27552752

};

27562753

} catch (error) {

2757-

preservedGatewayDebug = true;

2758-

await gatewayHarness.stop({ preserveToDir: params.gatewayDebugDirPath }).catch(() => {});

2754+

try {

2755+

await gatewayHarness.stop({ preserveToDir: params.gatewayDebugDirPath });

2756+

preservedGatewayDebug = true;

2757+

params.onGatewayDebugPreserved?.();

2758+

} catch (preserveError) {

2759+

params.onGatewayDebugPreserveFailure?.(preserveError);

2760+

}

27592761

throw error;

27602762

} finally {

27612763

if (!preservedGatewayDebug) {

@@ -3074,6 +3076,8 @@ export async function runWhatsAppQaLive(params: {

30743076

}

30753077

let driverAttempt = 1;

30763078

while (true) {

3079+

let scenarioGatewayDebugPreserved = false;

3080+

const scenarioGatewayDebugPreserveFailures: unknown[] = [];

30773081

try {

30783082

const result = await runWhatsAppScenario({

30793083

driver: activeDriver,

@@ -3090,6 +3094,12 @@ export async function runWhatsAppQaLive(params: {

30903094

sutAccountId,

30913095

sutAuthDir,

30923096

sutPhoneE164: runtimeEnv.sutPhoneE164,

3097+

onGatewayDebugPreserved: () => {

3098+

scenarioGatewayDebugPreserved = true;

3099+

},

3100+

onGatewayDebugPreserveFailure: (error) => {

3101+

scenarioGatewayDebugPreserveFailures.push(error);

3102+

},

30933103

});

30943104

const recordedResult =

30953105

driverAttempt > 1

@@ -3126,7 +3136,12 @@ export async function runWhatsAppQaLive(params: {

31263136

closeDriverSession = () => activeDriver.close();

31273137

continue;

31283138

}

3129-

preservedGatewayDebugArtifacts = true;

3139+

if (scenarioGatewayDebugPreserved) {

3140+

preservedGatewayDebugArtifacts = true;

3141+

}

3142+

for (const preserveError of scenarioGatewayDebugPreserveFailures) {

3143+

appendLiveLaneIssue(cleanupIssues, "gateway debug preserve failed", preserveError);

3144+

}

31303145

const result: WhatsAppQaScenarioResult = {

31313146

id: scenario.id,

31323147

title: scenario.title,

@@ -3286,6 +3301,7 @@ export const testing = {

32863301

parseWhatsAppQaCredentialPayload,

32873302

renderWhatsAppQaMarkdown,

32883303

runWhatsAppStructuredInboundChecks,

3304+

waitForScenarioObservedMessage,

32893305

redactWhatsAppQaScenarioResults,

32903306

resolveWhatsAppQaMessageTargets,

32913307

resolveWhatsAppQaRuntimeEnv,