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

推荐订阅源

U
Unit 42
Vercel News
Vercel News
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
MyScale Blog
MyScale Blog
P
Proofpoint News Feed
量子位
Engineering at Meta
Engineering at Meta
B
Blog RSS Feed
博客园 - 【当耐特】
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
D
DataBreaches.Net
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
人人都是产品经理
人人都是产品经理
IT之家
IT之家
T
The Blog of Author Tim Ferriss
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Jina AI
Jina AI
博客园 - 三生石上(FineUI控件)

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): recover critical config clobbers · openclaw/...
steipete · 2026-04-23 · via Recent Commits to openclaw:main

@@ -20,6 +20,7 @@ describe("config observe recovery", () => {

2020

const clobberedUpdateChannelConfig = { update: { channel: "beta" } };

2121

const clobberedUpdateChannelRaw = `${JSON.stringify(clobberedUpdateChannelConfig, null, 2)}\n`;

2222

const recoverableTelegramConfig = {

23+

meta: { lastTouchedAt: "2026-04-22T00:00:00.000Z" },

2324

update: { channel: "beta" },

2425

gateway: { mode: "local" },

2526

channels: { telegram: { enabled: true, dmPolicy: "pairing", groupPolicy: "allowlist" } },

@@ -49,6 +50,12 @@ describe("config observe recovery", () => {

4950

await fsp.copyFile(configPath, `${configPath}.bak`);

5051

}

515253+

async function writeConfigRaw(configPath: string, config: Record<string, unknown>) {

54+

const raw = `${JSON.stringify(config, null, 2)}\n`;

55+

await fsp.writeFile(configPath, raw, "utf-8");

56+

return { raw, parsed: config };

57+

}

58+5259

async function writeClobberedUpdateChannel(configPath: string) {

5360

await fsp.writeFile(configPath, clobberedUpdateChannelRaw, "utf-8");

5461

return {

@@ -82,6 +89,20 @@ describe("config observe recovery", () => {

8289

});

8390

}

849192+

async function recoverSuspiciousConfigRead(params: {

93+

deps: ObserveRecoveryDeps;

94+

configPath: string;

95+

raw: string;

96+

parsed: unknown;

97+

}) {

98+

return await maybeRecoverSuspiciousConfigRead({

99+

deps: params.deps,

100+

configPath: params.configPath,

101+

raw: params.raw,

102+

parsed: params.parsed,

103+

});

104+

}

105+85106

function recoverClobberedUpdateChannelSync(params: {

86107

deps: ObserveRecoveryDeps;

87108

configPath: string;

@@ -142,6 +163,7 @@ describe("config observe recovery", () => {

142163

await withSuiteHome(async (home) => {

143164

const { deps, configPath, auditPath, warn } = makeDeps(home);

144165

await seedConfigBackup(configPath, {

166+

meta: { lastTouchedAt: "2026-04-22T00:00:00.000Z" },

145167

update: { channel: "beta" },

146168

browser: { enabled: true },

147169

gateway: { mode: "local", auth: { mode: "token", token: "secret-token" } },

@@ -165,6 +187,97 @@ describe("config observe recovery", () => {

165187

});

166188

});

167189190+

it("auto-restores when metadata disappears from an otherwise valid config", async () => {

191+

await withSuiteHome(async (home) => {

192+

const { deps, configPath, auditPath } = makeDeps(home);

193+

await seedConfigBackup(configPath, recoverableTelegramConfig);

194+

const clobbered = await writeConfigRaw(configPath, {

195+

update: { channel: "beta" },

196+

gateway: { mode: "local" },

197+

channels: { telegram: { enabled: true, dmPolicy: "pairing", groupPolicy: "allowlist" } },

198+

});

199+200+

const recovered = await recoverSuspiciousConfigRead({ deps, configPath, ...clobbered });

201+202+

expect((recovered.parsed as { meta?: unknown }).meta).toEqual(recoverableTelegramConfig.meta);

203+

const observe = await readLastObserveEvent(auditPath);

204+

expect(observe?.restoredFromBackup).toBe(true);

205+

expect(observe?.suspicious).toEqual(expect.arrayContaining(["missing-meta-vs-last-good"]));

206+

});

207+

});

208+209+

it("auto-restores when gateway mode disappears from the last-good shape", async () => {

210+

await withSuiteHome(async (home) => {

211+

const { deps, configPath, auditPath } = makeDeps(home);

212+

await seedConfigBackup(configPath, recoverableTelegramConfig);

213+

const clobbered = await writeConfigRaw(configPath, {

214+

meta: { lastTouchedAt: "2026-04-22T00:00:00.000Z" },

215+

update: { channel: "beta" },

216+

channels: { telegram: { enabled: true, dmPolicy: "pairing", groupPolicy: "allowlist" } },

217+

});

218+219+

const recovered = await recoverSuspiciousConfigRead({ deps, configPath, ...clobbered });

220+221+

expect((recovered.parsed as { gateway?: { mode?: string } }).gateway?.mode).toBe("local");

222+

const observe = await readLastObserveEvent(auditPath);

223+

expect(observe?.restoredFromBackup).toBe(true);

224+

expect(observe?.suspicious).toEqual(

225+

expect.arrayContaining(["gateway-mode-missing-vs-last-good"]),

226+

);

227+

});

228+

});

229+230+

it("auto-restores after a large size drop against last-good config", async () => {

231+

await withSuiteHome(async (home) => {

232+

const { deps, configPath, auditPath } = makeDeps(home);

233+

await seedConfigBackup(configPath, {

234+

...recoverableTelegramConfig,

235+

channels: {

236+

telegram: {

237+

enabled: true,

238+

dmPolicy: "pairing",

239+

groupPolicy: "allowlist",

240+

allowFrom: Array.from({ length: 60 }, (_, index) => `telegram-user-${index}`),

241+

},

242+

},

243+

});

244+

const clobbered = await writeConfigRaw(configPath, {

245+

meta: { lastTouchedAt: "2026-04-22T00:00:00.000Z" },

246+

gateway: { mode: "local" },

247+

});

248+249+

const recovered = await recoverSuspiciousConfigRead({ deps, configPath, ...clobbered });

250+251+

expect(

252+

(recovered.parsed as { channels?: { telegram?: { allowFrom?: string[] } } }).channels

253+

?.telegram?.allowFrom,

254+

).toHaveLength(60);

255+

const observe = await readLastObserveEvent(auditPath);

256+

expect(observe?.restoredFromBackup).toBe(true);

257+

expect(observe?.suspicious).toEqual(

258+

expect.arrayContaining([expect.stringMatching(/^size-drop-vs-last-good:/)]),

259+

);

260+

});

261+

});

262+263+

it("does not restore noncritical config edits", async () => {

264+

await withSuiteHome(async (home) => {

265+

const { deps, configPath, auditPath } = makeDeps(home);

266+

await seedConfigBackup(configPath, recoverableTelegramConfig);

267+

const editedConfig = {

268+

...recoverableTelegramConfig,

269+

update: { channel: "stable" },

270+

};

271+

const edited = await writeConfigRaw(configPath, editedConfig);

272+273+

const recovered = await recoverSuspiciousConfigRead({ deps, configPath, ...edited });

274+275+

expect(recovered.parsed).toEqual(editedConfig);

276+

await expect(fsp.readFile(configPath, "utf-8")).resolves.toBe(edited.raw);

277+

await expect(fsp.stat(auditPath)).rejects.toThrow();

278+

});

279+

});

280+168281

it("dedupes repeated suspicious hashes", async () => {

169282

await withSuiteHome(async (home) => {

170283

const { deps, configPath, auditPath } = makeDeps(home);