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

推荐订阅源

N
Netflix TechBlog - Medium
T
The Blog of Author Tim Ferriss
aimingoo的专栏
aimingoo的专栏
A
About on SuperTechFans
Stack Overflow Blog
Stack Overflow Blog
B
Blog RSS Feed
Microsoft Security Blog
Microsoft Security Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
人人都是产品经理
人人都是产品经理
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
J
Java Code Geeks
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
B
Blog
MongoDB | Blog
MongoDB | Blog
L
LangChain Blog
WordPress大学
WordPress大学
小众软件
小众软件
IT之家
IT之家
腾讯CDC
月光博客
月光博客
量子位
Blog — PlanetScale
Blog — PlanetScale
P
Proofpoint News Feed
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

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(msteams): gate startup user allowlist resolution [AI]...
pgondhi987 · 2026-05-08 · via Recent Commits to openclaw:main

@@ -21,8 +21,11 @@ const expressControl = vi.hoisted(() => ({

2121

}>,

2222

}));

232324+

const isDangerousNameMatchingEnabled = vi.hoisted(() => vi.fn());

25+2426

vi.mock("../runtime-api.js", () => ({

2527

DEFAULT_WEBHOOK_MAX_BODY_BYTES: 1024 * 1024,

28+

isDangerousNameMatchingEnabled,

2629

normalizeSecretInputString: (value: unknown) =>

2730

typeof value === "string" && value.trim() ? value.trim() : undefined,

2831

hasConfiguredSecretInput: (value: unknown) =>

@@ -115,14 +118,19 @@ const loadMSTeamsSdkWithAuth = vi.hoisted(() =>

115118

);

116119117120

vi.mock("./monitor-handler.js", () => ({

118-

registerMSTeamsHandlers: () => registerMSTeamsHandlers(),

121+

registerMSTeamsHandlers: (...args: unknown[]) => registerMSTeamsHandlers(...args),

119122

}));

120123121-

vi.mock("./resolve-allowlist.js", () => ({

124+

const resolveAllowlistMocks = vi.hoisted(() => ({

122125

resolveMSTeamsChannelAllowlist: vi.fn(async () => []),

123126

resolveMSTeamsUserAllowlist: vi.fn(async () => []),

124127

}));

125128129+

vi.mock("./resolve-allowlist.js", () => ({

130+

resolveMSTeamsChannelAllowlist: resolveAllowlistMocks.resolveMSTeamsChannelAllowlist,

131+

resolveMSTeamsUserAllowlist: resolveAllowlistMocks.resolveMSTeamsUserAllowlist,

132+

}));

133+126134

vi.mock("./sdk.js", () => ({

127135

createMSTeamsAdapter: () => createMSTeamsAdapter(),

128136

loadMSTeamsSdkWithAuth: () => loadMSTeamsSdkWithAuth(),

@@ -192,6 +200,9 @@ describe("monitorMSTeamsProvider lifecycle", () => {

192200

vi.clearAllMocks();

193201

expressControl.mode.value = "listening";

194202

expressControl.apps.length = 0;

203+

isDangerousNameMatchingEnabled.mockReset().mockReturnValue(false);

204+

resolveAllowlistMocks.resolveMSTeamsChannelAllowlist.mockReset().mockResolvedValue([]);

205+

resolveAllowlistMocks.resolveMSTeamsUserAllowlist.mockReset().mockResolvedValue([]);

195206

jwtValidate.mockReset().mockResolvedValue(true);

196207

});

197208

@@ -277,4 +288,106 @@ describe("monitorMSTeamsProvider lifecycle", () => {

277288

abort.abort();

278289

await task;

279290

});

291+292+

it("does not resolve user allowlists by display name unless name matching is enabled", async () => {

293+

const abort = new AbortController();

294+

const cfg = createConfig(0);

295+

cfg.channels!.msteams = {

296+

...cfg.channels!.msteams!,

297+

allowFrom: ["Alice", "user:40a1a0ed-4ff2-4164-a219-55518990c197"],

298+

groupAllowFrom: ["Bob", "msteams:user:50a1a0ed-4ff2-4164-a219-55518990c198"],

299+

teams: {

300+

Product: {

301+

channels: {

302+

Roadmap: {},

303+

},

304+

},

305+

},

306+

};

307+

resolveAllowlistMocks.resolveMSTeamsChannelAllowlist.mockResolvedValueOnce([

308+

{

309+

input: "Product/Roadmap",

310+

resolved: true,

311+

teamId: "team-id",

312+

channelId: "channel-id",

313+

},

314+

]);

315+316+

const task = monitorMSTeamsProvider({

317+

cfg,

318+

runtime: createRuntime(),

319+

abortSignal: abort.signal,

320+

conversationStore: createStores().conversationStore,

321+

pollStore: createStores().pollStore,

322+

});

323+324+

await vi.waitFor(() => {

325+

expect(registerMSTeamsHandlers).toHaveBeenCalled();

326+

});

327+328+

expect(resolveAllowlistMocks.resolveMSTeamsUserAllowlist).not.toHaveBeenCalled();

329+

expect(resolveAllowlistMocks.resolveMSTeamsChannelAllowlist).toHaveBeenCalledWith({

330+

cfg,

331+

entries: ["Product/Roadmap"],

332+

});

333+334+

const registeredCfg = registerMSTeamsHandlers.mock.calls[0]?.[1] as { cfg: OpenClawConfig };

335+

expect(registeredCfg.cfg.channels?.msteams?.allowFrom).toEqual([

336+

"Alice",

337+

"user:40a1a0ed-4ff2-4164-a219-55518990c197",

338+

"40a1a0ed-4ff2-4164-a219-55518990c197",

339+

]);

340+

expect(registeredCfg.cfg.channels?.msteams?.groupAllowFrom).toEqual([

341+

"Bob",

342+

"msteams:user:50a1a0ed-4ff2-4164-a219-55518990c198",

343+

"50a1a0ed-4ff2-4164-a219-55518990c198",

344+

]);

345+346+

abort.abort();

347+

await task;

348+

});

349+350+

it("resolves user allowlists when name matching is enabled", async () => {

351+

isDangerousNameMatchingEnabled.mockReturnValue(true);

352+

resolveAllowlistMocks.resolveMSTeamsUserAllowlist

353+

.mockResolvedValueOnce([{ input: "Alice", resolved: true, id: "alice-aad" }])

354+

.mockResolvedValueOnce([{ input: "Bob", resolved: true, id: "bob-aad" }]);

355+356+

const abort = new AbortController();

357+

const cfg = createConfig(0);

358+

cfg.channels!.msteams = {

359+

...cfg.channels!.msteams!,

360+

dangerouslyAllowNameMatching: true,

361+

allowFrom: ["Alice"],

362+

groupAllowFrom: ["Bob"],

363+

};

364+365+

const task = monitorMSTeamsProvider({

366+

cfg,

367+

runtime: createRuntime(),

368+

abortSignal: abort.signal,

369+

conversationStore: createStores().conversationStore,

370+

pollStore: createStores().pollStore,

371+

});

372+373+

await vi.waitFor(() => {

374+

expect(registerMSTeamsHandlers).toHaveBeenCalled();

375+

});

376+377+

expect(resolveAllowlistMocks.resolveMSTeamsUserAllowlist).toHaveBeenNthCalledWith(1, {

378+

cfg,

379+

entries: ["Alice"],

380+

});

381+

expect(resolveAllowlistMocks.resolveMSTeamsUserAllowlist).toHaveBeenNthCalledWith(2, {

382+

cfg,

383+

entries: ["Bob"],

384+

});

385+386+

const registeredCfg = registerMSTeamsHandlers.mock.calls[0]?.[1] as { cfg: OpenClawConfig };

387+

expect(registeredCfg.cfg.channels?.msteams?.allowFrom).toEqual(["Alice", "alice-aad"]);

388+

expect(registeredCfg.cfg.channels?.msteams?.groupAllowFrom).toEqual(["Bob", "bob-aad"]);

389+390+

abort.abort();

391+

await task;

392+

});

280393

});