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

推荐订阅源

腾讯CDC
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 叶小钗
人人都是产品经理
人人都是产品经理
博客园 - 聂微东
The Cloudflare Blog
爱范儿
爱范儿
阮一峰的网络日志
阮一峰的网络日志
WordPress大学
WordPress大学
小众软件
小众软件
博客园 - 三生石上(FineUI控件)
Last Week in AI
Last Week in AI
Jina AI
Jina AI
V
V2EX
罗磊的独立博客
V
Visual Studio Blog
A
About on SuperTechFans
IT之家
IT之家
P
Proofpoint News Feed
B
Blog
博客园 - Franky
Blog — PlanetScale
Blog — PlanetScale
Google DeepMind News
Google DeepMind News
Y
Y Combinator 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(qqbot): gate fallback approval buttons (#87154) · ope...
eleqtrizit · 2026-05-27 · via Recent Commits to openclaw:main

@@ -1,5 +1,6 @@

11

import type { OpenClawConfig } from "openclaw/plugin-sdk/config-contracts";

22

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

3+

import { createSdkAccessAdapter } from "../../bridge/sdk-adapter.js";

34

import { registerPlatformAdapter, type PlatformAdapter } from "../adapter/index.js";

45

import type { InteractionEvent } from "../types.js";

56

import { createInteractionHandler } from "./interaction-handler.js";

@@ -17,13 +18,17 @@ vi.mock("../messaging/sender.js", () => ({

17181819

const resolveApprovalMock = vi.fn(async () => true);

192020-

const account: GatewayAccount = {

21-

accountId: "default",

22-

appId: "app",

23-

clientSecret: "secret",

24-

markdownSupport: false,

25-

config: {},

26-

};

21+

function makeAccount(config: GatewayAccount["config"] = {}): GatewayAccount {

22+

return {

23+

accountId: "default",

24+

appId: "app",

25+

clientSecret: "secret",

26+

markdownSupport: false,

27+

config,

28+

};

29+

}

30+31+

const account = makeAccount();

27322833

const runtime = {} as GatewayPluginRuntime;

2934

@@ -42,12 +47,13 @@ function makeRestrictedCfg(approvers: string[]): OpenClawConfig {

4247

} as OpenClawConfig;

4348

}

444945-

function makeUnrestrictedCfg(): OpenClawConfig {

50+

function makeCommandAuthorizedFallbackCfg(): OpenClawConfig {

4651

return {

4752

channels: {

4853

qqbot: {

4954

appId: "app",

5055

clientSecret: "secret",

56+

allowFrom: ["ATTACKER_OPENID"],

5157

},

5258

},

5359

} as OpenClawConfig;

@@ -172,9 +178,40 @@ describe("createInteractionHandler approval buttons", () => {

172178

);

173179

});

174180175-

it("allows approval button clicks when exec approvals are not configured", async () => {

181+

it("resolves fallback approval buttons from explicit command-authorized senders", async () => {

182+

const handler = createInteractionHandler(account, runtime, undefined, {

183+

getActiveCfg: () => makeCommandAuthorizedFallbackCfg(),

184+

});

185+186+

handler(makeApprovalEvent());

187+188+

await vi.waitFor(() =>

189+

expect(resolveApprovalMock).toHaveBeenCalledWith("exec:abc12345", "allow-once"),

190+

);

191+

});

192+193+

it("delegates fallback approval button auth to the gateway command resolver", async () => {

194+

const access = createSdkAccessAdapter();

176195

const handler = createInteractionHandler(account, runtime, undefined, {

177-

getActiveCfg: () => makeUnrestrictedCfg(),

196+

getActiveCfg: () =>

197+

({

198+

accessGroups: {

199+

operators: {

200+

type: "message.senders",

201+

members: {

202+

qqbot: ["ATTACKER_OPENID"],

203+

},

204+

},

205+

},

206+

channels: {

207+

qqbot: {

208+

appId: "app",

209+

clientSecret: "secret",

210+

allowFrom: ["accessGroup:operators"],

211+

},

212+

},

213+

}) as OpenClawConfig,

214+

resolveCommandAuthorized: (params) => access.resolveSlashCommandAuthorization(params),

178215

});

179216180217

handler(makeApprovalEvent());

@@ -184,6 +221,121 @@ describe("createInteractionHandler approval buttons", () => {

184221

);

185222

});

186223224+

it("uses merged account config for fallback button command auth", async () => {

225+

const handler = createInteractionHandler(account, runtime, undefined, {

226+

getActiveCfg: () =>

227+

({

228+

channels: {

229+

qqbot: {

230+

appId: "app",

231+

clientSecret: "secret",

232+

accounts: {

233+

default: {

234+

allowFrom: ["ATTACKER_OPENID"],

235+

},

236+

},

237+

},

238+

},

239+

}) as OpenClawConfig,

240+

});

241+242+

handler(makeApprovalEvent());

243+244+

await vi.waitFor(() =>

245+

expect(resolveApprovalMock).toHaveBeenCalledWith("exec:abc12345", "allow-once"),

246+

);

247+

});

248+249+

it("rejects fallback approval buttons from senders without explicit command auth", async () => {

250+

const handler = createInteractionHandler(account, runtime, undefined, {

251+

getActiveCfg: () =>

252+

({

253+

channels: {

254+

qqbot: {

255+

appId: "app",

256+

clientSecret: "secret",

257+

allowFrom: ["OWNER_OPENID"],

258+

},

259+

},

260+

}) as OpenClawConfig,

261+

});

262+263+

handler(makeApprovalEvent());

264+265+

await vi.waitFor(() => expect(acknowledgeInteractionMock).toHaveBeenCalled());

266+267+

expect(acknowledgeInteractionMock).toHaveBeenCalledWith(

268+

{ appId: "app", clientSecret: "secret" },

269+

"interaction-1",

270+

0,

271+

{ content: "You are not authorized to approve this request." },

272+

);

273+

expect(resolveApprovalMock).not.toHaveBeenCalled();

274+

});

275+276+

it.each([

277+

[

278+

"no allowlist",

279+

{

280+

channels: {

281+

qqbot: {

282+

appId: "app",

283+

clientSecret: "secret",

284+

},

285+

},

286+

},

287+

],

288+

[

289+

"wildcard allowlist",

290+

{

291+

channels: {

292+

qqbot: {

293+

appId: "app",

294+

clientSecret: "secret",

295+

allowFrom: ["*"],

296+

},

297+

},

298+

},

299+

],

300+

] satisfies Array<[string, OpenClawConfig]>)(

301+

"rejects fallback approval buttons when %s does not grant command auth",

302+

async (_name, cfg) => {

303+

const handler = createInteractionHandler(account, runtime, undefined, {

304+

getActiveCfg: () => cfg,

305+

});

306+307+

handler(makeApprovalEvent());

308+309+

await vi.waitFor(() => expect(acknowledgeInteractionMock).toHaveBeenCalled());

310+311+

expect(acknowledgeInteractionMock).toHaveBeenCalledWith(

312+

{ appId: "app", clientSecret: "secret" },

313+

"interaction-1",

314+

0,

315+

{ content: "You are not authorized to approve this request." },

316+

);

317+

expect(resolveApprovalMock).not.toHaveBeenCalled();

318+

},

319+

);

320+321+

it("rejects fallback approval buttons without a trusted actor id", async () => {

322+

const handler = createInteractionHandler(account, runtime, undefined, {

323+

getActiveCfg: () => makeCommandAuthorizedFallbackCfg(),

324+

});

325+326+

handler(makeApprovalEvent({ group_member_openid: undefined, user_openid: undefined }));

327+328+

await vi.waitFor(() => expect(acknowledgeInteractionMock).toHaveBeenCalled());

329+330+

expect(acknowledgeInteractionMock).toHaveBeenCalledWith(

331+

{ appId: "app", clientSecret: "secret" },

332+

"interaction-1",

333+

0,

334+

{ content: "You are not authorized to approve this request." },

335+

);

336+

expect(resolveApprovalMock).not.toHaveBeenCalled();

337+

});

338+187339

it("rejects approval button clicks when active config cannot be loaded", async () => {

188340

const handler = createInteractionHandler(account, runtime, undefined, {

189341

getActiveCfg: () => {