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

推荐订阅源

MongoDB | Blog
MongoDB | Blog
宝玉的分享
宝玉的分享
博客园 - 三生石上(FineUI控件)
小众软件
小众软件
罗磊的独立博客
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
S
SegmentFault 最新的问题
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
博客园 - 聂微东
博客园 - 司徒正美
博客园 - 叶小钗
T
Tailwind CSS Blog
博客园 - Franky
V
V2EX
有赞技术团队
有赞技术团队
美团技术团队
雷峰网
雷峰网
爱范儿
爱范儿
Jina AI
Jina AI
D
DataBreaches.Net
H
Help Net Security
酷 壳 – CoolShell
酷 壳 – CoolShell

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(config): skip state-dir dotenv values that are unreso...
Alix-007 · 2026-06-01 · via Recent Commits to openclaw:main

@@ -1299,6 +1299,37 @@ describe("stageSystemdService", () => {

12991299

});

13001300

});

130113011302+

it("does not re-stage unresolved inline-and-file values from preserved service env (#88274)", async () => {

1303+

await withStageFixture(async ({ env, unitPath, envFilePath }) => {

1304+

await fs.writeFile(envFilePath, "LLM_API_KEY=$SECRET_FROM_SHELL\n", {

1305+

encoding: "utf8",

1306+

mode: 0o600,

1307+

});

1308+1309+

mockSystemctlStatusOk();

1310+1311+

await stageSystemdService({

1312+

env,

1313+

stdout: { write: vi.fn() } as unknown as NodeJS.WritableStream,

1314+

programArguments: ["/usr/bin/openclaw", "gateway", "run"],

1315+

workingDirectory: "/tmp",

1316+

environment: {

1317+

LLM_API_KEY: "$SECRET_FROM_SHELL",

1318+

OPENCLAW_GATEWAY_PORT: "18789",

1319+

},

1320+

environmentValueSources: {

1321+

LLM_API_KEY: "inline-and-file",

1322+

},

1323+

});

1324+1325+

const unit = await fs.readFile(unitPath, "utf8");

1326+

expect(unit).not.toContain("EnvironmentFile=");

1327+

expect(unit).not.toContain("LLM_API_KEY");

1328+

expect(unit).not.toContain("$SECRET_FROM_SHELL");

1329+

await expect(fs.access(envFilePath)).rejects.toThrow();

1330+

});

1331+

});

1332+13021333

it("sanitizes file-backed managed values out of the backup unit on re-stage", async () => {

13031334

await withStageFixture(async ({ env, unitPath }) => {

13041335

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

@@ -1492,6 +1523,99 @@ describe("stageSystemdService", () => {

14921523

expect(envFile).toContain("LLM_API_KEY=new-value");

14931524

});

14941525

});

1526+1527+

it("removes a stale literal reference on re-stage when state-dir .env now skips that key (#88274)", async () => {

1528+

await withStageFixture(async ({ env, stateDir, envFilePath }) => {

1529+

// A prior install generated a literal reference for LLM_API_KEY (an unexpanded

1530+

// $VAR that dotenv stored verbatim) and an operator-managed provider secret.

1531+

await fs.writeFile(

1532+

envFilePath,

1533+

["LLM_API_KEY=$SECRET_FROM_SHELL", "OPENROUTER_API_KEY=or-operator-key"].join("\n") + "\n",

1534+

{ encoding: "utf8", mode: 0o600 },

1535+

);

1536+1537+

// The state-dir .env still declares LLM_API_KEY but now as an unresolved

1538+

// shell reference, so the parser skips it from the managed environment.

1539+

await fs.writeFile(path.join(stateDir, ".env"), "LLM_API_KEY=$SECRET_FROM_SHELL\n", "utf8");

1540+1541+

mockSystemctlStatusOk();

1542+1543+

await stageSystemdService({

1544+

env,

1545+

stdout: { write: vi.fn() } as unknown as NodeJS.WritableStream,

1546+

programArguments: ["/usr/bin/openclaw", "gateway", "run"],

1547+

workingDirectory: "/tmp",

1548+

environment: { OPENCLAW_GATEWAY_PORT: "18789" },

1549+

});

1550+1551+

const envFile = await fs.readFile(envFilePath, "utf8");

1552+

// The stale literal reference for the skipped managed key is dropped...

1553+

expect(envFile).not.toContain("LLM_API_KEY");

1554+

expect(envFile).not.toContain("$SECRET_FROM_SHELL");

1555+

// ...while operator-only secrets (never in state-dir .env) are preserved.

1556+

expect(envFile).toContain("OPENROUTER_API_KEY=or-operator-key");

1557+

});

1558+

});

1559+1560+

it("removes a stale literal reference after the state-dir .env line is removed (#88274)", async () => {

1561+

await withStageFixture(async ({ env, envFilePath }) => {

1562+

await fs.writeFile(

1563+

envFilePath,

1564+

["LLM_API_KEY=$SECRET_FROM_SHELL", "OPENROUTER_API_KEY=or-operator-key"].join("\n") + "\n",

1565+

{ encoding: "utf8", mode: 0o600 },

1566+

);

1567+1568+

mockSystemctlStatusOk();

1569+1570+

await stageSystemdService({

1571+

env,

1572+

stdout: { write: vi.fn() } as unknown as NodeJS.WritableStream,

1573+

programArguments: ["/usr/bin/openclaw", "gateway", "run"],

1574+

workingDirectory: "/tmp",

1575+

environment: { OPENCLAW_GATEWAY_PORT: "18789" },

1576+

});

1577+1578+

const envFile = await fs.readFile(envFilePath, "utf8");

1579+

expect(envFile).not.toContain("LLM_API_KEY");

1580+

expect(envFile).not.toContain("$SECRET_FROM_SHELL");

1581+

expect(envFile).toContain("OPENROUTER_API_KEY=or-operator-key");

1582+

});

1583+

});

1584+1585+

it("keeps an operator secret that merely shares a name absent from state-dir .env (#88274)", async () => {

1586+

await withStageFixture(async ({ env, stateDir, envFilePath }) => {

1587+

// Operator-managed env file holds two secrets; neither is in state-dir .env.

1588+

await fs.writeFile(

1589+

envFilePath,

1590+

[

1591+

"ANTHROPIC_API_KEY=sk-ant-operator-secret",

1592+

"OPENROUTER_API_KEY=or-operator-key",

1593+

"LOWERCASE_LITERAL_API_KEY=$ecret123",

1594+

].join("\n") + "\n",

1595+

{ encoding: "utf8", mode: 0o600 },

1596+

);

1597+1598+

// State-dir .env only skips an unrelated key (LLM_API_KEY). Operator keys must

1599+

// not be treated as stale just because they are absent from the staged env.

1600+

await fs.writeFile(path.join(stateDir, ".env"), "LLM_API_KEY=${UNRESOLVED}\n", "utf8");

1601+1602+

mockSystemctlStatusOk();

1603+1604+

await stageSystemdService({

1605+

env,

1606+

stdout: { write: vi.fn() } as unknown as NodeJS.WritableStream,

1607+

programArguments: ["/usr/bin/openclaw", "gateway", "run"],

1608+

workingDirectory: "/tmp",

1609+

environment: { OPENCLAW_GATEWAY_PORT: "18789" },

1610+

});

1611+1612+

const envFile = await fs.readFile(envFilePath, "utf8");

1613+

expect(envFile).toContain("ANTHROPIC_API_KEY=sk-ant-operator-secret");

1614+

expect(envFile).toContain("OPENROUTER_API_KEY=or-operator-key");

1615+

expect(envFile).toContain("LOWERCASE_LITERAL_API_KEY=$ecret123");

1616+

expect(envFile).not.toContain("LLM_API_KEY");

1617+

});

1618+

});

14951619

});

1496162014971621

describe("systemd service install and uninstall", () => {