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

推荐订阅源

F
Fortinet All Blogs
有赞技术团队
有赞技术团队
量子位
N
Netflix TechBlog - Medium
博客园 - 叶小钗
博客园 - 三生石上(FineUI控件)
Google DeepMind News
Google DeepMind News
aimingoo的专栏
aimingoo的专栏
GbyAI
GbyAI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Blog — PlanetScale
Blog — PlanetScale
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
Martin Fowler
Martin Fowler
Y
Y Combinator Blog
宝玉的分享
宝玉的分享
博客园 - 司徒正美
云风的 BLOG
云风的 BLOG
V
Visual Studio Blog
V
V2EX
IT之家
IT之家
L
LangChain Blog
大猫的无限游戏
大猫的无限游戏
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
test: tighten msteams send assertions · openclaw/openclaw...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -181,6 +181,26 @@ function mockSharePointPdfUpload(params: {

181181

});

182182

}

183183184+

type MockWithCalls = {

185+

mock: { calls: unknown[][] };

186+

};

187+188+

function firstObjectArg(mock: MockWithCalls): Record<string, unknown> {

189+

const value = mock.mock.calls[0]?.[0];

190+

if (value === undefined || value === null || typeof value !== "object" || Array.isArray(value)) {

191+

throw new Error("expected first mock call to receive an object argument");

192+

}

193+

return value as Record<string, unknown>;

194+

}

195+196+

function continueConversationRef(mock: MockWithCalls): Record<string, unknown> {

197+

const ref = mock.mock.calls[0]?.[1];

198+

if (ref === undefined || ref === null || typeof ref !== "object" || Array.isArray(ref)) {

199+

throw new Error("expected continueConversation ref object");

200+

}

201+

return ref as Record<string, unknown>;

202+

}

203+184204

describe("sendMessageMSTeams", () => {

185205

beforeEach(() => {

186206

mockState.loadOutboundMediaFromUrl.mockReset();

@@ -244,21 +264,16 @@ describe("sendMessageMSTeams", () => {

244264

},

245265

);

246266247-

expect(mockState.sendMSTeamsMessages).toHaveBeenCalledWith(

248-

expect.objectContaining({

249-

messages: [

250-

expect.objectContaining({

251-

text: "hello",

252-

mediaUrl: `data:image/png;base64,${mediaBuffer.toString("base64")}`,

253-

}),

254-

],

255-

}),

256-

);

257-

expect(result.receipt).toMatchObject({

258-

primaryPlatformMessageId: "message-1",

259-

platformMessageIds: ["message-1"],

260-

parts: [expect.objectContaining({ platformMessageId: "message-1", kind: "media" })],

261-

});

267+

const sendPayload = firstObjectArg(mockState.sendMSTeamsMessages);

268+

const messages = sendPayload.messages as Array<Record<string, unknown>>;

269+

expect(messages).toHaveLength(1);

270+

expect(messages[0]?.text).toBe("hello");

271+

expect(messages[0]?.mediaUrl).toBe(`data:image/png;base64,${mediaBuffer.toString("base64")}`);

272+

expect(result.receipt?.primaryPlatformMessageId).toBe("message-1");

273+

expect(result.receipt?.platformMessageIds).toEqual(["message-1"]);

274+

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

275+

expect(result.receipt?.parts[0]?.platformMessageId).toBe("message-1");

276+

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

262277

});

263278264279

it("sends with provided cfg even when Teams runtime text helpers are unavailable", async () => {

@@ -277,15 +292,13 @@ describe("sendMessageMSTeams", () => {

277292

text: "hello",

278293

});

279294280-

expect(result).toMatchObject({

281-

messageId: "message-1",

282-

conversationId: "19:conversation@thread.tacv2",

283-

receipt: {

284-

primaryPlatformMessageId: "message-1",

285-

platformMessageIds: ["message-1"],

286-

parts: [expect.objectContaining({ platformMessageId: "message-1", kind: "text" })],

287-

},

288-

});

295+

expect(result.messageId).toBe("message-1");

296+

expect(result.conversationId).toBe("19:conversation@thread.tacv2");

297+

expect(result.receipt?.primaryPlatformMessageId).toBe("message-1");

298+

expect(result.receipt?.platformMessageIds).toEqual(["message-1"]);

299+

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

300+

expect(result.receipt?.parts[0]?.platformMessageId).toBe("message-1");

301+

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

289302290303

expect(mockState.resolveMarkdownTableMode).toHaveBeenCalledWith({

291304

cfg: {},

@@ -317,9 +330,7 @@ describe("sendMessageMSTeams", () => {

317330

text: "threaded reply",

318331

});

319332320-

expect(mockState.sendMSTeamsMessages).toHaveBeenCalledWith(

321-

expect.objectContaining({ replyStyle: "thread" }),

322-

);

333+

expect(firstObjectArg(mockState.sendMSTeamsMessages).replyStyle).toBe("thread");

323334

});

324335325336

it("keeps top-level proactive replyStyle when resolved for a channel", async () => {

@@ -345,9 +356,7 @@ describe("sendMessageMSTeams", () => {

345356

text: "top-level reply",

346357

});

347358348-

expect(mockState.sendMSTeamsMessages).toHaveBeenCalledWith(

349-

expect.objectContaining({ replyStyle: "top-level" }),

350-

);

359+

expect(firstObjectArg(mockState.sendMSTeamsMessages).replyStyle).toBe("top-level");

351360

});

352361353362

it("uses graphChatId instead of conversationId when uploading to SharePoint", async () => {

@@ -378,12 +387,9 @@ describe("sendMessageMSTeams", () => {

378387

});

379388380389

// The Graph-native chatId must be passed to SharePoint upload, not the Bot Framework ID

381-

expect(mockState.uploadAndShareSharePoint).toHaveBeenCalledWith(

382-

expect.objectContaining({

383-

chatId: graphChatId,

384-

siteId: "site-123",

385-

}),

386-

);

390+

const uploadPayload = firstObjectArg(mockState.uploadAndShareSharePoint);

391+

expect(uploadPayload.chatId).toBe(graphChatId);

392+

expect(uploadPayload.siteId).toBe("site-123");

387393

});

388394389395

it("falls back to conversationId when graphChatId is not available", async () => {

@@ -411,12 +417,9 @@ describe("sendMessageMSTeams", () => {

411417

});

412418413419

// Falls back to conversationId when graphChatId is null

414-

expect(mockState.uploadAndShareSharePoint).toHaveBeenCalledWith(

415-

expect.objectContaining({

416-

chatId: botFrameworkConversationId,

417-

siteId: "site-456",

418-

}),

419-

);

420+

const uploadPayload = firstObjectArg(mockState.uploadAndShareSharePoint);

421+

expect(uploadPayload.chatId).toBe(botFrameworkConversationId);

422+

expect(uploadPayload.siteId).toBe("site-456");

420423

});

421424

});

422425

@@ -477,9 +480,7 @@ describe("editMessageMSTeams", () => {

477480

expect(mockContinueConversation).toHaveBeenCalledTimes(1);

478481

const continueConversationCall = mockContinueConversation.mock.calls[0];

479482

expect(continueConversationCall?.[0]).toBe("app-id");

480-

expect(continueConversationCall?.[1]).toEqual(

481-

expect.objectContaining({ activityId: undefined }),

482-

);

483+

expect(continueConversationRef(mockContinueConversation).activityId).toBeUndefined();

483484

expect(typeof continueConversationCall?.[2]).toBe("function");

484485

expect(mockUpdateActivity).toHaveBeenCalledWith({

485486

type: "message",

@@ -530,9 +531,7 @@ describe("deleteMessageMSTeams", () => {

530531

expect(mockContinueConversation).toHaveBeenCalledTimes(1);

531532

const continueConversationCall = mockContinueConversation.mock.calls[0];

532533

expect(continueConversationCall?.[0]).toBe("app-id");

533-

expect(continueConversationCall?.[1]).toEqual(

534-

expect.objectContaining({ activityId: undefined }),

535-

);

534+

expect(continueConversationRef(mockContinueConversation).activityId).toBeUndefined();

536535

expect(typeof continueConversationCall?.[2]).toBe("function");

537536

expect(mockDeleteActivity).toHaveBeenCalledWith("activity-456");

538537

});

@@ -572,8 +571,6 @@ describe("deleteMessageMSTeams", () => {

572571

// appId should be forwarded correctly

573572

expect(mockContinueConversation.mock.calls[0]?.[0]).toBe("my-app-id");

574573

// activityId on the proactive ref should be cleared (undefined) — proactive pattern

575-

expect(mockContinueConversation.mock.calls[0]?.[1]).toMatchObject({

576-

activityId: undefined,

577-

});

574+

expect(continueConversationRef(mockContinueConversation).activityId).toBeUndefined();

578575

});

579576

});