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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
U
Unit 42
Google DeepMind News
Google DeepMind News
博客园 - 司徒正美
Y
Y Combinator Blog
F
Fortinet All Blogs
云风的 BLOG
云风的 BLOG
T
Tailwind CSS Blog
G
Google Developers Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
罗磊的独立博客
D
DataBreaches.Net
T
The Blog of Author Tim Ferriss
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
MyScale Blog
MyScale Blog
N
Netflix TechBlog - Medium
Microsoft Security Blog
Microsoft Security Blog
GbyAI
GbyAI
P
Proofpoint News Feed
Jina AI
Jina AI
B
Blog RSS Feed
腾讯CDC
阮一峰的网络日志
阮一峰的网络日志
D
Docker

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
Run doctor after global gateway updates · openclaw/opencl...
stevenchouai · 2026-05-03 · via Recent Commits to openclaw:main

@@ -265,6 +265,14 @@ describe("runGatewayUpdate", () => {

265265

}

266266

}

267267268+

async function writeGatewayEntrypoint(pkgRoot: string) {

269+

const entrypoint = path.join(pkgRoot, "dist", "index.js");

270+

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

271+

await fs.writeFile(entrypoint, "export {};\n", "utf-8");

272+

await writePackageDistInventory(pkgRoot);

273+

return entrypoint;

274+

}

275+268276

async function createGlobalPackageFixture(rootDir: string) {

269277

const nodeModules = path.join(rootDir, "node_modules");

270278

const pkgRoot = path.join(nodeModules, "openclaw");

@@ -1456,6 +1464,87 @@ describe("runGatewayUpdate", () => {

14561464

);

14571465

});

145814661467+

it("runs doctor after global npm updates before reporting success", async () => {

1468+

const nodeModules = path.join(tempDir, "node_modules");

1469+

const pkgRoot = path.join(nodeModules, "openclaw");

1470+

await seedGlobalPackageRoot(pkgRoot);

1471+1472+

let doctorEnv: NodeJS.ProcessEnv | undefined;

1473+

const { calls, runCommand } = createGlobalInstallHarness({

1474+

pkgRoot,

1475+

npmRootOutput: nodeModules,

1476+

installCommand: "npm i -g openclaw@latest --no-fund --no-audit --loglevel=error",

1477+

onInstall: async () => {

1478+

await writeGlobalPackageVersion(pkgRoot);

1479+

await writeGatewayEntrypoint(pkgRoot);

1480+

},

1481+

});

1482+

const doctorNodePath = await resolveStableNodePath(process.execPath);

1483+

const doctorCommand = `${doctorNodePath} ${path.join(

1484+

pkgRoot,

1485+

"dist",

1486+

"index.js",

1487+

)} doctor --non-interactive --fix`;

1488+

const runCommandWithDoctor = async (argv: string[], options?: { env?: NodeJS.ProcessEnv }) => {

1489+

const key = argv.join(" ");

1490+

if (key === doctorCommand) {

1491+

calls.push(key);

1492+

doctorEnv = options?.env;

1493+

return { stdout: "doctor repaired config", stderr: "", code: 0 };

1494+

}

1495+

return runCommand(argv, options);

1496+

};

1497+1498+

const result = await runWithCommand(runCommandWithDoctor, { cwd: pkgRoot });

1499+1500+

expect(result.status).toBe("ok");

1501+

expect(calls).toContain(doctorCommand);

1502+

expect(result.steps.map((step) => step.name)).toContain("openclaw doctor");

1503+

expect(doctorEnv?.OPENCLAW_UPDATE_IN_PROGRESS).toBe("1");

1504+

expect(doctorEnv?.OPENCLAW_UPDATE_PARENT_SUPPORTS_DOCTOR_CONFIG_WRITE).toBe("1");

1505+

});

1506+1507+

it("fails global npm updates when post-update doctor fails", async () => {

1508+

const nodeModules = path.join(tempDir, "node_modules");

1509+

const pkgRoot = path.join(nodeModules, "openclaw");

1510+

await seedGlobalPackageRoot(pkgRoot);

1511+1512+

const { calls, runCommand } = createGlobalInstallHarness({

1513+

pkgRoot,

1514+

npmRootOutput: nodeModules,

1515+

installCommand: "npm i -g openclaw@latest --no-fund --no-audit --loglevel=error",

1516+

onInstall: async () => {

1517+

await writeGlobalPackageVersion(pkgRoot);

1518+

await writeGatewayEntrypoint(pkgRoot);

1519+

},

1520+

});

1521+

const doctorNodePath = await resolveStableNodePath(process.execPath);

1522+

const doctorCommand = `${doctorNodePath} ${path.join(

1523+

pkgRoot,

1524+

"dist",

1525+

"index.js",

1526+

)} doctor --non-interactive --fix`;

1527+

const runCommandWithDoctor = async (argv: string[], options?: { env?: NodeJS.ProcessEnv }) => {

1528+

const key = argv.join(" ");

1529+

if (key === doctorCommand) {

1530+

calls.push(key);

1531+

return { stdout: "", stderr: "doctor refused migration", code: 1 };

1532+

}

1533+

return runCommand(argv, options);

1534+

};

1535+1536+

const result = await runWithCommand(runCommandWithDoctor, { cwd: pkgRoot });

1537+1538+

expect(result.status).toBe("error");

1539+

expect(result.reason).toBe("doctor-failed");

1540+

expect(calls).toContain(doctorCommand);

1541+

expect(result.steps.at(-1)).toMatchObject({

1542+

name: "openclaw doctor",

1543+

exitCode: 1,

1544+

stderrTail: "doctor refused migration",

1545+

});

1546+

});

1547+14591548

it("falls back to global npm update when git is missing from PATH", async () => {

14601549

const { nodeModules, pkgRoot } = await createGlobalPackageFixture(tempDir);

14611550

const { calls, runCommand } = createGlobalInstallHarness({