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

推荐订阅源

IT之家
IT之家
Microsoft Azure Blog
Microsoft Azure Blog
人人都是产品经理
人人都是产品经理
博客园 - 聂微东
博客园_首页
阮一峰的网络日志
阮一峰的网络日志
V
V2EX
小众软件
小众软件
F
Fortinet All Blogs
Microsoft Security Blog
Microsoft Security Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
H
Hackread – Cybersecurity News, Data Breaches, AI and More
量子位
Google DeepMind News
Google DeepMind News
Jina AI
Jina AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
aimingoo的专栏
aimingoo的专栏
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
宝玉的分享
宝玉的分享
有赞技术团队
有赞技术团队
J
Java Code Geeks
WordPress大学
WordPress大学
The Cloudflare 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
refactor(qa): share live approval result helpers · opencl...
vincentkoc · 2026-06-20 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -0,0 +1,44 @@

1+

export function formatApprovalResultValue(value: unknown) {

2+

if (typeof value === "string" || typeof value === "number" || typeof value === "boolean") {

3+

return String(value);

4+

}

5+

if (value == null) {

6+

return "<missing>";

7+

}

8+

return JSON.stringify(value) ?? "<unserializable>";

9+

}

10+
11+

export function readAcceptedApprovalRequest(result: unknown) {

12+

const accepted =

13+

typeof result === "object" && result !== null

14+

? (result as { id?: unknown; status?: unknown })

15+

: null;

16+

if (accepted?.status !== "accepted") {

17+

throw new Error(

18+

`approval request status was ${formatApprovalResultValue(

19+

accepted?.status,

20+

)} instead of accepted`,

21+

);

22+

}

23+

return accepted;

24+

}

25+
26+

export function readAcceptedApprovalRequestId(result: unknown) {

27+

const id = readAcceptedApprovalRequest(result).id;

28+

if (typeof id !== "string" || id.trim().length === 0) {

29+

throw new Error(`approval request id was ${formatApprovalResultValue(id)}`);

30+

}

31+

return id;

32+

}

33+
34+

export function assertApprovalDecisionResult(params: { decision: string; result: unknown }) {

35+

const resultDecision =

36+

typeof params.result === "object" && params.result !== null

37+

? (params.result as { decision?: unknown }).decision

38+

: undefined;

39+

if (resultDecision !== params.decision) {

40+

throw new Error(

41+

`approval decision was ${formatApprovalResultValue(resultDecision)} instead of ${params.decision}`,

42+

);

43+

}

44+

}

Original file line numberDiff line numberDiff line change

@@ -22,6 +22,11 @@ import {

2222

acquireQaCredentialLease,

2323

startQaCredentialLeaseHeartbeat,

2424

} from "../shared/credential-lease.runtime.js";

25+

import {

26+

assertApprovalDecisionResult,

27+

formatApprovalResultValue,

28+

readAcceptedApprovalRequestId,

29+

} from "../shared/live-approval-result.js";

2530

import {

2631

appendQaLiveLaneIssue as appendLiveLaneIssue,

2732

buildQaLiveLaneArtifactsError as buildLiveLaneArtifactsError,

@@ -718,39 +723,6 @@ async function listSlackThreadMessages(params: {

718723

return replies.messages ?? [];

719724

}

720725
721-

function formatApprovalResultValue(value: unknown) {

722-

if (typeof value === "string" || typeof value === "number" || typeof value === "boolean") {

723-

return String(value);

724-

}

725-

if (value == null) {

726-

return "<missing>";

727-

}

728-

return JSON.stringify(value) ?? "<unserializable>";

729-

}

730-
731-

function readAcceptedApprovalRequest(result: unknown) {

732-

const accepted =

733-

typeof result === "object" && result !== null

734-

? (result as { id?: unknown; status?: unknown })

735-

: null;

736-

if (accepted?.status !== "accepted") {

737-

throw new Error(

738-

`approval request status was ${formatApprovalResultValue(

739-

accepted?.status,

740-

)} instead of accepted`,

741-

);

742-

}

743-

return accepted;

744-

}

745-
746-

function readAcceptedApprovalRequestId(result: unknown) {

747-

const id = readAcceptedApprovalRequest(result).id;

748-

if (typeof id !== "string" || id.trim().length === 0) {

749-

throw new Error(`approval request id was ${formatApprovalResultValue(id)}`);

750-

}

751-

return id;

752-

}

753-
754726

function collectSlackBlockStringFields(

755727

value: unknown,

756728

fieldName: string,

@@ -1382,21 +1354,6 @@ async function resolveApprovalDecision(params: {

13821354

);

13831355

}

13841356
1385-

function assertApprovalDecisionResult(params: {

1386-

decision: SlackQaApprovalDecision;

1387-

result: unknown;

1388-

}) {

1389-

const resultDecision =

1390-

typeof params.result === "object" && params.result !== null

1391-

? (params.result as { decision?: unknown }).decision

1392-

: undefined;

1393-

if (resultDecision !== params.decision) {

1394-

throw new Error(

1395-

`approval decision was ${formatApprovalResultValue(resultDecision)} instead of ${params.decision}`,

1396-

);

1397-

}

1398-

}

1399-
14001357

async function runSlackApprovalScenario(params: {

14011358

channelId: string;

14021359

context: Omit<SlackQaScenarioContext, "sentTs">;

Original file line numberDiff line numberDiff line change

@@ -30,6 +30,11 @@ import {

3030

acquireQaCredentialLease,

3131

startQaCredentialLeaseHeartbeat,

3232

} from "../shared/credential-lease.runtime.js";

33+

import {

34+

assertApprovalDecisionResult,

35+

formatApprovalResultValue,

36+

readAcceptedApprovalRequestId,

37+

} from "../shared/live-approval-result.js";

3338

import {

3439

appendQaLiveLaneIssue as appendLiveLaneIssue,

3540

redactQaLiveLaneDetails,

@@ -2135,39 +2140,6 @@ async function startWhatsAppQaDriverSessionWithRetry(params: { authDir: string }

21352140

throw new Error("unreachable WhatsApp QA driver retry loop exit");

21362141

}

21372142
2138-

function formatApprovalResultValue(value: unknown) {

2139-

if (typeof value === "string" || typeof value === "number" || typeof value === "boolean") {

2140-

return String(value);

2141-

}

2142-

if (value == null) {

2143-

return "<missing>";

2144-

}

2145-

return JSON.stringify(value) ?? "<unserializable>";

2146-

}

2147-
2148-

function readAcceptedApprovalRequest(result: unknown) {

2149-

const accepted =

2150-

typeof result === "object" && result !== null

2151-

? (result as { id?: unknown; status?: unknown })

2152-

: null;

2153-

if (accepted?.status !== "accepted") {

2154-

throw new Error(

2155-

`approval request status was ${formatApprovalResultValue(

2156-

accepted?.status,

2157-

)} instead of accepted`,

2158-

);

2159-

}

2160-

return accepted;

2161-

}

2162-
2163-

function readAcceptedApprovalRequestId(result: unknown) {

2164-

const id = readAcceptedApprovalRequest(result).id;

2165-

if (typeof id !== "string" || id.trim().length === 0) {

2166-

throw new Error(`approval request id was ${formatApprovalResultValue(id)}`);

2167-

}

2168-

return id;

2169-

}

2170-
21712143

async function requestWhatsAppApproval(params: {

21722144

approvalId: string;

21732145

driverPhoneE164: string;

@@ -2261,21 +2233,6 @@ async function resolveApprovalDecision(params: {

22612233

);

22622234

}

22632235
2264-

function assertApprovalDecisionResult(params: {

2265-

decision: WhatsAppQaApprovalDecision;

2266-

result: unknown;

2267-

}) {

2268-

const resultDecision =

2269-

typeof params.result === "object" && params.result !== null

2270-

? (params.result as { decision?: unknown }).decision

2271-

: undefined;

2272-

if (resultDecision !== params.decision) {

2273-

throw new Error(

2274-

`approval decision was ${formatApprovalResultValue(resultDecision)} instead of ${params.decision}`,

2275-

);

2276-

}

2277-

}

2278-
22792236

function matchesWhatsAppApprovalPendingText(params: {

22802237

approvalId: string;

22812238

approvalKind: WhatsAppQaApprovalKind;