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

推荐订阅源

G
Google Developers Blog
D
Docker
Stack Overflow Blog
Stack Overflow Blog
GbyAI
GbyAI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Google DeepMind News
Google DeepMind News
M
MIT News - Artificial intelligence
H
Help Net Security
T
Tailwind CSS Blog
Engineering at Meta
Engineering at Meta
L
LangChain Blog
MongoDB | Blog
MongoDB | Blog
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
S
SegmentFault 最新的问题
博客园 - 司徒正美
C
Check Point Blog
B
Blog
Y
Y Combinator Blog
Microsoft Azure Blog
Microsoft Azure Blog
P
Proofpoint News Feed
F
Fortinet All Blogs
美团技术团队
D
DataBreaches.Net

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(perf): bound google meet retry waits · openclaw/open...
steipete · 2026-05-06 · via Recent Commits to openclaw:main

@@ -2885,11 +2885,14 @@ describe("google-meet plugin", () => {

28852885

}) => Promise<void>)

28862886

| undefined;

28872887

const respond = vi.fn();

2888+

vi.useFakeTimers();

288828892889-

await handler?.({

2890+

const run = handler?.({

28902891

params: { url: "https://meet.google.com/abc-defg-hij" },

28912892

respond,

28922893

});

2894+

await vi.advanceTimersByTimeAsync(2_000);

2895+

await run;

2893289628942897

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

28952898

spoken: false,

@@ -2905,6 +2908,7 @@ describe("google-meet plugin", () => {

29052908

});

29062909

expect(inspectCount).toBeGreaterThanOrEqual(2);

29072910

} finally {

2911+

vi.useRealTimers();

29082912

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

29092913

}

29102914

});

@@ -4831,6 +4835,7 @@ describe("google-meet plugin", () => {

48314835

});

4832483648334837

it("stops paired-node realtime audio after repeated input pull failures", async () => {

4838+

vi.useFakeTimers();

48344839

const bridge = {

48354840

connect: vi.fn(async () => {}),

48364841

sendAudio: vi.fn(),

@@ -4860,38 +4865,42 @@ describe("google-meet plugin", () => {

48604865

},

48614866

};

486248674863-

const handle = await startNodeRealtimeAudioBridge({

4864-

config: resolveGoogleMeetConfig({

4865-

realtime: { provider: "openai", model: "gpt-realtime" },

4866-

}),

4867-

fullConfig: {} as never,

4868-

runtime: runtime as never,

4869-

meetingSessionId: "meet-1",

4870-

nodeId: "node-1",

4871-

bridgeId: "bridge-1",

4872-

logger: noopLogger,

4873-

providers: [provider],

4874-

});

4875-4876-

await vi.waitFor(

4877-

() => {

4878-

expect(bridge.close).toHaveBeenCalled();

4879-

},

4880-

{ timeout: 3_000 },

4881-

);

4882-

expect(handle.getHealth()).toMatchObject({

4883-

bridgeClosed: true,

4884-

consecutiveInputErrors: 5,

4885-

lastInputError: "node invoke timeout",

4886-

});

4887-

expect(runtime.nodes.invoke).toHaveBeenCalledWith(

4888-

expect.objectContaining({

4868+

try {

4869+

const handle = await startNodeRealtimeAudioBridge({

4870+

config: resolveGoogleMeetConfig({

4871+

realtime: { provider: "openai", model: "gpt-realtime" },

4872+

}),

4873+

fullConfig: {} as never,

4874+

runtime: runtime as never,

4875+

meetingSessionId: "meet-1",

48894876

nodeId: "node-1",

4890-

command: "googlemeet.chrome",

4891-

params: { action: "stop", bridgeId: "bridge-1" },

4892-

timeoutMs: 5_000,

4893-

}),

4894-

);

4877+

bridgeId: "bridge-1",

4878+

logger: noopLogger,

4879+

providers: [provider],

4880+

});

4881+4882+

await vi.waitFor(

4883+

() => {

4884+

expect(bridge.close).toHaveBeenCalled();

4885+

},

4886+

{ timeout: 3_000 },

4887+

);

4888+

expect(handle.getHealth()).toMatchObject({

4889+

bridgeClosed: true,

4890+

consecutiveInputErrors: 5,

4891+

lastInputError: "node invoke timeout",

4892+

});

4893+

expect(runtime.nodes.invoke).toHaveBeenCalledWith(

4894+

expect.objectContaining({

4895+

nodeId: "node-1",

4896+

command: "googlemeet.chrome",

4897+

params: { action: "stop", bridgeId: "bridge-1" },

4898+

timeoutMs: 5_000,

4899+

}),

4900+

);

4901+

} finally {

4902+

vi.useRealTimers();

4903+

}

48954904

});

4896490548974906

it("exposes node-host list and stop-by-url bridge actions", async () => {