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

推荐订阅源

C
Check Point Blog
有赞技术团队
有赞技术团队
博客园 - 三生石上(FineUI控件)
博客园_首页
博客园 - 【当耐特】
WordPress大学
WordPress大学
月光博客
月光博客
博客园 - 叶小钗
S
SegmentFault 最新的问题
雷峰网
雷峰网
H
Help Net Security
宝玉的分享
宝玉的分享
A
About on SuperTechFans
IT之家
IT之家
J
Java Code Geeks
Hugging Face - Blog
Hugging Face - Blog
D
DataBreaches.Net
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 聂微东
T
The Blog of Author Tim Ferriss
B
Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
H
Hackread – Cybersecurity News, Data Breaches, AI and More
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
test: share channel audit plugin fixtures · openclaw/open...
steipete · 2026-04-24 · via Recent Commits to openclaw:main

@@ -1,71 +1,75 @@

11

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

2-

import type { ChannelPlugin } from "../channels/plugins/types.js";

32

import type { OpenClawConfig } from "../config/config.js";

3+

import { stubAuditChannelPlugin } from "./audit-channel-test-helpers.js";

44

import { collectChannelSecurityFindings } from "./audit-channel.js";

5566

function stubSlackPlugin(params: {

77

resolveAccount: (cfg: OpenClawConfig, accountId: string | null | undefined) => unknown;

88

inspectAccount?: (cfg: OpenClawConfig, accountId: string | null | undefined) => unknown;

99

isConfigured?: (account: unknown, cfg: OpenClawConfig) => boolean;

10-

}): ChannelPlugin {

11-

return {

10+

}) {

11+

return stubAuditChannelPlugin({

1212

id: "slack",

13-

meta: {

14-

id: "slack",

15-

label: "Slack",

16-

selectionLabel: "Slack",

17-

docsPath: "/docs/testing",

18-

blurb: "test stub",

19-

},

20-

capabilities: {

21-

chatTypes: ["direct", "group"],

22-

},

13+

label: "Slack",

2314

commands: {

2415

nativeCommandsAutoEnabled: false,

2516

nativeSkillsAutoEnabled: false,

2617

},

27-

security: {

28-

collectAuditFindings: async ({ account }) => {

29-

const config =

30-

(account as { config?: { slashCommand?: { enabled?: boolean }; allowFrom?: unknown } })

31-

.config ?? {};

32-

const slashCommandEnabled = config.slashCommand?.enabled === true;

33-

const allowFrom =

34-

Array.isArray(config.allowFrom) && config.allowFrom.length > 0 ? config.allowFrom : [];

35-

if (!slashCommandEnabled || allowFrom.length > 0) {

36-

return [];

37-

}

38-

return [

39-

{

40-

checkId: "channels.slack.commands.slash.no_allowlists",

41-

severity: "warn" as const,

42-

title: "Slack slash commands have no allowlists",

43-

detail: "test stub",

44-

},

45-

];

46-

},

18+

collectAuditFindings: async ({ account }) => {

19+

const config =

20+

(account as { config?: { slashCommand?: { enabled?: boolean }; allowFrom?: unknown } })

21+

.config ?? {};

22+

const slashCommandEnabled = config.slashCommand?.enabled === true;

23+

const allowFrom =

24+

Array.isArray(config.allowFrom) && config.allowFrom.length > 0 ? config.allowFrom : [];

25+

if (!slashCommandEnabled || allowFrom.length > 0) {

26+

return [];

27+

}

28+

return [

29+

{

30+

checkId: "channels.slack.commands.slash.no_allowlists",

31+

severity: "warn" as const,

32+

title: "Slack slash commands have no allowlists",

33+

detail: "test stub",

34+

},

35+

];

4736

},

48-

config: {

49-

listAccountIds: () => ["default"],

50-

inspectAccount:

51-

params.inspectAccount ??

52-

((cfg, accountId) => {

53-

const resolvedAccountId =

54-

typeof accountId === "string" && accountId ? accountId : "default";

55-

const account = params.resolveAccount(cfg, resolvedAccountId) as

56-

| { config?: Record<string, unknown> }

57-

| undefined;

58-

return {

59-

accountId: resolvedAccountId,

60-

enabled: true,

61-

configured: true,

62-

config: account?.config ?? {},

63-

};

64-

}),

65-

resolveAccount: (cfg, accountId) => params.resolveAccount(cfg, accountId),

66-

isEnabled: () => true,

67-

isConfigured: (account, cfg) => params.isConfigured?.(account, cfg) ?? true,

37+

...params,

38+

});

39+

}

40+41+

function makeSlackHttpConfig(): OpenClawConfig {

42+

return {

43+

channels: {

44+

slack: {

45+

enabled: true,

46+

mode: "http",

47+

groupPolicy: "open",

48+

slashCommand: { enabled: true },

49+

},

6850

},

51+

} as OpenClawConfig;

52+

}

53+54+

function makeSlackInspection(

55+

channel: unknown,

56+

overrides: {

57+

enabled?: boolean;

58+

configured?: boolean;

59+

botTokenStatus?: string;

60+

signingSecretStatus?: string;

61+

},

62+

) {

63+

return {

64+

accountId: "default",

65+

enabled: overrides.enabled ?? true,

66+

configured: overrides.configured ?? true,

67+

mode: "http",

68+

botTokenSource: "config",

69+

botTokenStatus: overrides.botTokenStatus ?? "configured_unavailable",

70+

signingSecretSource: "config",

71+

signingSecretStatus: overrides.signingSecretStatus ?? "configured_unavailable",

72+

config: channel,

6973

};

7074

}

7175

@@ -74,109 +78,42 @@ describe("security audit channel source-config fallback slack", () => {

7478

const cases = [

7579

{

7680

name: "slack resolved inspection only exposes signingSecret status",

77-

sourceConfig: {

78-

channels: {

79-

slack: {

80-

enabled: true,

81-

mode: "http",

82-

groupPolicy: "open",

83-

slashCommand: { enabled: true },

84-

},

85-

},

86-

} as OpenClawConfig,

87-

resolvedConfig: {

88-

channels: {

89-

slack: {

90-

enabled: true,

91-

mode: "http",

92-

groupPolicy: "open",

93-

slashCommand: { enabled: true },

94-

},

95-

},

96-

} as OpenClawConfig,

81+

sourceConfig: makeSlackHttpConfig(),

82+

resolvedConfig: makeSlackHttpConfig(),

9783

plugin: (sourceConfig: OpenClawConfig) =>

9884

stubSlackPlugin({

9985

inspectAccount: (cfg) => {

10086

const channel = cfg.channels?.slack ?? {};

10187

if (cfg === sourceConfig) {

102-

return {

103-

accountId: "default",

88+

return makeSlackInspection(channel, {

10489

enabled: false,

105-

configured: true,

106-

mode: "http",

107-

botTokenSource: "config",

108-

botTokenStatus: "configured_unavailable",

109-

signingSecretSource: "config",

110-

signingSecretStatus: "configured_unavailable",

111-

config: channel,

112-

};

90+

});

11391

}

114-

return {

115-

accountId: "default",

116-

enabled: true,

117-

configured: true,

118-

mode: "http",

119-

botTokenSource: "config",

92+

return makeSlackInspection(channel, {

12093

botTokenStatus: "available",

121-

signingSecretSource: "config",

12294

signingSecretStatus: "available",

123-

config: channel,

124-

};

95+

});

12596

},

12697

resolveAccount: (cfg) => ({ config: cfg.channels?.slack ?? {} }),

12798

isConfigured: (account) => Boolean((account as { configured?: boolean }).configured),

12899

}),

129100

},

130101

{

131102

name: "slack source config still wins when resolved inspection is unconfigured",

132-

sourceConfig: {

133-

channels: {

134-

slack: {

135-

enabled: true,

136-

mode: "http",

137-

groupPolicy: "open",

138-

slashCommand: { enabled: true },

139-

},

140-

},

141-

} as OpenClawConfig,

142-

resolvedConfig: {

143-

channels: {

144-

slack: {

145-

enabled: true,

146-

mode: "http",

147-

groupPolicy: "open",

148-

slashCommand: { enabled: true },

149-

},

150-

},

151-

} as OpenClawConfig,

103+

sourceConfig: makeSlackHttpConfig(),

104+

resolvedConfig: makeSlackHttpConfig(),

152105

plugin: (sourceConfig: OpenClawConfig) =>

153106

stubSlackPlugin({

154107

inspectAccount: (cfg) => {

155108

const channel = cfg.channels?.slack ?? {};

156109

if (cfg === sourceConfig) {

157-

return {

158-

accountId: "default",

159-

enabled: true,

160-

configured: true,

161-

mode: "http",

162-

botTokenSource: "config",

163-

botTokenStatus: "configured_unavailable",

164-

signingSecretSource: "config",

165-

signingSecretStatus: "configured_unavailable",

166-

config: channel,

167-

};

110+

return makeSlackInspection(channel, {});

168111

}

169-

return {

170-

accountId: "default",

171-

enabled: true,

112+

return makeSlackInspection(channel, {

172113

configured: false,

173-

mode: "http",

174-

botTokenSource: "config",

175114

botTokenStatus: "available",

176-

signingSecretSource: "config",

177115

signingSecretStatus: "missing",

178-

config: channel,

179-

};

116+

});

180117

},

181118

resolveAccount: (cfg) => ({ config: cfg.channels?.slack ?? {} }),

182119

isConfigured: (account) => Boolean((account as { configured?: boolean }).configured),