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

推荐订阅源

WordPress大学
WordPress大学
Engineering at Meta
Engineering at Meta
D
DataBreaches.Net
月光博客
月光博客
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
U
Unit 42
腾讯CDC
爱范儿
爱范儿
J
Java Code Geeks
有赞技术团队
有赞技术团队
Blog — PlanetScale
Blog — PlanetScale
N
Netflix TechBlog - Medium
B
Blog
Stack Overflow Blog
Stack Overflow Blog
GbyAI
GbyAI
T
The Blog of Author Tim Ferriss
小众软件
小众软件
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
Microsoft Azure Blog
Microsoft Azure Blog
T
Tailwind CSS 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
matrix: stream tool progress in previews · openclaw/openc...
gumadeiras · 2026-04-28 · via Recent Commits to openclaw:main

@@ -1,6 +1,22 @@

11

import { describe, expect, it, vi } from "vitest";

22

import { matrixApprovalNativeRuntime } from "./approval-handler.runtime.js";

334+

type MatrixDeliverPendingParams = Parameters<

5+

typeof matrixApprovalNativeRuntime.transport.deliverPending

6+

>[0];

7+8+

function buildMatrixApprovalRoomTarget(

9+

roomId: string,

10+

): MatrixDeliverPendingParams["plannedTarget"] {

11+

return {

12+

surface: "approver-dm",

13+

target: {

14+

to: `room:${roomId}`,

15+

},

16+

reason: "preferred",

17+

};

18+

}

19+420

describe("matrixApprovalNativeRuntime", () => {

521

it("sends versioned Matrix approval content with pending exec approvals", async () => {

622

const sendSingleTextMessage = vi.fn().mockResolvedValue({

@@ -10,6 +26,35 @@ describe("matrixApprovalNativeRuntime", () => {

1026

roomId: "!room:example.org",

1127

});

1228

const reactMessage = vi.fn().mockResolvedValue(undefined);

29+

const view = {

30+

approvalKind: "exec",

31+

approvalId: "req-1",

32+

phase: "pending",

33+

title: "Exec Approval Required",

34+

description: "A command needs your approval.",

35+

metadata: [],

36+

ask: "on-request",

37+

agentId: "agent-1",

38+

commandText: "echo hi",

39+

commandPreview: "echo hi",

40+

cwd: "/repo",

41+

host: "gateway",

42+

actions: [

43+

{

44+

decision: "allow-once",

45+

label: "Allow Once",

46+

style: "success",

47+

command: "/approve req-1 allow-once",

48+

},

49+

{

50+

decision: "deny",

51+

label: "Deny",

52+

style: "danger",

53+

command: "/approve req-1 deny",

54+

},

55+

],

56+

expiresAtMs: 1_000,

57+

} satisfies MatrixDeliverPendingParams["view"];

1358

const pendingPayload = await matrixApprovalNativeRuntime.presentation.buildPendingPayload({

1459

cfg: {} as never,

1560

accountId: "default",

@@ -27,35 +72,7 @@ describe("matrixApprovalNativeRuntime", () => {

2772

},

2873

approvalKind: "exec",

2974

nowMs: 100,

30-

view: {

31-

approvalKind: "exec",

32-

approvalId: "req-1",

33-

phase: "pending",

34-

title: "Exec Approval Required",

35-

description: "A command needs your approval.",

36-

metadata: [],

37-

ask: "on-request",

38-

agentId: "agent-1",

39-

commandText: "echo hi",

40-

commandPreview: "echo hi",

41-

cwd: "/repo",

42-

host: "gateway",

43-

actions: [

44-

{

45-

decision: "allow-once",

46-

label: "Allow Once",

47-

style: "success",

48-

command: "/approve req-1 allow-once",

49-

},

50-

{

51-

decision: "deny",

52-

label: "Deny",

53-

style: "danger",

54-

command: "/approve req-1 deny",

55-

},

56-

],

57-

expiresAtMs: 1_000,

58-

} as never,

75+

view,

5976

});

60776178

await matrixApprovalNativeRuntime.transport.deliverPending({

@@ -70,16 +87,12 @@ describe("matrixApprovalNativeRuntime", () => {

7087

},

7188

request: {} as never,

7289

approvalKind: "exec",

73-

plannedTarget: {

74-

surface: "approver-dm",

75-

target: { to: "room:!room:example.org" },

76-

reason: "preferred",

77-

} as never,

90+

plannedTarget: buildMatrixApprovalRoomTarget("!room:example.org"),

7891

preparedTarget: {

7992

to: "room:!room:example.org",

8093

roomId: "!room:example.org",

8194

},

82-

view: {} as never,

95+

view,

8396

pendingPayload,

8497

});

8598

@@ -175,6 +188,24 @@ describe("matrixApprovalNativeRuntime", () => {

175188

roomId: "!room:example.org",

176189

});

177190

const reactMessage = vi.fn().mockResolvedValue(undefined);

191+

const view = {

192+

approvalKind: "exec",

193+

approvalId: "req-1",

194+

phase: "pending",

195+

title: "Exec Approval Required",

196+

description: "A command needs your approval.",

197+

metadata: [],

198+

commandText: "echo hi",

199+

actions: [

200+

{

201+

decision: "allow-once",

202+

label: "Allow Once",

203+

style: "success",

204+

command: "/approve req-1 allow-once",

205+

},

206+

],

207+

expiresAtMs: 1_000,

208+

} satisfies MatrixDeliverPendingParams["view"];

178209

const pendingPayload = await matrixApprovalNativeRuntime.presentation.buildPendingPayload({

179210

cfg: {} as never,

180211

accountId: "default",

@@ -189,24 +220,7 @@ describe("matrixApprovalNativeRuntime", () => {

189220

},

190221

approvalKind: "exec",

191222

nowMs: 100,

192-

view: {

193-

approvalKind: "exec",

194-

approvalId: "req-1",

195-

phase: "pending",

196-

title: "Exec Approval Required",

197-

description: "A command needs your approval.",

198-

metadata: [],

199-

commandText: "echo hi",

200-

actions: [

201-

{

202-

decision: "allow-once",

203-

label: "Allow Once",

204-

style: "success",

205-

command: "/approve req-1 allow-once",

206-

},

207-

],

208-

expiresAtMs: 1_000,

209-

} as never,

223+

view,

210224

});

211225212226

const entry = await matrixApprovalNativeRuntime.transport.deliverPending({

@@ -222,16 +236,12 @@ describe("matrixApprovalNativeRuntime", () => {

222236

},

223237

request: {} as never,

224238

approvalKind: "exec",

225-

plannedTarget: {

226-

surface: "approver-dm",

227-

target: { to: "room:!room:example.org" },

228-

reason: "preferred",

229-

} as never,

239+

plannedTarget: buildMatrixApprovalRoomTarget("!room:example.org"),

230240

preparedTarget: {

231241

to: "room:!room:example.org",

232242

roomId: "!room:example.org",

233243

},

234-

view: {} as never,

244+

view,

235245

pendingPayload,

236246

});

237247