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

推荐订阅源

U
Unit 42
博客园 - 司徒正美
博客园 - 三生石上(FineUI控件)
博客园_首页
IT之家
IT之家
The Cloudflare Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
酷 壳 – CoolShell
酷 壳 – CoolShell
爱范儿
爱范儿
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Y
Y Combinator Blog
A
About on SuperTechFans
Microsoft Azure Blog
Microsoft Azure Blog
美团技术团队
S
SegmentFault 最新的问题
T
Tailwind CSS Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
M
MIT News - Artificial intelligence
WordPress大学
WordPress大学
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 【当耐特】
小众软件
小众软件
有赞技术团队
有赞技术团队

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
perf(agent): defer session resolver for scoped gateway tu...
steipete · 2026-05-29 · via Recent Commits to openclaw:main

@@ -5,7 +5,7 @@ import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";

55

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

66

import { loggingState } from "../logging/state.js";

77

import type { RuntimeEnv } from "../runtime.js";

8-

import { agentCliCommand } from "./agent-via-gateway.js";

8+

import { __testing as agentViaGatewayTesting, agentCliCommand } from "./agent-via-gateway.js";

99

import type { agentCommand as AgentCommand } from "./agent.js";

10101111

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

@@ -21,6 +21,7 @@ const isGatewayTransportError = vi.hoisted(() =>

2121

);

2222

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

2323

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

24+

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

24252526

const runtime: RuntimeEnv = {

2627

log: vi.fn(),

@@ -147,6 +148,17 @@ async function waitForAgentCommandCall(expectedCalls = 1) {

147148

expect(agentCommand).toHaveBeenCalledTimes(expectedCalls);

148149

}

149150151+

async function waitForGatewayCall(expectedCalls = 1) {

152+

for (

153+

let attempt = 0;

154+

attempt < 50 && callGateway.mock.calls.length < expectedCalls;

155+

attempt += 1

156+

) {

157+

await new Promise<void>((resolve) => setTimeout(resolve, 0));

158+

}

159+

expect(callGateway).toHaveBeenCalledTimes(expectedCalls);

160+

}

161+150162

function mockMessages(mock: unknown): string[] {

151163

const calls = (mock as { mock?: { calls?: unknown[][] } }).mock?.calls ?? [];

152164

return calls.map(([message]) => String(message));

@@ -209,6 +221,9 @@ let originalForceConsoleToStderr = false;

209221210222

beforeEach(() => {

211223

vi.clearAllMocks();

224+

agentViaGatewayTesting.resetLazyImportsForTests();

225+

loadAgentSessionModuleMock.mockImplementation(async () => await import("./agent/session.js"));

226+

agentViaGatewayTesting.setAgentSessionModuleLoaderForTests(loadAgentSessionModuleMock);

212227

originalForceConsoleToStderr = loggingState.forceConsoleToStderr;

213228

loggingState.forceConsoleToStderr = false;

214229

});

@@ -270,6 +285,7 @@ describe("agentCliCommand", () => {

270285

expect(params.sessionId).toBeUndefined();

271286

expect(params.to).toBeUndefined();

272287

expect(agentCommand).not.toHaveBeenCalled();

288+

expect(loadAgentSessionModuleMock).not.toHaveBeenCalled();

273289

});

274290

});

275291

@@ -529,7 +545,7 @@ describe("agentCliCommand", () => {

529545

const run = agentCliCommand({ message: "hi", to: "+1555" }, runtime, {

530546

process: signals.processLike,

531547

});

532-

await Promise.resolve();

548+

await waitForGatewayCall();

533549

signals.emit(signalName);

534550

expect(signals.listenerCount("SIGTERM")).toBe(0);

535551

expect(signals.listenerCount("SIGINT")).toBe(0);

@@ -596,7 +612,7 @@ describe("agentCliCommand", () => {

596612

process: signals.processLike,

597613

},

598614

);

599-

await Promise.resolve();

615+

await waitForGatewayCall();

600616

signals.emit("SIGTERM");

601617602618

await run;

@@ -638,7 +654,7 @@ describe("agentCliCommand", () => {

638654

const run = agentCliCommand({ message: "hi", to: "+1555" }, runtime, {

639655

process: signals.processLike,

640656

});

641-

await Promise.resolve();

657+

await waitForGatewayCall();

642658

signals.emit("SIGTERM");

643659644660

await run;

@@ -702,7 +718,7 @@ describe("agentCliCommand", () => {

702718

process: signals.processLike,

703719

},

704720

);

705-

await Promise.resolve();

721+

await waitForGatewayCall();

706722

signals.emit("SIGTERM");

707723708724

await run;

@@ -778,7 +794,7 @@ describe("agentCliCommand", () => {

778794

process: signals.processLike,

779795

},

780796

);

781-

await Promise.resolve();

797+

await waitForGatewayCall();

782798

signals.emit("SIGTERM");

783799784800

await run;

@@ -856,7 +872,7 @@ describe("agentCliCommand", () => {

856872

process: signals.processLike,

857873

},

858874

);

859-

await Promise.resolve();

875+

await waitForGatewayCall();

860876

signals.emit("SIGTERM");

861877862878

await run;

@@ -932,7 +948,7 @@ describe("agentCliCommand", () => {

932948

process: signals.processLike,

933949

},

934950

);

935-

await Promise.resolve();

951+

await waitForGatewayCall();

936952

signals.emit("SIGTERM");

937953938954

await run;