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

推荐订阅源

H
Help Net Security
月光博客
月光博客
IT之家
IT之家
B
Blog RSS Feed
T
Tailwind CSS Blog
The GitHub Blog
The GitHub Blog
博客园 - 三生石上(FineUI控件)
MyScale Blog
MyScale Blog
J
Java Code Geeks
Stack Overflow Blog
Stack Overflow Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - Franky
博客园 - 叶小钗
阮一峰的网络日志
阮一峰的网络日志
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
U
Unit 42
博客园_首页
B
Blog
V
V2EX
腾讯CDC
Vercel News
Vercel News
量子位
Microsoft Security Blog
Microsoft Security 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(cli): validate message numeric options · openclaw/ope...
steipete · 2026-05-27 · via Recent Commits to openclaw:main

@@ -306,6 +306,116 @@ describe("runMessageAction", () => {

306306

expect(exitMock).not.toHaveBeenCalledWith(0);

307307

});

308308309+

it.each([

310+

[

311+

"poll duration hours",

312+

"poll",

313+

{

314+

channel: "discord",

315+

target: "123",

316+

pollQuestion: "ship?",

317+

pollOption: ["yes", "no"],

318+

pollDurationHours: "1.5",

319+

},

320+

"--poll-duration-hours",

321+

],

322+

[

323+

"poll duration seconds",

324+

"poll",

325+

{

326+

channel: "telegram",

327+

target: "123",

328+

pollQuestion: "ship?",

329+

pollOption: ["yes", "no"],

330+

pollDurationSeconds: "60s",

331+

},

332+

"--poll-duration-seconds",

333+

],

334+

[

335+

"timeout duration",

336+

"timeout",

337+

{ guildId: "g", userId: "u", durationMin: "5m" },

338+

"--duration-min",

339+

],

340+

["ban delete days", "ban", { guildId: "g", userId: "u", deleteDays: "7d" }, "--delete-days"],

341+

["read limit", "read", { channel: "discord", target: "123", limit: "10x" }, "--limit"],

342+

["search limit", "search", { guildId: "g", query: "hello", limit: "10x" }, "--limit"],

343+

["pins limit", "list-pins", { channel: "discord", target: "123", limit: "10x" }, "--limit"],

344+

[

345+

"reactions limit",

346+

"reactions",

347+

{ channel: "discord", target: "123", messageId: "m", limit: "10x" },

348+

"--limit",

349+

],

350+

[

351+

"thread auto archive minutes",

352+

"thread-create",

353+

{

354+

channel: "discord",

355+

target: "123",

356+

threadName: "ops",

357+

autoArchiveMin: "60m",

358+

},

359+

"--auto-archive-min",

360+

],

361+

["thread list limit", "thread-list", { guildId: "g", limit: "10x" }, "--limit"],

362+

])("rejects malformed numeric CLI option for %s", async (_name, action, opts, flag) => {

363+

const runMessageAction = createRunMessageAction();

364+365+

await expect(runMessageAction(action, opts)).rejects.toThrow("exit");

366+367+

const kind = flag === "--delete-days" ? "non-negative" : "positive";

368+

expect(errorMock).toHaveBeenCalledWith(`Error: ${flag} must be a ${kind} integer.`);

369+

expect(ensurePluginRegistryLoaded).not.toHaveBeenCalled();

370+

expect(messageCommandMock).not.toHaveBeenCalled();

371+

expect(exitMock).toHaveBeenCalledWith(1);

372+

expect(exitMock).not.toHaveBeenCalledWith(0);

373+

});

374+375+

it.each([

376+

["pollDurationHours", "0", "--poll-duration-hours"],

377+

["pollDurationSeconds", "-1", "--poll-duration-seconds"],

378+

["durationMin", "", "--duration-min"],

379+

["deleteDays", Number.NaN, "--delete-days"],

380+

["limit", 1.2, "--limit"],

381+

["autoArchiveMin", null, "--auto-archive-min"],

382+

])("rejects non-positive or non-integer %s values", async (key, value, flag) => {

383+

const runMessageAction = createRunMessageAction();

384+385+

await expect(

386+

runMessageAction("send", {

387+

...baseSendOptions,

388+

[key]: value,

389+

}),

390+

).rejects.toThrow("exit");

391+392+

const kind = flag === "--delete-days" ? "non-negative" : "positive";

393+

expect(errorMock).toHaveBeenCalledWith(`Error: ${flag} must be a ${kind} integer.`);

394+

expect(messageCommandMock).not.toHaveBeenCalled();

395+

expect(exitMock).toHaveBeenCalledWith(1);

396+

});

397+398+

it("allows zero delete-days for no-history Discord bans", async () => {

399+

const runMessageAction = createRunMessageAction();

400+401+

await expect(

402+

runMessageAction("ban", {

403+

guildId: "g",

404+

userId: "u",

405+

deleteDays: "0",

406+

}),

407+

).rejects.toThrow("exit");

408+409+

expect(errorMock).not.toHaveBeenCalled();

410+

expectMessageCommandOptions({

411+

action: "ban",

412+

guildId: "g",

413+

userId: "u",

414+

deleteDays: "0",

415+

});

416+

expect(exitMock).toHaveBeenCalledWith(0);

417+

});

418+309419

it("runs gateway_stop hooks before exit when registered", async () => {

310420

hasHooksMock.mockReturnValueOnce(true);

311421

await runSendAction();