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

推荐订阅源

Stack Overflow Blog
Stack Overflow Blog
Y
Y Combinator Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
M
MIT News - Artificial intelligence
GbyAI
GbyAI
A
About on SuperTechFans
T
The Blog of Author Tim Ferriss
雷峰网
雷峰网
Blog — PlanetScale
Blog — PlanetScale
J
Java Code Geeks
IT之家
IT之家
Microsoft Azure Blog
Microsoft Azure Blog
V
V2EX
爱范儿
爱范儿
N
Netflix TechBlog - Medium
U
Unit 42
博客园 - 三生石上(FineUI控件)
WordPress大学
WordPress大学
博客园 - 叶小钗
G
Google Developers Blog
Jina AI
Jina AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
The GitHub Blog
The GitHub Blog
腾讯CDC

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(gateway): prove agent session bootstrap · openclaw/o...
obviyus · 2026-05-13 · via Recent Commits to openclaw:main

@@ -1,7 +1,9 @@

11

import fs from "node:fs/promises";

2+

import os from "node:os";

23

import path from "node:path";

34

import { afterAll, beforeAll, beforeEach, describe, expect, it, type Mock } from "vitest";

45

import { resolveSessionTranscriptPath } from "../config/sessions.js";

6+

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

57

import { emitAgentEvent } from "../infra/agent-events.js";

68

import { captureEnv } from "../test-utils/env.js";

79

import {

@@ -10,6 +12,7 @@ import {

1012

installGatewayTestHooks,

1113

startGatewayServer,

1214

testState,

15+

writeSessionStore,

1316

} from "./test-helpers.js";

14171518

const { createOpenClawTools } = await import("../agents/openclaw-tools.js");

@@ -45,12 +48,26 @@ async function emitLifecycleAssistantReply(params: {

4548

}) {

4649

const commandParams = params.opts as {

4750

sessionId?: string;

51+

sessionKey?: string;

4852

runId?: string;

4953

extraSystemPrompt?: string;

5054

};

5155

const sessionId = commandParams.sessionId ?? params.defaultSessionId;

5256

const runId = commandParams.runId ?? sessionId;

53-

const sessionFile = resolveSessionTranscriptPath(sessionId);

57+

let sessionFile = resolveSessionTranscriptPath(sessionId);

58+

if (testState.sessionStorePath && commandParams.sessionKey) {

59+

const rawStore = JSON.parse(await fs.readFile(testState.sessionStorePath, "utf-8")) as Record<

60+

string,

61+

{

62+

sessionId?: string;

63+

sessionFile?: string;

64+

}

65+

>;

66+

const entry = rawStore[commandParams.sessionKey];

67+

if (entry?.sessionId === sessionId && entry.sessionFile) {

68+

sessionFile = entry.sessionFile;

69+

}

70+

}

5471

await fs.mkdir(path.dirname(sessionFile), { recursive: true });

55725673

const startedAt = Date.now();

@@ -220,3 +237,97 @@ describe("sessions_send label lookup", () => {

220237

},

221238

);

222239

});

240+241+

describe("sessions_send agent targeting", () => {

242+

it(

243+

"starts configured agent main session by agentId before sending",

244+

{ timeout: SESSION_SEND_E2E_TIMEOUT_MS },

245+

async () => {

246+

const configPath = process.env.OPENCLAW_CONFIG_PATH;

247+

if (!configPath) {

248+

throw new Error("OPENCLAW_CONFIG_PATH missing in gateway test environment");

249+

}

250+

const dir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-sessions-send-agent-"));

251+

const config: OpenClawConfig = {

252+

tools: {

253+

sessions: {

254+

visibility: "all",

255+

},

256+

agentToAgent: {

257+

enabled: true,

258+

},

259+

},

260+

agents: {

261+

list: [{ id: "main", default: true }, { id: "orion" }],

262+

},

263+

};

264+265+

testState.sessionStorePath = path.join(dir, "sessions.json");

266+

testState.agentsConfig = config.agents;

267+

try {

268+

await fs.mkdir(path.dirname(configPath), { recursive: true });

269+

await fs.writeFile(configPath, JSON.stringify(config, null, 2) + "\n", "utf-8");

270+

await writeSessionStore({

271+

entries: {

272+

main: {

273+

sessionId: "sess-main",

274+

updatedAt: Date.now(),

275+

},

276+

},

277+

});

278+279+

const spy = agentCommand as unknown as Mock<(opts: unknown) => Promise<void>>;

280+

spy.mockImplementation(async (opts: unknown) =>

281+

emitLifecycleAssistantReply({

282+

opts,

283+

defaultSessionId: "orion-created",

284+

resolveText: () => "orion response",

285+

}),

286+

);

287+

spy.mockClear();

288+289+

const tool = createOpenClawTools({

290+

agentSessionKey: "agent:main:main",

291+

config,

292+

}).find((candidate) => candidate.name === "sessions_send");

293+

if (!tool) {

294+

throw new Error("missing sessions_send tool");

295+

}

296+297+

const result = await tool.execute("call-agent-id", {

298+

agentId: "orion",

299+

message: "hello orion",

300+

timeoutSeconds: 5,

301+

});

302+

const details = result.details as {

303+

status?: string;

304+

reply?: string;

305+

sessionKey?: string;

306+

};

307+

expect(details.status).toBe("ok");

308+

expect(details.reply).toBe("orion response");

309+

expect(details.sessionKey).toBe("agent:orion:main");

310+311+

const firstCall = spy.mock.calls.at(0)?.[0] as

312+

| { sessionId?: string; sessionKey?: string }

313+

| undefined;

314+

expect(firstCall?.sessionKey).toBe("agent:orion:main");

315+

expect(firstCall?.sessionId).toBeTypeOf("string");

316+317+

const rawStore = JSON.parse(

318+

await fs.readFile(testState.sessionStorePath, "utf-8"),

319+

) as Record<

320+

string,

321+

{

322+

sessionId?: string;

323+

}

324+

>;

325+

expect(rawStore["agent:orion:main"]?.sessionId).toBe(firstCall?.sessionId);

326+

} finally {

327+

testState.agentsConfig = undefined;

328+

testState.sessionStorePath = undefined;

329+

await fs.rm(dir, { recursive: true, force: true, maxRetries: 5, retryDelay: 50 });

330+

}

331+

},

332+

);

333+

});