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

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
博客园 - 聂微东
Jina AI
Jina AI
The Cloudflare Blog
V
Visual Studio Blog
博客园_首页
量子位
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 【当耐特】
爱范儿
爱范儿
博客园 - 三生石上(FineUI控件)
小众软件
小众软件
博客园 - 司徒正美
阮一峰的网络日志
阮一峰的网络日志
Last Week in AI
Last Week in AI
V
V2EX
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 叶小钗
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
T
Tailwind CSS Blog
博客园 - 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
fix(cli): resolve trajectory export stores consistently (...
youngting520 · 2026-06-23 · via Recent Commits to openclaw:main

@@ -4,8 +4,13 @@ import type { RuntimeEnv } from "../runtime.js";

44

import { exportTrajectoryCommand } from "./export-trajectory.js";

5566

const mocks = vi.hoisted(() => ({

7+

getRuntimeConfig: vi.fn(),

78

loadSessionEntry: vi.fn(),

8-

resolveDefaultSessionStorePath: vi.fn(),

9+

resolveStorePath: vi.fn(),

10+

}));

11+12+

vi.mock("../config/config.js", () => ({

13+

getRuntimeConfig: mocks.getRuntimeConfig,

914

}));

10151116

vi.mock("../config/sessions/session-accessor.js", () => ({

@@ -16,7 +21,7 @@ vi.mock("../config/sessions/paths.js", async (importOriginal) => {

1621

const actual = await importOriginal<typeof import("../config/sessions/paths.js")>();

1722

return {

1823

...actual,

19-

resolveDefaultSessionStorePath: mocks.resolveDefaultSessionStorePath,

24+

resolveStorePath: mocks.resolveStorePath,

2025

};

2126

});

2227

@@ -31,7 +36,8 @@ function createRuntime(): RuntimeEnv {

3136

describe("exportTrajectoryCommand", () => {

3237

beforeEach(() => {

3338

vi.clearAllMocks();

34-

mocks.resolveDefaultSessionStorePath.mockReturnValue("/tmp/openclaw/sessions.json");

39+

mocks.getRuntimeConfig.mockReturnValue({});

40+

mocks.resolveStorePath.mockReturnValue("/tmp/openclaw/sessions.json");

3541

mocks.loadSessionEntry.mockReturnValue(undefined);

3642

});

3743

@@ -64,6 +70,7 @@ describe("exportTrajectoryCommand", () => {

6470

JSON.stringify({ output: "/tmp/export.json" }),

6571

"utf8",

6672

).toString("base64url");

73+

mocks.resolveStorePath.mockReturnValue("/tmp/direct-store.json");

67746875

await exportTrajectoryCommand(

6976

{

@@ -74,7 +81,10 @@ describe("exportTrajectoryCommand", () => {

7481

runtime,

7582

);

768377-

expect(mocks.resolveDefaultSessionStorePath).not.toHaveBeenCalled();

84+

expect(mocks.getRuntimeConfig).not.toHaveBeenCalled();

85+

expect(mocks.resolveStorePath).toHaveBeenCalledWith("/tmp/direct-store.json", {

86+

agentId: "main",

87+

});

7888

expect(mocks.loadSessionEntry).toHaveBeenCalledWith({

7989

agentId: "main",

8090

sessionKey: "agent:main:telegram:direct:123",

@@ -86,11 +96,91 @@ describe("exportTrajectoryCommand", () => {

8696

expect(runtime.exit).toHaveBeenCalledWith(1);

8797

});

889889-

it("points missing session users at the sessions command", async () => {

99+

it.each([

100+

["home-prefixed", "~/x/sessions.json", "/home/demo/x/sessions.json"],

101+

[

102+

"agent template",

103+

"/tmp/openclaw/agents/{agentId}/sessions/sessions.json",

104+

"/tmp/openclaw/agents/work/sessions/sessions.json",

105+

],

106+

])(

107+

"resolves explicit --store %s paths through the shared resolver",

108+

async (_name, store, resolvedStore) => {

109+

const runtime = createRuntime();

110+

mocks.resolveStorePath.mockReturnValue(resolvedStore);

111+112+

await exportTrajectoryCommand(

113+

{ sessionKey: "agent:work:telegram:direct:123", store },

114+

runtime,

115+

);

116+117+

expect(mocks.getRuntimeConfig).not.toHaveBeenCalled();

118+

expect(mocks.resolveStorePath).toHaveBeenCalledWith(store, { agentId: "work" });

119+

expect(mocks.loadSessionEntry).toHaveBeenCalledWith({

120+

agentId: "work",

121+

sessionKey: "agent:work:telegram:direct:123",

122+

storePath: resolvedStore,

123+

});

124+

expect(runtime.error).toHaveBeenCalledWith(

125+

"Session not found: agent:work:telegram:direct:123. Run openclaw sessions to see available sessions.",

126+

);

127+

expect(runtime.exit).toHaveBeenCalledWith(1);

128+

},

129+

);

130+131+

it("uses configured session.store when no explicit store is provided", async () => {

132+

const runtime = createRuntime();

133+

mocks.getRuntimeConfig.mockReturnValue({

134+

session: { store: "/tmp/openclaw/agents/{agentId}/sessions/sessions.json" },

135+

});

136+

mocks.resolveStorePath.mockReturnValue("/tmp/openclaw/agents/work/sessions/sessions.json");

137+138+

await exportTrajectoryCommand({ sessionKey: "agent:work:telegram:direct:123" }, runtime);

139+140+

expect(mocks.resolveStorePath).toHaveBeenCalledWith(

141+

"/tmp/openclaw/agents/{agentId}/sessions/sessions.json",

142+

{ agentId: "work" },

143+

);

144+

expect(mocks.loadSessionEntry).toHaveBeenCalledWith({

145+

agentId: "work",

146+

sessionKey: "agent:work:telegram:direct:123",

147+

storePath: "/tmp/openclaw/agents/work/sessions/sessions.json",

148+

});

149+

expect(runtime.error).toHaveBeenCalledWith(

150+

"Session not found: agent:work:telegram:direct:123. Run openclaw sessions to see available sessions.",

151+

);

152+

expect(runtime.exit).toHaveBeenCalledWith(1);

153+

});

154+155+

it("falls back through resolveStorePath when no session.store is configured", async () => {

156+

const runtime = createRuntime();

157+158+

await exportTrajectoryCommand({ sessionKey: "agent:main:telegram:direct:123" }, runtime);

159+160+

expect(mocks.resolveStorePath).toHaveBeenCalledWith(undefined, { agentId: "main" });

161+

expect(mocks.loadSessionEntry).toHaveBeenCalledWith({

162+

agentId: "main",

163+

sessionKey: "agent:main:telegram:direct:123",

164+

storePath: "/tmp/openclaw/sessions.json",

165+

});

166+

expect(runtime.error).toHaveBeenCalledWith(

167+

"Session not found: agent:main:telegram:direct:123. Run openclaw sessions to see available sessions.",

168+

);

169+

expect(runtime.exit).toHaveBeenCalledWith(1);

170+

});

171+172+

it("passes blank configured session.store through the default-store resolver", async () => {

90173

const runtime = createRuntime();

174+

mocks.getRuntimeConfig.mockReturnValue({ session: { store: "" } });

9117592176

await exportTrajectoryCommand({ sessionKey: "agent:main:telegram:direct:123" }, runtime);

93177178+

expect(mocks.resolveStorePath).toHaveBeenCalledWith("", { agentId: "main" });

179+

expect(mocks.loadSessionEntry).toHaveBeenCalledWith({

180+

agentId: "main",

181+

sessionKey: "agent:main:telegram:direct:123",

182+

storePath: "/tmp/openclaw/sessions.json",

183+

});

94184

expect(runtime.error).toHaveBeenCalledWith(

95185

"Session not found: agent:main:telegram:direct:123. Run openclaw sessions to see available sessions.",

96186

);