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

推荐订阅源

Recent Announcements
Recent Announcements
爱范儿
爱范儿
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
宝玉的分享
宝玉的分享
T
Tailwind CSS Blog
博客园_首页
IT之家
IT之家
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 三生石上(FineUI控件)
有赞技术团队
有赞技术团队
大猫的无限游戏
大猫的无限游戏
雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 司徒正美
WordPress大学
WordPress大学
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
Jina AI
Jina AI
月光博客
月光博客
小众软件
小众软件
S
SegmentFault 最新的问题
量子位
阮一峰的网络日志
阮一峰的网络日志
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

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(test): isolate auth profile secrets in test state (#8...
altaywtf · 2026-05-13 · via Recent Commits to openclaw:main

@@ -19,6 +19,8 @@ function escapeRegex(value: string): string {

1919

return value.replace(/[.*+?^${}()|[\]\\]/gu, "\\$&");

2020

}

212122+

const secretKeyPattern = /^[a-f0-9]{64}$/u;

23+2224

describe("scripts/lib/openclaw-test-state", () => {

2325

it("creates a sourceable env file and JSON description", async () => {

2426

const tempRoot = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-test-state-script-"));

@@ -47,12 +49,14 @@ describe("scripts/lib/openclaw-test-state", () => {

4749

expect(payload.stateDir).toBe(path.join(payload.home, ".openclaw"));

4850

expect(payload.configPath).toBe(path.join(payload.stateDir, "openclaw.json"));

4951

expect(payload.workspaceDir).toBe(path.join(payload.home, "workspace"));

52+

expect(payload.env.OPENCLAW_AUTH_PROFILE_SECRET_KEY).toMatch(secretKeyPattern);

5053

expect(payload.env).toEqual({

5154

HOME: payload.home,

5255

USERPROFILE: payload.home,

5356

OPENCLAW_HOME: payload.home,

5457

OPENCLAW_STATE_DIR: payload.stateDir,

5558

OPENCLAW_CONFIG_PATH: payload.configPath,

59+

OPENCLAW_AUTH_PROFILE_SECRET_KEY: payload.env.OPENCLAW_AUTH_PROFILE_SECRET_KEY,

5660

});

5761

expect(payload.config).toEqual({

5862

update: {

@@ -66,14 +70,16 @@ describe("scripts/lib/openclaw-test-state", () => {

6670

expect(envFileText).toContain("export OPENCLAW_HOME=");

6771

expect(envFileText).toContain("export OPENCLAW_STATE_DIR=");

6872

expect(envFileText).toContain("export OPENCLAW_CONFIG_PATH=");

73+

expect(envFileText).toContain("export OPENCLAW_AUTH_PROFILE_SECRET_KEY=");

69747075

const probe = await execFileAsync("bash", [

7176

"-lc",

72-

`source ${shellQuote(envFile)}; node -e 'const fs=require("node:fs"); const config=JSON.parse(fs.readFileSync(process.env.OPENCLAW_CONFIG_PATH,"utf8")); process.stdout.write(JSON.stringify({home:process.env.HOME,stateDir:process.env.OPENCLAW_STATE_DIR,channel:config.update.channel}));'`,

77+

`source ${shellQuote(envFile)}; node -e 'const fs=require("node:fs"); const config=JSON.parse(fs.readFileSync(process.env.OPENCLAW_CONFIG_PATH,"utf8")); process.stdout.write(JSON.stringify({home:process.env.HOME,stateDir:process.env.OPENCLAW_STATE_DIR,secretKey:process.env.OPENCLAW_AUTH_PROFILE_SECRET_KEY,channel:config.update.channel}));'`,

7378

]);

7479

expect(JSON.parse(probe.stdout)).toEqual({

7580

home: payload.home,

7681

stateDir: payload.stateDir,

82+

secretKey: payload.env.OPENCLAW_AUTH_PROFILE_SECRET_KEY,

7783

channel: "stable",

7884

});

7985

await fs.rm(payload.root, { recursive: true, force: true });

@@ -106,7 +112,7 @@ describe("scripts/lib/openclaw-test-state", () => {

106112107113

const probe = await execFileAsync("bash", [

108114

"-lc",

109-

`source ${shellQuote(snippetFile)}; node -e 'const fs=require("node:fs"); const config=JSON.parse(fs.readFileSync(process.env.OPENCLAW_CONFIG_PATH,"utf8")); process.stdout.write(JSON.stringify({home:process.env.HOME,openclawHome:process.env.OPENCLAW_HOME,workspace:process.env.OPENCLAW_TEST_WORKSPACE_DIR,channel:config.update.channel}));'; rm -rf "$HOME"`,

115+

`source ${shellQuote(snippetFile)}; node -e 'const fs=require("node:fs"); const config=JSON.parse(fs.readFileSync(process.env.OPENCLAW_CONFIG_PATH,"utf8")); process.stdout.write(JSON.stringify({home:process.env.HOME,openclawHome:process.env.OPENCLAW_HOME,workspace:process.env.OPENCLAW_TEST_WORKSPACE_DIR,secretKey:process.env.OPENCLAW_AUTH_PROFILE_SECRET_KEY,channel:config.update.channel}));'; rm -rf "$HOME"`,

110116

]);

111117112118

const payload = JSON.parse(probe.stdout);

@@ -116,6 +122,7 @@ describe("scripts/lib/openclaw-test-state", () => {

116122

);

117123

expect(payload.openclawHome).toBe(payload.home);

118124

expect(payload.workspace).toBe(`${payload.home}/workspace`);

125+

expect(payload.secretKey).toMatch(secretKeyPattern);

119126

expect(payload.channel).toBe("stable");

120127121128

const customTemp = path.join(tempRoot, "state-tmp");

@@ -135,6 +142,52 @@ describe("scripts/lib/openclaw-test-state", () => {

135142

}

136143

});

137144145+

it("keeps shell key generation independent of node", async () => {

146+

const tempRoot = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-test-state-path-node-"));

147+

const fakeBin = path.join(tempRoot, "bin");

148+

const snippetFile = path.join(tempRoot, "state.sh");

149+

const functionFile = path.join(tempRoot, "state-function.sh");

150+

try {

151+

await fs.mkdir(fakeBin, { recursive: true });

152+

await fs.writeFile(

153+

path.join(fakeBin, "node"),

154+

"#!/bin/sh\necho 'fake node should not be used for key generation' >&2\nexit 42\n",

155+

"utf8",

156+

);

157+

await fs.chmod(path.join(fakeBin, "node"), 0o755);

158+159+

const shell = await execFileAsync(process.execPath, [

160+

scriptPath,

161+

"shell",

162+

"--label",

163+

"path-node",

164+

"--scenario",

165+

"empty",

166+

]);

167+

await fs.writeFile(snippetFile, shell.stdout, "utf8");

168+169+

const shellProbe = await execFileAsync("bash", [

170+

"-lc",

171+

`export PATH=${shellQuote(fakeBin)}:$PATH; source ${shellQuote(snippetFile)}; printf '%s' "$OPENCLAW_AUTH_PROFILE_SECRET_KEY"; rm -rf "$HOME"`,

172+

]);

173+

expect(shellProbe.stdout).toMatch(secretKeyPattern);

174+175+

const renderedFunction = await execFileAsync(process.execPath, [

176+

scriptPath,

177+

"shell-function",

178+

]);

179+

await fs.writeFile(functionFile, renderedFunction.stdout, "utf8");

180+181+

const functionProbe = await execFileAsync("bash", [

182+

"-lc",

183+

`export PATH=${shellQuote(fakeBin)}:$PATH; export OPENCLAW_TEST_STATE_TMPDIR=${shellQuote(path.join(tempRoot, "function-tmp"))}; source ${shellQuote(functionFile)}; openclaw_test_state_create "path node" minimal; printf '%s' "$OPENCLAW_AUTH_PROFILE_SECRET_KEY"; rm -rf "$HOME"`,

184+

]);

185+

expect(functionProbe.stdout).toMatch(secretKeyPattern);

186+

} finally {

187+

await fs.rm(tempRoot, { recursive: true, force: true });

188+

}

189+

});

190+138191

it("creates the upgrade survivor scenario", async () => {

139192

const { stdout } = await execFileAsync(process.execPath, [

140193

scriptPath,

@@ -182,24 +235,26 @@ describe("scripts/lib/openclaw-test-state", () => {

182235183236

const probe = await execFileAsync("bash", [

184237

"-lc",

185-

`export OPENCLAW_TEST_STATE_TMPDIR=${shellQuote(path.join(tempRoot, "function-tmp"))}; source ${shellQuote(snippetFile)}; export OPENCLAW_AGENT_DIR=/tmp/outside-agent; openclaw_test_state_create "onboard case" minimal; node -e 'const fs=require("node:fs"); const config=JSON.parse(fs.readFileSync(process.env.OPENCLAW_CONFIG_PATH,"utf8")); process.stdout.write(JSON.stringify({home:process.env.HOME,tmpDir:process.env.OPENCLAW_TEST_STATE_TMPDIR,agentDir:process.env.OPENCLAW_AGENT_DIR || null,workspace:process.env.OPENCLAW_TEST_WORKSPACE_DIR,config}));'; rm -rf "$HOME"`,

238+

`export OPENCLAW_TEST_STATE_TMPDIR=${shellQuote(path.join(tempRoot, "function-tmp"))}; source ${shellQuote(snippetFile)}; export OPENCLAW_AGENT_DIR=/tmp/outside-agent; openclaw_test_state_create "onboard case" minimal; node -e 'const fs=require("node:fs"); const config=JSON.parse(fs.readFileSync(process.env.OPENCLAW_CONFIG_PATH,"utf8")); process.stdout.write(JSON.stringify({home:process.env.HOME,tmpDir:process.env.OPENCLAW_TEST_STATE_TMPDIR,agentDir:process.env.OPENCLAW_AGENT_DIR || null,workspace:process.env.OPENCLAW_TEST_WORKSPACE_DIR,secretKey:process.env.OPENCLAW_AUTH_PROFILE_SECRET_KEY,config}));'; rm -rf "$HOME"`,

186239

]);

187240188241

const payload = JSON.parse(probe.stdout);

189242

expect(payload.home).toBe(`${payload.tmpDir}/${path.basename(payload.home)}`);

190243

expect(payload.home).toContain("/openclaw-onboard-case-minimal-home.");

191244

expect(payload.agentDir).toBeNull();

192245

expect(payload.workspace).toBe(`${payload.home}/workspace`);

246+

expect(payload.secretKey).toMatch(secretKeyPattern);

193247

expect(payload.config).toStrictEqual({});

194248195249

const existingHome = path.join(tempRoot, "existing-home");

196250

const existingProbe = await execFileAsync("bash", [

197251

"-lc",

198-

`source ${shellQuote(snippetFile)}; openclaw_test_state_create ${shellQuote(existingHome)} minimal; printf '{"kept":true}\\n' > "$OPENCLAW_CONFIG_PATH"; openclaw_test_state_create ${shellQuote(existingHome)} empty; node -e 'const fs=require("node:fs"); const config=JSON.parse(fs.readFileSync(process.env.OPENCLAW_CONFIG_PATH,"utf8")); process.stdout.write(JSON.stringify({home:process.env.HOME,config}));'`,

252+

`source ${shellQuote(snippetFile)}; openclaw_test_state_create ${shellQuote(existingHome)} minimal; firstKey="$OPENCLAW_AUTH_PROFILE_SECRET_KEY"; export firstKey; printf '{"kept":true}\\n' > "$OPENCLAW_CONFIG_PATH"; openclaw_test_state_create ${shellQuote(existingHome)} empty; node -e 'const fs=require("node:fs"); const config=JSON.parse(fs.readFileSync(process.env.OPENCLAW_CONFIG_PATH,"utf8")); process.stdout.write(JSON.stringify({home:process.env.HOME,secretKey:process.env.OPENCLAW_AUTH_PROFILE_SECRET_KEY,firstKey:process.env.firstKey,config}));'`,

199253

]);

200254201255

const existingPayload = JSON.parse(existingProbe.stdout);

202256

expect(existingPayload.home).toBe(existingHome);

257+

expect(existingPayload.secretKey).toBe(existingPayload.firstKey);

203258

expect(existingPayload.config).toEqual({ kept: true });

204259

} finally {

205260

await fs.rm(tempRoot, { recursive: true, force: true });