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

推荐订阅源

MyScale Blog
MyScale Blog
J
Java Code Geeks
Vercel News
Vercel News
A
About on SuperTechFans
G
Google Developers Blog
C
Check Point Blog
腾讯CDC
N
Netflix TechBlog - Medium
博客园 - 司徒正美
S
SegmentFault 最新的问题
D
DataBreaches.Net
博客园_首页
美团技术团队
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
量子位
雷峰网
雷峰网
IT之家
IT之家
小众软件
小众软件
Blog — PlanetScale
Blog — PlanetScale
博客园 - 三生石上(FineUI控件)
H
Help Net Security
宝玉的分享
宝玉的分享
博客园 - 叶小钗

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: show doctor runtime dependency install progress · op...
steipete · 2026-04-27 · via Recent Commits to openclaw:main

@@ -1,12 +1,13 @@

11

import fs from "node:fs";

22

import os from "node:os";

33

import path from "node:path";

4-

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

4+

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

55

import {

66

resolveBundledRuntimeDependencyPackageInstallRoot,

77

scanBundledPluginRuntimeDeps,

88

type BundledRuntimeDepsInstallParams,

99

} from "../plugins/bundled-runtime-deps.js";

10+

import type { RuntimeEnv } from "../runtime.js";

1011

import { maybeRepairBundledPluginRuntimeDeps } from "./doctor-bundled-plugin-runtime-deps.js";

1112

import type { DoctorPrompter } from "./doctor-prompter.js";

1213

@@ -84,7 +85,25 @@ function createNonInteractivePrompter(

8485

} as DoctorPrompter;

8586

}

868788+

function createRuntime(options: { logs?: string[]; errors?: string[] } = {}): RuntimeEnv {

89+

return {

90+

log: (message: unknown) => {

91+

options.logs?.push(String(message));

92+

},

93+

error: (message: unknown) => {

94+

options.errors?.push(String(message));

95+

},

96+

exit: (code: number) => {

97+

throw new Error(`Unexpected runtime exit ${code}`);

98+

},

99+

};

100+

}

101+87102

describe("doctor bundled plugin runtime deps", () => {

103+

afterEach(() => {

104+

vi.useRealTimers();

105+

});

106+88107

it("skips source checkouts", () => {

89108

const root = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-doctor-bundled-"));

90109

fs.mkdirSync(path.join(root, ".git"));

@@ -410,7 +429,7 @@ describe("doctor bundled plugin runtime deps", () => {

410429

const installed = createInstalledRuntimeDeps();

411430412431

await maybeRepairBundledPluginRuntimeDeps({

413-

runtime: { error: () => {} } as never,

432+

runtime: createRuntime(),

414433

prompter: createNonInteractivePrompter(),

415434

packageRoot: root,

416435

config: {

@@ -441,7 +460,7 @@ describe("doctor bundled plugin runtime deps", () => {

441460

const installed = createInstalledRuntimeDeps();

442461443462

await maybeRepairBundledPluginRuntimeDeps({

444-

runtime: { error: () => {} } as never,

463+

runtime: createRuntime(),

445464

prompter: createNonInteractivePrompter(),

446465

packageRoot: root,

447466

config: {

@@ -472,7 +491,7 @@ describe("doctor bundled plugin runtime deps", () => {

472491

const installed = createInstalledRuntimeDeps();

473492474493

await maybeRepairBundledPluginRuntimeDeps({

475-

runtime: { error: () => {} } as never,

494+

runtime: createRuntime(),

476495

prompter: createNonInteractivePrompter(),

477496

packageRoot: root,

478497

config: {

@@ -496,14 +515,72 @@ describe("doctor bundled plugin runtime deps", () => {

496515

expect(readRetainedRuntimeDepsManifest(installRoot)).toEqual(["grammy@1.37.0"]);

497516

});

498517518+

it("logs runtime dependency repair progress before and after install", async () => {

519+

const root = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-doctor-bundled-"));

520+

writeJson(path.join(root, "package.json"), { name: "openclaw" });

521+

writeBundledChannelPlugin(root, "telegram", { grammy: "1.37.0" });

522+

const logs: string[] = [];

523+524+

await maybeRepairBundledPluginRuntimeDeps({

525+

runtime: createRuntime({ logs }),

526+

prompter: createNonInteractivePrompter(),

527+

packageRoot: root,

528+

config: {

529+

plugins: { enabled: true },

530+

channels: { telegram: { enabled: true } },

531+

},

532+

installDeps: async () => {},

533+

});

534+535+

expect(logs).toEqual(

536+

expect.arrayContaining([

537+

expect.stringContaining(

538+

"Installing bundled plugin runtime deps (1 missing, 1 install specs): grammy@1.37.0",

539+

),

540+

expect.stringContaining("Installed bundled plugin runtime deps in"),

541+

]),

542+

);

543+

});

544+545+

it("logs runtime dependency repair heartbeats while install is pending", async () => {

546+

vi.useFakeTimers();

547+

const root = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-doctor-bundled-"));

548+

writeJson(path.join(root, "package.json"), { name: "openclaw" });

549+

writeBundledChannelPlugin(root, "telegram", { grammy: "1.37.0" });

550+

const logs: string[] = [];

551+

let finishInstall!: () => void;

552+553+

const repair = maybeRepairBundledPluginRuntimeDeps({

554+

runtime: createRuntime({ logs }),

555+

prompter: createNonInteractivePrompter(),

556+

packageRoot: root,

557+

config: {

558+

plugins: { enabled: true },

559+

channels: { telegram: { enabled: true } },

560+

},

561+

installDeps: async () =>

562+

await new Promise<void>((resolve) => {

563+

finishInstall = resolve;

564+

}),

565+

});

566+567+

await Promise.resolve();

568+

expect(logs).toEqual([expect.stringContaining("Installing bundled plugin runtime deps")]);

569+

await vi.advanceTimersByTimeAsync(15_000);

570+

expect(logs).toContain("Still installing bundled plugin runtime deps after 15s...");

571+572+

finishInstall();

573+

await repair;

574+

});

575+499576

it("repairs deps for configured channel owner plugins", async () => {

500577

const root = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-doctor-bundled-"));

501578

writeJson(path.join(root, "package.json"), { name: "openclaw" });

502579

writeBundledChannelOwnerPlugin(root, "chat-bridge", ["telegram"], { grammy: "1.37.0" });

503580

const installed = createInstalledRuntimeDeps();

504581505582

await maybeRepairBundledPluginRuntimeDeps({

506-

runtime: { error: () => {} } as never,

583+

runtime: createRuntime(),

507584

prompter: createNonInteractivePrompter(),

508585

packageRoot: root,

509586

config: {

@@ -533,7 +610,7 @@ describe("doctor bundled plugin runtime deps", () => {

533610534611

await expect(

535612

maybeRepairBundledPluginRuntimeDeps({

536-

runtime: { error: (message: string) => errors.push(message) } as never,

613+

runtime: createRuntime({ errors }),

537614

prompter: createNonInteractivePrompter(),

538615

packageRoot: root,

539616

config: {

@@ -558,7 +635,7 @@ describe("doctor bundled plugin runtime deps", () => {

558635

const installed = createInstalledRuntimeDeps();

559636560637

await maybeRepairBundledPluginRuntimeDeps({

561-

runtime: { error: () => {} } as never,

638+

runtime: createRuntime(),

562639

prompter: createNonInteractivePrompter({ updateInProgress: true }),

563640

packageRoot: root,

564641

includeConfiguredChannels: true,

@@ -591,7 +668,7 @@ describe("doctor bundled plugin runtime deps", () => {

591668

const installed = createInstalledRuntimeDeps();

592669593670

await maybeRepairBundledPluginRuntimeDeps({

594-

runtime: { error: () => {} } as never,

671+

runtime: createRuntime(),

595672

prompter: createNonInteractivePrompter(),

596673

env,

597674

packageRoot: root,

@@ -641,7 +718,7 @@ describe("doctor bundled plugin runtime deps", () => {

641718

const installed = createInstalledRuntimeDeps();

642719643720

await maybeRepairBundledPluginRuntimeDeps({

644-

runtime: { error: () => {} } as never,

721+

runtime: createRuntime(),

645722

prompter: createNonInteractivePrompter(),

646723

env,

647724

packageRoot: root,

@@ -677,7 +754,7 @@ describe("doctor bundled plugin runtime deps", () => {

677754

const installed = createInstalledRuntimeDeps();

678755679756

await maybeRepairBundledPluginRuntimeDeps({

680-

runtime: { error: () => {} } as never,

757+

runtime: createRuntime(),

681758

prompter: createNonInteractivePrompter(),

682759

packageRoot: root,

683760

includeConfiguredChannels: true,