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

推荐订阅源

OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
B
Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
V2EX
IT之家
IT之家
Jina AI
Jina AI
D
DataBreaches.Net
V
Visual Studio Blog
腾讯CDC
雷峰网
雷峰网
博客园 - 【当耐特】
Y
Y Combinator Blog
阮一峰的网络日志
阮一峰的网络日志
Last Week in AI
Last Week in AI
P
Proofpoint News Feed
Microsoft Security Blog
Microsoft Security Blog
M
MIT News - Artificial intelligence
MongoDB | Blog
MongoDB | Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
MyScale Blog
MyScale Blog
爱范儿
爱范儿
博客园 - Franky
有赞技术团队
有赞技术团队
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: refresh slash command routing config (#39617) · open...
Ciward · 2026-06-15 · via Recent Commits to openclaw:main
11

// Discord tests cover native command.options plugin behavior.

22

import { ApplicationCommandType, ChannelType, InteractionContextType } from "discord-api-types/v10";

33

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

4-

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

4+

import {

5+

clearRuntimeConfigSnapshot,

6+

setRuntimeConfigSnapshot,

7+

} from "openclaw/plugin-sdk/runtime-config-snapshot";

8+

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

59610

const { logVerboseMock } = vi.hoisted(() => ({

711

logVerboseMock: vi.fn(),

@@ -222,10 +226,15 @@ describe("createDiscordNativeCommand option wiring", () => {

222226

});

223227224228

beforeEach(() => {

229+

clearRuntimeConfigSnapshot();

225230

logVerboseMock.mockReset();

226231

loggerWarnMock.mockReset();

227232

});

228233234+

afterEach(() => {

235+

clearRuntimeConfigSnapshot();

236+

});

237+229238

it("uses autocomplete for /acp action so inline action values are accepted", async () => {

230239

const command = createNativeCommand("acp");

231240

const action = requireOption(command, "action");

@@ -399,6 +408,78 @@ describe("createDiscordNativeCommand option wiring", () => {

399408

}

400409

});

401410411+

it("refreshes autocomplete authorization and dynamic choices between invocations", async () => {

412+

const restoreMatchPluginCommand = nativeCommandTesting.setMatchPluginCommand((prompt) =>

413+

prompt === "/scope" ? ({ command: { name: "scope" }, args: "" } as never) : null,

414+

);

415+

const sourceCfg = {

416+

session: { dmScope: "main" },

417+

channels: {

418+

discord: {

419+

dm: { enabled: true, policy: "disabled" },

420+

},

421+

},

422+

} as OpenClawConfig;

423+

const runtimeCfg = {

424+

session: { dmScope: "per-channel-peer" },

425+

channels: {

426+

discord: {

427+

dm: { enabled: true, policy: "open", allowFrom: ["*"] },

428+

},

429+

},

430+

} as OpenClawConfig;

431+

try {

432+

const command = createDiscordNativeCommand({

433+

command: {

434+

name: "scope",

435+

description: "Scope",

436+

acceptsArgs: true,

437+

args: [

438+

{

439+

name: "value",

440+

description: "Scope value",

441+

type: "string",

442+

preferAutocomplete: true,

443+

choices: ({ cfg }) => {

444+

const dmScope = cfg?.session?.dmScope ?? "missing";

445+

return [{ label: dmScope, value: dmScope }];

446+

},

447+

},

448+

],

449+

},

450+

cfg: sourceCfg,

451+

discordConfig: sourceCfg.channels?.discord ?? {},

452+

accountId: "default",

453+

sessionPrefix: "discord:slash",

454+

ephemeralDefault: true,

455+

threadBindings: createNoopThreadBindingManager("default"),

456+

});

457+

const value = requireOption(command, "value");

458+

const autocomplete = requireAutocomplete(

459+

value,

460+

"scope value option did not wire autocomplete",

461+

);

462+

const autocompleteParams = {

463+

userId: "owner",

464+

channelType: ChannelType.DM,

465+

channelId: "dm-1",

466+

channelName: "dm-1",

467+

focusedValue: "",

468+

} as const;

469+470+

const blockedRespond = await runAutocomplete(autocomplete, autocompleteParams);

471+

expect(blockedRespond).toHaveBeenCalledWith([]);

472+473+

setRuntimeConfigSnapshot(runtimeCfg, runtimeCfg);

474+

const refreshedRespond = await runAutocomplete(autocomplete, autocompleteParams);

475+

expect(refreshedRespond).toHaveBeenCalledWith([

476+

{ name: "per-channel-peer", value: "per-channel-peer" },

477+

]);

478+

} finally {

479+

nativeCommandTesting.setMatchPluginCommand(restoreMatchPluginCommand);

480+

}

481+

});

482+402483

it("returns no autocomplete choices outside the Discord allowlist when commands.useAccessGroups is false and commands.allowFrom is not configured", async () => {

403484

const command = createNativeCommand("think", {

404485

cfg: {