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

推荐订阅源

V
V2EX
Y
Y Combinator Blog
博客园_首页
V
Visual Studio Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
阮一峰的网络日志
阮一峰的网络日志
Hugging Face - Blog
Hugging Face - Blog
宝玉的分享
宝玉的分享
B
Blog
博客园 - 三生石上(FineUI控件)
小众软件
小众软件
WordPress大学
WordPress大学
L
LangChain Blog
爱范儿
爱范儿
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
P
Proofpoint News Feed
Blog — PlanetScale
Blog — PlanetScale
C
Check Point Blog
博客园 - 聂微东
云风的 BLOG
云风的 BLOG
Microsoft Security Blog
Microsoft Security Blog
博客园 - 叶小钗
酷 壳 – CoolShell
酷 壳 – CoolShell
H
Help Net Security

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
test: clear synology chat channel broad matchers · opencl...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -26,6 +26,14 @@ function makeSecurityAccount(

2626

return { ...securityAccountDefaults, ...overrides };

2727

}

282829+

function expectIncludesSubstring(values: readonly string[], expected: string): void {

30+

expect(values.some((value) => value.includes(expected))).toBe(true);

31+

}

32+33+

function mockStringMessages(mock: { mock: { calls: unknown[][] } }): string[] {

34+

return mock.mock.calls.map((call) => String(call[0] ?? ""));

35+

}

36+2937

const clientModule = await import("./client.js");

3038

const gatewayRuntimeModule = await import("./gateway-runtime.js");

3139

const mockSendMessage = vi.spyOn(clientModule, "sendMessage").mockResolvedValue(true);

@@ -112,16 +120,14 @@ describe("createSynologyChatPlugin", () => {

112120

};

113121

const plugin = createSynologyChatPlugin();

114122

const account = plugin.config.resolveAccount(cfg, "office");

115-

expect(account).toMatchObject({

116-

accountId: "office",

117-

token: "office-token",

118-

incomingUrl: "https://nas/base",

119-

nasHost: "nas-base",

120-

allowedUserIds: ["base-user"],

121-

rateLimitPerMinute: 45,

122-

botName: "Base Bot",

123-

allowInsecureSsl: true,

124-

});

123+

expect(account.accountId).toBe("office");

124+

expect(account.token).toBe("office-token");

125+

expect(account.incomingUrl).toBe("https://nas/base");

126+

expect(account.nasHost).toBe("nas-base");

127+

expect(account.allowedUserIds).toEqual(["base-user"]);

128+

expect(account.rateLimitPerMinute).toBe(45);

129+

expect(account.botName).toBe("Base Bot");

130+

expect(account.allowInsecureSsl).toBe(true);

125131

});

126132127133

it("defaultAccountId returns 'default'", () => {

@@ -256,23 +262,21 @@ describe("createSynologyChatPlugin", () => {

256262

const plugin = createSynologyChatPlugin();

257263

const account = makeSecurityAccount({ token: "" });

258264

const warnings = plugin.security.collectWarnings({ cfg: {}, account });

259-

expect(warnings).toEqual(expect.arrayContaining([expect.stringContaining("token")]));

265+

expectIncludesSubstring(warnings, "token");

260266

});

261267262268

it("warns when allowInsecureSsl is true", () => {

263269

const plugin = createSynologyChatPlugin();

264270

const account = makeSecurityAccount({ allowInsecureSsl: true });

265271

const warnings = plugin.security.collectWarnings({ cfg: {}, account });

266-

expect(warnings).toEqual(expect.arrayContaining([expect.stringContaining("SSL")]));

272+

expectIncludesSubstring(warnings, "SSL");

267273

});

268274269275

it("warns when dangerous name matching is enabled", () => {

270276

const plugin = createSynologyChatPlugin();

271277

const account = makeSecurityAccount({ dangerouslyAllowNameMatching: true });

272278

const warnings = plugin.security.collectWarnings({ cfg: {}, account });

273-

expect(warnings).toEqual(

274-

expect.arrayContaining([expect.stringContaining("dangerouslyAllowNameMatching")]),

275-

);

279+

expectIncludesSubstring(warnings, "dangerouslyAllowNameMatching");

276280

});

277281278282

it("warns when inherited shared webhookPath is dangerously re-enabled", () => {

@@ -283,46 +287,36 @@ describe("createSynologyChatPlugin", () => {

283287

dangerouslyAllowInheritedWebhookPath: true,

284288

});

285289

const warnings = plugin.security.collectWarnings({ cfg: {}, account });

286-

expect(warnings).toEqual(

287-

expect.arrayContaining([

288-

expect.stringContaining("dangerouslyAllowInheritedWebhookPath=true"),

289-

]),

290-

);

290+

expectIncludesSubstring(warnings, "dangerouslyAllowInheritedWebhookPath=true");

291291

});

292292293293

it("warns when dmPolicy is open", () => {

294294

const plugin = createSynologyChatPlugin();

295295

const account = makeSecurityAccount({ dmPolicy: "open", allowedUserIds: ["*"] });

296296

const warnings = plugin.security.collectWarnings({ cfg: {}, account });

297-

expect(warnings).toEqual(expect.arrayContaining([expect.stringContaining("open")]));

297+

expectIncludesSubstring(warnings, "open");

298298

});

299299300300

it("warns when dmPolicy is open and allowedUserIds is empty", () => {

301301

const plugin = createSynologyChatPlugin();

302302

const account = makeSecurityAccount({ dmPolicy: "open", allowedUserIds: [] });

303303

const warnings = plugin.security.collectWarnings({ cfg: {}, account });

304-

expect(warnings).toEqual(

305-

expect.arrayContaining([expect.stringContaining("empty allowedUserIds")]),

306-

);

304+

expectIncludesSubstring(warnings, "empty allowedUserIds");

307305

});

308306309307

it("warns when dmPolicy is allowlist and allowedUserIds is empty", () => {

310308

const plugin = createSynologyChatPlugin();

311309

const account = makeSecurityAccount();

312310

const warnings = plugin.security.collectWarnings({ cfg: {}, account });

313-

expect(warnings).toEqual(

314-

expect.arrayContaining([expect.stringContaining("empty allowedUserIds")]),

315-

);

311+

expectIncludesSubstring(warnings, "empty allowedUserIds");

316312

});

317313318314

it("warns when named multi-account routes inherit a shared webhookPath", () => {

319315

const plugin = createSynologyChatPlugin();

320316

const cfg = makeSharedWebhookConfig();

321317

const account = plugin.config.resolveAccount(cfg, "alerts");

322318

const warnings = plugin.security.collectWarnings({ cfg, account });

323-

expect(warnings).toEqual(

324-

expect.arrayContaining([expect.stringContaining("must set an explicit webhookPath")]),

325-

);

319+

expectIncludesSubstring(warnings, "must set an explicit webhookPath");

326320

});

327321328322

it("warns when enabled accounts share the same exact webhookPath", () => {

@@ -342,9 +336,7 @@ describe("createSynologyChatPlugin", () => {

342336

};

343337

const account = plugin.config.resolveAccount(cfg, "alerts");

344338

const warnings = plugin.security.collectWarnings({ cfg, account });

345-

expect(warnings).toEqual(

346-

expect.arrayContaining([expect.stringContaining("conflicts on webhookPath")]),

347-

);

339+

expectIncludesSubstring(warnings, "conflicts on webhookPath");

348340

});

349341350342

it("returns no warnings for fully configured account", () => {

@@ -410,42 +402,41 @@ describe("createSynologyChatPlugin", () => {

410402

},

411403

};

412404413-

await expect(

414-

verifyChannelMessageAdapterCapabilityProofs({

415-

adapterName: "synology-chat",

416-

adapter: plugin.message,

417-

proofs: {

418-

text: async () => {

419-

const result = await plugin.message.send?.text?.({

420-

cfg,

421-

text: "hello",

422-

to: "user1",

423-

});

424-

expect(result?.receipt.parts[0]?.kind).toBe("text");

425-

expect(result?.receipt.platformMessageIds).toHaveLength(1);

426-

},

427-

media: async () => {

428-

const result = await plugin.message.send?.media?.({

429-

cfg,

430-

text: "image",

431-

mediaUrl: "https://example.com/img.png",

432-

to: "user1",

433-

});

434-

expect(result?.receipt.parts[0]?.kind).toBe("media");

435-

expect(result?.receipt.platformMessageIds).toHaveLength(1);

436-

},

437-

messageSendingHooks: () => {

438-

expect(plugin.message.durableFinal?.capabilities?.messageSendingHooks).toBe(true);

439-

},

405+

const results = await verifyChannelMessageAdapterCapabilityProofs({

406+

adapterName: "synology-chat",

407+

adapter: plugin.message,

408+

proofs: {

409+

text: async () => {

410+

const result = await plugin.message.send?.text?.({

411+

cfg,

412+

text: "hello",

413+

to: "user1",

414+

});

415+

expect(result?.receipt.parts[0]?.kind).toBe("text");

416+

expect(result?.receipt.platformMessageIds).toHaveLength(1);

440417

},

441-

}),

442-

).resolves.toEqual(

443-

expect.arrayContaining([

444-

{ capability: "text", status: "verified" },

445-

{ capability: "media", status: "verified" },

446-

{ capability: "messageSendingHooks", status: "verified" },

447-

]),

418+

media: async () => {

419+

const result = await plugin.message.send?.media?.({

420+

cfg,

421+

text: "image",

422+

mediaUrl: "https://example.com/img.png",

423+

to: "user1",

424+

});

425+

expect(result?.receipt.parts[0]?.kind).toBe("media");

426+

expect(result?.receipt.platformMessageIds).toHaveLength(1);

427+

},

428+

messageSendingHooks: () => {

429+

expect(plugin.message.durableFinal?.capabilities?.messageSendingHooks).toBe(true);

430+

},

431+

},

432+

});

433+434+

const statusByCapability = new Map(

435+

results.map(({ capability, status }) => [capability, status]),

448436

);

437+

expect(statusByCapability.get("text")).toBe("verified");

438+

expect(statusByCapability.get("media")).toBe("verified");

439+

expect(statusByCapability.get("messageSendingHooks")).toBe("verified");

449440

});

450441451442

it("sendText throws when no incomingUrl", async () => {

@@ -479,10 +470,8 @@ describe("createSynologyChatPlugin", () => {

479470

text: "hello",

480471

to: "user1",

481472

});

482-

expect(result).toMatchObject({

483-

channel: "synology-chat",

484-

chatId: "user1",

485-

});

473+

expect(result.channel).toBe("synology-chat");

474+

expect(result.chatId).toBe("user1");

486475

expect(result.messageId).toMatch(/^sc-\d+$/);

487476

expect(result.receipt.primaryPlatformMessageId).toBe(result.messageId);

488477

expect(result.receipt.parts[0]?.kind).toBe("text");

@@ -605,7 +594,7 @@ describe("createSynologyChatPlugin", () => {

605594606595

const result = plugin.gateway.startAccount(ctx);

607596

await expectPendingStartAccountPromise(result, abortController);

608-

expect(ctx.log.warn).toHaveBeenCalledWith(expect.stringContaining("empty allowedUserIds"));

597+

expectIncludesSubstring(mockStringMessages(ctx.log.warn), "empty allowedUserIds");

609598

expect(registerMock).not.toHaveBeenCalled();

610599

});

611600

@@ -623,8 +612,9 @@ describe("createSynologyChatPlugin", () => {

623612624613

const result = plugin.gateway.startAccount(ctx);

625614

await expectPendingStartAccountPromise(result, abortController);

626-

expect(ctx.log.warn).toHaveBeenCalledWith(

627-

expect.stringContaining("dmPolicy=open but empty allowedUserIds"),

615+

expectIncludesSubstring(

616+

mockStringMessages(ctx.log.warn),

617+

"dmPolicy=open but empty allowedUserIds",

628618

);

629619

expect(registerMock).not.toHaveBeenCalled();

630620

});

@@ -639,9 +629,7 @@ describe("createSynologyChatPlugin", () => {

639629640630

const result = plugin.gateway.startAccount(ctx);

641631

await expectPendingStartAccountPromise(result, abortController);

642-

expect(ctx.log.warn).toHaveBeenCalledWith(

643-

expect.stringContaining("must set an explicit webhookPath"),

644-

);

632+

expectIncludesSubstring(mockStringMessages(ctx.log.warn), "must set an explicit webhookPath");

645633

expect(registerMock).not.toHaveBeenCalled();

646634

});

647635

@@ -656,9 +644,7 @@ describe("createSynologyChatPlugin", () => {

656644657645

const result = plugin.gateway.startAccount(ctx);

658646

await expectPendingStartAccountPromise(result, abortController);

659-

expect(ctx.log.warn).toHaveBeenCalledWith(

660-

expect.stringContaining("conflicts on webhookPath"),

661-

);

647+

expectIncludesSubstring(mockStringMessages(ctx.log.warn), "conflicts on webhookPath");

662648

expect(registerMock).not.toHaveBeenCalled();

663649

});

664650