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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
美团技术团队
Last Week in AI
Last Week in AI
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
博客园 - 聂微东
雷峰网
雷峰网
阮一峰的网络日志
阮一峰的网络日志
博客园 - 叶小钗
IT之家
IT之家
Google DeepMind News
Google DeepMind News
D
Docker
J
Java Code Geeks
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 【当耐特】
V
V2EX
Hugging Face - Blog
Hugging Face - Blog
博客园 - Franky
月光博客
月光博客
宝玉的分享
宝玉的分享
酷 壳 – CoolShell
酷 壳 – CoolShell
aimingoo的专栏
aimingoo的专栏
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

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: generalize legacy state migration coverage · opencl...
steipete · 2026-04-22 · via Recent Commits to openclaw:main

@@ -1,11 +1,82 @@

1+

import fsSync from "node:fs";

12

import fs from "node:fs/promises";

23

import path from "node:path";

3-

import { afterEach, describe, expect, it } from "vitest";

4+

import { afterEach, describe, expect, it, vi } from "vitest";

45

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

56

import { resolveChannelAllowFromPath } from "../pairing/pairing-store.js";

67

import { createTrackedTempDirs } from "../test-utils/tracked-temp-dirs.js";

78

import { detectLegacyStateMigrations, runLegacyStateMigrations } from "./state-migrations.js";

8910+

vi.mock("../channels/plugins/bundled.js", () => {

11+

function fileExists(filePath: string): boolean {

12+

try {

13+

return fsSync.statSync(filePath).isFile();

14+

} catch {

15+

return false;

16+

}

17+

}

18+19+

function resolveChatAppAccountId(cfg: OpenClawConfig): string {

20+

const channel = (cfg.channels as Record<string, { defaultAccount?: string }> | undefined)

21+

?.chatapp;

22+

return channel?.defaultAccount ?? "default";

23+

}

24+25+

return {

26+

listBundledChannelLegacySessionSurfaces: vi.fn(() => [

27+

{

28+

isLegacyGroupSessionKey: (key: string) => /^group:mobile-/i.test(key.trim()),

29+

canonicalizeLegacySessionKey: ({ key, agentId }: { key: string; agentId: string }) =>

30+

/^group:mobile-/i.test(key.trim())

31+

? `agent:${agentId}:mobileauth:${key.trim().toLowerCase()}`

32+

: null,

33+

},

34+

]),

35+

listBundledChannelLegacyStateMigrationDetectors: vi.fn(() => [

36+

({ oauthDir }: { oauthDir: string }) => {

37+

let entries: fsSync.Dirent[] = [];

38+

try {

39+

entries = fsSync.readdirSync(oauthDir, { withFileTypes: true });

40+

} catch {

41+

return [];

42+

}

43+

return entries.flatMap((entry) => {

44+

if (!entry.isFile() || !/^(creds|pre-key-1)\.json$/u.test(entry.name)) {

45+

return [];

46+

}

47+

const sourcePath = path.join(oauthDir, entry.name);

48+

const targetPath = path.join(oauthDir, "mobileauth", "default", entry.name);

49+

return fileExists(targetPath)

50+

? []

51+

: [

52+

{

53+

kind: "move" as const,

54+

label: `MobileAuth auth ${entry.name}`,

55+

sourcePath,

56+

targetPath,

57+

},

58+

];

59+

});

60+

},

61+

({ cfg, env }: { cfg: OpenClawConfig; env: NodeJS.ProcessEnv }) => {

62+

const root = env.OPENCLAW_STATE_DIR;

63+

if (!root) {

64+

return [];

65+

}

66+

const sourcePath = path.join(root, "credentials", "chatapp-allowFrom.json");

67+

const targetPath = path.join(

68+

root,

69+

"credentials",

70+

`chatapp-${resolveChatAppAccountId(cfg)}-allowFrom.json`,

71+

);

72+

return fileExists(sourcePath) && !fileExists(targetPath)

73+

? [{ kind: "copy" as const, label: "ChatApp pairing allowFrom", sourcePath, targetPath }]

74+

: [];

75+

},

76+

]),

77+

};

78+

});

79+980

const tempDirs = createTrackedTempDirs();

1081

const createTempDir = () => tempDirs.make("openclaw-state-migrations-test-");

1182

@@ -18,7 +89,7 @@ function createConfig(): OpenClawConfig {

1889

mainKey: "desk",

1990

},

2091

channels: {

21-

telegram: {

92+

chatapp: {

2293

defaultAccount: "alpha",

2394

accounts: {

2495

beta: {},

@@ -57,7 +128,7 @@ async function createLegacyStateFixture(params?: { includePreKey?: boolean }) {

57128

path.join(stateDir, "agents", "worker-1", "sessions", "sessions.json"),

58129

`${JSON.stringify(

59130

{

60-

"group:123@g.us": { sessionId: "group-session", updatedAt: 5 },

131+

"group:mobile-room": { sessionId: "group-session", updatedAt: 5 },

61132

"group:legacy-room": { sessionId: "generic-group-session", updatedAt: 4 },

62133

},

63134

null,

@@ -75,7 +146,7 @@ async function createLegacyStateFixture(params?: { includePreKey?: boolean }) {

75146

);

76147

}

77148

await fs.writeFile(path.join(stateDir, "credentials", "oauth.json"), '{"oauth":true}\n', "utf8");

78-

await fs.writeFile(resolveChannelAllowFromPath("telegram", env), '["123","456"]\n', "utf8");

149+

await fs.writeFile(resolveChannelAllowFromPath("chatapp", env), '["123","456"]\n', "utf8");

7915080151

return {

81152

root,

@@ -90,7 +161,7 @@ afterEach(async () => {

90161

});

9116292163

describe("state migrations", () => {

93-

it("detects legacy sessions, agent files, whatsapp auth, and telegram allowFrom copies", async () => {

164+

it("detects legacy sessions, agent files, channel auth, and allowFrom copies", async () => {

94165

const { root, stateDir, env, cfg } = await createLegacyStateFixture();

9516696167

const detected = await detectLegacyStateMigrations({

@@ -102,19 +173,19 @@ describe("state migrations", () => {

102173

expect(detected.targetAgentId).toBe("worker-1");

103174

expect(detected.targetMainKey).toBe("desk");

104175

expect(detected.sessions.hasLegacy).toBe(true);

105-

expect(detected.sessions.legacyKeys).toEqual(["group:123@g.us", "group:legacy-room"]);

176+

expect(detected.sessions.legacyKeys).toEqual(["group:mobile-room", "group:legacy-room"]);

106177

expect(detected.agentDir.hasLegacy).toBe(true);

107178

expect(detected.channelPlans.hasLegacy).toBe(true);

108179

expect(detected.channelPlans.plans.map((plan) => plan.targetPath)).toEqual([

109-

resolveChannelAllowFromPath("telegram", env, "alpha"),

110-

path.join(stateDir, "credentials", "whatsapp", "default", "creds.json"),

180+

path.join(stateDir, "credentials", "mobileauth", "default", "creds.json"),

181+

resolveChannelAllowFromPath("chatapp", env, "alpha"),

111182

]);

112183

expect(detected.preview).toEqual([

113184

`- Sessions: ${path.join(stateDir, "sessions")}${path.join(stateDir, "agents", "worker-1", "sessions")}`,

114185

`- Sessions: canonicalize legacy keys in ${path.join(stateDir, "agents", "worker-1", "sessions", "sessions.json")}`,

115186

`- Agent dir: ${path.join(stateDir, "agent")}${path.join(stateDir, "agents", "worker-1", "agent")}`,

116-

`- Telegram pairing allowFrom: ${resolveChannelAllowFromPath("telegram", env)}${resolveChannelAllowFromPath("telegram", env, "alpha")}`,

117-

`- WhatsApp auth creds.json: ${path.join(stateDir, "credentials", "creds.json")}${path.join(stateDir, "credentials", "whatsapp", "default", "creds.json")}`,

187+

`- MobileAuth auth creds.json: ${path.join(stateDir, "credentials", "creds.json")}${path.join(stateDir, "credentials", "mobileauth", "default", "creds.json")}`,

188+

`- ChatApp pairing allowFrom: ${resolveChannelAllowFromPath("chatapp", env)}${resolveChannelAllowFromPath("chatapp", env, "alpha")}`,

118189

]);

119190

});

120191

@@ -138,9 +209,9 @@ describe("state migrations", () => {

138209

"Canonicalized 2 legacy session key(s)",

139210

"Moved trace.jsonl → agents/worker-1/sessions",

140211

"Moved agent file settings.json → agents/worker-1/agent",

141-

`Copied Telegram pairing allowFrom${resolveChannelAllowFromPath("telegram", env, "alpha")}`,

142-

`Moved WhatsApp auth creds.json → ${path.join(stateDir, "credentials", "whatsapp", "default", "creds.json")}`,

143-

`Moved WhatsApp auth pre-key-1.json${path.join(stateDir, "credentials", "whatsapp", "default", "pre-key-1.json")}`,

212+

`Moved MobileAuth auth creds.json${path.join(stateDir, "credentials", "mobileauth", "default", "creds.json")}`,

213+

`Moved MobileAuth auth pre-key-1.json → ${path.join(stateDir, "credentials", "mobileauth", "default", "pre-key-1.json")}`,

214+

`Copied ChatApp pairing allowFrom${resolveChannelAllowFromPath("chatapp", env, "alpha")}`,

144215

]);

145216146217

const mergedStore = JSON.parse(

@@ -150,7 +221,9 @@ describe("state migrations", () => {

150221

),

151222

) as Record<string, { sessionId: string }>;

152223

expect(mergedStore["agent:worker-1:desk"]?.sessionId).toBe("legacy-direct");

153-

expect(mergedStore["agent:worker-1:whatsapp:group:123@g.us"]?.sessionId).toBe("group-session");

224+

expect(mergedStore["agent:worker-1:mobileauth:group:mobile-room"]?.sessionId).toBe(

225+

"group-session",

226+

);

154227

expect(mergedStore["agent:worker-1:unknown:group:legacy-room"]?.sessionId).toBe(

155228

"generic-group-session",

156229

);

@@ -169,25 +242,28 @@ describe("state migrations", () => {

169242

fs.readFile(path.join(stateDir, "agents", "worker-1", "agent", "settings.json"), "utf8"),

170243

).resolves.toContain('"ok":true');

171244

await expect(

172-

fs.readFile(path.join(stateDir, "credentials", "whatsapp", "default", "creds.json"), "utf8"),

245+

fs.readFile(

246+

path.join(stateDir, "credentials", "mobileauth", "default", "creds.json"),

247+

"utf8",

248+

),

173249

).resolves.toContain('"auth":true');

174250

await expect(

175251

fs.readFile(

176-

path.join(stateDir, "credentials", "whatsapp", "default", "pre-key-1.json"),

252+

path.join(stateDir, "credentials", "mobileauth", "default", "pre-key-1.json"),

177253

"utf8",

178254

),

179255

).resolves.toContain('"preKey":true');

180256

await expect(

181257

fs.readFile(path.join(stateDir, "credentials", "oauth.json"), "utf8"),

182258

).resolves.toContain('"oauth":true');

183259

await expect(

184-

fs.readFile(resolveChannelAllowFromPath("telegram", env, "alpha"), "utf8"),

260+

fs.readFile(resolveChannelAllowFromPath("chatapp", env, "alpha"), "utf8"),

185261

).resolves.toBe('["123","456"]\n');

186262

await expect(

187-

fs.stat(resolveChannelAllowFromPath("telegram", env, "default")),

263+

fs.stat(resolveChannelAllowFromPath("chatapp", env, "default")),

188264

).rejects.toMatchObject({ code: "ENOENT" });

189265

await expect(

190-

fs.stat(resolveChannelAllowFromPath("telegram", env, "beta")),

266+

fs.stat(resolveChannelAllowFromPath("chatapp", env, "beta")),

191267

).rejects.toMatchObject({ code: "ENOENT" });

192268

});

193269

});