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

推荐订阅源

阮一峰的网络日志
阮一峰的网络日志
Apple Machine Learning Research
Apple Machine Learning Research
量子位
D
DataBreaches.Net
云风的 BLOG
云风的 BLOG
博客园 - 聂微东
博客园_首页
D
Docker
博客园 - 叶小钗
S
SegmentFault 最新的问题
大猫的无限游戏
大猫的无限游戏
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks
H
Hackread – Cybersecurity News, Data Breaches, AI and More
A
About on SuperTechFans
博客园 - 三生石上(FineUI控件)
F
Fortinet All Blogs
小众软件
小众软件
aimingoo的专栏
aimingoo的专栏
爱范儿
爱范儿
腾讯CDC
罗磊的独立博客
雷峰网
雷峰网
博客园 - Franky

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 google meet export assertions · openclaw/op...
steipete · 2026-05-09 · via Recent Commits to openclaw:main

@@ -1515,15 +1515,14 @@ describe("google-meet plugin", () => {

15151515

const result = await tool.execute("id", { action: "setup_status" });

1516151615171517

expect(result.details.ok).toBe(false);

1518-

expect(result.details.checks).toEqual(

1519-

expect.arrayContaining([

1520-

expect.objectContaining({

1521-

id: "audio-bridge",

1522-

ok: false,

1523-

message: expect.stringContaining("chrome.audioBridgeCommand is bidi-only"),

1524-

}),

1525-

]),

1526-

);

1518+

const audioBridgeCheck = result.details.checks

1519+

?.map((check) => requireRecord(check, "setup check"))

1520+

.find((check) => check.id === "audio-bridge");

1521+

if (!audioBridgeCheck) {

1522+

throw new Error("Expected audio-bridge setup check");

1523+

}

1524+

expect(audioBridgeCheck.ok).toBe(false);

1525+

expect(String(audioBridgeCheck.message)).toContain("chrome.audioBridgeCommand is bidi-only");

15271526

} finally {

15281527

Object.defineProperty(process, "platform", { value: originalPlatform });

15291528

}

@@ -1547,7 +1546,8 @@ describe("google-meet plugin", () => {

15471546

pageSize: 3,

15481547

});

154915481550-

expect(result.details.attendance).toEqual([expect.objectContaining({ displayName: "Alice" })]);

1549+

expect(result.details.attendance).toHaveLength(1);

1550+

expect(result.details.attendance?.[0]?.displayName).toBe("Alice");

15511551

});

1552155215531553

it("writes export bundles through the tool", async () => {

@@ -1572,22 +1572,37 @@ describe("google-meet plugin", () => {

15721572

zip: true,

15731573

});

157415741575-

expect(result.details.files).toEqual(

1576-

expect.arrayContaining([path.join(tempDir, "manifest.json")]),

1577-

);

1575+

expect(result.details.files).toContain(path.join(tempDir, "manifest.json"));

15781576

expect(result.details.zipFile).toBe(`${tempDir}.zip`);

1579-

const manifest = JSON.parse(readFileSync(path.join(tempDir, "manifest.json"), "utf8"));

1580-

expect(manifest).toMatchObject({

1581-

request: {

1582-

conferenceRecord: "rec-1",

1583-

includeDocumentBodies: true,

1584-

},

1585-

counts: {

1586-

attendanceRows: 1,

1587-

warnings: 0,

1588-

},

1589-

files: expect.arrayContaining(["summary.md", "manifest.json"]),

1577+

const manifest = requireRecord(

1578+

JSON.parse(readFileSync(path.join(tempDir, "manifest.json"), "utf8")),

1579+

"export manifest",

1580+

);

1581+

expect(manifest.request).toEqual({

1582+

conferenceRecord: "rec-1",

1583+

includeDocumentBodies: true,

1584+

includeTranscriptEntries: true,

1585+

allConferenceRecords: false,

1586+

mergeDuplicateParticipants: true,

15901587

});

1588+

expect(manifest.counts).toEqual({

1589+

conferenceRecords: 1,

1590+

artifacts: 1,

1591+

recordings: 1,

1592+

transcripts: 1,

1593+

transcriptEntries: 1,

1594+

smartNotes: 1,

1595+

attendanceRows: 1,

1596+

warnings: 0,

1597+

});

1598+

expect(manifest.files).toEqual([

1599+

"summary.md",

1600+

"attendance.csv",

1601+

"transcript.md",

1602+

"artifacts.json",

1603+

"attendance.json",

1604+

"manifest.json",

1605+

]);

15911606

} finally {

15921607

rmSync(tempDir, { recursive: true, force: true });

15931608

rmSync(`${tempDir}.zip`, { force: true });

@@ -1616,12 +1631,15 @@ describe("google-meet plugin", () => {

16161631

dryRun: true,

16171632

});

161816331619-

expect(result.details).toMatchObject({

1620-

dryRun: true,

1621-

manifest: {

1622-

files: expect.arrayContaining(["summary.md", "manifest.json"]),

1623-

},

1624-

});

1634+

expect(result.details.dryRun).toBe(true);

1635+

expect(result.details.manifest?.files).toEqual([

1636+

"summary.md",

1637+

"attendance.csv",

1638+

"transcript.md",

1639+

"artifacts.json",

1640+

"attendance.json",

1641+

"manifest.json",

1642+

]);

16251643

expect(existsSync(outputDir)).toBe(false);

16261644

} finally {

16271645

rmSync(parentDir, { recursive: true, force: true });

@@ -1645,7 +1663,7 @@ describe("google-meet plugin", () => {

16451663

meeting: "abc-defg-hij",

16461664

});

164716651648-

expect(result.details.conferenceRecord).toMatchObject({ name: "conferenceRecords/rec-1" });

1666+

expect(result.details.conferenceRecord?.name).toBe("conferenceRecords/rec-1");

16491667

});

1650166816511669

it("reports the latest conference record from today's calendar through the tool", async () => {

@@ -1665,9 +1683,7 @@ describe("google-meet plugin", () => {

16651683

today: true,

16661684

});

166716851668-

expect(result.details.calendarEvent).toMatchObject({

1669-

meetingUri: "https://meet.google.com/abc-defg-hij",

1670-

});

1686+

expect(result.details.calendarEvent?.meetingUri).toBe("https://meet.google.com/abc-defg-hij");

16711687

});

1672168816731689

it("reports calendar event previews through the tool", async () => {

@@ -1687,12 +1703,9 @@ describe("google-meet plugin", () => {

16871703

today: true,

16881704

});

168917051690-

expect(result.details.events).toEqual([

1691-

expect.objectContaining({

1692-

selected: true,

1693-

meetingUri: "https://meet.google.com/abc-defg-hij",

1694-

}),

1695-

]);

1706+

expect(result.details.events).toHaveLength(1);

1707+

expect(result.details.events?.[0]?.selected).toBe(true);

1708+

expect(result.details.events?.[0]?.meetingUri).toBe("https://meet.google.com/abc-defg-hij");

16961709

});

1697171016981711

it("fails setup status when the configured Chrome node is not connected", async () => {