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

推荐订阅源

雷峰网
雷峰网
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
宝玉的分享
宝玉的分享
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
罗磊的独立博客
Hugging Face - Blog
Hugging Face - Blog
T
Tailwind CSS Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
博客园_首页
博客园 - 三生石上(FineUI控件)
博客园 - 叶小钗
Apple Machine Learning Research
Apple Machine Learning Research
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
量子位
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
人人都是产品经理
人人都是产品经理
美团技术团队
小众软件
小众软件
Jina AI
Jina AI
S
SegmentFault 最新的问题
博客园 - Franky
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com

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(scripts): route onboard config helpers · openclaw/op...
vincentkoc · 2026-06-21 · via Recent Commits to openclaw:main
1+

// Onboard Config Fixtures tests cover onboard E2E config writer/assertion helpers.

2+

import { spawnSync } from "node:child_process";

3+

import { readFileSync, writeFileSync } from "node:fs";

4+

import path from "node:path";

5+

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

6+

import { cleanupTempDirs, makeTempDir } from "../helpers/temp-dir.js";

7+8+

const ASSERT_CONFIG_SCRIPT = "scripts/e2e/lib/onboard/assert-config.mjs";

9+

const WRITE_CONFIG_SCRIPT = "scripts/e2e/lib/onboard/write-config.mjs";

10+

const tempDirs: string[] = [];

11+12+

afterEach(() => {

13+

cleanupTempDirs(tempDirs);

14+

});

15+16+

function runScript(scriptPath: string, args: string[]) {

17+

return spawnSync(process.execPath, [scriptPath, ...args], {

18+

encoding: "utf8",

19+

env: { ...process.env },

20+

});

21+

}

22+23+

function readJson(file: string) {

24+

return JSON.parse(readFileSync(file, "utf8"));

25+

}

26+27+

describe("onboard config fixture helpers", () => {

28+

it("writes reset fixtures consumed by the reset assertion", () => {

29+

const root = makeTempDir(tempDirs, "openclaw-onboard-config-");

30+

const configPath = path.join(root, "openclaw.json");

31+32+

const writeResult = runScript(WRITE_CONFIG_SCRIPT, ["reset", configPath]);

33+34+

expect(writeResult.status).toBe(0);

35+

expect(readJson(configPath)).toEqual({

36+

meta: {},

37+

agents: { defaults: { workspace: "/root/old" } },

38+

gateway: { mode: "remote", remote: { url: "ws://old.example:18789", token: "old-token" } },

39+

});

40+

expect(readFileSync(configPath, "utf8")).toMatch(/\n$/u);

41+42+

writeFileSync(

43+

configPath,

44+

`${JSON.stringify(

45+

{

46+

gateway: { mode: "local" },

47+

wizard: { lastRunMode: "local" },

48+

},

49+

null,

50+

2,

51+

)}\n`,

52+

"utf8",

53+

);

54+

const assertResult = runScript(ASSERT_CONFIG_SCRIPT, ["reset", configPath]);

55+56+

expect(assertResult.status).toBe(0);

57+

expect(assertResult.stderr).toBe("");

58+

});

59+60+

it("writes skills fixtures consumed by the skills assertion", () => {

61+

const root = makeTempDir(tempDirs, "openclaw-onboard-config-skills-");

62+

const configPath = path.join(root, "openclaw.json");

63+64+

const writeResult = runScript(WRITE_CONFIG_SCRIPT, ["skills", configPath]);

65+66+

expect(writeResult.status).toBe(0);

67+

expect(readJson(configPath)).toEqual({

68+

meta: {},

69+

skills: { allowBundled: ["__none__"], install: { nodeManager: "bun" } },

70+

});

71+

writeFileSync(

72+

configPath,

73+

`${JSON.stringify(

74+

{

75+

...readJson(configPath),

76+

wizard: { lastRunCommand: "configure", lastRunMode: "local" },

77+

},

78+

null,

79+

2,

80+

)}\n`,

81+

"utf8",

82+

);

83+84+

const assertResult = runScript(ASSERT_CONFIG_SCRIPT, ["skills", configPath]);

85+86+

expect(assertResult.status).toBe(0);

87+

expect(assertResult.stderr).toBe("");

88+

});

89+90+

it("accepts local and remote onboard assertion fixtures", () => {

91+

const root = makeTempDir(tempDirs, "openclaw-onboard-config-success-");

92+

const workspace = path.join(root, "workspace");

93+

const localConfigPath = path.join(root, "local.json");

94+

const remoteConfigPath = path.join(root, "remote.json");

95+

writeFileSync(

96+

localConfigPath,

97+

`${JSON.stringify(

98+

{

99+

agents: { defaults: { workspace } },

100+

gateway: { bind: "loopback", mode: "local", tailscale: { mode: "off" } },

101+

wizard: {

102+

lastRunAt: "2026-01-01T00:00:00.000Z",

103+

lastRunCommand: "onboard",

104+

lastRunMode: "local",

105+

lastRunVersion: "test-version",

106+

},

107+

},

108+

null,

109+

2,

110+

)}\n`,

111+

"utf8",

112+

);

113+

writeFileSync(

114+

remoteConfigPath,

115+

`${JSON.stringify(

116+

{

117+

gateway: {

118+

mode: "remote",

119+

remote: { url: "ws://gateway.local:18789", token: "remote-token" },

120+

},

121+

wizard: { lastRunMode: "remote" },

122+

},

123+

null,

124+

2,

125+

)}\n`,

126+

"utf8",

127+

);

128+129+

const localResult = runScript(ASSERT_CONFIG_SCRIPT, [

130+

"local-basic",

131+

localConfigPath,

132+

workspace,

133+

]);

134+

const remoteResult = runScript(ASSERT_CONFIG_SCRIPT, [

135+

"remote-non-interactive",

136+

remoteConfigPath,

137+

]);

138+139+

expect(localResult.status).toBe(0);

140+

expect(localResult.stderr).toBe("");

141+

expect(remoteResult.status).toBe(0);

142+

expect(remoteResult.stderr).toBe("");

143+

});

144+145+

it("accepts channel configuration assertions for scrubbed channel secrets", () => {

146+

const root = makeTempDir(tempDirs, "openclaw-onboard-config-channels-");

147+

const configPath = path.join(root, "channels.json");

148+

writeFileSync(

149+

configPath,

150+

`${JSON.stringify(

151+

{

152+

wizard: { lastRunCommand: "configure", lastRunMode: "local" },

153+

},

154+

null,

155+

2,

156+

)}\n`,

157+

"utf8",

158+

);

159+160+

const result = runScript(ASSERT_CONFIG_SCRIPT, ["channels", configPath]);

161+162+

expect(result.status).toBe(0);

163+

expect(result.stderr).toBe("");

164+

});

165+166+

it("reports assertion mismatches with stable field labels", () => {

167+

const root = makeTempDir(tempDirs, "openclaw-onboard-config-mismatch-");

168+

const configPath = path.join(root, "openclaw.json");

169+

writeFileSync(

170+

configPath,

171+

`${JSON.stringify(

172+

{

173+

gateway: { mode: "remote", bind: "lan", tailscale: { mode: "on" } },

174+

wizard: { lastRunCommand: "configure", lastRunMode: "remote" },

175+

},

176+

null,

177+

2,

178+

)}\n`,

179+

"utf8",

180+

);

181+182+

const result = runScript(ASSERT_CONFIG_SCRIPT, [

183+

"local-basic",

184+

configPath,

185+

path.join(root, "workspace"),

186+

]);

187+188+

expect(result.status).toBe(1);

189+

expect(result.stderr).toContain("agents.defaults.workspace mismatch");

190+

expect(result.stderr).toContain("gateway.mode mismatch");

191+

expect(result.stderr).toContain("gateway.bind mismatch");

192+

expect(result.stderr).toContain("gateway.tailscale.mode mismatch");

193+

expect(result.stderr).toContain("wizard.lastRunCommand mismatch");

194+

});

195+196+

it("rejects unknown writer and assertion scenarios", () => {

197+

const root = makeTempDir(tempDirs, "openclaw-onboard-config-unknown-");

198+

const configPath = path.join(root, "openclaw.json");

199+

writeFileSync(configPath, "{}\n", "utf8");

200+201+

const writeResult = runScript(WRITE_CONFIG_SCRIPT, ["unknown", configPath]);

202+

const assertResult = runScript(ASSERT_CONFIG_SCRIPT, ["unknown", configPath]);

203+204+

expect(writeResult.status).not.toBe(0);

205+

expect(writeResult.stderr).toContain("unknown config scenario: unknown");

206+

expect(assertResult.status).not.toBe(0);

207+

expect(assertResult.stderr).toContain("unknown onboard assertion scenario: unknown");

208+

});

209+

});